MENU navbar-image

Introduction

This documentation aims to provide all the information you need to work with our API.

<aside>As you scroll, you'll see code examples for working with the API in different programming languages in the dark area to the right (or as part of the content on mobile).
You can switch the language used with the tabs at the top right (or from the nav menu at the top left on mobile).</aside>

Authenticating requests

This API is not authenticated.

Endpoints

Display Swagger API page.

Example request:
curl --request GET \
    --get "http://localhost/api/documentation" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/documentation"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>L5 Swagger UI</title>
    <link rel="stylesheet" type="text/css" href="http://localhost/docs/asset/swagger-ui.css?v=46937e45e4e342ab1be319bfa1351777">
    <link rel="icon" type="image/png" href="http://localhost/docs/asset/favicon-32x32.png?v=40d4f2c38d1cd854ad463f16373cbcb6" sizes="32x32"/>
    <link rel="icon" type="image/png" href="http://localhost/docs/asset/favicon-16x16.png?v=f0ae831196d55d8f4115b6c5e8ec5384" sizes="16x16"/>
    <style>
    html
    {
        box-sizing: border-box;
        overflow: -moz-scrollbars-vertical;
        overflow-y: scroll;
    }
    *,
    *:before,
    *:after
    {
        box-sizing: inherit;
    }

    body {
      margin:0;
      background: #fafafa;
    }
    </style>
</head>

<body>
<div id="swagger-ui"></div>

<script src="http://localhost/docs/asset/swagger-ui-bundle.js?v=7c20e8c1d4174cd3cdc8dc0d9c862563"></script>
<script src="http://localhost/docs/asset/swagger-ui-standalone-preset.js?v=ae39cc590f970f7811ac1f62fd0b7944"></script>
<script>
    window.onload = function() {
        // Build a system
        const ui = SwaggerUIBundle({
            dom_id: '#swagger-ui',
            url: "http://localhost/docs/api-docs.json",
            operationsSorter: null,
            configUrl: null,
            validatorUrl: null,
            oauth2RedirectUrl: "http://localhost/api/oauth2-callback",

            requestInterceptor: function(request) {
                request.headers['X-CSRF-TOKEN'] = '';
                return request;
            },

            presets: [
                SwaggerUIBundle.presets.apis,
                SwaggerUIStandalonePreset
            ],

            plugins: [
                SwaggerUIBundle.plugins.DownloadUrl
            ],

            layout: "StandaloneLayout",
            docExpansion : "none",
            deepLinking: true,
            filter: true,
            persistAuthorization: "false",

        })

        window.ui = ui

            }
</script>
</body>
</html>

 

Request      

GET api/documentation

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Display Oauth2 callback pages.

Example request:
curl --request GET \
    --get "http://localhost/api/oauth2-callback" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/oauth2-callback"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
content-type: text/html; charset=UTF-8
cache-control: no-cache, private
access-control-allow-origin: *
 

<!doctype html>
<html lang="en-US">
<head>
    <title>Swagger UI: OAuth2 Redirect</title>
</head>
<body>
<script>
    'use strict';
    function run () {
        var oauth2 = window.opener.swaggerUIRedirectOauth2;
        var sentState = oauth2.state;
        var redirectUrl = oauth2.redirectUrl;
        var isValid, qp, arr;

        if (/code|token|error/.test(window.location.hash)) {
            qp = window.location.hash.substring(1).replace('?', '&');
        } else {
            qp = location.search.substring(1);
        }

        arr = qp.split("&");
        arr.forEach(function (v,i,_arr) { _arr[i] = '"' + v.replace('=', '":"') + '"';});
        qp = qp ? JSON.parse('{' + arr.join() + '}',
                function (key, value) {
                    return key === "" ? value : decodeURIComponent(value);
                }
        ) : {};

        isValid = qp.state === sentState;

        if ((
          oauth2.auth.schema.get("flow") === "accessCode" ||
          oauth2.auth.schema.get("flow") === "authorizationCode" ||
          oauth2.auth.schema.get("flow") === "authorization_code"
        ) && !oauth2.auth.code) {
            if (!isValid) {
                oauth2.errCb({
                    authId: oauth2.auth.name,
                    source: "auth",
                    level: "warning",
                    message: "Authorization may be unsafe, passed state was changed in server. The passed state wasn't returned from auth server."
                });
            }

            if (qp.code) {
                delete oauth2.state;
                oauth2.auth.code = qp.code;
                oauth2.callback({auth: oauth2.auth, redirectUrl: redirectUrl});
            } else {
                let oauthErrorMsg;
                if (qp.error) {
                    oauthErrorMsg = "["+qp.error+"]: " +
                        (qp.error_description ? qp.error_description+ ". " : "no accessCode received from the server. ") +
                        (qp.error_uri ? "More info: "+qp.error_uri : "");
                }

                oauth2.errCb({
                    authId: oauth2.auth.name,
                    source: "auth",
                    level: "error",
                    message: oauthErrorMsg || "[Authorization failed]: no accessCode received from the server."
                });
            }
        } else {
            oauth2.callback({auth: oauth2.auth, token: qp, isValid: isValid, redirectUrl: redirectUrl});
        }
        window.close();
    }

    if (document.readyState !== 'loading') {
        run();
    } else {
        document.addEventListener('DOMContentLoaded', function () {
            run();
        });
    }
</script>
</body>
</html>

 

Request      

GET api/oauth2-callback

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/auth/login

Example request:
curl --request POST \
    "http://localhost/api/auth/login" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"qkunze@example.com\",
    \"password\": \"consequatur\",
    \"system\": 11613.31890586
}"
const url = new URL(
    "http://localhost/api/auth/login"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "qkunze@example.com",
    "password": "consequatur",
    "system": 11613.31890586
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/auth/login

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

email   string   

Must be a valid email address. Example: qkunze@example.com

password   string   

Example: consequatur

system   number   

Example: 11613.31890586

GET api/auth/logout

Example request:
curl --request GET \
    --get "http://localhost/api/auth/logout" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/auth/logout"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 59
access-control-allow-origin: *
 

{
    "data": {
        "message": "Successfully logged out"
    }
}
 

Request      

GET api/auth/logout

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/auth/me

Example request:
curl --request GET \
    --get "http://localhost/api/auth/me" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/auth/me"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/auth/me

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/clientes

Example request:
curl --request GET \
    --get "http://localhost/api/clientes" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/clientes"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/clientes

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/clientes/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/clientes/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/clientes/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/clientes/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the cliente. Example: consequatur

POST api/clientes

Example request:
curl --request POST \
    "http://localhost/api/clientes" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/clientes"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/clientes

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/clientes/{id}

Example request:
curl --request PUT \
    "http://localhost/api/clientes/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/clientes/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/clientes/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the cliente. Example: consequatur

DELETE api/clientes/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/clientes/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/clientes/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/clientes/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the cliente. Example: consequatur

GET api/fornecedores

Example request:
curl --request GET \
    --get "http://localhost/api/fornecedores" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/fornecedores"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/fornecedores

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/fornecedores/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/fornecedores/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/fornecedores/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/fornecedores/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the fornecedore. Example: consequatur

POST api/fornecedores

Example request:
curl --request POST \
    "http://localhost/api/fornecedores" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/fornecedores"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/fornecedores

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/fornecedores/{id}

Example request:
curl --request PUT \
    "http://localhost/api/fornecedores/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/fornecedores/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/fornecedores/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the fornecedore. Example: consequatur

DELETE api/fornecedores/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/fornecedores/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/fornecedores/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/fornecedores/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the fornecedore. Example: consequatur

GET api/colaboradores

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/colaboradores/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradore. Example: consequatur

POST api/colaboradores

Example request:
curl --request POST \
    "http://localhost/api/colaboradores" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/colaboradores

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/colaboradores/{id}

Example request:
curl --request PUT \
    "http://localhost/api/colaboradores/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/colaboradores/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradore. Example: consequatur

DELETE api/colaboradores/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/colaboradores/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/colaboradores/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradore. Example: consequatur

GET api/colaboradores-asosid/{idcolaborador}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-asosid/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-asosid/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-asosid/{idcolaborador}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

idcolaborador   string   

Example: consequatur

GET api/colaboradores-asos

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-asos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-asos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-asos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/colaboradores-asos/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-asos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-asos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-asos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores aso. Example: consequatur

POST api/colaboradores-asos

Example request:
curl --request POST \
    "http://localhost/api/colaboradores-asos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-asos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/colaboradores-asos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/colaboradores-asos/{id}

Example request:
curl --request PUT \
    "http://localhost/api/colaboradores-asos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-asos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/colaboradores-asos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores aso. Example: consequatur

DELETE api/colaboradores-asos/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/colaboradores-asos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-asos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/colaboradores-asos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores aso. Example: consequatur

GET api/colaboradores-asosidaso/{aso}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-asosidaso/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-asosidaso/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-asosidaso/{aso}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

aso   string   

Example: consequatur

GET api/colaboradores-bancosid/{idcolaborador}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-bancosid/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-bancosid/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-bancosid/{idcolaborador}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

idcolaborador   string   

Example: consequatur

GET api/colaboradores-bancos

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-bancos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-bancos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-bancos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/colaboradores-bancos/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-bancos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-bancos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-bancos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores banco. Example: consequatur

POST api/colaboradores-bancos

Example request:
curl --request POST \
    "http://localhost/api/colaboradores-bancos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-bancos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/colaboradores-bancos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/colaboradores-bancos/{id}

Example request:
curl --request PUT \
    "http://localhost/api/colaboradores-bancos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-bancos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/colaboradores-bancos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores banco. Example: consequatur

DELETE api/colaboradores-bancos/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/colaboradores-bancos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-bancos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/colaboradores-bancos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores banco. Example: consequatur

GET api/colaboradores-bancosidbanco/{banco}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-bancosidbanco/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-bancosidbanco/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-bancosidbanco/{banco}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

banco   string   

Example: consequatur

GET api/colaboradores-cnhsid/{idcolaborador}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-cnhsid/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-cnhsid/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-cnhsid/{idcolaborador}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

idcolaborador   string   

Example: consequatur

GET api/colaboradores-cnhs

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-cnhs" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-cnhs"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-cnhs

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/colaboradores-cnhs/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-cnhs/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-cnhs/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-cnhs/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores cnh. Example: consequatur

POST api/colaboradores-cnhs

Example request:
curl --request POST \
    "http://localhost/api/colaboradores-cnhs" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-cnhs"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/colaboradores-cnhs

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/colaboradores-cnhs/{id}

Example request:
curl --request PUT \
    "http://localhost/api/colaboradores-cnhs/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-cnhs/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/colaboradores-cnhs/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores cnh. Example: consequatur

DELETE api/colaboradores-cnhs/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/colaboradores-cnhs/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-cnhs/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/colaboradores-cnhs/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores cnh. Example: consequatur

GET api/colaboradores-cnhsidcnh/{cnh}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-cnhsidcnh/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-cnhsidcnh/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-cnhsidcnh/{cnh}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

cnh   string   

Example: consequatur

POST api/colaboradores-cnhs-anexo/{id}/{id_colaborador}

Example request:
curl --request POST \
    "http://localhost/api/colaboradores-cnhs-anexo/consequatur/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-cnhs-anexo/consequatur/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/colaboradores-cnhs-anexo/{id}/{id_colaborador}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores cnhs anexo. Example: consequatur

id_colaborador   string   

Example: consequatur

GET api/colaboradores-contratosid/{idcolaborador}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-contratosid/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-contratosid/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-contratosid/{idcolaborador}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

idcolaborador   string   

Example: consequatur

GET api/colaboradores-contratos

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-contratos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-contratos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-contratos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/colaboradores-contratos/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-contratos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-contratos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-contratos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores contrato. Example: consequatur

POST api/colaboradores-contratos

Example request:
curl --request POST \
    "http://localhost/api/colaboradores-contratos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-contratos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/colaboradores-contratos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/colaboradores-contratos/{id}

Example request:
curl --request PUT \
    "http://localhost/api/colaboradores-contratos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-contratos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/colaboradores-contratos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores contrato. Example: consequatur

DELETE api/colaboradores-contratos/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/colaboradores-contratos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-contratos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/colaboradores-contratos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores contrato. Example: consequatur

GET api/colaboradores-contratosidcontrato/{contrato}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-contratosidcontrato/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-contratosidcontrato/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-contratosidcontrato/{contrato}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

contrato   string   

Example: consequatur

GET api/colaboradores-dependentesid/{idcolaborador}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-dependentesid/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-dependentesid/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-dependentesid/{idcolaborador}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

idcolaborador   string   

Example: consequatur

GET api/colaboradores-dependentes

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-dependentes" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-dependentes"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-dependentes

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/colaboradores-dependentes/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-dependentes/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-dependentes/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-dependentes/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores dependente. Example: consequatur

POST api/colaboradores-dependentes

Example request:
curl --request POST \
    "http://localhost/api/colaboradores-dependentes" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-dependentes"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/colaboradores-dependentes

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/colaboradores-dependentes/{id}

Example request:
curl --request PUT \
    "http://localhost/api/colaboradores-dependentes/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-dependentes/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/colaboradores-dependentes/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores dependente. Example: consequatur

DELETE api/colaboradores-dependentes/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/colaboradores-dependentes/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-dependentes/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/colaboradores-dependentes/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores dependente. Example: consequatur

GET api/colaboradores-dependentesiddependente/{dependente}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-dependentesiddependente/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-dependentesiddependente/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-dependentesiddependente/{dependente}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

dependente   string   

Example: consequatur

GET api/colaboradores-escalasid/{idcolaborador}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-escalasid/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-escalasid/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-escalasid/{idcolaborador}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

idcolaborador   string   

Example: consequatur

GET api/colaboradores-escalas

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-escalas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-escalas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-escalas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/colaboradores-escalas/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-escalas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-escalas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-escalas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores escala. Example: consequatur

POST api/colaboradores-escalas

Example request:
curl --request POST \
    "http://localhost/api/colaboradores-escalas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-escalas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/colaboradores-escalas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/colaboradores-escalas/{id}

Example request:
curl --request PUT \
    "http://localhost/api/colaboradores-escalas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-escalas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/colaboradores-escalas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores escala. Example: consequatur

DELETE api/colaboradores-escalas/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/colaboradores-escalas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-escalas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/colaboradores-escalas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores escala. Example: consequatur

GET api/colaboradores-escalasidescala/{escala}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-escalasidescala/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-escalasidescala/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-escalasidescala/{escala}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

escala   string   

Example: consequatur

GET api/colaboradores-mopsid/{idcolaborador}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-mopsid/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-mopsid/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-mopsid/{idcolaborador}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

idcolaborador   string   

Example: consequatur

GET api/colaboradores-mops

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-mops" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-mops"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-mops

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/colaboradores-mops/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-mops/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-mops/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-mops/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores mop. Example: consequatur

POST api/colaboradores-mops

Example request:
curl --request POST \
    "http://localhost/api/colaboradores-mops" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-mops"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/colaboradores-mops

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/colaboradores-mops/{id}

Example request:
curl --request PUT \
    "http://localhost/api/colaboradores-mops/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-mops/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/colaboradores-mops/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores mop. Example: consequatur

DELETE api/colaboradores-mops/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/colaboradores-mops/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-mops/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/colaboradores-mops/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores mop. Example: consequatur

GET api/colaboradores-mopsidmop/{mop}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-mopsidmop/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-mopsidmop/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-mopsidmop/{mop}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

mop   string   

Example: consequatur

GET api/colaboradores-multasid/{idcolaborador}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-multasid/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-multasid/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-multasid/{idcolaborador}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

idcolaborador   string   

Example: consequatur

GET api/colaboradores-multas

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-multas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-multas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-multas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/colaboradores-multas/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-multas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-multas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-multas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores multa. Example: consequatur

POST api/colaboradores-multas

Example request:
curl --request POST \
    "http://localhost/api/colaboradores-multas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-multas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/colaboradores-multas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/colaboradores-multas/{id}

Example request:
curl --request PUT \
    "http://localhost/api/colaboradores-multas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-multas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/colaboradores-multas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores multa. Example: consequatur

DELETE api/colaboradores-multas/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/colaboradores-multas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-multas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/colaboradores-multas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores multa. Example: consequatur

GET api/colaboradores-multasidmulta/{pagamento}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-multasidmulta/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-multasidmulta/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-multasidmulta/{pagamento}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

pagamento   string   

Example: consequatur

GET api/colaboradores-pagamentosid/{idcolaborador}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-pagamentosid/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-pagamentosid/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-pagamentosid/{idcolaborador}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

idcolaborador   string   

Example: consequatur

GET api/colaboradores-pagamentos

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-pagamentos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-pagamentos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-pagamentos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/colaboradores-pagamentos/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-pagamentos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-pagamentos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-pagamentos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores pagamento. Example: consequatur

POST api/colaboradores-pagamentos

Example request:
curl --request POST \
    "http://localhost/api/colaboradores-pagamentos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-pagamentos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/colaboradores-pagamentos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/colaboradores-pagamentos/{id}

Example request:
curl --request PUT \
    "http://localhost/api/colaboradores-pagamentos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-pagamentos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/colaboradores-pagamentos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores pagamento. Example: consequatur

DELETE api/colaboradores-pagamentos/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/colaboradores-pagamentos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-pagamentos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/colaboradores-pagamentos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores pagamento. Example: consequatur

GET api/colaboradores-pagamentosidpagamento/{pagamento}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-pagamentosidpagamento/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-pagamentosidpagamento/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-pagamentosidpagamento/{pagamento}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

pagamento   string   

Example: consequatur

GET api/colaboradores-treinamentosid/{idcolaborador}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-treinamentosid/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-treinamentosid/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-treinamentosid/{idcolaborador}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

idcolaborador   string   

Example: consequatur

GET api/colaboradores-treinamentos

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-treinamentos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-treinamentos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-treinamentos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/colaboradores-treinamentos/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-treinamentos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-treinamentos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-treinamentos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores treinamento. Example: consequatur

POST api/colaboradores-treinamentos

Example request:
curl --request POST \
    "http://localhost/api/colaboradores-treinamentos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-treinamentos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/colaboradores-treinamentos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/colaboradores-treinamentos/{id}

Example request:
curl --request PUT \
    "http://localhost/api/colaboradores-treinamentos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-treinamentos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/colaboradores-treinamentos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores treinamento. Example: consequatur

DELETE api/colaboradores-treinamentos/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/colaboradores-treinamentos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-treinamentos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/colaboradores-treinamentos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the colaboradores treinamento. Example: consequatur

GET api/colaboradores-treinamentosidtreinamento/{treinamento}

Example request:
curl --request GET \
    --get "http://localhost/api/colaboradores-treinamentosidtreinamento/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/colaboradores-treinamentosidtreinamento/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/colaboradores-treinamentosidtreinamento/{treinamento}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

treinamento   string   

Example: consequatur

GET api/anexocolaborador/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/anexocolaborador/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anexocolaborador/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 58
access-control-allow-origin: *
 

{
    "data": [],
    "total": 0,
    "searchTerm": null
}
 

Request      

GET api/anexocolaborador/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the anexocolaborador. Example: consequatur

GET api/anexocolaborador/{id}/visualizar

Example request:
curl --request GET \
    --get "http://localhost/api/anexocolaborador/8/visualizar" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anexocolaborador/8/visualizar"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 57
access-control-allow-origin: *
 

{
    "message": ""
}
 

Request      

GET api/anexocolaborador/{id}/visualizar

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the anexocolaborador. Example: 8

POST api/anexocolaboradorupload/{id}

Example request:
curl --request POST \
    "http://localhost/api/anexocolaboradorupload/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anexocolaboradorupload/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/anexocolaboradorupload/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the anexocolaboradorupload. Example: consequatur

PUT api/anexocolaborador/{id}

Example request:
curl --request PUT \
    "http://localhost/api/anexocolaborador/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anexocolaborador/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/anexocolaborador/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the anexocolaborador. Example: consequatur

DELETE api/anexocolaborador/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/anexocolaborador/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anexocolaborador/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/anexocolaborador/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the anexocolaborador. Example: consequatur

GET api/anexocolaboradorpdf/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/anexocolaboradorpdf/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anexocolaboradorpdf/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 56
access-control-allow-origin: *
 

{
    "message": "Arquivo não existe"
}
 

Request      

GET api/anexocolaboradorpdf/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the anexocolaboradorpdf. Example: consequatur

GET api/anexocolaboradorpdftipo/{id}/{tipo}

Example request:
curl --request GET \
    --get "http://localhost/api/anexocolaboradorpdftipo/consequatur/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anexocolaboradorpdftipo/consequatur/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (500):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 55
access-control-allow-origin: *
 

{
    "message": "Server Error"
}
 

Request      

GET api/anexocolaboradorpdftipo/{id}/{tipo}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the anexocolaboradorpdftipo. Example: consequatur

tipo   string   

Example: consequatur

POST api/fotocolaboradorupload/{id}

Example request:
curl --request POST \
    "http://localhost/api/fotocolaboradorupload/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/fotocolaboradorupload/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/fotocolaboradorupload/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the fotocolaboradorupload. Example: consequatur

GET api/cidades

Example request:
curl --request GET \
    --get "http://localhost/api/cidades" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/cidades"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/cidades

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/cidades/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/cidades/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/cidades/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/cidades/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the cidade. Example: consequatur

GET api/cb_cidades

Example request:
curl --request GET \
    --get "http://localhost/api/cb_cidades" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/cb_cidades"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/cb_cidades

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/cidades

Example request:
curl --request POST \
    "http://localhost/api/cidades" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/cidades"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/cidades

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/cidades/{id}

Example request:
curl --request PUT \
    "http://localhost/api/cidades/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/cidades/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/cidades/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the cidade. Example: consequatur

GET api/subcategorias

Example request:
curl --request GET \
    --get "http://localhost/api/subcategorias" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/subcategorias"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/subcategorias

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/cb_subcategorias

Example request:
curl --request GET \
    --get "http://localhost/api/cb_subcategorias" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/cb_subcategorias"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/cb_subcategorias

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/subcategorias

Example request:
curl --request POST \
    "http://localhost/api/subcategorias" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/subcategorias"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/subcategorias

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/subcategorias/{id}

Example request:
curl --request PUT \
    "http://localhost/api/subcategorias/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/subcategorias/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/subcategorias/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the subcategoria. Example: consequatur

GET api/veiculos

Example request:
curl --request GET \
    --get "http://localhost/api/veiculos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/veiculos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/veiculos/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/veiculos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/veiculos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the veiculo. Example: consequatur

POST api/veiculos

Example request:
curl --request POST \
    "http://localhost/api/veiculos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/veiculos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/veiculos/{id}

Example request:
curl --request PUT \
    "http://localhost/api/veiculos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/veiculos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the veiculo. Example: consequatur

GET api/reboquesveiculo

Example request:
curl --request GET \
    --get "http://localhost/api/reboquesveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/reboquesveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/reboquesveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/reboquesveiculo/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/reboquesveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/reboquesveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/reboquesveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the reboquesveiculo. Example: consequatur

POST api/reboquesveiculo

Example request:
curl --request POST \
    "http://localhost/api/reboquesveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/reboquesveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/reboquesveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/reboquesveiculo/{id}

Example request:
curl --request PUT \
    "http://localhost/api/reboquesveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/reboquesveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/reboquesveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the reboquesveiculo. Example: consequatur

GET api/clientefones

Example request:
curl --request GET \
    --get "http://localhost/api/clientefones" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/clientefones"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 54
access-control-allow-origin: *
 

[
    {
        "id": 1,
        "idcliente": 1257,
        "fone": "98898989899",
        "contato": "ELDER",
        "cargo": null,
        "zap": 1,
        "created_at": "2024-04-20T15:00:30.000000Z",
        "updated_at": "2024-04-20T15:00:30.000000Z",
        "deleted_at": null
    },
    {
        "id": 2,
        "idcliente": 1258,
        "fone": null,
        "contato": null,
        "cargo": null,
        "zap": 0,
        "created_at": "2024-04-23T16:13:30.000000Z",
        "updated_at": "2024-04-23T16:13:30.000000Z",
        "deleted_at": null
    },
    {
        "id": 5,
        "idcliente": 1259,
        "fone": "98988194405",
        "contato": "AC",
        "cargo": null,
        "zap": 1,
        "created_at": "2024-05-02T17:48:52.000000Z",
        "updated_at": "2024-05-02T17:48:52.000000Z",
        "deleted_at": null
    },
    {
        "id": 8,
        "idcliente": 1293,
        "fone": null,
        "contato": null,
        "cargo": null,
        "zap": 0,
        "created_at": "2025-03-25T13:42:01.000000Z",
        "updated_at": "2025-03-25T13:42:01.000000Z",
        "deleted_at": null
    },
    {
        "id": 9,
        "idcliente": 1295,
        "fone": null,
        "contato": null,
        "cargo": null,
        "zap": 0,
        "created_at": "2025-03-25T17:36:34.000000Z",
        "updated_at": "2025-03-25T17:36:34.000000Z",
        "deleted_at": null
    },
    {
        "id": 10,
        "idcliente": 1302,
        "fone": null,
        "contato": null,
        "cargo": null,
        "zap": 0,
        "created_at": "2025-03-27T16:54:03.000000Z",
        "updated_at": "2025-03-27T16:54:03.000000Z",
        "deleted_at": null
    },
    {
        "id": 12,
        "idcliente": 1285,
        "fone": null,
        "contato": null,
        "cargo": null,
        "zap": 0,
        "created_at": "2025-04-01T12:46:29.000000Z",
        "updated_at": "2025-04-01T12:46:29.000000Z",
        "deleted_at": null
    },
    {
        "id": 13,
        "idcliente": 1307,
        "fone": null,
        "contato": null,
        "cargo": null,
        "zap": null,
        "created_at": "2025-05-12T13:31:56.000000Z",
        "updated_at": "2025-05-12T13:31:56.000000Z",
        "deleted_at": null
    },
    {
        "id": 14,
        "idcliente": 1307,
        "fone": null,
        "contato": null,
        "cargo": null,
        "zap": null,
        "created_at": "2025-05-12T13:34:59.000000Z",
        "updated_at": "2025-05-12T13:34:59.000000Z",
        "deleted_at": null
    },
    {
        "id": 20,
        "idcliente": 1256,
        "fone": null,
        "contato": null,
        "cargo": null,
        "zap": 0,
        "created_at": "2025-05-20T15:31:13.000000Z",
        "updated_at": "2025-05-20T15:31:13.000000Z",
        "deleted_at": null
    },
    {
        "id": 21,
        "idcliente": 1256,
        "fone": "98987878788",
        "contato": "teste",
        "cargo": null,
        "zap": 1,
        "created_at": "2025-05-20T15:31:14.000000Z",
        "updated_at": "2025-05-20T15:31:14.000000Z",
        "deleted_at": null
    },
    {
        "id": 22,
        "idcliente": 1256,
        "fone": null,
        "contato": null,
        "cargo": null,
        "zap": 0,
        "created_at": "2025-05-20T15:31:14.000000Z",
        "updated_at": "2025-05-20T15:31:14.000000Z",
        "deleted_at": null
    }
]
 

Request      

GET api/clientefones

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/clientefones/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/clientefones/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/clientefones/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 53
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Clientefones] consequatur"
}
 

Request      

GET api/clientefones/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the clientefone. Example: consequatur

POST api/clientefones

Example request:
curl --request POST \
    "http://localhost/api/clientefones" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/clientefones"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/clientefones

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/clientefones/{id}

Example request:
curl --request PUT \
    "http://localhost/api/clientefones/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/clientefones/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/clientefones/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the clientefone. Example: consequatur

DELETE api/clientefones/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/clientefones/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/clientefones/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/clientefones/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the clientefone. Example: consequatur

GET api/clientefonesid/{idcliente}

Example request:
curl --request GET \
    --get "http://localhost/api/clientefonesid/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/clientefonesid/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 52
access-control-allow-origin: *
 

[]
 

Request      

GET api/clientefonesid/{idcliente}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

idcliente   string   

Example: consequatur

GET api/clientefonesidfone/{fone}

Example request:
curl --request GET \
    --get "http://localhost/api/clientefonesidfone/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/clientefonesidfone/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 51
access-control-allow-origin: *
 

[]
 

Request      

GET api/clientefonesidfone/{fone}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

fone   string   

Example: consequatur

GET api/fornecedorfones

Example request:
curl --request GET \
    --get "http://localhost/api/fornecedorfones" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/fornecedorfones"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 50
access-control-allow-origin: *
 

[
    {
        "id": 1,
        "idfornecedor": null,
        "fone": null,
        "contato": null,
        "zap": 0,
        "created_at": "2025-01-24T23:28:31.000000Z",
        "updated_at": "2025-01-24T23:28:31.000000Z",
        "deleted_at": null
    }
]
 

Request      

GET api/fornecedorfones

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/fornecedorfones/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/fornecedorfones/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/fornecedorfones/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 49
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Fornecedorfones] consequatur"
}
 

Request      

GET api/fornecedorfones/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the fornecedorfone. Example: consequatur

POST api/fornecedorfones

Example request:
curl --request POST \
    "http://localhost/api/fornecedorfones" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/fornecedorfones"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/fornecedorfones

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/fornecedorfones/{id}

Example request:
curl --request PUT \
    "http://localhost/api/fornecedorfones/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/fornecedorfones/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/fornecedorfones/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the fornecedorfone. Example: consequatur

DELETE api/fornecedorfones/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/fornecedorfones/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/fornecedorfones/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/fornecedorfones/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the fornecedorfone. Example: consequatur

GET api/fornecedorfonesid/{idcliente}

Example request:
curl --request GET \
    --get "http://localhost/api/fornecedorfonesid/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/fornecedorfonesid/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 48
access-control-allow-origin: *
 

[]
 

Request      

GET api/fornecedorfonesid/{idcliente}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

idcliente   string   

Example: consequatur

GET api/fornecdorfonesidfone/{fone}

Example request:
curl --request GET \
    --get "http://localhost/api/fornecdorfonesidfone/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/fornecdorfonesidfone/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 47
access-control-allow-origin: *
 

[]
 

Request      

GET api/fornecdorfonesidfone/{fone}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

fone   string   

Example: consequatur

GET api/empresaperfil

Example request:
curl --request GET \
    --get "http://localhost/api/empresaperfil" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/empresaperfil"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/empresaperfil

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/empresaperfil

Example request:
curl --request POST \
    "http://localhost/api/empresaperfil" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"missao\": \"vmqeopfuudtdsufvyvddq\",
    \"visao\": \"amniihfqcoynlazghdtqt\",
    \"valores\": \"qxbajwbpilpmufinllwlo\",
    \"objetivos\": \"auydlsmsjuryvojcybzvr\",
    \"razaosocial\": \"byickznkygloigmkwxphl\",
    \"fantasia\": \"vazjrcnfbaqywuxhgjjmz\",
    \"email\": \"jullrich@example.net\",
    \"cnpj\": \"bqouzswiwxtrkim\",
    \"ie\": \"fcatbxspzmrazsroy\",
    \"im\": \"jpxmqesedyghenqco\",
    \"telefone\": \"pwvownkbamlnf\",
    \"celular\": \"ngefbeilfzsyu\",
    \"whatsapp\": \"xoezbdtabptcy\",
    \"endereco\": \"yerevrljcbwkthjnescws\",
    \"complemento\": \"estcouxpqsydkigioyoyp\",
    \"bairro\": \"rjkfdjsneawgaavuiwlez\",
    \"cep\": \"lcraoooxr\",
    \"cidade\": \"rjhbduowtbaqrrtgxiuvu\",
    \"site\": \"jtzcirplnfqsaymxpayeb\",
    \"facebook\": \"lqozckazplqjijwkuzgpj\",
    \"instagram\": \"fumffsmqnmbekhsobzoqi\"
}"
const url = new URL(
    "http://localhost/api/empresaperfil"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "missao": "vmqeopfuudtdsufvyvddq",
    "visao": "amniihfqcoynlazghdtqt",
    "valores": "qxbajwbpilpmufinllwlo",
    "objetivos": "auydlsmsjuryvojcybzvr",
    "razaosocial": "byickznkygloigmkwxphl",
    "fantasia": "vazjrcnfbaqywuxhgjjmz",
    "email": "jullrich@example.net",
    "cnpj": "bqouzswiwxtrkim",
    "ie": "fcatbxspzmrazsroy",
    "im": "jpxmqesedyghenqco",
    "telefone": "pwvownkbamlnf",
    "celular": "ngefbeilfzsyu",
    "whatsapp": "xoezbdtabptcy",
    "endereco": "yerevrljcbwkthjnescws",
    "complemento": "estcouxpqsydkigioyoyp",
    "bairro": "rjkfdjsneawgaavuiwlez",
    "cep": "lcraoooxr",
    "cidade": "rjhbduowtbaqrrtgxiuvu",
    "site": "jtzcirplnfqsaymxpayeb",
    "facebook": "lqozckazplqjijwkuzgpj",
    "instagram": "fumffsmqnmbekhsobzoqi"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/empresaperfil

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

missao   string  optional  

Must not be greater than 255 characters. Example: vmqeopfuudtdsufvyvddq

visao   string  optional  

Must not be greater than 255 characters. Example: amniihfqcoynlazghdtqt

valores   string  optional  

Must not be greater than 255 characters. Example: qxbajwbpilpmufinllwlo

objetivos   string  optional  

Must not be greater than 255 characters. Example: auydlsmsjuryvojcybzvr

razaosocial   string   

Must not be greater than 255 characters. Example: byickznkygloigmkwxphl

fantasia   string   

Must not be greater than 255 characters. Example: vazjrcnfbaqywuxhgjjmz

email   string  optional  

Must be a valid email address. Must not be greater than 255 characters. Example: jullrich@example.net

cnpj   string   

Must not be greater than 18 characters. Example: bqouzswiwxtrkim

ie   string  optional  

Must not be greater than 20 characters. Example: fcatbxspzmrazsroy

im   string  optional  

Must not be greater than 20 characters. Example: jpxmqesedyghenqco

telefone   string  optional  

Must not be greater than 15 characters. Example: pwvownkbamlnf

celular   string  optional  

Must not be greater than 15 characters. Example: ngefbeilfzsyu

whatsapp   string  optional  

Must not be greater than 15 characters. Example: xoezbdtabptcy

endereco   string  optional  

Must not be greater than 255 characters. Example: yerevrljcbwkthjnescws

complemento   string  optional  

Must not be greater than 255 characters. Example: estcouxpqsydkigioyoyp

bairro   string  optional  

Must not be greater than 255 characters. Example: rjkfdjsneawgaavuiwlez

cep   string  optional  

Must not be greater than 10 characters. Example: lcraoooxr

cidade   string  optional  

Must not be greater than 255 characters. Example: rjhbduowtbaqrrtgxiuvu

site   string  optional  

Must be a valid URL. Must not be greater than 255 characters. Example: jtzcirplnfqsaymxpayeb

facebook   string  optional  

Must be a valid URL. Must not be greater than 255 characters. Example: lqozckazplqjijwkuzgpj

instagram   string  optional  

Must be a valid URL. Must not be greater than 255 characters. Example: fumffsmqnmbekhsobzoqi

GET api/empresaperfil/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/empresaperfil/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/empresaperfil/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/empresaperfil/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the empresaperfil. Example: consequatur

PUT api/empresaperfil/{id}

Example request:
curl --request PUT \
    "http://localhost/api/empresaperfil/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/empresaperfil/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/empresaperfil/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the empresaperfil. Example: consequatur

GET api/anexoempresa

Example request:
curl --request GET \
    --get "http://localhost/api/anexoempresa" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anexoempresa"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 46
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 6,
            "nome": "PROPOSTA COTAÇÃO - R C TRANSPORTES.pdf"
        },
        {
            "id": 7,
            "nome": "PROPOSTA COTAÇÃO - R C TRANSPORTES - RECOLHIMENTO DE VASILHAMES.pdf"
        },
        {
            "id": 8,
            "nome": "Agência.pdf"
        },
        {
            "id": 12,
            "nome": "TESTE.pdf"
        },
        {
            "id": 13,
            "nome": "Orcamento_4477.pdf"
        }
    ],
    "total": 5,
    "per_page": 10,
    "current_page": 1,
    "searchTerm": null
}
 

Request      

GET api/anexoempresa

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/anexoempresa/{id}/visualizar

Example request:
curl --request GET \
    --get "http://localhost/api/anexoempresa/6/visualizar" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anexoempresa/6/visualizar"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 45
access-control-allow-origin: *
 

{
    "message": ""
}
 

Request      

GET api/anexoempresa/{id}/visualizar

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the anexoempresa. Example: 6

POST api/anexoempresaupload

Example request:
curl --request POST \
    "http://localhost/api/anexoempresaupload" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anexoempresaupload"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/anexoempresaupload

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/anexoempresa/{id}

Example request:
curl --request PUT \
    "http://localhost/api/anexoempresa/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anexoempresa/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/anexoempresa/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the anexoempresa. Example: consequatur

DELETE api/anexoempresa/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/anexoempresa/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anexoempresa/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/anexoempresa/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the anexoempresa. Example: consequatur

GET api/anexoempresapdf/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/anexoempresapdf/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anexoempresapdf/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 44
access-control-allow-origin: *
 

{
    "message": "Arquivo nao encontrado"
}
 

Request      

GET api/anexoempresapdf/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the anexoempresapdf. Example: consequatur

GET api/categoriasveiculo

Example request:
curl --request GET \
    --get "http://localhost/api/categoriasveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/categoriasveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 43
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 1,
            "descricao": "FROTA",
            "ativo": 1,
            "created_at": "2024-05-11T18:05:38.000000Z",
            "updated_at": "2024-05-11T18:05:38.000000Z",
            "deleted_at": null
        },
        {
            "id": 2,
            "descricao": "PARTICULAR",
            "ativo": 1,
            "created_at": "2024-05-11T18:05:44.000000Z",
            "updated_at": "2024-05-15T16:37:41.000000Z",
            "deleted_at": null
        }
    ],
    "total": 2,
    "searchTerm": null
}
 

Request      

GET api/categoriasveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/categoriasveiculo/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/categoriasveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/categoriasveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 42
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Categoriaveiculo] consequatur"
}
 

Request      

GET api/categoriasveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the categoriasveiculo. Example: consequatur

POST api/categoriasveiculo

Example request:
curl --request POST \
    "http://localhost/api/categoriasveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/categoriasveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/categoriasveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/categoriasveiculo/{id}

Example request:
curl --request PUT \
    "http://localhost/api/categoriasveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/categoriasveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/categoriasveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the categoriasveiculo. Example: consequatur

GET api/combustiveisveiculo

Example request:
curl --request GET \
    --get "http://localhost/api/combustiveisveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/combustiveisveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 41
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 9,
            "descricao": "Arla 32",
            "ativo": 1,
            "created_at": "2025-01-17T15:11:58.000000Z",
            "updated_at": "2025-01-17T15:11:58.000000Z",
            "deleted_at": null
        },
        {
            "id": 4,
            "descricao": "DIESEL S10",
            "ativo": 1,
            "created_at": "2024-05-03T03:51:03.000000Z",
            "updated_at": "2024-05-11T18:06:16.000000Z",
            "deleted_at": null
        },
        {
            "id": 6,
            "descricao": "DIESEL S10 ADITIVADO",
            "ativo": 1,
            "created_at": "2024-05-11T18:06:59.000000Z",
            "updated_at": "2024-05-11T18:06:59.000000Z",
            "deleted_at": null
        },
        {
            "id": 2,
            "descricao": "DIESEL S500",
            "ativo": 1,
            "created_at": "2024-05-02T15:32:25.000000Z",
            "updated_at": "2024-05-11T18:06:31.000000Z",
            "deleted_at": null
        },
        {
            "id": 7,
            "descricao": "ETANOL",
            "ativo": 1,
            "created_at": "2024-05-15T16:16:21.000000Z",
            "updated_at": "2024-05-15T16:16:21.000000Z",
            "deleted_at": null
        },
        {
            "id": 10,
            "descricao": "GÁS",
            "ativo": 1,
            "created_at": "2025-01-24T23:42:26.000000Z",
            "updated_at": "2025-01-24T23:42:26.000000Z",
            "deleted_at": null
        },
        {
            "id": 5,
            "descricao": "GASOLINA ADITIVADA",
            "ativo": 1,
            "created_at": "2024-05-11T18:06:47.000000Z",
            "updated_at": "2024-05-11T18:06:47.000000Z",
            "deleted_at": null
        },
        {
            "id": 1,
            "descricao": "GASOLINA COMUM",
            "ativo": 1,
            "created_at": "2024-04-24T22:14:29.000000Z",
            "updated_at": "2024-05-11T18:06:40.000000Z",
            "deleted_at": null
        }
    ],
    "total": 8,
    "searchTerm": null
}
 

Request      

GET api/combustiveisveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/combustiveisveiculo/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/combustiveisveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/combustiveisveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 40
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Combustivelveiculo] consequatur"
}
 

Request      

GET api/combustiveisveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the combustiveisveiculo. Example: consequatur

POST api/combustiveisveiculo

Example request:
curl --request POST \
    "http://localhost/api/combustiveisveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/combustiveisveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/combustiveisveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/combustiveisveiculo/{id}

Example request:
curl --request PUT \
    "http://localhost/api/combustiveisveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/combustiveisveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/combustiveisveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the combustiveisveiculo. Example: consequatur

GET api/valorescombustivel

Example request:
curl --request GET \
    --get "http://localhost/api/valorescombustivel" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/valorescombustivel"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 39
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 2,
            "ativo": 1,
            "created_at": "07/06/2024",
            "updated_at": "2024-06-07 12:57:52.00",
            "deleted_at": null,
            "valor": "5,00",
            "fk_combustivel": 2,
            "combustivel_descricao": "DIESEL S500",
            "fk_fornecedor": 288,
            "fornecedor_nome": "TesTe",
            "fornecedor_fantasia": "TT",
            "fornecedor_cnpj_cpf": "01234567890001",
            "fornecedor_cnpj_cpf_formatado": "01.234.567/8900-01"
        },
        {
            "id": 3,
            "ativo": 1,
            "created_at": "07/06/2024",
            "updated_at": "2024-06-07 12:58:05.00",
            "deleted_at": null,
            "valor": "6,00",
            "fk_combustivel": 1,
            "combustivel_descricao": "GASOLINA COMUM",
            "fk_fornecedor": 288,
            "fornecedor_nome": "TesTe",
            "fornecedor_fantasia": "TT",
            "fornecedor_cnpj_cpf": "01234567890001",
            "fornecedor_cnpj_cpf_formatado": "01.234.567/8900-01"
        },
        {
            "id": 4,
            "ativo": 1,
            "created_at": "07/08/2024",
            "updated_at": "2024-08-07 09:49:53.00",
            "deleted_at": null,
            "valor": "5,74",
            "fk_combustivel": 4,
            "combustivel_descricao": "DIESEL S10",
            "fk_fornecedor": 288,
            "fornecedor_nome": "TesTe",
            "fornecedor_fantasia": "TT",
            "fornecedor_cnpj_cpf": "01234567890001",
            "fornecedor_cnpj_cpf_formatado": "01.234.567/8900-01"
        },
        {
            "id": 10,
            "ativo": 1,
            "created_at": "17/01/2025",
            "updated_at": "2025-01-17 12:11:29.00",
            "deleted_at": null,
            "valor": "5,94",
            "fk_combustivel": 4,
            "combustivel_descricao": "DIESEL S10",
            "fk_fornecedor": 289,
            "fornecedor_nome": "P LIMA COMBUSTIVEIS LTDA 1",
            "fornecedor_fantasia": "POSTO NORDESTÃO",
            "fornecedor_cnpj_cpf": "21365409000181",
            "fornecedor_cnpj_cpf_formatado": "21.365.409/0001-81"
        },
        {
            "id": 11,
            "ativo": 1,
            "created_at": "17/01/2025",
            "updated_at": "2025-01-17 12:12:14.00",
            "deleted_at": null,
            "valor": "3,50",
            "fk_combustivel": 9,
            "combustivel_descricao": "Arla 32",
            "fk_fornecedor": 290,
            "fornecedor_nome": "P LIMA COMBUSTIVEIS LTDA",
            "fornecedor_fantasia": "POSTO NORDESTAO",
            "fornecedor_cnpj_cpf": "21365409000181",
            "fornecedor_cnpj_cpf_formatado": "21.365.409/0001-81"
        }
    ],
    "total": 5,
    "searchTerm": null
}
 

Request      

GET api/valorescombustivel

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/valorescombustivel/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/valorescombustivel/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/valorescombustivel/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 38
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Valorcombustivel] consequatur"
}
 

Request      

GET api/valorescombustivel/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the valorescombustivel. Example: consequatur

POST api/valorescombustivel

Example request:
curl --request POST \
    "http://localhost/api/valorescombustivel" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/valorescombustivel"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/valorescombustivel

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/valorescombustivel/{id}

Example request:
curl --request PUT \
    "http://localhost/api/valorescombustivel/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/valorescombustivel/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/valorescombustivel/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the valorescombustivel. Example: consequatur

GET api/marcasveiculo

Example request:
curl --request GET \
    --get "http://localhost/api/marcasveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/marcasveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 37
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 17,
            "descricao": "CROMOCAR",
            "ativo": 1,
            "created_at": "2024-09-19T18:11:09.000000Z",
            "updated_at": "2024-09-19T18:11:09.000000Z",
            "deleted_at": null
        },
        {
            "id": 5,
            "descricao": "DAF",
            "ativo": 1,
            "created_at": "2024-05-11T18:00:43.000000Z",
            "updated_at": "2024-05-11T18:00:43.000000Z",
            "deleted_at": null
        },
        {
            "id": 2,
            "descricao": "FIAT",
            "ativo": 1,
            "created_at": "2024-04-24T22:13:59.000000Z",
            "updated_at": "2024-05-11T18:00:26.000000Z",
            "deleted_at": null
        },
        {
            "id": 13,
            "descricao": "GUERRA",
            "ativo": 1,
            "created_at": "2024-09-19T18:09:50.000000Z",
            "updated_at": "2024-09-19T18:10:00.000000Z",
            "deleted_at": null
        },
        {
            "id": 16,
            "descricao": "LIBRELATO",
            "ativo": 1,
            "created_at": "2024-09-19T18:10:50.000000Z",
            "updated_at": "2024-09-19T18:10:50.000000Z",
            "deleted_at": null
        },
        {
            "id": 7,
            "descricao": "MERCEDES BENZ",
            "ativo": 1,
            "created_at": "2024-05-11T18:00:56.000000Z",
            "updated_at": "2024-05-11T18:00:56.000000Z",
            "deleted_at": null
        },
        {
            "id": 14,
            "descricao": "RANDON",
            "ativo": 1,
            "created_at": "2024-09-19T18:10:16.000000Z",
            "updated_at": "2024-09-19T18:10:16.000000Z",
            "deleted_at": null
        },
        {
            "id": 15,
            "descricao": "RODOFORTSA",
            "ativo": 1,
            "created_at": "2024-09-19T18:10:33.000000Z",
            "updated_at": "2024-09-19T18:10:33.000000Z",
            "deleted_at": null
        },
        {
            "id": 6,
            "descricao": "SCANIA",
            "ativo": 1,
            "created_at": "2024-05-11T18:00:50.000000Z",
            "updated_at": "2024-05-11T18:00:50.000000Z",
            "deleted_at": null
        },
        {
            "id": 8,
            "descricao": "TOYOTA",
            "ativo": 1,
            "created_at": "2024-05-11T18:01:02.000000Z",
            "updated_at": "2024-05-11T18:01:02.000000Z",
            "deleted_at": null
        },
        {
            "id": 12,
            "descricao": "VILACOS",
            "ativo": 1,
            "created_at": "2024-09-19T18:09:28.000000Z",
            "updated_at": "2024-09-19T18:09:28.000000Z",
            "deleted_at": null
        },
        {
            "id": 9,
            "descricao": "VOLKSWAGEN",
            "ativo": 1,
            "created_at": "2024-05-11T18:01:07.000000Z",
            "updated_at": "2024-05-11T18:01:07.000000Z",
            "deleted_at": null
        },
        {
            "id": 10,
            "descricao": "VOLVO",
            "ativo": 1,
            "created_at": "2024-06-07T14:05:05.000000Z",
            "updated_at": "2024-06-07T14:05:20.000000Z",
            "deleted_at": null
        }
    ],
    "total": 13,
    "searchTerm": null
}
 

Request      

GET api/marcasveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/marcasveiculo/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/marcasveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/marcasveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 36
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Marcaveiculo] consequatur"
}
 

Request      

GET api/marcasveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the marcasveiculo. Example: consequatur

POST api/marcasveiculo

Example request:
curl --request POST \
    "http://localhost/api/marcasveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/marcasveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/marcasveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/marcasveiculo/{id}

Example request:
curl --request PUT \
    "http://localhost/api/marcasveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/marcasveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/marcasveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the marcasveiculo. Example: consequatur

GET api/tiposveiculo

Example request:
curl --request GET \
    --get "http://localhost/api/tiposveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/tiposveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 35
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 4,
            "descricao": "BITREM",
            "ativo": 1,
            "created_at": "2024-05-11T18:03:42.000000Z",
            "updated_at": "2024-05-21T03:23:47.000000Z",
            "deleted_at": null,
            "eixos": "3 EIXOS",
            "tipo_pneu": null
        },
        {
            "id": 1,
            "descricao": "CARRETA LS",
            "ativo": 1,
            "created_at": "2024-05-11T18:03:16.000000Z",
            "updated_at": "2024-05-21T03:24:36.000000Z",
            "deleted_at": null,
            "eixos": "3 EIXOS",
            "tipo_pneu": null
        },
        {
            "id": 2,
            "descricao": "CARRETA LS",
            "ativo": 1,
            "created_at": "2024-05-11T18:03:22.000000Z",
            "updated_at": "2024-05-21T03:24:15.000000Z",
            "deleted_at": null,
            "eixos": "4 EIXOS",
            "tipo_pneu": null
        },
        {
            "id": 3,
            "descricao": "CARRETA VANDERLEIA",
            "ativo": 1,
            "created_at": "2024-05-11T18:03:35.000000Z",
            "updated_at": "2024-05-21T03:24:00.000000Z",
            "deleted_at": null,
            "eixos": "3 EIXOS",
            "tipo_pneu": null
        },
        {
            "id": 10,
            "descricao": "CAVALO 6x4",
            "ativo": 1,
            "created_at": "2024-05-11T18:04:26.000000Z",
            "updated_at": "2024-08-07T12:54:29.000000Z",
            "deleted_at": null,
            "eixos": "3 EIXOS",
            "tipo_pneu": null
        },
        {
            "id": 5,
            "descricao": "CAVALO TOCO",
            "ativo": 1,
            "created_at": "2024-05-11T18:03:51.000000Z",
            "updated_at": "2024-05-21T03:25:52.000000Z",
            "deleted_at": null,
            "eixos": "2 EIXOS",
            "tipo_pneu": null
        },
        {
            "id": 6,
            "descricao": "CAVALO TRUCK",
            "ativo": 1,
            "created_at": "2024-05-11T18:03:55.000000Z",
            "updated_at": "2024-05-21T03:23:37.000000Z",
            "deleted_at": null,
            "eixos": "3 EIXOS",
            "tipo_pneu": null
        },
        {
            "id": 9,
            "descricao": "PASSEIO HATCH",
            "ativo": 1,
            "created_at": "2024-05-11T18:04:13.000000Z",
            "updated_at": "2024-05-11T18:04:58.000000Z",
            "deleted_at": null,
            "eixos": "2 EIXOS",
            "tipo_pneu": null
        },
        {
            "id": 11,
            "descricao": "PASSEIO SEDAN",
            "ativo": 1,
            "created_at": "2024-05-11T18:05:05.000000Z",
            "updated_at": "2024-05-21T03:25:35.000000Z",
            "deleted_at": null,
            "eixos": "2 EIXOS",
            "tipo_pneu": null
        },
        {
            "id": 7,
            "descricao": "TOCO",
            "ativo": 1,
            "created_at": "2024-05-11T18:03:59.000000Z",
            "updated_at": "2024-05-21T03:23:22.000000Z",
            "deleted_at": null,
            "eixos": "2 EIXOS",
            "tipo_pneu": null
        },
        {
            "id": 8,
            "descricao": "TRUCK",
            "ativo": 1,
            "created_at": "2024-05-11T18:04:04.000000Z",
            "updated_at": "2024-05-21T03:22:51.000000Z",
            "deleted_at": null,
            "eixos": "3 EIXOS",
            "tipo_pneu": null
        }
    ],
    "total": 11,
    "searchTerm": null
}
 

Request      

GET api/tiposveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/tiposveiculo/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/tiposveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/tiposveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 34
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Tipoveiculo] consequatur"
}
 

Request      

GET api/tiposveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the tiposveiculo. Example: consequatur

POST api/tiposveiculo

Example request:
curl --request POST \
    "http://localhost/api/tiposveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/tiposveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/tiposveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/tiposveiculo/{id}

Example request:
curl --request PUT \
    "http://localhost/api/tiposveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/tiposveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/tiposveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the tiposveiculo. Example: consequatur

GET api/carroceriasveiculo

Example request:
curl --request GET \
    --get "http://localhost/api/carroceriasveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/carroceriasveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 33
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 7,
            "descricao": "ABERTA/CABINE DUPLA",
            "ativo": 1,
            "created_at": "2024-05-11T17:50:27.000000Z",
            "updated_at": "2024-05-11T17:50:27.000000Z",
            "deleted_at": null
        },
        {
            "id": 9,
            "descricao": "ABERTA/CABINE ESTENDIDA",
            "ativo": 1,
            "created_at": "2024-05-11T17:53:02.000000Z",
            "updated_at": "2024-05-11T17:53:02.000000Z",
            "deleted_at": null
        },
        {
            "id": 6,
            "descricao": "CABINE ESTENDIDA",
            "ativo": 1,
            "created_at": "2024-05-11T17:50:10.000000Z",
            "updated_at": "2024-05-11T17:50:10.000000Z",
            "deleted_at": null
        },
        {
            "id": 8,
            "descricao": "CARROCERIA ABER/CABINE LINEAR",
            "ativo": 1,
            "created_at": "2024-05-11T17:52:25.000000Z",
            "updated_at": "2024-05-11T17:52:25.000000Z",
            "deleted_at": null
        },
        {
            "id": 3,
            "descricao": "CARROCERIA ABERTA",
            "ativo": 1,
            "created_at": "2024-05-11T17:48:02.000000Z",
            "updated_at": "2024-05-11T17:48:02.000000Z",
            "deleted_at": null
        },
        {
            "id": 10,
            "descricao": "JIPE",
            "ativo": 1,
            "created_at": "2024-05-11T17:54:24.000000Z",
            "updated_at": "2024-05-11T17:54:24.000000Z",
            "deleted_at": null
        },
        {
            "id": 4,
            "descricao": "NÃO APLICAVEL",
            "ativo": 1,
            "created_at": "2024-05-11T17:48:41.000000Z",
            "updated_at": "2024-05-11T17:48:41.000000Z",
            "deleted_at": null
        },
        {
            "id": 5,
            "descricao": "PR.P.CONTEINER CONV.P/C.ABERTA",
            "ativo": 1,
            "created_at": "2024-05-11T17:49:52.000000Z",
            "updated_at": "2024-05-11T17:49:52.000000Z",
            "deleted_at": null
        }
    ],
    "total": 8,
    "searchTerm": null
}
 

Request      

GET api/carroceriasveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/carroceriasveiculo/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/carroceriasveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/carroceriasveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 32
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Carroceriaveiculo] consequatur"
}
 

Request      

GET api/carroceriasveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the carroceriasveiculo. Example: consequatur

POST api/carroceriasveiculo

Example request:
curl --request POST \
    "http://localhost/api/carroceriasveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/carroceriasveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/carroceriasveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/carroceriasveiculo/{id}

Example request:
curl --request PUT \
    "http://localhost/api/carroceriasveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/carroceriasveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/carroceriasveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the carroceriasveiculo. Example: consequatur

GET api/consumosveiculo

Example request:
curl --request GET \
    --get "http://localhost/api/consumosveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/consumosveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 31
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 11,
            "descricao": "2",
            "ativo": 1,
            "created_at": "2024-09-19T18:36:16.000000Z",
            "updated_at": "2024-09-19T18:36:16.000000Z",
            "deleted_at": null,
            "dataVerificacao": "2024-09-19",
            "tipo": "COMBUSTÍVEL",
            "fk_veiculo": 13,
            "placa": "HYR9856"
        },
        {
            "id": 7,
            "descricao": "15",
            "ativo": 1,
            "created_at": "2024-06-11T13:53:32.000000Z",
            "updated_at": "2024-06-11T13:53:32.000000Z",
            "deleted_at": null,
            "dataVerificacao": "2024-06-04",
            "tipo": "ARLA",
            "fk_veiculo": 10,
            "placa": "ROB8C98"
        },
        {
            "id": 12,
            "descricao": "2",
            "ativo": 1,
            "created_at": "2024-09-19T18:36:43.000000Z",
            "updated_at": "2024-09-19T18:36:43.000000Z",
            "deleted_at": null,
            "dataVerificacao": "2024-09-19",
            "tipo": "COMBUSTÍVEL",
            "fk_veiculo": 10,
            "placa": "ROB8C98"
        },
        {
            "id": 5,
            "descricao": "60",
            "ativo": 1,
            "created_at": "2024-06-07T16:00:07.000000Z",
            "updated_at": "2024-06-07T16:00:07.000000Z",
            "deleted_at": null,
            "dataVerificacao": "2024-06-07",
            "tipo": "ARLA",
            "fk_veiculo": 6,
            "placa": "ROD6B57"
        },
        {
            "id": 3,
            "descricao": "2,2",
            "ativo": 1,
            "created_at": "2024-06-07T14:24:24.000000Z",
            "updated_at": "2024-06-07T14:24:47.000000Z",
            "deleted_at": null,
            "dataVerificacao": "2024-06-08",
            "tipo": "COMBUSTÍVEL",
            "fk_veiculo": 5,
            "placa": "SNJ0G03"
        },
        {
            "id": 2,
            "descricao": "70",
            "ativo": 1,
            "created_at": "2024-06-07T14:21:45.000000Z",
            "updated_at": "2024-06-07T14:21:45.000000Z",
            "deleted_at": null,
            "dataVerificacao": "2024-06-07",
            "tipo": "ARLA",
            "fk_veiculo": 5,
            "placa": "SNJ0G03"
        }
    ],
    "total": 6,
    "searchTerm": null
}
 

Request      

GET api/consumosveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/consumosveiculo/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/consumosveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/consumosveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 30
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\v_consumoveiculo] consequatur"
}
 

Request      

GET api/consumosveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the consumosveiculo. Example: consequatur

POST api/consumosveiculo

Example request:
curl --request POST \
    "http://localhost/api/consumosveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/consumosveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/consumosveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/consumosveiculo/{id}

Example request:
curl --request PUT \
    "http://localhost/api/consumosveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/consumosveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/consumosveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the consumosveiculo. Example: consequatur

GET api/veiculoscolaboradores

Example request:
curl --request GET \
    --get "http://localhost/api/veiculoscolaboradores" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculoscolaboradores"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 29
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 8,
            "fk_veiculo": 13,
            "fk_colaborador": 13,
            "created_at": "28/01/2025",
            "updated_at": null,
            "ativo": 1,
            "placa": "HYR9856",
            "nome": "REGINALDO CANDEIRA MACHADO",
            "veiculo": {
                "id": 13,
                "placa": "HYR9856",
                "ativo": 1
            },
            "colaborador": {
                "id": 13,
                "nome": "REGINALDO CANDEIRA MACHADO",
                "ativo": 1
            },
            "rotas": []
        },
        {
            "id": 10,
            "fk_veiculo": 9,
            "fk_colaborador": 31,
            "created_at": "10/02/2025",
            "updated_at": null,
            "ativo": 1,
            "placa": "NQS3326",
            "nome": "FRANCISCO SOUSA MEDEIROS",
            "veiculo": {
                "id": 9,
                "placa": "NQS3326",
                "ativo": 1
            },
            "colaborador": {
                "id": 31,
                "nome": "FRANCISCO SOUSA MEDEIROS",
                "ativo": 1
            },
            "rotas": []
        },
        {
            "id": 9,
            "fk_veiculo": 7,
            "fk_colaborador": 17,
            "created_at": "10/02/2025",
            "updated_at": null,
            "ativo": 1,
            "placa": "NQU9J28",
            "nome": "WANDENKOLK WACKAY RODRIGUES SILVA",
            "veiculo": {
                "id": 7,
                "placa": "NQU9J28",
                "ativo": 1
            },
            "colaborador": {
                "id": 17,
                "nome": "WANDENKOLK WACKAY RODRIGUES SILVA",
                "ativo": 1
            },
            "rotas": []
        },
        {
            "id": 11,
            "fk_veiculo": 12,
            "fk_colaborador": 32,
            "created_at": "10/02/2025",
            "updated_at": null,
            "ativo": 1,
            "placa": "ROQ3H15",
            "nome": "WALASON FABIO SILVA SANTOS",
            "veiculo": {
                "id": 12,
                "placa": "ROQ3H15",
                "ativo": 1
            },
            "colaborador": {
                "id": 32,
                "nome": "WALASON FABIO SILVA SANTOS",
                "ativo": 1
            },
            "rotas": []
        }
    ],
    "total": 4,
    "searchTerm": null
}
 

Request      

GET api/veiculoscolaboradores

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/veiculoscolaboradores/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/veiculoscolaboradores/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculoscolaboradores/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 28
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\v_colaborador_veiculo] consequatur"
}
 

Request      

GET api/veiculoscolaboradores/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the veiculoscolaboradore. Example: consequatur

POST api/veiculoscolaboradores

Example request:
curl --request POST \
    "http://localhost/api/veiculoscolaboradores" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculoscolaboradores"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/veiculoscolaboradores

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/veiculoscolaboradores/{id}

Example request:
curl --request PUT \
    "http://localhost/api/veiculoscolaboradores/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculoscolaboradores/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/veiculoscolaboradores/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the veiculoscolaboradore. Example: consequatur

GET api/veiculos-reboques

Example request:
curl --request GET \
    --get "http://localhost/api/veiculos-reboques" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculos-reboques"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 27
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 4,
            "fk_veiculo": 13,
            "fk_reboque": 5,
            "created_at": "19/06/2024",
            "updated_at": null,
            "ativo": 1,
            "placa_veiculo": "HYR9856",
            "placa_reboque": "KHF7319"
        },
        {
            "id": 6,
            "fk_veiculo": 10,
            "fk_reboque": 2,
            "created_at": "19/09/2024",
            "updated_at": null,
            "ativo": 1,
            "placa_veiculo": "ROB8C98",
            "placa_reboque": "SNJ5A34"
        },
        {
            "id": 2,
            "fk_veiculo": 6,
            "fk_reboque": 3,
            "created_at": "07/06/2024",
            "updated_at": null,
            "ativo": 1,
            "placa_veiculo": "ROD6B57",
            "placa_reboque": "RHJ0G17"
        },
        {
            "id": 3,
            "fk_veiculo": 11,
            "fk_reboque": 4,
            "created_at": "07/06/2024",
            "updated_at": null,
            "ativo": 1,
            "placa_veiculo": "ROK9F66",
            "placa_reboque": "ROL3D67"
        }
    ],
    "total": 4,
    "searchTerm": null
}
 

Request      

GET api/veiculos-reboques

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/veiculos-reboques/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/veiculos-reboques/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculos-reboques/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 26
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\v_reboque_veiculo] consequatur"
}
 

Request      

GET api/veiculos-reboques/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the veiculos reboque. Example: consequatur

POST api/veiculos-reboques

Example request:
curl --request POST \
    "http://localhost/api/veiculos-reboques" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculos-reboques"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/veiculos-reboques

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/veiculos-reboques/{id}

Example request:
curl --request PUT \
    "http://localhost/api/veiculos-reboques/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculos-reboques/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/veiculos-reboques/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the veiculos reboque. Example: consequatur

GET api/veiculos-kms

Example request:
curl --request GET \
    --get "http://localhost/api/veiculos-kms" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculos-kms"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 25
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 7,
            "dataVerificacao": "19/09/2024",
            "km": "35000",
            "ativo": 1,
            "fk_veiculo": 5,
            "placa": "SNJ0G03",
            "max_id": 7
        },
        {
            "id": 8,
            "dataVerificacao": "19/09/2024",
            "km": "123000",
            "ativo": 1,
            "fk_veiculo": 7,
            "placa": "NQU9J28",
            "max_id": 8
        },
        {
            "id": 6,
            "dataVerificacao": "16/08/2024",
            "km": "1",
            "ativo": 1,
            "fk_veiculo": 13,
            "placa": "HYR9856",
            "max_id": 6
        }
    ],
    "total": 3,
    "searchTerm": null
}
 

Request      

GET api/veiculos-kms

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/veiculos-kms/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/veiculos-kms/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculos-kms/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 24
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\v_veiculo_km] consequatur"
}
 

Request      

GET api/veiculos-kms/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the veiculos km. Example: consequatur

POST api/veiculos-kms

Example request:
curl --request POST \
    "http://localhost/api/veiculos-kms" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculos-kms"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/veiculos-kms

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/veiculos-kms/{id}

Example request:
curl --request PUT \
    "http://localhost/api/veiculos-kms/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/veiculos-kms/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/veiculos-kms/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the veiculos km. Example: consequatur

GET api/treinamentos

Example request:
curl --request GET \
    --get "http://localhost/api/treinamentos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/treinamentos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 23
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 5,
            "descricao": "Novo layout treinamento",
            "ativo": 1,
            "data": "01/10/2024",
            "treinador": "CRISTIANO DA SILVA SOARES",
            "validade": "31/12/2024",
            "created_at": "2024-06-10T13:23:04.000000Z",
            "updated_at": "2024-10-17T17:32:35.000000Z",
            "deleted_at": null
        },
        {
            "id": 3,
            "descricao": "Treinamento 002",
            "ativo": 1,
            "data": "30/09/2024",
            "treinador": "GABRIEL VASCONCELOS BRITO",
            "validade": "31/12/2025",
            "created_at": "2024-05-08T22:40:36.000000Z",
            "updated_at": "2024-10-17T17:33:21.000000Z",
            "deleted_at": null
        },
        {
            "id": 2,
            "descricao": "Treinamento 03",
            "ativo": 1,
            "data": null,
            "treinador": null,
            "validade": null,
            "created_at": "2024-05-08T12:53:06.000000Z",
            "updated_at": "2024-05-08T13:01:30.000000Z",
            "deleted_at": null
        }
    ],
    "total": 3,
    "searchTerm": null
}
 

Request      

GET api/treinamentos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/treinamentos/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/treinamentos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/treinamentos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 22
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Treinamento] consequatur"
}
 

Request      

GET api/treinamentos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the treinamento. Example: consequatur

POST api/treinamentos

Example request:
curl --request POST \
    "http://localhost/api/treinamentos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/treinamentos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/treinamentos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/treinamentos/{id}

Example request:
curl --request PUT \
    "http://localhost/api/treinamentos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/treinamentos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/treinamentos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the treinamento. Example: consequatur

GET api/instrucao

Example request:
curl --request GET \
    --get "http://localhost/api/instrucao" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/instrucao"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 21
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 1,
            "descricao": "Analfabeto",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 2,
            "descricao": "Até 4ª série incompleta do 1º grau (ensino fundamental)",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 3,
            "descricao": "4ª série completa do 1º grau (ensino fundamendamental)",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 4,
            "descricao": "5ª a 8ª série incompleta do 1º grau (ensino fundamental)",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 5,
            "descricao": "1º grau completo (ensino fundamental)",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 6,
            "descricao": "2º grau incompleto (ensino médio)",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 7,
            "descricao": "2º grau completo (ensino médio)",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 8,
            "descricao": "Superior Incompleto",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 10,
            "descricao": "Pós-Graduação/Especialização",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 11,
            "descricao": "Mestrado",
            "ativo": 1,
            "created_at": null,
            "updated_at": "2024-05-27T22:58:58.000000Z",
            "deleted_at": null
        },
        {
            "id": 12,
            "descricao": "Doutorado",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 13,
            "descricao": "Pós-Doutorado",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 14,
            "descricao": "Superior Completo",
            "ativo": 1,
            "created_at": "2024-05-15T16:59:29.000000Z",
            "updated_at": "2024-05-15T16:59:29.000000Z",
            "deleted_at": null
        }
    ],
    "total": 13,
    "searchTerm": null
}
 

Request      

GET api/instrucao

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/instrucao/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/instrucao/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/instrucao/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 20
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Instrucao] consequatur"
}
 

Request      

GET api/instrucao/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the instrucao. Example: consequatur

POST api/instrucao

Example request:
curl --request POST \
    "http://localhost/api/instrucao" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/instrucao"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/instrucao

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/instrucao/{id}

Example request:
curl --request PUT \
    "http://localhost/api/instrucao/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/instrucao/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/instrucao/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the instrucao. Example: consequatur

GET api/estadocivil

Example request:
curl --request GET \
    --get "http://localhost/api/estadocivil" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/estadocivil"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 19
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 2,
            "descricao": "Casado(a)",
            "ativo": 1,
            "created_at": null,
            "updated_at": "2024-05-08T14:41:43.000000Z",
            "deleted_at": null
        },
        {
            "id": 4,
            "descricao": "Divorciado(a)",
            "ativo": 1,
            "created_at": null,
            "updated_at": "2024-05-08T14:42:16.000000Z",
            "deleted_at": null
        },
        {
            "id": 3,
            "descricao": "Separado(a)",
            "ativo": 1,
            "created_at": null,
            "updated_at": "2024-05-08T14:41:59.000000Z",
            "deleted_at": null
        },
        {
            "id": 6,
            "descricao": "Solteiro(a)",
            "ativo": 1,
            "created_at": "2024-05-15T17:01:34.000000Z",
            "updated_at": "2024-05-27T23:33:14.000000Z",
            "deleted_at": null
        },
        {
            "id": 5,
            "descricao": "Viúvo(a)",
            "ativo": 1,
            "created_at": null,
            "updated_at": "2024-05-08T14:42:32.000000Z",
            "deleted_at": null
        }
    ],
    "total": 5,
    "searchTerm": null
}
 

Request      

GET api/estadocivil

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/estadocivil/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/estadocivil/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/estadocivil/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 18
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\EstadoCivil] consequatur"
}
 

Request      

GET api/estadocivil/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the estadocivil. Example: consequatur

POST api/estadocivil

Example request:
curl --request POST \
    "http://localhost/api/estadocivil" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/estadocivil"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/estadocivil

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/estadocivil/{id}

Example request:
curl --request PUT \
    "http://localhost/api/estadocivil/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/estadocivil/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/estadocivil/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the estadocivil. Example: consequatur

GET api/racas

Example request:
curl --request GET \
    --get "http://localhost/api/racas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/racas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 17
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 4,
            "descricao": "Amarela",
            "ativo": 1,
            "created_at": null,
            "updated_at": "2024-05-27T22:06:05.000000Z",
            "deleted_at": null
        },
        {
            "id": 1,
            "descricao": "Branca",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 5,
            "descricao": "Indígena",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 7,
            "descricao": "Não Informado",
            "ativo": 1,
            "created_at": "2024-05-15T16:54:57.000000Z",
            "updated_at": "2024-05-15T16:55:06.000000Z",
            "deleted_at": null
        },
        {
            "id": 3,
            "descricao": "Parda",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 2,
            "descricao": "Preta",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        }
    ],
    "total": 6,
    "searchTerm": null
}
 

Request      

GET api/racas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/racas/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/racas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/racas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 16
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Raca] consequatur"
}
 

Request      

GET api/racas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the raca. Example: consequatur

POST api/racas

Example request:
curl --request POST \
    "http://localhost/api/racas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/racas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/racas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/racas/{id}

Example request:
curl --request PUT \
    "http://localhost/api/racas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/racas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/racas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the raca. Example: consequatur

GET api/sexo

Example request:
curl --request GET \
    --get "http://localhost/api/sexo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/sexo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 15
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 2,
            "descricao": "Feminino",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 4,
            "descricao": "Masculino",
            "ativo": 1,
            "created_at": "2024-05-15T16:53:05.000000Z",
            "updated_at": "2024-05-15T16:53:05.000000Z",
            "deleted_at": null
        },
        {
            "id": 3,
            "descricao": "Outros",
            "ativo": 1,
            "created_at": "2024-05-08T22:43:35.000000Z",
            "updated_at": "2024-05-27T21:34:10.000000Z",
            "deleted_at": null
        }
    ],
    "total": 3,
    "searchTerm": null
}
 

Request      

GET api/sexo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/sexo/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/sexo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/sexo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 14
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Sexo] consequatur"
}
 

Request      

GET api/sexo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the sexo. Example: consequatur

POST api/sexo

Example request:
curl --request POST \
    "http://localhost/api/sexo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/sexo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/sexo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/sexo/{id}

Example request:
curl --request PUT \
    "http://localhost/api/sexo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/sexo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/sexo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the sexo. Example: consequatur

GET api/escalas

Example request:
curl --request GET \
    --get "http://localhost/api/escalas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/escalas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 13
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 1,
            "descricao": "Escala Comercial: 08:00 - 18:00",
            "jornada": 44,
            "ativo": 1,
            "created_at": "2024-05-08T14:37:26.000000Z",
            "updated_at": "2024-05-28T00:04:44.000000Z",
            "deleted_at": null
        },
        {
            "id": 2,
            "descricao": "Escala Arielton",
            "jornada": 30,
            "ativo": 1,
            "created_at": "2024-05-15T17:09:22.000000Z",
            "updated_at": "2024-05-28T00:05:20.000000Z",
            "deleted_at": null
        },
        {
            "id": 4,
            "descricao": "escala",
            "jornada": 54,
            "ativo": 1,
            "created_at": "2024-08-07T18:45:44.000000Z",
            "updated_at": "2024-08-07T18:45:44.000000Z",
            "deleted_at": null
        },
        {
            "id": 5,
            "descricao": "Escala teste",
            "jornada": 40,
            "ativo": 1,
            "created_at": "2024-10-03T01:11:50.000000Z",
            "updated_at": "2024-10-03T01:11:50.000000Z",
            "deleted_at": null
        }
    ],
    "total": 4,
    "searchTerm": null
}
 

Request      

GET api/escalas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/escalas/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/escalas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/escalas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 12
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Escala] consequatur"
}
 

Request      

GET api/escalas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the escala. Example: consequatur

POST api/escalas

Example request:
curl --request POST \
    "http://localhost/api/escalas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/escalas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/escalas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/escalas/{id}

Example request:
curl --request PUT \
    "http://localhost/api/escalas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/escalas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/escalas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the escala. Example: consequatur

GET api/escalas-horariosid/{idcolaborador}

Example request:
curl --request GET \
    --get "http://localhost/api/escalas-horariosid/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/escalas-horariosid/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (500):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 11
access-control-allow-origin: *
 

{
    "message": "Server Error"
}
 

Request      

GET api/escalas-horariosid/{idcolaborador}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

idcolaborador   string   

Example: consequatur

GET api/escalas-horarios

Example request:
curl --request GET \
    --get "http://localhost/api/escalas-horarios" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/escalas-horarios"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 10
access-control-allow-origin: *
 

{
    "data": [
        {
            "escala": "Escala Comercial: 08:00 - 18:00",
            "jornada": 44,
            "id": 1,
            "fk_escala": 1,
            "dia_semana": "Segunda-feira",
            "entrada_01": "08:00",
            "saida_01": "12:00",
            "entrada_02": "14:00",
            "saida_02": "18:00",
            "ativo": 1,
            "created_at": "23/05/2024",
            "updated_at": "23/05/2024"
        },
        {
            "escala": "Escala Comercial: 08:00 - 18:00",
            "jornada": 44,
            "id": 2,
            "fk_escala": 1,
            "dia_semana": "Terça-feira",
            "entrada_01": "08:00",
            "saida_01": "12:00",
            "entrada_02": "14:00",
            "saida_02": "18:00",
            "ativo": 1,
            "created_at": "23/05/2024",
            "updated_at": "23/05/2024"
        },
        {
            "escala": "Escala Comercial: 08:00 - 18:00",
            "jornada": 44,
            "id": 3,
            "fk_escala": 1,
            "dia_semana": "Quarta-feira",
            "entrada_01": "08:00",
            "saida_01": "12:00",
            "entrada_02": "14:00",
            "saida_02": "18:00",
            "ativo": 1,
            "created_at": "02/10/2024",
            "updated_at": "02/10/2024"
        }
    ],
    "searchTerm": null
}
 

Request      

GET api/escalas-horarios

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/escalas-horarios/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/escalas-horarios/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/escalas-horarios/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 60
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\EscalaHorario] consequatur"
}
 

Request      

GET api/escalas-horarios/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the escalas horario. Example: consequatur

POST api/escalas-horarios

Example request:
curl --request POST \
    "http://localhost/api/escalas-horarios" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/escalas-horarios"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/escalas-horarios

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/escalas-horarios/{id}

Example request:
curl --request PUT \
    "http://localhost/api/escalas-horarios/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/escalas-horarios/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/escalas-horarios/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the escalas horario. Example: consequatur

DELETE api/escalas-horarios/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/escalas-horarios/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/escalas-horarios/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/escalas-horarios/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the escalas horario. Example: consequatur

GET api/escalas-horariosidhorario/{horario}

Example request:
curl --request GET \
    --get "http://localhost/api/escalas-horariosidhorario/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/escalas-horariosidhorario/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 59
access-control-allow-origin: *
 

[]
 

Request      

GET api/escalas-horariosidhorario/{horario}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

horario   string   

Example: consequatur

GET api/cargos

Example request:
curl --request GET \
    --get "http://localhost/api/cargos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/cargos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 58
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 7,
            "descricao": "Ajudante Carga e Descanga",
            "cbo": "54546",
            "ativo": 1,
            "created_at": "2024-05-15T17:05:29.000000Z",
            "updated_at": "2025-01-28T15:05:11.000000Z",
            "deleted_at": null
        },
        {
            "id": 4,
            "descricao": "Assistente Administrativo",
            "cbo": "54541",
            "ativo": 1,
            "created_at": "2024-05-15T17:05:00.000000Z",
            "updated_at": "2024-05-15T17:05:00.000000Z",
            "deleted_at": null
        },
        {
            "id": 3,
            "descricao": "Auxiliar Administrativo",
            "cbo": "56487",
            "ativo": 1,
            "created_at": "2024-05-15T17:04:46.000000Z",
            "updated_at": "2024-05-27T23:53:09.000000Z",
            "deleted_at": null
        },
        {
            "id": 5,
            "descricao": "Diretor",
            "cbo": "46545",
            "ativo": 1,
            "created_at": "2024-05-15T17:05:05.000000Z",
            "updated_at": "2024-05-15T17:05:05.000000Z",
            "deleted_at": null
        },
        {
            "id": 9,
            "descricao": "Encarregado de Frota",
            "cbo": "4454",
            "ativo": 1,
            "created_at": "2024-05-15T18:44:44.000000Z",
            "updated_at": "2024-05-15T18:44:44.000000Z",
            "deleted_at": null
        },
        {
            "id": 13,
            "descricao": "Mecânico",
            "cbo": null,
            "ativo": 1,
            "created_at": "2024-10-02T13:30:33.000000Z",
            "updated_at": "2024-10-02T13:30:33.000000Z",
            "deleted_at": null
        },
        {
            "id": 1,
            "descricao": "Motorista Caminhão",
            "cbo": "12345",
            "ativo": 1,
            "created_at": "2024-05-08T14:29:14.000000Z",
            "updated_at": "2025-01-28T15:05:31.000000Z",
            "deleted_at": null
        },
        {
            "id": 12,
            "descricao": "Motorista de caminhão carreta",
            "cbo": "8454",
            "ativo": 1,
            "created_at": "2024-08-27T14:37:25.000000Z",
            "updated_at": "2025-01-28T15:06:26.000000Z",
            "deleted_at": null
        },
        {
            "id": 8,
            "descricao": "Serviços Gerais",
            "cbo": "464564",
            "ativo": 1,
            "created_at": "2024-05-15T17:05:35.000000Z",
            "updated_at": "2024-05-15T17:05:35.000000Z",
            "deleted_at": null
        },
        {
            "id": 6,
            "descricao": "Supervisor(a) Administrativo(a)",
            "cbo": "8789",
            "ativo": 1,
            "created_at": "2024-05-15T17:05:21.000000Z",
            "updated_at": "2024-05-15T18:44:26.000000Z",
            "deleted_at": null
        }
    ],
    "total": 10,
    "searchTerm": null
}
 

Request      

GET api/cargos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/cargos/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/cargos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/cargos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 57
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Cargo] consequatur"
}
 

Request      

GET api/cargos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the cargo. Example: consequatur

POST api/cargos

Example request:
curl --request POST \
    "http://localhost/api/cargos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/cargos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/cargos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/cargos/{id}

Example request:
curl --request PUT \
    "http://localhost/api/cargos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/cargos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/cargos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the cargo. Example: consequatur

GET api/parentesco

Example request:
curl --request GET \
    --get "http://localhost/api/parentesco" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/parentesco"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 56
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 11,
            "descricao": "A pessoa absolutamente incapaz, da qual seja tutor ou curador",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 99,
            "descricao": "Agregado/Outros",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 2,
            "descricao": "Companheiro(a) com o(a) qual tenha filho ou viva há mais de  5  (cinco) anos ou possua Declaração de União Estável",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 1,
            "descricao": "Cônjuge",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 100,
            "descricao": "Ex-cônjuge",
            "ativo": 1,
            "created_at": "2024-05-15T16:56:10.000000Z",
            "updated_at": "2024-05-15T16:56:10.000000Z",
            "deleted_at": null
        },
        {
            "id": 101,
            "descricao": "Ex-cônjuge",
            "ativo": 1,
            "created_at": "2024-05-15T16:56:23.000000Z",
            "updated_at": "2024-05-15T16:56:23.000000Z",
            "deleted_at": null
        },
        {
            "id": 3,
            "descricao": "Filho(a) ou enteado(a)",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 4,
            "descricao": "Filho(a) ou enteado(a), universitário(a) ou cursando escola técnica de 2º grau",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 6,
            "descricao": "Irmão(ã), neto(a) ou bisneto(a) sem arrimo dos pais, do(a) qual detenha a guarda judicial",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 7,
            "descricao": "Irmão(ã), neto(a) ou bisneto(a) sem arrimo dos pais, universitário(a) ou cursando escola técnica de 2° grau, do(a) qual detenha a guarda judicial",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 10,
            "descricao": "Menor pobre do qual detenha a guarda judicial",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        },
        {
            "id": 9,
            "descricao": "Pais, avós e bisavós",
            "ativo": 1,
            "created_at": null,
            "updated_at": null,
            "deleted_at": null
        }
    ],
    "total": 12,
    "searchTerm": null
}
 

Request      

GET api/parentesco

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/parentesco/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/parentesco/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/parentesco/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 55
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Parentesco] consequatur"
}
 

Request      

GET api/parentesco/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the parentesco. Example: consequatur

POST api/parentesco

Example request:
curl --request POST \
    "http://localhost/api/parentesco" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/parentesco"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/parentesco

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/parentesco/{id}

Example request:
curl --request PUT \
    "http://localhost/api/parentesco/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/parentesco/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/parentesco/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the parentesco. Example: consequatur

GET api/salarios

Example request:
curl --request GET \
    --get "http://localhost/api/salarios" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/salarios"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 54
access-control-allow-origin: *
 

{
    "data": [
        {
            "cargo": "Ajudante Carga e Descanga",
            "id": 6,
            "fk_cargo": 7,
            "valor": "1.872,38",
            "ativo": 1,
            "validade": "31/12/2025",
            "created_at": "28/01/2025",
            "updated_at": "28/01/2025"
        },
        {
            "cargo": "Assistente Administrativo",
            "id": 4,
            "fk_cargo": 4,
            "valor": "2.000,00",
            "ativo": 1,
            "validade": "31/12/2025",
            "created_at": "28/01/2025",
            "updated_at": "28/01/2025"
        },
        {
            "cargo": "Auxiliar Administrativo",
            "id": 2,
            "fk_cargo": 3,
            "valor": "1.630,00",
            "ativo": 1,
            "validade": "31/12/2025",
            "created_at": "02/10/2024",
            "updated_at": "28/01/2025"
        },
        {
            "cargo": "Encarregado de Frota",
            "id": 7,
            "fk_cargo": 9,
            "valor": "2.803,28",
            "ativo": 1,
            "validade": "31/12/2025",
            "created_at": "28/01/2025",
            "updated_at": "28/01/2025"
        },
        {
            "cargo": "Motorista Caminhão",
            "id": 1,
            "fk_cargo": 1,
            "valor": "2.744,92",
            "ativo": 1,
            "validade": "31/12/2025",
            "created_at": "04/06/2024",
            "updated_at": "28/01/2025"
        },
        {
            "cargo": "Motorista de caminhão carreta",
            "id": 3,
            "fk_cargo": 12,
            "valor": "3.377,43",
            "ativo": 1,
            "validade": "31/12/2025",
            "created_at": "28/01/2025",
            "updated_at": "28/01/2025"
        },
        {
            "cargo": "Serviços Gerais",
            "id": 5,
            "fk_cargo": 8,
            "valor": "1.440,29",
            "ativo": 1,
            "validade": "31/12/2025",
            "created_at": "28/01/2025",
            "updated_at": "28/01/2025"
        },
        {
            "cargo": "Supervisor(a) Administrativo(a)",
            "id": 8,
            "fk_cargo": 6,
            "valor": "3.312,82",
            "ativo": 1,
            "validade": "31/12/2025",
            "created_at": "28/01/2025",
            "updated_at": "28/01/2025"
        }
    ],
    "total": 8,
    "searchTerm": null
}
 

Request      

GET api/salarios

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/salario/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/salario/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/salario/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 53
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Salario] consequatur"
}
 

Request      

GET api/salario/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the salario. Example: consequatur

POST api/salario

Example request:
curl --request POST \
    "http://localhost/api/salario" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/salario"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/salario

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/salario/{id}

Example request:
curl --request PUT \
    "http://localhost/api/salario/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/salario/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/salario/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the salario. Example: consequatur

GET api/setor

Example request:
curl --request GET \
    --get "http://localhost/api/setor" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/setor"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 52
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 1,
            "descricao": "Administrativo",
            "ativo": 1,
            "created_at": "2024-05-08T21:22:39.000000Z",
            "updated_at": "2024-05-27T23:50:01.000000Z",
            "deleted_at": null
        },
        {
            "id": 7,
            "descricao": "Operacional",
            "ativo": 1,
            "created_at": "2025-01-28T15:04:18.000000Z",
            "updated_at": "2025-01-28T15:04:18.000000Z",
            "deleted_at": null
        }
    ],
    "total": 2,
    "searchTerm": null
}
 

Request      

GET api/setor

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/setor/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/setor/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/setor/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 51
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Setor] consequatur"
}
 

Request      

GET api/setor/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the setor. Example: consequatur

POST api/setor

Example request:
curl --request POST \
    "http://localhost/api/setor" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/setor"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/setor

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/setor/{id}

Example request:
curl --request PUT \
    "http://localhost/api/setor/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/setor/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/setor/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the setor. Example: consequatur

GET api/manut_descritivos

Example request:
curl --request GET \
    --get "http://localhost/api/manut_descritivos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/manut_descritivos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 50
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 2,
            "descricao": "Troca de filtro de Óleo",
            "ativo": 1,
            "created_at": "2024-08-22T17:40:28.000000Z",
            "updated_at": "2024-09-19T14:34:48.000000Z",
            "deleted_at": null
        },
        {
            "id": 10,
            "descricao": "Troca Filtro de Ar Primário",
            "ativo": 1,
            "created_at": "2024-09-19T14:36:18.000000Z",
            "updated_at": "2024-09-19T14:36:18.000000Z",
            "deleted_at": null
        }
    ],
    "total": 2,
    "searchTerm": null
}
 

Request      

GET api/manut_descritivos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/manut_descritivos/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/manut_descritivos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/manut_descritivos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 49
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\manutencao\\ManutDescritivos] consequatur"
}
 

Request      

GET api/manut_descritivos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the manut descritivo. Example: consequatur

POST api/manut_descritivos

Example request:
curl --request POST \
    "http://localhost/api/manut_descritivos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"ativo\": true
}"
const url = new URL(
    "http://localhost/api/manut_descritivos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "ativo": true
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/manut_descritivos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

descricao   string   

Must not be greater than 150 characters. Example: vmqeopfuudtdsufvyvddq

ativo   boolean  optional  

Example: true

PUT api/manut_descritivos/{id}

Example request:
curl --request PUT \
    "http://localhost/api/manut_descritivos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"ativo\": true
}"
const url = new URL(
    "http://localhost/api/manut_descritivos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "ativo": true
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/manut_descritivos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the manut descritivo. Example: consequatur

Body Parameters

descricao   string  optional  

Must not be greater than 150 characters. Example: vmqeopfuudtdsufvyvddq

ativo   boolean  optional  

Example: true

GET api/manut_status

Example request:
curl --request GET \
    --get "http://localhost/api/manut_status" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/manut_status"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 48
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 9,
            "descricao": "A Vencer",
            "ativo": 1
        },
        {
            "id": 7,
            "descricao": "Atrasado",
            "ativo": 1
        },
        {
            "id": 2,
            "descricao": "Em Manutenção",
            "ativo": 1
        },
        {
            "id": 3,
            "descricao": "Em Manutenção",
            "ativo": 1
        },
        {
            "id": 4,
            "descricao": "Em Manutenção",
            "ativo": 1
        },
        {
            "id": 5,
            "descricao": "Em Manutenção",
            "ativo": 1
        },
        {
            "id": 6,
            "descricao": "Em Manutenção",
            "ativo": 1
        },
        {
            "id": 8,
            "descricao": "Vencido",
            "ativo": 1
        }
    ],
    "total": 8,
    "searchTerm": null
}
 

Request      

GET api/manut_status

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/manut_status/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/manut_status/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/manut_status/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 47
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\manutencao\\ManutStatus] consequatur"
}
 

Request      

GET api/manut_status/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the manut status. Example: consequatur

POST api/manut_status

Example request:
curl --request POST \
    "http://localhost/api/manut_status" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"ativo\": true
}"
const url = new URL(
    "http://localhost/api/manut_status"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "ativo": true
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/manut_status

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

descricao   string   

Must not be greater than 150 characters. Example: vmqeopfuudtdsufvyvddq

ativo   boolean  optional  

Example: true

PUT api/manut_status/{id}

Example request:
curl --request PUT \
    "http://localhost/api/manut_status/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"ativo\": true
}"
const url = new URL(
    "http://localhost/api/manut_status/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "ativo": true
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/manut_status/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the manut status. Example: consequatur

Body Parameters

descricao   string  optional  

Must not be greater than 150 characters. Example: vmqeopfuudtdsufvyvddq

ativo   boolean  optional  

Example: true

GET api/manut_desc_veiculos

Example request:
curl --request GET \
    --get "http://localhost/api/manut_desc_veiculos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/manut_desc_veiculos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 46
access-control-allow-origin: *
 

{
    "data": [
        {
            "placa": "HYR9856",
            "fk_veiculo": 13,
            "dados": [
                {
                    "id": 10,
                    "descricao": "Troca Filtro de Ar Primário",
                    "km": "20000",
                    "ativo": 1
                },
                {
                    "id": 2,
                    "descricao": "Troca de filtro de Óleo",
                    "km": "20000",
                    "ativo": 1
                }
            ],
            "total_descritivos": 2,
            "reboque": "KHF7319"
        },
        {
            "placa": "ROB8C98",
            "fk_veiculo": 10,
            "dados": [
                {
                    "id": 10,
                    "descricao": "Troca Filtro de Ar Primário",
                    "km": "28040",
                    "ativo": 1
                },
                {
                    "id": 2,
                    "descricao": "Troca de filtro de Óleo",
                    "km": "10000",
                    "ativo": 1
                }
            ],
            "total_descritivos": 2,
            "reboque": "SNJ5A34"
        }
    ],
    "total": 2,
    "searchTerm": null
}
 

Request      

GET api/manut_desc_veiculos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/manut_desc_veiculos/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/manut_desc_veiculos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/manut_desc_veiculos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 45
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\manutencao\\ManutDescVeiculos] consequatur"
}
 

Request      

GET api/manut_desc_veiculos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the manut desc veiculo. Example: consequatur

POST api/manut_desc_veiculos

Example request:
curl --request POST \
    "http://localhost/api/manut_desc_veiculos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"fk_veiculo\": 17,
    \"descritivos\": [],
    \"manut_desc_veiculos\": [
        {
            \"id\": 17,
            \"km\": \"mqeopfuudtdsufvyv\"
        }
    ]
}"
const url = new URL(
    "http://localhost/api/manut_desc_veiculos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "fk_veiculo": 17,
    "descritivos": [],
    "manut_desc_veiculos": [
        {
            "id": 17,
            "km": "mqeopfuudtdsufvyv"
        }
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/manut_desc_veiculos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

fk_veiculo   integer   

The id of an existing record in the veiculos table. Example: 17

descritivos   object   
manut_desc_veiculos   object[]  optional  
id   integer   

The id of an existing record in the manut_descritivos table. Example: 17

km   string   

Must not be greater than 20 characters. Example: mqeopfuudtdsufvyv

PUT api/manut_desc_veiculos/{fk_veiculo}

Example request:
curl --request PUT \
    "http://localhost/api/manut_desc_veiculos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"ativo\": \"1\",
    \"descritivos\": [
        {
            \"id\": 17,
            \"km\": \"mqeopfuudtdsufvyv\"
        }
    ]
}"
const url = new URL(
    "http://localhost/api/manut_desc_veiculos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "ativo": "1",
    "descritivos": [
        {
            "id": 17,
            "km": "mqeopfuudtdsufvyv"
        }
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/manut_desc_veiculos/{fk_veiculo}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

fk_veiculo   string   

Example: consequatur

Body Parameters

descritivos   object[]  optional  
id   integer  optional  

The id of an existing record in the manut_descritivos table. Example: 17

km   string  optional  

Must not be greater than 20 characters. Example: mqeopfuudtdsufvyv

ativo   integer  optional  

Example: 1

Must be one of:
  • 0
  • 1

GET api/manut_os

Example request:
curl --request GET \
    --get "http://localhost/api/manut_os" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/manut_os"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 44
access-control-allow-origin: *
 

{
    "data": [],
    "total": 0,
    "searchTerm": null
}
 

Request      

GET api/manut_os

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/manut_os/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/manut_os/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/manut_os/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 43
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\manutencao\\ManutOS] consequatur"
}
 

Request      

GET api/manut_os/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the manut o. Example: consequatur

POST api/manut_os

Example request:
curl --request POST \
    "http://localhost/api/manut_os" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"tipo_revisao\": \"amniihfqcoynlazghdtqt\",
    \"fk_veiculo\": 17,
    \"fk_fornecedor\": 17,
    \"fk_usuario\": 17,
    \"fk_status\": 17,
    \"data_inicio\": \"2025-05-22T10:21:54\",
    \"data_fim\": \"2106-06-20\",
    \"ativo\": false
}"
const url = new URL(
    "http://localhost/api/manut_os"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "tipo_revisao": "amniihfqcoynlazghdtqt",
    "fk_veiculo": 17,
    "fk_fornecedor": 17,
    "fk_usuario": 17,
    "fk_status": 17,
    "data_inicio": "2025-05-22T10:21:54",
    "data_fim": "2106-06-20",
    "ativo": false
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/manut_os

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

descricao   string   

Must not be greater than 255 characters. Example: vmqeopfuudtdsufvyvddq

tipo_revisao   string   

Must not be greater than 255 characters. Example: amniihfqcoynlazghdtqt

fk_veiculo   integer   

The id of an existing record in the veiculos table. Example: 17

fk_fornecedor   integer   

The id of an existing record in the fornecedores table. Example: 17

fk_usuario   integer   

The id of an existing record in the users table. Example: 17

fk_status   integer   

The id of an existing record in the manut_status table. Example: 17

data_inicio   string   

Must be a valid date. Example: 2025-05-22T10:21:54

data_fim   string  optional  

Must be a valid date. Must be a date after or equal to data_inicio. Example: 2106-06-20

ativo   boolean   

Example: false

PUT api/manut_os/{id}

Example request:
curl --request PUT \
    "http://localhost/api/manut_os/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"tipo_revisao\": \"amniihfqcoynlazghdtqt\",
    \"fk_veiculo\": 17,
    \"fk_fornecedor\": 17,
    \"fk_usuario\": 17,
    \"fk_status\": 17,
    \"data_inicio\": \"2025-05-22T10:21:54\",
    \"data_fim\": \"2106-06-20\",
    \"ativo\": false
}"
const url = new URL(
    "http://localhost/api/manut_os/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "tipo_revisao": "amniihfqcoynlazghdtqt",
    "fk_veiculo": 17,
    "fk_fornecedor": 17,
    "fk_usuario": 17,
    "fk_status": 17,
    "data_inicio": "2025-05-22T10:21:54",
    "data_fim": "2106-06-20",
    "ativo": false
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/manut_os/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the manut o. Example: consequatur

Body Parameters

descricao   string   

Must not be greater than 255 characters. Example: vmqeopfuudtdsufvyvddq

tipo_revisao   string   

Must not be greater than 255 characters. Example: amniihfqcoynlazghdtqt

fk_veiculo   integer   

The id of an existing record in the veiculos table. Example: 17

fk_fornecedor   integer   

The id of an existing record in the fornecedores table. Example: 17

fk_usuario   integer   

The id of an existing record in the users table. Example: 17

fk_status   integer   

The id of an existing record in the manut_status table. Example: 17

data_inicio   string   

Must be a valid date. Example: 2025-05-22T10:21:54

data_fim   string  optional  

Must be a valid date. Must be a date after or equal to data_inicio. Example: 2106-06-20

ativo   boolean   

Example: false

GET api/modelosveiculo

Example request:
curl --request GET \
    --get "http://localhost/api/modelosveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/modelosveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 42
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 22,
            "descricao": "ACCELO 1016 CE",
            "ativo": 1,
            "fk_marca": 7,
            "marca": "MERCEDES BENZ"
        },
        {
            "id": 6,
            "descricao": "ACTROS 2548S",
            "ativo": 1,
            "fk_marca": 7,
            "marca": "MERCEDES BENZ"
        },
        {
            "id": 2,
            "descricao": "ATEGO 2425",
            "ativo": 1,
            "fk_marca": 7,
            "marca": "MERCEDES BENZ"
        },
        {
            "id": 11,
            "descricao": "ATEGO 2426 CE",
            "ativo": 1,
            "fk_marca": 7,
            "marca": "MERCEDES BENZ"
        },
        {
            "id": 12,
            "descricao": "ATEGO 2426 CL",
            "ativo": 1,
            "fk_marca": 7,
            "marca": "MERCEDES BENZ"
        },
        {
            "id": 13,
            "descricao": "ATRON 2324",
            "ativo": 1,
            "fk_marca": 7,
            "marca": "MERCEDES BENZ"
        },
        {
            "id": 1,
            "descricao": "AXOR 1933 S",
            "ativo": 1,
            "fk_marca": 7,
            "marca": "MERCEDES BENZ"
        },
        {
            "id": 5,
            "descricao": "CF FAS 310",
            "ativo": 1,
            "fk_marca": 5,
            "marca": "DAF"
        },
        {
            "id": 19,
            "descricao": "CROMOCAR CA 4E",
            "ativo": 1,
            "fk_marca": 17,
            "marca": "CROMOCAR"
        },
        {
            "id": 15,
            "descricao": "GUERRA AG GR",
            "ativo": 1,
            "fk_marca": 13,
            "marca": "GUERRA"
        },
        {
            "id": 20,
            "descricao": "HILUX SWSRXA4RD",
            "ativo": 1,
            "fk_marca": 8,
            "marca": "TOYOTA"
        },
        {
            "id": 3,
            "descricao": "L 1620",
            "ativo": 1,
            "fk_marca": 7,
            "marca": "MERCEDES BENZ"
        },
        {
            "id": 18,
            "descricao": "LIBRELATO CACAENCR 3E",
            "ativo": 1,
            "fk_marca": 16,
            "marca": "LIBRELATO"
        },
        {
            "id": 10,
            "descricao": "P280 B6X2D9",
            "ativo": 1,
            "fk_marca": 6,
            "marca": "SCANIA"
        },
        {
            "id": 9,
            "descricao": "R 440 A6X2",
            "ativo": 1,
            "fk_marca": 6,
            "marca": "SCANIA"
        },
        {
            "id": 16,
            "descricao": "RANDON",
            "ativo": 1,
            "fk_marca": 14,
            "marca": "RANDON"
        },
        {
            "id": 17,
            "descricao": "RODOFORTSA SRPL 3E",
            "ativo": 1,
            "fk_marca": 15,
            "marca": "RODOFORTSA"
        },
        {
            "id": 21,
            "descricao": "STRADA ENDURANCE CS",
            "ativo": 1,
            "fk_marca": 2,
            "marca": "FIAT"
        },
        {
            "id": 14,
            "descricao": "VILACOS SR3ECA",
            "ativo": 1,
            "fk_marca": 12,
            "marca": "VILACOS"
        },
        {
            "id": 4,
            "descricao": "XF FTS 480",
            "ativo": 1,
            "fk_marca": 5,
            "marca": "DAF"
        },
        {
            "id": 8,
            "descricao": "XF FTT 480",
            "ativo": 1,
            "fk_marca": 5,
            "marca": "DAF"
        },
        {
            "id": 7,
            "descricao": "XF105 FTT 510A",
            "ativo": 1,
            "fk_marca": 5,
            "marca": "DAF"
        }
    ],
    "total": 22,
    "searchTerm": null
}
 

Request      

GET api/modelosveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/modelosveiculo/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/modelosveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/modelosveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 41
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\V_modeloveiculo] consequatur"
}
 

Request      

GET api/modelosveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the modelosveiculo. Example: consequatur

POST api/modelosveiculo

Example request:
curl --request POST \
    "http://localhost/api/modelosveiculo" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"ativo\": true
}"
const url = new URL(
    "http://localhost/api/modelosveiculo"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "ativo": true
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/modelosveiculo

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

descricao   string  optional  

Must not be greater than 100 characters. Example: vmqeopfuudtdsufvyvddq

fk_marca   string  optional  

The id of an existing record in the marcaveiculo table.

ativo   boolean  optional  

Example: true

PUT api/modelosveiculo/{id}

Example request:
curl --request PUT \
    "http://localhost/api/modelosveiculo/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"ativo\": true
}"
const url = new URL(
    "http://localhost/api/modelosveiculo/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "ativo": true
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/modelosveiculo/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the modelosveiculo. Example: consequatur

Body Parameters

descricao   string  optional  

Must not be greater than 100 characters. Example: vmqeopfuudtdsufvyvddq

fk_marca   string  optional  

The id of an existing record in the marcaveiculo table.

ativo   boolean  optional  

Example: true

GET api/companhias

Example request:
curl --request GET \
    --get "http://localhost/api/companhias" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/companhias"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 40
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 5,
            "nome": "CONSIGAZ",
            "fantasia": "CONSIGAZ",
            "cnpj_cpf": "23.423.423/4234-23",
            "email": "kaua@hotmail.com",
            "endereco": null,
            "bairro": null,
            "cep": null,
            "cidade": 0,
            "ativo": 1,
            "created_at": "2025-04-07T20:25:43.000000Z",
            "updated_at": "2025-04-07T20:25:43.000000Z",
            "deleted_at": null,
            "numero": null,
            "complemento": null,
            "ncidade": null
        },
        {
            "id": 3,
            "nome": "COPAGAZ",
            "fantasia": "COPAGAZ",
            "cnpj_cpf": "23.423.423/4234-23",
            "email": "kaua@hotmail.com",
            "endereco": null,
            "bairro": null,
            "cep": null,
            "cidade": 0,
            "ativo": 1,
            "created_at": "2025-04-07T20:24:14.000000Z",
            "updated_at": "2025-04-07T20:24:14.000000Z",
            "deleted_at": null,
            "numero": null,
            "complemento": null,
            "ncidade": null
        },
        {
            "id": 2,
            "nome": "NACIONAL",
            "fantasia": "NACIONAL",
            "cnpj_cpf": "54.545.454/5454-54",
            "email": "liquigas@gmail.com",
            "endereco": null,
            "bairro": null,
            "cep": null,
            "cidade": 0,
            "ativo": 1,
            "created_at": "2025-02-28T15:45:18.000000Z",
            "updated_at": "2025-02-28T16:46:38.000000Z",
            "deleted_at": null,
            "numero": null,
            "complemento": null,
            "ncidade": null
        },
        {
            "id": 4,
            "nome": "SUPERGASBRAS",
            "fantasia": "SUPERGASBRAS",
            "cnpj_cpf": "23.423.423/4234-23",
            "email": "kaua@hotmail.com",
            "endereco": null,
            "bairro": null,
            "cep": null,
            "cidade": 0,
            "ativo": 1,
            "created_at": "2025-04-07T20:25:04.000000Z",
            "updated_at": "2025-04-07T20:25:04.000000Z",
            "deleted_at": null,
            "numero": null,
            "complemento": null,
            "ncidade": null
        },
        {
            "id": 1,
            "nome": "ULTRAGAS",
            "fantasia": "ULTRAGAS",
            "cnpj_cpf": "00210210201",
            "email": "ultragas@gmail.co,m",
            "endereco": "Rua Treze",
            "bairro": "Vinhais",
            "cep": "65071-330",
            "cidade": 2111300,
            "ativo": 1,
            "created_at": null,
            "updated_at": "2025-02-28T16:56:02.000000Z",
            "deleted_at": null,
            "numero": 32,
            "complemento": "fddfs",
            "ncidade": "São Luís - MA"
        }
    ],
    "total": 5,
    "searchTerm": null
}
 

Request      

GET api/companhias

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/companhias/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/companhias/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/companhias/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 39
access-control-allow-origin: *
 

{
    "id": 1,
    "nome": "ULTRAGAS",
    "fantasia": "ULTRAGAS",
    "cnpj_cpf": "00210210201",
    "email": "ultragas@gmail.co,m",
    "endereco": "Rua Treze",
    "bairro": "Vinhais",
    "cep": "65071-330",
    "cidade": 2111300,
    "ativo": 1,
    "created_at": null,
    "updated_at": "2025-02-28T16:56:02.000000Z",
    "deleted_at": null,
    "numero": 32,
    "complemento": "fddfs",
    "ncidade": "São Luís - MA"
}
 

Request      

GET api/companhias/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the companhia. Example: 1

POST api/companhias

Example request:
curl --request POST \
    "http://localhost/api/companhias" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/companhias"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/companhias

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/companhias/{id}

Example request:
curl --request PUT \
    "http://localhost/api/companhias/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/companhias/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/companhias/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the companhia. Example: 1

GET api/companhiaemails

Example request:
curl --request GET \
    --get "http://localhost/api/companhiaemails" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/companhiaemails"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 38
access-control-allow-origin: *
 

[
    {
        "id": 4,
        "fk_companhia": 1,
        "email": "teste@gmail.com",
        "created_at": "2025-04-07T20:21:41.000000Z",
        "updated_at": "2025-04-07T20:21:41.000000Z"
    },
    {
        "id": 5,
        "fk_companhia": 10,
        "email": "kauanog9@gmail.com",
        "created_at": "2025-04-07T20:29:08.000000Z",
        "updated_at": "2025-04-07T20:29:08.000000Z"
    },
    {
        "id": 6,
        "fk_companhia": 10,
        "email": "kauanog94535@gmail.com",
        "created_at": "2025-04-07T20:29:08.000000Z",
        "updated_at": "2025-04-07T20:29:08.000000Z"
    }
]
 

Request      

GET api/companhiaemails

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/companhiaemails/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/companhiaemails/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/companhiaemails/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 37
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\Cadastro\\Companhiaemails] consequatur"
}
 

Request      

GET api/companhiaemails/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the companhiaemail. Example: consequatur

POST api/companhiaemails

Example request:
curl --request POST \
    "http://localhost/api/companhiaemails" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"fk_companhia\": 17,
    \"emails\": [
        \"carolyne.luettgen@example.org\"
    ]
}"
const url = new URL(
    "http://localhost/api/companhiaemails"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "fk_companhia": 17,
    "emails": [
        "carolyne.luettgen@example.org"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/companhiaemails

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

fk_companhia   integer   

Example: 17

emails   string[]   

'emails' deve ser um array. Must be a valid email address.

PUT api/companhiaemails/{id}

Example request:
curl --request PUT \
    "http://localhost/api/companhiaemails/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/companhiaemails/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Request      

PUT api/companhiaemails/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the companhiaemail. Example: consequatur

PUT api/companhiaemailscompanhia/{idcompanhia}

Example request:
curl --request PUT \
    "http://localhost/api/companhiaemailscompanhia/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"emails\": [
        \"qkunze@example.com\"
    ]
}"
const url = new URL(
    "http://localhost/api/companhiaemailscompanhia/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "emails": [
        "qkunze@example.com"
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/companhiaemailscompanhia/{idcompanhia}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

idcompanhia   string   

Example: consequatur

Body Parameters

emails   string[]   

'emails' deve ser um array. Must be a valid email address.

DELETE api/companhiaemails/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/companhiaemails/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/companhiaemails/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/companhiaemails/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the companhiaemail. Example: consequatur

GET api/companhiaemailsid/{idcompanhia}

Example request:
curl --request GET \
    --get "http://localhost/api/companhiaemailsid/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/companhiaemailsid/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 36
access-control-allow-origin: *
 

[]
 

Request      

GET api/companhiaemailsid/{idcompanhia}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

idcompanhia   string   

Example: consequatur

GET api/companhiaemailsidemail/{email}

Example request:
curl --request GET \
    --get "http://localhost/api/companhiaemailsidemail/qkunze@example.com" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/companhiaemailsidemail/qkunze@example.com"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 35
access-control-allow-origin: *
 

[]
 

Request      

GET api/companhiaemailsidemail/{email}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

email   string   

Example: qkunze@example.com

POST api/financeiro/vendas

Example request:
curl --request POST \
    "http://localhost/api/financeiro/vendas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"xml_file\": \"consequatur\",
    \"fk_companhia\": \"consequatur\",
    \"ativo\": false
}"
const url = new URL(
    "http://localhost/api/financeiro/vendas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "xml_file": "consequatur",
    "fk_companhia": "consequatur",
    "ativo": false
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/financeiro/vendas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

xml_file   string   

Example: consequatur

fk_companhia   string   

Verifica se é um arquivo XML. The id of an existing record in the companhias table. Example: consequatur

ativo   boolean  optional  

Verifica se a companhia existe. Example: false

GET api/financeiro/vendas

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/vendas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/vendas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/vendas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/financeiro/vendas/{id}

Example request:
curl --request PUT \
    "http://localhost/api/financeiro/vendas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"valor_p13\": 11613.31890586,
    \"desconto\": 11613.31890586,
    \"distancia_km\": 11613.31890586,
    \"obs\": \"consequatur\",
    \"ativo\": false
}"
const url = new URL(
    "http://localhost/api/financeiro/vendas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "valor_p13": 11613.31890586,
    "desconto": 11613.31890586,
    "distancia_km": 11613.31890586,
    "obs": "consequatur",
    "ativo": false
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/financeiro/vendas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the venda. Example: consequatur

Body Parameters

valor_p13   number  optional  

Example: 11613.31890586

desconto   number  optional  

Example: 11613.31890586

distancia_km   number  optional  

Example: 11613.31890586

fk_formas_pagamento   string  optional  

The id of an existing record in the formas_pagamento table.

obs   string  optional  

Example: consequatur

ativo   boolean  optional  

Example: false

GET api/financeiro/vendas-clientes

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/vendas-clientes" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/vendas-clientes"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/vendas-clientes

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/financeiro/vendas-veiculos

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/vendas-veiculos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/vendas-veiculos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/vendas-veiculos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/financeiro/cif

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/cif" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/cif"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/cif

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/financeiro/cif

Example request:
curl --request POST \
    "http://localhost/api/financeiro/cif" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"xml_file\": \"consequatur\",
    \"cliente_dest_companhia\": 17,
    \"cliente_rem_companhia\": 17,
    \"ativo\": false
}"
const url = new URL(
    "http://localhost/api/financeiro/cif"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "xml_file": "consequatur",
    "cliente_dest_companhia": 17,
    "cliente_rem_companhia": 17,
    "ativo": false
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/financeiro/cif

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

xml_file   string   

Example: consequatur

cliente_dest_companhia   integer  optional  

Verifica se é um arquivo XML. The id of an existing record in the companhias table. Example: 17

cliente_rem_companhia   integer  optional  

Verifica se fk_companhia existe na tabela companhias. The id of an existing record in the companhias table. Example: 17

ativo   boolean  optional  

Verifica se fk_companhia existe na tabela companhias. Example: false

PUT api/financeiro/cif/{id}

Example request:
curl --request PUT \
    "http://localhost/api/financeiro/cif/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"ativo\": false
}"
const url = new URL(
    "http://localhost/api/financeiro/cif/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "ativo": false
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/financeiro/cif/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the cif. Example: consequatur

Body Parameters

ativo   boolean  optional  

Example: false

GET api/financeiro/cif_parametros

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/cif_parametros" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/cif_parametros"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/cif_parametros

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/financeiro/acordo-rotas

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/acordo-rotas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/acordo-rotas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/acordo-rotas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/financeiro/acordo-rotas

Example request:
curl --request POST \
    "http://localhost/api/financeiro/acordo-rotas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"ibge\": \"vmqeopfuu\",
    \"valor_frete\": 12
}"
const url = new URL(
    "http://localhost/api/financeiro/acordo-rotas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "ibge": "vmqeopfuu",
    "valor_frete": 12
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/financeiro/acordo-rotas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

ibge   string   

The ibge of an existing record in the cidades table. Must not be greater than 10 characters. Example: vmqeopfuu

valor_frete   number   

Must be at least 0. Example: 12

PUT api/financeiro/acordo-rotas/{id}

Example request:
curl --request PUT \
    "http://localhost/api/financeiro/acordo-rotas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"ibge\": \"vmqeopfuu\",
    \"valor_frete\": 12,
    \"ativo\": false
}"
const url = new URL(
    "http://localhost/api/financeiro/acordo-rotas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "ibge": "vmqeopfuu",
    "valor_frete": 12,
    "ativo": false
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/financeiro/acordo-rotas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the acordo rota. Example: consequatur

Body Parameters

ibge   string  optional  

The ibge of an existing record in the cidades table. Must not be greater than 10 characters. Example: vmqeopfuu

valor_frete   number  optional  

Must be at least 0. Example: 12

ativo   boolean  optional  

Example: false

GET api/financeiro/contas

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/contas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/contas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/contas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/financeiro/contas/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/contas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/contas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/contas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the conta. Example: consequatur

POST api/financeiro/contas

Example request:
curl --request POST \
    "http://localhost/api/financeiro/contas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"tipo\": 1,
    \"ativo\": true
}"
const url = new URL(
    "http://localhost/api/financeiro/contas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "tipo": 1,
    "ativo": true
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/financeiro/contas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

descricao   string   

Must not be greater than 100 characters. Example: vmqeopfuudtdsufvyvddq

tipo   integer   

Must not be greater than 1. Example: 1

ativo   boolean  optional  

Example: true

PUT api/financeiro/contas/{id}

Example request:
curl --request PUT \
    "http://localhost/api/financeiro/contas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"tipo\": 1,
    \"ativo\": true
}"
const url = new URL(
    "http://localhost/api/financeiro/contas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "tipo": 1,
    "ativo": true
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/financeiro/contas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the conta. Example: consequatur

Body Parameters

descricao   string  optional  

Must not be greater than 100 characters. Example: vmqeopfuudtdsufvyvddq

tipo   integer  optional  

Must not be greater than 1. Example: 1

ativo   boolean  optional  

Example: true

GET api/financeiro/formaspagamento

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/formaspagamento" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/formaspagamento"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/formaspagamento

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/financeiro/formaspagamento/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/formaspagamento/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/formaspagamento/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/formaspagamento/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the formaspagamento. Example: consequatur

POST api/financeiro/formaspagamento

Example request:
curl --request POST \
    "http://localhost/api/financeiro/formaspagamento" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"ativo\": true
}"
const url = new URL(
    "http://localhost/api/financeiro/formaspagamento"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "ativo": true
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/financeiro/formaspagamento

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

descricao   string   

Must not be greater than 100 characters. Example: vmqeopfuudtdsufvyvddq

ativo   boolean  optional  

Example: true

PUT api/financeiro/formaspagamento/{id}

Example request:
curl --request PUT \
    "http://localhost/api/financeiro/formaspagamento/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"ativo\": true
}"
const url = new URL(
    "http://localhost/api/financeiro/formaspagamento/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "ativo": true
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/financeiro/formaspagamento/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the formaspagamento. Example: consequatur

Body Parameters

descricao   string  optional  

Must not be greater than 100 characters. Example: vmqeopfuudtdsufvyvddq

ativo   boolean  optional  

Example: true

GET api/financeiro/nfe

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/nfe" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/nfe"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/nfe

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/financeiro/nfe/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/nfe/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/nfe/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/nfe/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the nfe. Example: consequatur

POST api/financeiro/nfe

Example request:
curl --request POST \
    "http://localhost/api/financeiro/nfe" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"nNF\": 17,
    \"ativo\": false
}"
const url = new URL(
    "http://localhost/api/financeiro/nfe"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "nNF": 17,
    "ativo": false
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/financeiro/nfe

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

nNF   integer   

Example: 17

ativo   boolean  optional  

Example: false

PUT api/financeiro/nfe

Example request:
curl --request PUT \
    "http://localhost/api/financeiro/nfe" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"nNF\": 17,
    \"ativo\": false
}"
const url = new URL(
    "http://localhost/api/financeiro/nfe"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "nNF": 17,
    "ativo": false
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/financeiro/nfe

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

nNF   integer  optional  

Example: 17

ativo   boolean  optional  

Example: false

GET api/financeiro/contasdespesas

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/contasdespesas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/contasdespesas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/contasdespesas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/financeiro/contasdespesas/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/contasdespesas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/contasdespesas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/contasdespesas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the contasdespesa. Example: consequatur

POST api/financeiro/contasdespesas

Example request:
curl --request POST \
    "http://localhost/api/financeiro/contasdespesas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"fk_conta\": 1,
    \"ativo\": true
}"
const url = new URL(
    "http://localhost/api/financeiro/contasdespesas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "fk_conta": 1,
    "ativo": true
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/financeiro/contasdespesas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

descricao   string   

Must not be greater than 100 characters. Example: vmqeopfuudtdsufvyvddq

fk_conta   integer   

The id of an existing record in the contas table. Must not be greater than 11. Example: 1

ativo   boolean  optional  

Example: true

PUT api/financeiro/contasdespesas/{id}

Example request:
curl --request PUT \
    "http://localhost/api/financeiro/contasdespesas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"fk_conta\": 1,
    \"ativo\": true
}"
const url = new URL(
    "http://localhost/api/financeiro/contasdespesas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "fk_conta": 1,
    "ativo": true
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/financeiro/contasdespesas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the contasdespesa. Example: consequatur

Body Parameters

descricao   string  optional  

Must not be greater than 100 characters. Example: vmqeopfuudtdsufvyvddq

fk_conta   integer  optional  

The id of an existing record in the contas table. Must not be greater than 11. Example: 1

ativo   boolean  optional  

Example: true

GET api/financeiro/contasareceber

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/contasareceber" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/contasareceber"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/contasareceber

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/financeiro/contasareceber

Example request:
curl --request POST \
    "http://localhost/api/financeiro/contasareceber" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/contasareceber"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/financeiro/contasareceber

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

PUT api/financeiro/contasareceber-baixa/{id}

Example request:
curl --request PUT \
    "http://localhost/api/financeiro/contasareceber-baixa/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"valor_pago\": 73,
    \"data_pagamento\": \"2025-05-22T10:22:06\",
    \"fk_forma_pagamento\": 11613.31890586
}"
const url = new URL(
    "http://localhost/api/financeiro/contasareceber-baixa/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "valor_pago": 73,
    "data_pagamento": "2025-05-22T10:22:06",
    "fk_forma_pagamento": 11613.31890586
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/financeiro/contasareceber-baixa/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the contasareceber baixa. Example: consequatur

Body Parameters

valor_pago   number   

Must be at least 0. Example: 73

data_pagamento   string   

Must be a valid date. Example: 2025-05-22T10:22:06

fk_forma_pagamento   number   

The id of an existing record in the formas_pagamento table. Example: 11613.31890586

GET api/financeiro/contasapagar

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/contasapagar" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/contasapagar"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/contasapagar

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/financeiro/contasapagar

Example request:
curl --request POST \
    "http://localhost/api/financeiro/contasapagar" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"valor\": 11613.31890586,
    \"emissao\": \"2025-05-22T10:22:06\",
    \"vencimento\": \"2025-05-22T10:22:06\",
    \"fk_fornecedor\": \"consequatur\",
    \"fk_itens_conta\": \"consequatur\",
    \"nfe\": \"mqeopfuudtdsufvyvddqa\",
    \"data_nfe\": \"2025-05-22T10:22:06\",
    \"parcela\": 17
}"
const url = new URL(
    "http://localhost/api/financeiro/contasapagar"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "valor": 11613.31890586,
    "emissao": "2025-05-22T10:22:06",
    "vencimento": "2025-05-22T10:22:06",
    "fk_fornecedor": "consequatur",
    "fk_itens_conta": "consequatur",
    "nfe": "mqeopfuudtdsufvyvddqa",
    "data_nfe": "2025-05-22T10:22:06",
    "parcela": 17
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/financeiro/contasapagar

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

descricao   string   

Must not be greater than 255 characters. Example: vmqeopfuudtdsufvyvddq

valor   number   

Example: 11613.31890586

emissao   string   

Must be a valid date. Example: 2025-05-22T10:22:06

vencimento   string  optional  

Must be a valid date. Example: 2025-05-22T10:22:06

fk_fornecedor   string   

The id of an existing record in the fornecedores table. Example: consequatur

fk_itens_conta   string   

The id of an existing record in the contas_despesas table. Example: consequatur

nfe   string  optional  

Must not be greater than 50 characters. Example: mqeopfuudtdsufvyvddqa

data_nfe   string  optional  

Must be a valid date. Example: 2025-05-22T10:22:06

parcela   integer  optional  

Example: 17

PUT api/financeiro/contasapagar/{id}

Example request:
curl --request PUT \
    "http://localhost/api/financeiro/contasapagar/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"vencimento\": \"2025-05-22T10:22:06\",
    \"valor\": 11613.31890586,
    \"recebido\": 11613.31890586,
    \"desconto\": 11613.31890586,
    \"emissao\": \"2025-05-22T10:22:06\",
    \"pagamento\": \"2025-05-22T10:22:06\",
    \"nfe\": \"opfuudtdsufvyvddqamni\",
    \"ativo\": true
}"
const url = new URL(
    "http://localhost/api/financeiro/contasapagar/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "vencimento": "2025-05-22T10:22:06",
    "valor": 11613.31890586,
    "recebido": 11613.31890586,
    "desconto": 11613.31890586,
    "emissao": "2025-05-22T10:22:06",
    "pagamento": "2025-05-22T10:22:06",
    "nfe": "opfuudtdsufvyvddqamni",
    "ativo": true
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/financeiro/contasapagar/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the contasapagar. Example: consequatur

Body Parameters

descricao   string  optional  

Must not be greater than 255 characters. Example: vmqeopfuudtdsufvyvddq

vencimento   string  optional  

Must be a valid date. Example: 2025-05-22T10:22:06

valor   number  optional  

Example: 11613.31890586

recebido   number  optional  

Example: 11613.31890586

desconto   number  optional  

Example: 11613.31890586

emissao   string  optional  

Must be a valid date. Example: 2025-05-22T10:22:06

pagamento   string  optional  

Must be a valid date. Example: 2025-05-22T10:22:06

fk_formapag   string  optional  

The id of an existing record in the formas_pagamento table.

fk_fornecedor   string  optional  

The id of an existing record in the fornecedores table.

fk_itens_conta   string  optional  

The id of an existing record in the contas_despesas table.

nfe   string  optional  

Must not be greater than 50 characters. Example: opfuudtdsufvyvddqamni

ativo   boolean  optional  

Example: true

PUT api/financeiro/contasapagar-baixa/{id}

Example request:
curl --request PUT \
    "http://localhost/api/financeiro/contasapagar-baixa/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"valor_pago\": 11613.31890586,
    \"fk_formapag\": \"consequatur\",
    \"desconto\": 11613.31890586,
    \"data_pagamento\": \"2025-05-22T10:22:06\"
}"
const url = new URL(
    "http://localhost/api/financeiro/contasapagar-baixa/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "valor_pago": 11613.31890586,
    "fk_formapag": "consequatur",
    "desconto": 11613.31890586,
    "data_pagamento": "2025-05-22T10:22:06"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/financeiro/contasapagar-baixa/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the contasapagar baixa. Example: consequatur

Body Parameters

valor_pago   number   

Example: 11613.31890586

fk_formapag   string   

The id of an existing record in the formas_pagamento table. Example: consequatur

desconto   number  optional  

Example: 11613.31890586

data_pagamento   string   

Must be a valid date. Example: 2025-05-22T10:22:06

GET api/financeiro/servicos

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/servicos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/servicos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/servicos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/financeiro/servicos/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/servicos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/servicos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/servicos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the servico. Example: consequatur

POST api/financeiro/servicos

Example request:
curl --request POST \
    "http://localhost/api/financeiro/servicos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"emissao\": \"2025-05-22T10:22:07\",
    \"nfse\": 17,
    \"descricao\": \"mqeopfuudtdsufvyvddqa\",
    \"parcela\": \"mn\",
    \"prazo\": \"ii\",
    \"total_nota\": 11613.31890586,
    \"aliquota\": 11613.31890586,
    \"iss\": 11613.31890586,
    \"pagamento\": \"2025-05-22T10:22:07\",
    \"status\": \"opfuudtdsufvy\",
    \"fk_cliente\": 17,
    \"fk_usuario\": 17,
    \"ativo\": false
}"
const url = new URL(
    "http://localhost/api/financeiro/servicos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "emissao": "2025-05-22T10:22:07",
    "nfse": 17,
    "descricao": "mqeopfuudtdsufvyvddqa",
    "parcela": "mn",
    "prazo": "ii",
    "total_nota": 11613.31890586,
    "aliquota": 11613.31890586,
    "iss": 11613.31890586,
    "pagamento": "2025-05-22T10:22:07",
    "status": "opfuudtdsufvy",
    "fk_cliente": 17,
    "fk_usuario": 17,
    "ativo": false
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/financeiro/servicos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

emissao   string   

Must be a valid date. Example: 2025-05-22T10:22:07

nfse   integer   

Example: 17

descricao   string   

Must not be greater than 100 characters. Example: mqeopfuudtdsufvyvddqa

parcela   string  optional  

Must not be greater than 2 characters. Example: mn

prazo   string  optional  

Must not be greater than 2 characters. Example: ii

total_nota   number  optional  

Example: 11613.31890586

aliquota   number  optional  

Example: 11613.31890586

iss   number  optional  

Example: 11613.31890586

pagamento   string  optional  

Must be a valid date. Example: 2025-05-22T10:22:07

status   string   

Must not be greater than 15 characters. Example: opfuudtdsufvy

fk_cliente   integer   

The id of an existing record in the clientes table. Example: 17

fk_usuario   integer   

The id of an existing record in the users table. Example: 17

ativo   boolean  optional  

Example: false

PUT api/financeiro/servicos/{id}

Example request:
curl --request PUT \
    "http://localhost/api/financeiro/servicos/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"emissao\": \"2025-05-22T10:22:07\",
    \"nfse\": 17,
    \"descricao\": \"mqeopfuudtdsufvyvddqa\",
    \"parcela\": \"mn\",
    \"prazo\": \"ii\",
    \"total_nota\": 11613.31890586,
    \"aliquota\": 11613.31890586,
    \"iss\": 11613.31890586,
    \"pagamento\": \"2025-05-22T10:22:07\",
    \"status\": \"opfuudtdsufvy\",
    \"fk_cliente\": 17,
    \"fk_usuario\": 17,
    \"ativo\": false
}"
const url = new URL(
    "http://localhost/api/financeiro/servicos/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "emissao": "2025-05-22T10:22:07",
    "nfse": 17,
    "descricao": "mqeopfuudtdsufvyvddqa",
    "parcela": "mn",
    "prazo": "ii",
    "total_nota": 11613.31890586,
    "aliquota": 11613.31890586,
    "iss": 11613.31890586,
    "pagamento": "2025-05-22T10:22:07",
    "status": "opfuudtdsufvy",
    "fk_cliente": 17,
    "fk_usuario": 17,
    "ativo": false
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/financeiro/servicos/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the servico. Example: consequatur

Body Parameters

emissao   string   

Must be a valid date. Example: 2025-05-22T10:22:07

nfse   integer   

Example: 17

descricao   string  optional  

Must not be greater than 100 characters. Example: mqeopfuudtdsufvyvddqa

parcela   string  optional  

Must not be greater than 2 characters. Example: mn

prazo   string  optional  

Must not be greater than 2 characters. Example: ii

total_nota   number  optional  

Example: 11613.31890586

aliquota   number  optional  

Example: 11613.31890586

iss   number  optional  

Example: 11613.31890586

pagamento   string  optional  

Must be a valid date. Example: 2025-05-22T10:22:07

status   string   

Must not be greater than 15 characters. Example: opfuudtdsufvy

fk_cliente   integer   

The id of an existing record in the clientes table. Example: 17

fk_usuario   integer   

The id of an existing record in the users table. Example: 17

ativo   boolean  optional  

Example: false

GET api/financeiro/caixa

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/caixa" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/caixa"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/caixa

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/financeiro/caixa/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/financeiro/caixa/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/financeiro/caixa/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/financeiro/caixa/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the caixa. Example: consequatur

POST api/financeiro/caixa

Example request:
curl --request POST \
    "http://localhost/api/financeiro/caixa" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"operacao\": \"a\",
    \"fk_formapag\": 17,
    \"valor\": \"consequatur\",
    \"data\": \"consequatur\",
    \"ativo\": false
}"
const url = new URL(
    "http://localhost/api/financeiro/caixa"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "operacao": "a",
    "fk_formapag": 17,
    "valor": "consequatur",
    "data": "consequatur",
    "ativo": false
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/financeiro/caixa

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

descricao   string   

Must not be greater than 100 characters. Example: vmqeopfuudtdsufvyvddq

operacao   string   

Must not be greater than 1 character. Example: a

fk_formapag   integer  optional  

Example: 17

valor   string   

Example: consequatur

data   string   

Example: consequatur

ativo   boolean  optional  

Example: false

PUT api/financeiro/caixa/{id}

Example request:
curl --request PUT \
    "http://localhost/api/financeiro/caixa/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"tipo\": \"a\",
    \"ativo\": true
}"
const url = new URL(
    "http://localhost/api/financeiro/caixa/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "tipo": "a",
    "ativo": true
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/financeiro/caixa/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the caixa. Example: consequatur

Body Parameters

descricao   string  optional  

Must not be greater than 100 characters. Example: vmqeopfuudtdsufvyvddq

tipo   string  optional  

Must not be greater than 1 character. Example: a

ativo   boolean  optional  

Example: true

GET api/venda-rota

Example request:
curl --request GET \
    --get "http://localhost/api/venda-rota" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/venda-rota"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/venda-rota

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/venda-rota

Example request:
curl --request POST \
    "http://localhost/api/venda-rota" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"rota\": {
        \"fk_colaborador_veiculo\": \"consequatur\"
    },
    \"venda_rota\": {
        \"ativo\": false
    }
}"
const url = new URL(
    "http://localhost/api/venda-rota"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "rota": {
        "fk_colaborador_veiculo": "consequatur"
    },
    "venda_rota": {
        "ativo": false
    }
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/venda-rota

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

rota   object  optional  
fk_colaborador_veiculo   string   

The id of an existing record in the colaborador_veiculo table. Example: consequatur

vendas_pai   object  optional  
vendas_filha   object  optional  
venda_rota   object  optional  
fk_venda   string[]  optional  

The id of an existing record in the vendas table.

ativo   boolean  optional  

Example: false

PUT api/venda-rota/{id}

Example request:
curl --request PUT \
    "http://localhost/api/venda-rota/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"rota\": {
        \"fk_colaborador_veiculo\": \"consequatur\",
        \"data_fim\": \"2025-05-22T10:22:08\"
    },
    \"venda_rota\": {
        \"fk_venda\": \"consequatur\",
        \"ativo\": false
    }
}"
const url = new URL(
    "http://localhost/api/venda-rota/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "rota": {
        "fk_colaborador_veiculo": "consequatur",
        "data_fim": "2025-05-22T10:22:08"
    },
    "venda_rota": {
        "fk_venda": "consequatur",
        "ativo": false
    }
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/venda-rota/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the venda rotum. Example: consequatur

Body Parameters

rota   object  optional  
fk_colaborador_veiculo   string   

The id of an existing record in the colaborador_veiculo table. Example: consequatur

data_fim   string  optional  

Must be a valid date. Example: 2025-05-22T10:22:08

venda_rota   object  optional  
fk_venda   string   

The id of an existing record in the vendas table. Example: consequatur

ativo   boolean  optional  

Example: false

GET api/rota

Example request:
curl --request GET \
    --get "http://localhost/api/rota" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/rota"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/rota

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/rota

Example request:
curl --request POST \
    "http://localhost/api/rota" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"fk_colaborador_veiculo\": 17,
    \"data_fim\": \"2025-05-22T10:22:09\",
    \"ativo\": false
}"
const url = new URL(
    "http://localhost/api/rota"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "fk_colaborador_veiculo": 17,
    "data_fim": "2025-05-22T10:22:09",
    "ativo": false
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/rota

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

fk_colaborador_veiculo   integer   

The id of an existing record in the colaborador_veiculo table. Example: 17

data_fim   string  optional  

Must be a valid date. Example: 2025-05-22T10:22:09

ativo   boolean  optional  

Example: false

PUT api/rota/{id}

Example request:
curl --request PUT \
    "http://localhost/api/rota/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"fk_colaborador_veiculo\": 17,
    \"data_fim\": \"2025-05-22T10:22:09\",
    \"ativo\": false
}"
const url = new URL(
    "http://localhost/api/rota/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "fk_colaborador_veiculo": 17,
    "data_fim": "2025-05-22T10:22:09",
    "ativo": false
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/rota/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the rotum. Example: consequatur

Body Parameters

fk_colaborador_veiculo   integer   

The id of an existing record in the colaborador_veiculo table. Example: 17

data_fim   string  optional  

Must be a valid date. Example: 2025-05-22T10:22:09

ativo   boolean  optional  

Example: false

POST api/desassociar-rota

Example request:
curl --request POST \
    "http://localhost/api/desassociar-rota" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"fk_colaborador_veiculo\": [
        17
    ]
}"
const url = new URL(
    "http://localhost/api/desassociar-rota"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "fk_colaborador_veiculo": [
        17
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/desassociar-rota

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

fk_colaborador_veiculo   integer[]  optional  

The id of an existing record in the colaborador_veiculo table.

GET api/vendas-romaneio-criar/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/vendas-romaneio-criar/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/vendas-romaneio-criar/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (500):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 34
access-control-allow-origin: *
 

{
    "message": "Server Error"
}
 

Request      

GET api/vendas-romaneio-criar/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the vendas romaneio criar. Example: consequatur

GET api/vendas-romaneio/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/vendas-romaneio/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/vendas-romaneio/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 33
access-control-allow-origin: *
 

{
    "message": "Venda não encontrada."
}
 

Request      

GET api/vendas-romaneio/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the vendas romaneio. Example: consequatur

GET api/bancos

Example request:
curl --request GET \
    --get "http://localhost/api/bancos" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/bancos"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 32
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 223,
            "banco": "406",
            "nome": "ACCREDITO - SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": []
        },
        {
            "id": 169,
            "banco": "332",
            "nome": "ACESSO SOLUÇÕES DE PAGAMENTO S.A. - INSTITUIÇÃO DE PAGAMENTO",
            "agencias": [
                {
                    "id": 15476,
                    "nome": "AGENCIA 1 DO BANCO ACESSO SOLU��ES DE PAGAMENTO S.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 62,
            "banco": "117",
            "nome": "ADVANCED CORRETORA DE CÂMBIO LTDA",
            "agencias": [
                {
                    "id": 11986,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 129,
            "banco": "272",
            "nome": "AGK CORRETORA DE CAMBIO S.A.",
            "agencias": [
                {
                    "id": 15402,
                    "nome": "SEDE",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 178,
            "banco": "349",
            "nome": "AL5 S.A. CRÉDITO, FINANCIAMENTO E INVESTIMENTO",
            "agencias": [
                {
                    "id": 18042,
                    "nome": "MATRIZ",
                    "municipio": "CUIABA"
                }
            ]
        },
        {
            "id": 155,
            "banco": "313",
            "nome": "AMAZÔNIA CORRETORA DE CÂMBIO LTDA.",
            "agencias": [
                {
                    "id": 15429,
                    "nome": "MATRIZ",
                    "municipio": "MANAUS"
                }
            ]
        },
        {
            "id": 163,
            "banco": "325",
            "nome": "ÁRAMA DTVM S.A.",
            "agencias": [
                {
                    "id": 15470,
                    "nome": "MATRIZ",
                    "municipio": "RIO DE JANEIRO"
                }
            ]
        },
        {
            "id": 265,
            "banco": "461",
            "nome": "ASAAS IP S.A.",
            "agencias": [
                {
                    "id": 18246,
                    "nome": "AGENCIA 1 DO BANCO ASAAS IP S.A.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 294,
            "banco": "513",
            "nome": "ATF CREDIT SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18274,
                    "nome": "MATRIZ",
                    "municipio": "PORTO ALEGRE"
                }
            ]
        },
        {
            "id": 304,
            "banco": "527",
            "nome": "ATICCA - SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": []
        },
        {
            "id": 97,
            "banco": "188",
            "nome": "ATIVA S.A. INVESTIMENTOS CCTVM",
            "agencias": [
                {
                    "id": 12035,
                    "nome": "ATIVA S.A. CORRETORA DE T�TULOS, CAMBIO E VALORES",
                    "municipio": "CURITIBA"
                }
            ]
        },
        {
            "id": 289,
            "banco": "508",
            "nome": "AVENUE SECURITIES DTVM LTDA.",
            "agencias": [
                {
                    "id": 18270,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 267,
            "banco": "463",
            "nome": "AZUMI DTVM",
            "agencias": [
                {
                    "id": 18248,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 37,
            "banco": "80",
            "nome": "B&T CORRETORA DE CAMBIO LTDA.",
            "agencias": [
                {
                    "id": 8423,
                    "nome": "RECIFE",
                    "municipio": "RECIFE"
                }
            ]
        },
        {
            "id": 116,
            "banco": "246",
            "nome": "BANCO ABC BRASIL S.A.",
            "agencias": [
                {
                    "id": 15380,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15381,
                    "nome": "AG�NCIA RIBEIR�O",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 15382,
                    "nome": "AG�NCIA GOI�NIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 15383,
                    "nome": "AG�NCIA BLUMENAU",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 15384,
                    "nome": "AG�NCIA RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 15385,
                    "nome": "AG�NCIA GUARULHOS",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 15386,
                    "nome": "BELO HORIZONTE - AG�NCIA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15387,
                    "nome": "CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 15388,
                    "nome": "RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15389,
                    "nome": "CURITIBA   AGENCIA",
                    "municipio": "CURITIBA"
                }
            ]
        },
        {
            "id": 32,
            "banco": "75",
            "nome": "BANCO ABN AMRO S.A.",
            "agencias": [
                {
                    "id": 8415,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 146,
            "banco": "299",
            "nome": "BANCO AFINZ S.A. - BANCO MÚLTIPLO",
            "agencias": [
                {
                    "id": 15420,
                    "nome": "AG�NCIA MATRIZ",
                    "municipio": "SOROCABA"
                }
            ]
        },
        {
            "id": 65,
            "banco": "121",
            "nome": "BANCO AGIBANK S.A.",
            "agencias": [
                {
                    "id": 11989,
                    "nome": "AGENCIA MATRIZ",
                    "municipio": "CAMPINAS"
                }
            ]
        },
        {
            "id": 15,
            "banco": "25",
            "nome": "BANCO ALFA S.A.",
            "agencias": [
                {
                    "id": 5007,
                    "nome": "SEDE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5008,
                    "nome": "CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5009,
                    "nome": "SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5010,
                    "nome": "RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5011,
                    "nome": "BELO HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5012,
                    "nome": "SALVADOR",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 5013,
                    "nome": "CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5014,
                    "nome": "PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5015,
                    "nome": "BRASILIA",
                    "municipio": "BRASILIA"
                }
            ]
        },
        {
            "id": 27,
            "banco": "65",
            "nome": "BANCO ANDBANK (BRASIL) S.A.",
            "agencias": [
                {
                    "id": 8312,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 107,
            "banco": "213",
            "nome": "BANCO ARBI S.A.",
            "agencias": [
                {
                    "id": 12065,
                    "nome": "MATRIZ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12066,
                    "nome": "SALVADOR/BA",
                    "municipio": "SALVADOR"
                }
            ]
        },
        {
            "id": 48,
            "banco": "96",
            "nome": "BANCO B3 S.A.",
            "agencias": [
                {
                    "id": 8435,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 14,
            "banco": "24",
            "nome": "BANCO BANDEPE S.A.",
            "agencias": [
                {
                    "id": 4699,
                    "nome": "1",
                    "municipio": ""
                },
                {
                    "id": 4700,
                    "nome": "10",
                    "municipio": ""
                },
                {
                    "id": 4701,
                    "nome": "100",
                    "municipio": ""
                },
                {
                    "id": 4702,
                    "nome": "1000",
                    "municipio": ""
                },
                {
                    "id": 4703,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4704,
                    "nome": "10010",
                    "municipio": ""
                },
                {
                    "id": 4705,
                    "nome": "1002",
                    "municipio": ""
                },
                {
                    "id": 4706,
                    "nome": "10020",
                    "municipio": ""
                },
                {
                    "id": 4707,
                    "nome": "1003",
                    "municipio": ""
                },
                {
                    "id": 4708,
                    "nome": "10030",
                    "municipio": ""
                },
                {
                    "id": 4709,
                    "nome": "1004",
                    "municipio": ""
                },
                {
                    "id": 4710,
                    "nome": "10040",
                    "municipio": ""
                },
                {
                    "id": 4711,
                    "nome": "1005",
                    "municipio": ""
                },
                {
                    "id": 4712,
                    "nome": "10050",
                    "municipio": ""
                },
                {
                    "id": 4713,
                    "nome": "1007",
                    "municipio": ""
                },
                {
                    "id": 4714,
                    "nome": "10070",
                    "municipio": ""
                },
                {
                    "id": 4715,
                    "nome": "1008",
                    "municipio": ""
                },
                {
                    "id": 4716,
                    "nome": "10080",
                    "municipio": ""
                },
                {
                    "id": 4717,
                    "nome": "1009",
                    "municipio": ""
                },
                {
                    "id": 4718,
                    "nome": "10090",
                    "municipio": ""
                },
                {
                    "id": 4719,
                    "nome": "101",
                    "municipio": ""
                },
                {
                    "id": 4720,
                    "nome": "1010",
                    "municipio": ""
                },
                {
                    "id": 4721,
                    "nome": "10100",
                    "municipio": ""
                },
                {
                    "id": 4722,
                    "nome": "1011",
                    "municipio": ""
                },
                {
                    "id": 4723,
                    "nome": "10110",
                    "municipio": ""
                },
                {
                    "id": 4724,
                    "nome": "1012",
                    "municipio": ""
                },
                {
                    "id": 4725,
                    "nome": "10120",
                    "municipio": ""
                },
                {
                    "id": 4726,
                    "nome": "1013",
                    "municipio": ""
                },
                {
                    "id": 4727,
                    "nome": "10130",
                    "municipio": ""
                },
                {
                    "id": 4728,
                    "nome": "1014",
                    "municipio": ""
                },
                {
                    "id": 4729,
                    "nome": "10140",
                    "municipio": ""
                },
                {
                    "id": 4730,
                    "nome": "1015",
                    "municipio": ""
                },
                {
                    "id": 4731,
                    "nome": "10150",
                    "municipio": ""
                },
                {
                    "id": 4732,
                    "nome": "1016",
                    "municipio": ""
                },
                {
                    "id": 4733,
                    "nome": "10160",
                    "municipio": ""
                },
                {
                    "id": 4734,
                    "nome": "1017",
                    "municipio": ""
                },
                {
                    "id": 4735,
                    "nome": "10170",
                    "municipio": ""
                },
                {
                    "id": 4736,
                    "nome": "1019",
                    "municipio": ""
                },
                {
                    "id": 4737,
                    "nome": "10190",
                    "municipio": ""
                },
                {
                    "id": 4738,
                    "nome": "102",
                    "municipio": ""
                },
                {
                    "id": 4739,
                    "nome": "1020",
                    "municipio": ""
                },
                {
                    "id": 4740,
                    "nome": "10200",
                    "municipio": ""
                },
                {
                    "id": 4741,
                    "nome": "10210",
                    "municipio": ""
                },
                {
                    "id": 4742,
                    "nome": "1022",
                    "municipio": ""
                },
                {
                    "id": 4743,
                    "nome": "10220",
                    "municipio": ""
                },
                {
                    "id": 4744,
                    "nome": "1023",
                    "municipio": ""
                },
                {
                    "id": 4745,
                    "nome": "10230",
                    "municipio": ""
                },
                {
                    "id": 4746,
                    "nome": "1024",
                    "municipio": ""
                },
                {
                    "id": 4747,
                    "nome": "10240",
                    "municipio": ""
                },
                {
                    "id": 4748,
                    "nome": "1025",
                    "municipio": ""
                },
                {
                    "id": 4749,
                    "nome": "10250",
                    "municipio": ""
                },
                {
                    "id": 4750,
                    "nome": "1026",
                    "municipio": ""
                },
                {
                    "id": 4751,
                    "nome": "10260",
                    "municipio": ""
                },
                {
                    "id": 4752,
                    "nome": "1027",
                    "municipio": ""
                },
                {
                    "id": 4753,
                    "nome": "10270",
                    "municipio": ""
                },
                {
                    "id": 4754,
                    "nome": "1028",
                    "municipio": ""
                },
                {
                    "id": 4755,
                    "nome": "10280",
                    "municipio": ""
                },
                {
                    "id": 4756,
                    "nome": "1029",
                    "municipio": ""
                },
                {
                    "id": 4757,
                    "nome": "10290",
                    "municipio": ""
                },
                {
                    "id": 4758,
                    "nome": "103",
                    "municipio": ""
                },
                {
                    "id": 4759,
                    "nome": "1030",
                    "municipio": ""
                },
                {
                    "id": 4760,
                    "nome": "10300",
                    "municipio": ""
                },
                {
                    "id": 4761,
                    "nome": "1031",
                    "municipio": ""
                },
                {
                    "id": 4762,
                    "nome": "10310",
                    "municipio": ""
                },
                {
                    "id": 4763,
                    "nome": "1032",
                    "municipio": ""
                },
                {
                    "id": 4764,
                    "nome": "10320",
                    "municipio": ""
                },
                {
                    "id": 4765,
                    "nome": "1033",
                    "municipio": ""
                },
                {
                    "id": 4766,
                    "nome": "10330",
                    "municipio": ""
                },
                {
                    "id": 4767,
                    "nome": "1034",
                    "municipio": ""
                },
                {
                    "id": 4768,
                    "nome": "10340",
                    "municipio": ""
                },
                {
                    "id": 4769,
                    "nome": "1035",
                    "municipio": ""
                },
                {
                    "id": 4770,
                    "nome": "10350",
                    "municipio": ""
                },
                {
                    "id": 4771,
                    "nome": "1036",
                    "municipio": ""
                },
                {
                    "id": 4772,
                    "nome": "10360",
                    "municipio": ""
                },
                {
                    "id": 4773,
                    "nome": "1037",
                    "municipio": ""
                },
                {
                    "id": 4774,
                    "nome": "10370",
                    "municipio": ""
                },
                {
                    "id": 4775,
                    "nome": "1038",
                    "municipio": ""
                },
                {
                    "id": 4776,
                    "nome": "10380",
                    "municipio": ""
                },
                {
                    "id": 4777,
                    "nome": "1039",
                    "municipio": ""
                },
                {
                    "id": 4778,
                    "nome": "10390",
                    "municipio": ""
                },
                {
                    "id": 4779,
                    "nome": "104",
                    "municipio": ""
                },
                {
                    "id": 4780,
                    "nome": "1041",
                    "municipio": ""
                },
                {
                    "id": 4781,
                    "nome": "10410",
                    "municipio": ""
                },
                {
                    "id": 4782,
                    "nome": "1045",
                    "municipio": ""
                },
                {
                    "id": 4783,
                    "nome": "10450",
                    "municipio": ""
                },
                {
                    "id": 4784,
                    "nome": "1046",
                    "municipio": ""
                },
                {
                    "id": 4785,
                    "nome": "10460",
                    "municipio": ""
                },
                {
                    "id": 4786,
                    "nome": "1047",
                    "municipio": ""
                },
                {
                    "id": 4787,
                    "nome": "10470",
                    "municipio": ""
                },
                {
                    "id": 4788,
                    "nome": "1048",
                    "municipio": ""
                },
                {
                    "id": 4789,
                    "nome": "10480",
                    "municipio": ""
                },
                {
                    "id": 4790,
                    "nome": "1049",
                    "municipio": ""
                },
                {
                    "id": 4791,
                    "nome": "10490",
                    "municipio": ""
                },
                {
                    "id": 4792,
                    "nome": "105",
                    "municipio": ""
                },
                {
                    "id": 4793,
                    "nome": "1051",
                    "municipio": ""
                },
                {
                    "id": 4794,
                    "nome": "10510",
                    "municipio": ""
                },
                {
                    "id": 4795,
                    "nome": "1052",
                    "municipio": ""
                },
                {
                    "id": 4796,
                    "nome": "10520",
                    "municipio": ""
                },
                {
                    "id": 4797,
                    "nome": "1053",
                    "municipio": ""
                },
                {
                    "id": 4798,
                    "nome": "10530",
                    "municipio": ""
                },
                {
                    "id": 4799,
                    "nome": "1054",
                    "municipio": ""
                },
                {
                    "id": 4800,
                    "nome": "10540",
                    "municipio": ""
                },
                {
                    "id": 4801,
                    "nome": "1056",
                    "municipio": ""
                },
                {
                    "id": 4802,
                    "nome": "10560",
                    "municipio": ""
                },
                {
                    "id": 4803,
                    "nome": "1057",
                    "municipio": ""
                },
                {
                    "id": 4804,
                    "nome": "10570",
                    "municipio": ""
                },
                {
                    "id": 4805,
                    "nome": "1058",
                    "municipio": ""
                },
                {
                    "id": 4806,
                    "nome": "10580",
                    "municipio": ""
                },
                {
                    "id": 4807,
                    "nome": "1059",
                    "municipio": ""
                },
                {
                    "id": 4808,
                    "nome": "10590",
                    "municipio": ""
                },
                {
                    "id": 4809,
                    "nome": "106",
                    "municipio": ""
                },
                {
                    "id": 4810,
                    "nome": "1060",
                    "municipio": ""
                },
                {
                    "id": 4811,
                    "nome": "10600",
                    "municipio": ""
                },
                {
                    "id": 4812,
                    "nome": "1064",
                    "municipio": ""
                },
                {
                    "id": 4813,
                    "nome": "10640",
                    "municipio": ""
                },
                {
                    "id": 4814,
                    "nome": "1065",
                    "municipio": ""
                },
                {
                    "id": 4815,
                    "nome": "10650",
                    "municipio": ""
                },
                {
                    "id": 4816,
                    "nome": "1066",
                    "municipio": ""
                },
                {
                    "id": 4817,
                    "nome": "10660",
                    "municipio": ""
                },
                {
                    "id": 4818,
                    "nome": "1067",
                    "municipio": ""
                },
                {
                    "id": 4819,
                    "nome": "10670",
                    "municipio": ""
                },
                {
                    "id": 4820,
                    "nome": "1081",
                    "municipio": ""
                },
                {
                    "id": 4821,
                    "nome": "10909",
                    "municipio": ""
                },
                {
                    "id": 4822,
                    "nome": "11",
                    "municipio": ""
                },
                {
                    "id": 4823,
                    "nome": "110",
                    "municipio": ""
                },
                {
                    "id": 4824,
                    "nome": "1100",
                    "municipio": ""
                },
                {
                    "id": 4825,
                    "nome": "11000",
                    "municipio": ""
                },
                {
                    "id": 4826,
                    "nome": "1108",
                    "municipio": ""
                },
                {
                    "id": 4827,
                    "nome": "112",
                    "municipio": ""
                },
                {
                    "id": 4828,
                    "nome": "1124",
                    "municipio": ""
                },
                {
                    "id": 4829,
                    "nome": "11240",
                    "municipio": ""
                },
                {
                    "id": 4830,
                    "nome": "114",
                    "municipio": ""
                },
                {
                    "id": 4831,
                    "nome": "1140",
                    "municipio": ""
                },
                {
                    "id": 4832,
                    "nome": "11400",
                    "municipio": ""
                },
                {
                    "id": 4833,
                    "nome": "1146",
                    "municipio": ""
                },
                {
                    "id": 4834,
                    "nome": "11460",
                    "municipio": ""
                },
                {
                    "id": 4835,
                    "nome": "1147",
                    "municipio": ""
                },
                {
                    "id": 4836,
                    "nome": "11470",
                    "municipio": ""
                },
                {
                    "id": 4837,
                    "nome": "115",
                    "municipio": ""
                },
                {
                    "id": 4838,
                    "nome": "1152",
                    "municipio": ""
                },
                {
                    "id": 4839,
                    "nome": "11520",
                    "municipio": ""
                },
                {
                    "id": 4840,
                    "nome": "1153",
                    "municipio": ""
                },
                {
                    "id": 4841,
                    "nome": "11530",
                    "municipio": ""
                },
                {
                    "id": 4842,
                    "nome": "1154",
                    "municipio": ""
                },
                {
                    "id": 4843,
                    "nome": "11540",
                    "municipio": ""
                },
                {
                    "id": 4844,
                    "nome": "1156",
                    "municipio": ""
                },
                {
                    "id": 4845,
                    "nome": "11560",
                    "municipio": ""
                },
                {
                    "id": 4846,
                    "nome": "11570",
                    "municipio": ""
                },
                {
                    "id": 4847,
                    "nome": "1159",
                    "municipio": ""
                },
                {
                    "id": 4848,
                    "nome": "11590",
                    "municipio": ""
                },
                {
                    "id": 4849,
                    "nome": "116",
                    "municipio": ""
                },
                {
                    "id": 4850,
                    "nome": "1160",
                    "municipio": ""
                },
                {
                    "id": 4851,
                    "nome": "11600",
                    "municipio": ""
                },
                {
                    "id": 4852,
                    "nome": "118",
                    "municipio": ""
                },
                {
                    "id": 4853,
                    "nome": "11830",
                    "municipio": ""
                },
                {
                    "id": 4854,
                    "nome": "12",
                    "municipio": ""
                },
                {
                    "id": 4855,
                    "nome": "120",
                    "municipio": ""
                },
                {
                    "id": 4856,
                    "nome": "1210",
                    "municipio": ""
                },
                {
                    "id": 4857,
                    "nome": "122",
                    "municipio": ""
                },
                {
                    "id": 4858,
                    "nome": "1220",
                    "municipio": ""
                },
                {
                    "id": 4859,
                    "nome": "124",
                    "municipio": ""
                },
                {
                    "id": 4860,
                    "nome": "12400",
                    "municipio": ""
                },
                {
                    "id": 4861,
                    "nome": "128",
                    "municipio": ""
                },
                {
                    "id": 4862,
                    "nome": "13",
                    "municipio": ""
                },
                {
                    "id": 4863,
                    "nome": "130",
                    "municipio": ""
                },
                {
                    "id": 4864,
                    "nome": "13090",
                    "municipio": ""
                },
                {
                    "id": 4865,
                    "nome": "131",
                    "municipio": ""
                },
                {
                    "id": 4866,
                    "nome": "1310",
                    "municipio": ""
                },
                {
                    "id": 4867,
                    "nome": "13100",
                    "municipio": ""
                },
                {
                    "id": 4868,
                    "nome": "132",
                    "municipio": ""
                },
                {
                    "id": 4869,
                    "nome": "133",
                    "municipio": ""
                },
                {
                    "id": 4870,
                    "nome": "134",
                    "municipio": ""
                },
                {
                    "id": 4871,
                    "nome": "1344",
                    "municipio": ""
                },
                {
                    "id": 4872,
                    "nome": "13440",
                    "municipio": ""
                },
                {
                    "id": 4873,
                    "nome": "135",
                    "municipio": ""
                },
                {
                    "id": 4874,
                    "nome": "137",
                    "municipio": ""
                },
                {
                    "id": 4875,
                    "nome": "1370",
                    "municipio": ""
                },
                {
                    "id": 4876,
                    "nome": "13700",
                    "municipio": ""
                },
                {
                    "id": 4877,
                    "nome": "14",
                    "municipio": ""
                },
                {
                    "id": 4878,
                    "nome": "1400",
                    "municipio": ""
                },
                {
                    "id": 4879,
                    "nome": "141",
                    "municipio": ""
                },
                {
                    "id": 4880,
                    "nome": "143",
                    "municipio": ""
                },
                {
                    "id": 4881,
                    "nome": "1440",
                    "municipio": ""
                },
                {
                    "id": 4882,
                    "nome": "1450",
                    "municipio": ""
                },
                {
                    "id": 4883,
                    "nome": "147",
                    "municipio": ""
                },
                {
                    "id": 4884,
                    "nome": "15",
                    "municipio": ""
                },
                {
                    "id": 4885,
                    "nome": "150",
                    "municipio": ""
                },
                {
                    "id": 4886,
                    "nome": "15000",
                    "municipio": ""
                },
                {
                    "id": 4887,
                    "nome": "1520",
                    "municipio": ""
                },
                {
                    "id": 4888,
                    "nome": "1530",
                    "municipio": ""
                },
                {
                    "id": 4889,
                    "nome": "1540",
                    "municipio": ""
                },
                {
                    "id": 4890,
                    "nome": "1560",
                    "municipio": ""
                },
                {
                    "id": 4891,
                    "nome": "1570",
                    "municipio": ""
                },
                {
                    "id": 4892,
                    "nome": "158",
                    "municipio": ""
                },
                {
                    "id": 4893,
                    "nome": "1588",
                    "municipio": ""
                },
                {
                    "id": 4894,
                    "nome": "160",
                    "municipio": ""
                },
                {
                    "id": 4895,
                    "nome": "161",
                    "municipio": ""
                },
                {
                    "id": 4896,
                    "nome": "166",
                    "municipio": ""
                },
                {
                    "id": 4897,
                    "nome": "1661",
                    "municipio": ""
                },
                {
                    "id": 4898,
                    "nome": "17",
                    "municipio": ""
                },
                {
                    "id": 4899,
                    "nome": "170",
                    "municipio": ""
                },
                {
                    "id": 4900,
                    "nome": "175",
                    "municipio": ""
                },
                {
                    "id": 4901,
                    "nome": "180",
                    "municipio": ""
                },
                {
                    "id": 4902,
                    "nome": "189",
                    "municipio": ""
                },
                {
                    "id": 4903,
                    "nome": "1898",
                    "municipio": ""
                },
                {
                    "id": 4904,
                    "nome": "19",
                    "municipio": ""
                },
                {
                    "id": 4905,
                    "nome": "190",
                    "municipio": ""
                },
                {
                    "id": 4906,
                    "nome": "192",
                    "municipio": ""
                },
                {
                    "id": 4907,
                    "nome": "2",
                    "municipio": ""
                },
                {
                    "id": 4908,
                    "nome": "20",
                    "municipio": ""
                },
                {
                    "id": 4909,
                    "nome": "2033",
                    "municipio": ""
                },
                {
                    "id": 4910,
                    "nome": "21",
                    "municipio": ""
                },
                {
                    "id": 4911,
                    "nome": "220",
                    "municipio": ""
                },
                {
                    "id": 4912,
                    "nome": "2208",
                    "municipio": ""
                },
                {
                    "id": 4913,
                    "nome": "230",
                    "municipio": ""
                },
                {
                    "id": 4914,
                    "nome": "240",
                    "municipio": ""
                },
                {
                    "id": 4915,
                    "nome": "250",
                    "municipio": ""
                },
                {
                    "id": 4916,
                    "nome": "255",
                    "municipio": ""
                },
                {
                    "id": 4917,
                    "nome": "2855",
                    "municipio": ""
                },
                {
                    "id": 4918,
                    "nome": "29",
                    "municipio": ""
                },
                {
                    "id": 4919,
                    "nome": "290",
                    "municipio": ""
                },
                {
                    "id": 4920,
                    "nome": "295",
                    "municipio": ""
                },
                {
                    "id": 4921,
                    "nome": "2950",
                    "municipio": ""
                },
                {
                    "id": 4922,
                    "nome": "29500",
                    "municipio": ""
                },
                {
                    "id": 4923,
                    "nome": "3",
                    "municipio": ""
                },
                {
                    "id": 4924,
                    "nome": "310",
                    "municipio": ""
                },
                {
                    "id": 4925,
                    "nome": "3101",
                    "municipio": ""
                },
                {
                    "id": 4926,
                    "nome": "3214",
                    "municipio": ""
                },
                {
                    "id": 4927,
                    "nome": "33",
                    "municipio": ""
                },
                {
                    "id": 4928,
                    "nome": "340",
                    "municipio": ""
                },
                {
                    "id": 4929,
                    "nome": "3491",
                    "municipio": ""
                },
                {
                    "id": 4930,
                    "nome": "360",
                    "municipio": ""
                },
                {
                    "id": 4931,
                    "nome": "370",
                    "municipio": ""
                },
                {
                    "id": 4932,
                    "nome": "39",
                    "municipio": ""
                },
                {
                    "id": 4933,
                    "nome": "390",
                    "municipio": ""
                },
                {
                    "id": 4934,
                    "nome": "4",
                    "municipio": ""
                },
                {
                    "id": 4935,
                    "nome": "40",
                    "municipio": ""
                },
                {
                    "id": 4936,
                    "nome": "401",
                    "municipio": ""
                },
                {
                    "id": 4937,
                    "nome": "402",
                    "municipio": ""
                },
                {
                    "id": 4938,
                    "nome": "403",
                    "municipio": ""
                },
                {
                    "id": 4939,
                    "nome": "40360",
                    "municipio": ""
                },
                {
                    "id": 4940,
                    "nome": "404",
                    "municipio": ""
                },
                {
                    "id": 4941,
                    "nome": "405",
                    "municipio": ""
                },
                {
                    "id": 4942,
                    "nome": "4066",
                    "municipio": ""
                },
                {
                    "id": 4943,
                    "nome": "410",
                    "municipio": ""
                },
                {
                    "id": 4944,
                    "nome": "42",
                    "municipio": ""
                },
                {
                    "id": 4945,
                    "nome": "43",
                    "municipio": ""
                },
                {
                    "id": 4946,
                    "nome": "450",
                    "municipio": ""
                },
                {
                    "id": 4947,
                    "nome": "460",
                    "municipio": ""
                },
                {
                    "id": 4948,
                    "nome": "4620",
                    "municipio": ""
                },
                {
                    "id": 4949,
                    "nome": "470",
                    "municipio": ""
                },
                {
                    "id": 4950,
                    "nome": "480",
                    "municipio": ""
                },
                {
                    "id": 4951,
                    "nome": "490",
                    "municipio": ""
                },
                {
                    "id": 4952,
                    "nome": "5",
                    "municipio": ""
                },
                {
                    "id": 4953,
                    "nome": "50",
                    "municipio": ""
                },
                {
                    "id": 4954,
                    "nome": "510",
                    "municipio": ""
                },
                {
                    "id": 4955,
                    "nome": "520",
                    "municipio": ""
                },
                {
                    "id": 4956,
                    "nome": "530",
                    "municipio": ""
                },
                {
                    "id": 4957,
                    "nome": "540",
                    "municipio": ""
                },
                {
                    "id": 4958,
                    "nome": "560",
                    "municipio": ""
                },
                {
                    "id": 4959,
                    "nome": "57",
                    "municipio": ""
                },
                {
                    "id": 4960,
                    "nome": "570",
                    "municipio": ""
                },
                {
                    "id": 4961,
                    "nome": "580",
                    "municipio": ""
                },
                {
                    "id": 4962,
                    "nome": "586",
                    "municipio": ""
                },
                {
                    "id": 4963,
                    "nome": "590",
                    "municipio": ""
                },
                {
                    "id": 4964,
                    "nome": "6",
                    "municipio": ""
                },
                {
                    "id": 4965,
                    "nome": "600",
                    "municipio": ""
                },
                {
                    "id": 4966,
                    "nome": "6041",
                    "municipio": ""
                },
                {
                    "id": 4967,
                    "nome": "6045",
                    "municipio": ""
                },
                {
                    "id": 4968,
                    "nome": "610",
                    "municipio": ""
                },
                {
                    "id": 4969,
                    "nome": "640",
                    "municipio": ""
                },
                {
                    "id": 4970,
                    "nome": "650",
                    "municipio": ""
                },
                {
                    "id": 4971,
                    "nome": "660",
                    "municipio": ""
                },
                {
                    "id": 4972,
                    "nome": "670",
                    "municipio": ""
                },
                {
                    "id": 4973,
                    "nome": "68",
                    "municipio": ""
                },
                {
                    "id": 4974,
                    "nome": "686",
                    "municipio": ""
                },
                {
                    "id": 4975,
                    "nome": "6860",
                    "municipio": ""
                },
                {
                    "id": 4976,
                    "nome": "68600",
                    "municipio": ""
                },
                {
                    "id": 4977,
                    "nome": "70",
                    "municipio": ""
                },
                {
                    "id": 4978,
                    "nome": "711",
                    "municipio": ""
                },
                {
                    "id": 4979,
                    "nome": "72",
                    "municipio": ""
                },
                {
                    "id": 4980,
                    "nome": "73",
                    "municipio": ""
                },
                {
                    "id": 4981,
                    "nome": "74",
                    "municipio": ""
                },
                {
                    "id": 4982,
                    "nome": "749",
                    "municipio": ""
                },
                {
                    "id": 4983,
                    "nome": "7490",
                    "municipio": ""
                },
                {
                    "id": 4984,
                    "nome": "75",
                    "municipio": ""
                },
                {
                    "id": 4985,
                    "nome": "757",
                    "municipio": ""
                },
                {
                    "id": 4986,
                    "nome": "7570",
                    "municipio": ""
                },
                {
                    "id": 4987,
                    "nome": "760",
                    "municipio": ""
                },
                {
                    "id": 4988,
                    "nome": "770",
                    "municipio": ""
                },
                {
                    "id": 4989,
                    "nome": "785",
                    "municipio": ""
                },
                {
                    "id": 4990,
                    "nome": "8",
                    "municipio": ""
                },
                {
                    "id": 4991,
                    "nome": "80",
                    "municipio": ""
                },
                {
                    "id": 4992,
                    "nome": "81",
                    "municipio": ""
                },
                {
                    "id": 4993,
                    "nome": "810",
                    "municipio": ""
                },
                {
                    "id": 4994,
                    "nome": "820",
                    "municipio": ""
                },
                {
                    "id": 4995,
                    "nome": "845",
                    "municipio": ""
                },
                {
                    "id": 4996,
                    "nome": "85",
                    "municipio": ""
                },
                {
                    "id": 4997,
                    "nome": "87",
                    "municipio": ""
                },
                {
                    "id": 4998,
                    "nome": "88",
                    "municipio": ""
                },
                {
                    "id": 4999,
                    "nome": "8860",
                    "municipio": ""
                },
                {
                    "id": 5000,
                    "nome": "9",
                    "municipio": ""
                },
                {
                    "id": 5001,
                    "nome": "90",
                    "municipio": ""
                },
                {
                    "id": 5002,
                    "nome": "900",
                    "municipio": ""
                },
                {
                    "id": 5003,
                    "nome": "909",
                    "municipio": ""
                },
                {
                    "id": 5004,
                    "nome": "9090",
                    "municipio": ""
                },
                {
                    "id": 5005,
                    "nome": "91",
                    "municipio": ""
                },
                {
                    "id": 5006,
                    "nome": "94",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 167,
            "banco": "330",
            "nome": "BANCO BARI DE INVESTIMENTOS E FINANCIAMENTOS S.A.",
            "agencias": [
                {
                    "id": 15474,
                    "nome": "MATRIZ_CURITIBA - PR",
                    "municipio": "CURITIBA"
                }
            ]
        },
        {
            "id": 170,
            "banco": "334",
            "nome": "BANCO BESA S.A.",
            "agencias": [
                {
                    "id": 15477,
                    "nome": "AGENCIA 1 DO BANCO BANCO BESA S.A.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 156,
            "banco": "318",
            "nome": "BANCO BMG S.A.",
            "agencias": [
                {
                    "id": 15430,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15431,
                    "nome": "FLORIANOPOLIS",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 15432,
                    "nome": "MANAUS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 15433,
                    "nome": "AGENCIA-PALMAS (TO)",
                    "municipio": "PALMAS"
                },
                {
                    "id": 15434,
                    "nome": "GOI�NIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 15435,
                    "nome": "SALVADOR",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 15436,
                    "nome": "FILIAL VIT�RIA.",
                    "municipio": "VITORIA"
                },
                {
                    "id": 15437,
                    "nome": "RIO DE JANEIRO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15438,
                    "nome": "AG�NCIA CAMPO GRANDE/MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 15439,
                    "nome": "FILIAL   NATAL RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 15440,
                    "nome": "FILIAL   BELEM PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 15441,
                    "nome": "AGENCIA RUA DIREITA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15442,
                    "nome": "BELO HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15443,
                    "nome": "AG�NCIA PECHINCHA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15444,
                    "nome": "AGENCIA BRASILIA ED CARIOCA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 15445,
                    "nome": "AGENCIA CURITIBA II",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 15446,
                    "nome": "AG  MACEIO AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 15447,
                    "nome": "AG  RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 15448,
                    "nome": "AG FORTALEZA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 15449,
                    "nome": "AG. JO�O PESSOA/PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 15450,
                    "nome": "CURITIBA (PR)",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 15451,
                    "nome": "AG�NCIA CUIAB�/MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 15452,
                    "nome": "AG�NCIA S�O LUIS-MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 15453,
                    "nome": "AG�NCIA DE ARACAJU",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 15454,
                    "nome": "BRASILIA (DF)",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 15455,
                    "nome": "AG  PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 15456,
                    "nome": "AG BH II",
                    "municipio": "BELO HORIZONTE"
                }
            ]
        },
        {
            "id": 343,
            "banco": "752",
            "nome": "BANCO BNP PARIBAS BRASIL S.A.",
            "agencias": [
                {
                    "id": 18486,
                    "nome": "MATRIZ - SEDE",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 57,
            "banco": "107",
            "nome": "BANCO BOCOM BBM S.A.",
            "agencias": [
                {
                    "id": 11980,
                    "nome": "MATRIZ",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11981,
                    "nome": "RIO DE JANEIRO (RJ)",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11982,
                    "nome": "SAO PAULO",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 25,
            "banco": "63",
            "nome": "BANCO BRADESCARD S.A.",
            "agencias": [
                {
                    "id": 8310,
                    "nome": "MATRIZ",
                    "municipio": "OSASCO"
                }
            ]
        },
        {
            "id": 18,
            "banco": "36",
            "nome": "BANCO BRADESCO BBI S.A.",
            "agencias": [
                {
                    "id": 7591,
                    "nome": "FILIAL FARIA LIMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7592,
                    "nome": "MATRIZ",
                    "municipio": "OSASCO"
                },
                {
                    "id": 7593,
                    "nome": "BBI-PAULISTA",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 66,
            "banco": "122",
            "nome": "BANCO BRADESCO BERJ S.A.",
            "agencias": [
                {
                    "id": 11990,
                    "nome": "MATRIZ",
                    "municipio": "OSASCO"
                }
            ]
        },
        {
            "id": 212,
            "banco": "394",
            "nome": "BANCO BRADESCO FINANCIAMENTOS S.A.",
            "agencias": [
                {
                    "id": 18078,
                    "nome": "AG�NCIA RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 18079,
                    "nome": "AG�NCIA CHUCRI ZAIDAN",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 113,
            "banco": "237",
            "nome": "BANCO BRADESCO S.A.",
            "agencias": [
                {
                    "id": 12074,
                    "nome": "SIRINHAEM/PE",
                    "municipio": ""
                },
                {
                    "id": 12075,
                    "nome": "ipojuca PE",
                    "municipio": ""
                },
                {
                    "id": 12076,
                    "nome": "MATRIZ",
                    "municipio": "OSASCO"
                },
                {
                    "id": 12077,
                    "nome": "TUPA, SP",
                    "municipio": "TUPA"
                },
                {
                    "id": 12078,
                    "nome": "SUZANO, CENTRO, SP",
                    "municipio": "SUZANO"
                },
                {
                    "id": 12079,
                    "nome": "CHUI, RS",
                    "municipio": "CHUI"
                },
                {
                    "id": 12080,
                    "nome": "1001",
                    "municipio": ""
                },
                {
                    "id": 12081,
                    "nome": "PORTO REAL",
                    "municipio": "PORTO REAL"
                },
                {
                    "id": 12082,
                    "nome": "PRIME BEC CENTRO COMERCIAL,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 12083,
                    "nome": "SAO MATEUS, ES",
                    "municipio": "SAO MATEUS"
                },
                {
                    "id": 12084,
                    "nome": "BARRA DE SAO FRANCISCO, ES",
                    "municipio": "BARRA DE SAO FRANCISCO"
                },
                {
                    "id": 12085,
                    "nome": "EDEN,URB.SOROCABA,SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 12086,
                    "nome": "ITAQUERA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12087,
                    "nome": "ALTAMIRA, PA",
                    "municipio": "ALTAMIRA"
                },
                {
                    "id": 12088,
                    "nome": "ARAPORA",
                    "municipio": "ARAPORA"
                },
                {
                    "id": 12089,
                    "nome": "ILHABELA, SP",
                    "municipio": "ILHABELA"
                },
                {
                    "id": 12090,
                    "nome": "FORQUILHINHA, SC",
                    "municipio": "FORQUILHINHA"
                },
                {
                    "id": 12091,
                    "nome": "VARGEM GRANDE PAULISTA, SP",
                    "municipio": "VARGEM GRANDE PAULISTA"
                },
                {
                    "id": 12092,
                    "nome": "SAO GONCALO DO SAPUCAI, MG",
                    "municipio": "SAO GONCALO DO SAPUCAI"
                },
                {
                    "id": 12093,
                    "nome": "1017",
                    "municipio": ""
                },
                {
                    "id": 12094,
                    "nome": "CAUCAIA DO ALTO",
                    "municipio": "COTIA"
                },
                {
                    "id": 12095,
                    "nome": "PRIME SANTOS DUMONT,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 12096,
                    "nome": "MONTE VERDE-DIST.MUN.CAMANDUCAIA",
                    "municipio": "CAMANDUCAIA"
                },
                {
                    "id": 12097,
                    "nome": "CARNEIRINHO",
                    "municipio": "CARNEIRINHO"
                },
                {
                    "id": 12098,
                    "nome": "PRIME DUQUE DE CAXIAS, RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 12099,
                    "nome": "PJ ALTO VALOR CURITIBA NORTE - URB. CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 12100,
                    "nome": "ANJO DA GUARDA,URB.SAO LUIS, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 12101,
                    "nome": "PEDREIRAS, MA",
                    "municipio": "PEDREIRAS"
                },
                {
                    "id": 12102,
                    "nome": "ARARI, MA",
                    "municipio": "ARARI"
                },
                {
                    "id": 12103,
                    "nome": "RIBEIR�O DAS NEVES - MG",
                    "municipio": "RIBEIRAO DAS NEVES"
                },
                {
                    "id": 12104,
                    "nome": "1029",
                    "municipio": ""
                },
                {
                    "id": 12105,
                    "nome": "SENADOR QUEIROZ,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12106,
                    "nome": "ABAETETUBA, PA",
                    "municipio": "ABAETETUBA"
                },
                {
                    "id": 12107,
                    "nome": "1032",
                    "municipio": ""
                },
                {
                    "id": 12108,
                    "nome": "PRIME NOSSA SENHORA DO SABARA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12109,
                    "nome": "BREJO, MA",
                    "municipio": "BREJO"
                },
                {
                    "id": 12110,
                    "nome": "BARRA DO CORDA, MA",
                    "municipio": "BARRA DO CORDA"
                },
                {
                    "id": 12111,
                    "nome": "SAO FRANCISCO,URB.SAO LUIS, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 12112,
                    "nome": "CAICO",
                    "municipio": "CAICO"
                },
                {
                    "id": 12113,
                    "nome": "PRIME JOAO BETTEGA,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 12114,
                    "nome": "BUTANTA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12115,
                    "nome": "PRIME TUTOIA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12116,
                    "nome": "PRIME JOAO PESSOA, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 12117,
                    "nome": "SAO BENTO, PB",
                    "municipio": "SAO BENTO"
                },
                {
                    "id": 12118,
                    "nome": "PRIME PENHA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12119,
                    "nome": "ASSU",
                    "municipio": "ACU"
                },
                {
                    "id": 12120,
                    "nome": "PRIME LAPA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12121,
                    "nome": "BURITICUPU, MA",
                    "municipio": "BURITICUPU"
                },
                {
                    "id": 12122,
                    "nome": "PJ ALTO VALOR RIO CENTRO - URB. RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12123,
                    "nome": "CARUTAPERA, MA",
                    "municipio": "CARUTAPERA"
                },
                {
                    "id": 12124,
                    "nome": "PRACA OSWALDO CRUZ, URB, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12125,
                    "nome": "PRIME FAGUNDES FILHO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12126,
                    "nome": "CHAPADINHA, MA",
                    "municipio": "CHAPADINHA"
                },
                {
                    "id": 12127,
                    "nome": "CAJAZEIRAS, PB",
                    "municipio": "CAJAZEIRAS"
                },
                {
                    "id": 12128,
                    "nome": "PJ ALTO VALOR BH LESTE - URB. BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 12129,
                    "nome": "BAIRRO CORDEIRO,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 12130,
                    "nome": "PRIME SAO LUCAS,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 12131,
                    "nome": "ARMACAO DE BUZIOS",
                    "municipio": "ARMACAO DOS BUZIOS"
                },
                {
                    "id": 12132,
                    "nome": "1058",
                    "municipio": ""
                },
                {
                    "id": 12133,
                    "nome": "PRIME MANGABEIRAS,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 12134,
                    "nome": "PARI,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12135,
                    "nome": "CRUZEIRO DO SUL, AC",
                    "municipio": "CRUZEIRO DO SUL"
                },
                {
                    "id": 12136,
                    "nome": "BAIRRO TORRE,URB.JOAO PESSOA, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 12137,
                    "nome": "BACABAL, MA",
                    "municipio": "BACABAL"
                },
                {
                    "id": 12138,
                    "nome": "PRIME BARRA WORLD,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12139,
                    "nome": "PRIME AVENIDA MORUMBI,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12140,
                    "nome": "PRIME PALMAS, TO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 12141,
                    "nome": "PRIME PARQUE DA ACLIMACAO, URB. SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12142,
                    "nome": "REALEZA-MANHUACU, MG",
                    "municipio": "MANHUACU"
                },
                {
                    "id": 12143,
                    "nome": "SANTO AMARO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12144,
                    "nome": "JARDIM PAULISTA",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 12145,
                    "nome": "SANTA LUZIA, MA",
                    "municipio": "SANTA LUZIA"
                },
                {
                    "id": 12146,
                    "nome": "TUTOIA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12147,
                    "nome": "BARRA DA TIJUCA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12148,
                    "nome": "ARAGUAPAZ, GO",
                    "municipio": "ARAGUAPAZ"
                },
                {
                    "id": 12149,
                    "nome": "COLINAS, MA",
                    "municipio": "COLINAS"
                },
                {
                    "id": 12150,
                    "nome": "IRATI",
                    "municipio": "IRATI"
                },
                {
                    "id": 12151,
                    "nome": "VILA MARIANA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12152,
                    "nome": "COROATA, MA",
                    "municipio": "COROATA"
                },
                {
                    "id": 12153,
                    "nome": "ARARIPINA",
                    "municipio": "ARARIPINA"
                },
                {
                    "id": 12154,
                    "nome": "AV.BRASIL,URB.MARINGA, PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 12155,
                    "nome": "PRIME VISCONDE DE PIRAJA - URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12156,
                    "nome": "SANTA MARIA DA VITORIA, BA",
                    "municipio": "SANTA MARIA DA VITORIA"
                },
                {
                    "id": 12157,
                    "nome": "PALMEIRAS, BA",
                    "municipio": "PALMEIRAS"
                },
                {
                    "id": 12158,
                    "nome": "PRIME LARGO DO MACHADO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12159,
                    "nome": "IGARATINGA",
                    "municipio": "IGARATINGA"
                },
                {
                    "id": 12160,
                    "nome": "SAO BERNARDO DO CAMPO, CENTRO, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 12161,
                    "nome": "PRIME AVENIDA BRASIL,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12162,
                    "nome": "PRIME RUA SCHILLING,URB.SAO PAULO,SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12163,
                    "nome": "PRIME GOIANIA,CENTRO, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 12164,
                    "nome": "CURURUPU, MA",
                    "municipio": "CURURUPU"
                },
                {
                    "id": 12165,
                    "nome": "AGUA BOA, MT",
                    "municipio": "AGUA BOA"
                },
                {
                    "id": 12166,
                    "nome": "SANTO ANTONIO DO ICA, AM",
                    "municipio": "SANTO ANTONIO DO ICA"
                },
                {
                    "id": 12167,
                    "nome": "VERA CRUZ, SP",
                    "municipio": "VERA CRUZ"
                },
                {
                    "id": 12168,
                    "nome": "ARACATUBA, CENTRO, SP",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 12169,
                    "nome": "1100",
                    "municipio": ""
                },
                {
                    "id": 12170,
                    "nome": "BAIRRO CENTRO,URB.MOSSORO, RN",
                    "municipio": "MOSSORO"
                },
                {
                    "id": 12171,
                    "nome": "GUARDA MOR, MG",
                    "municipio": "GUARDA-MOR"
                },
                {
                    "id": 12172,
                    "nome": "MANAIRA,URB.JOAO PESSOA, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 12173,
                    "nome": "JARDIM SAPOPEMBA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12174,
                    "nome": "JACUNDA",
                    "municipio": "JACUNDA"
                },
                {
                    "id": 12175,
                    "nome": "1107",
                    "municipio": ""
                },
                {
                    "id": 12176,
                    "nome": "RUA XV,URB.BLUMENAU, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 12177,
                    "nome": "VILA ANASTACIO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12178,
                    "nome": "BAIRRO NOVO",
                    "municipio": ""
                },
                {
                    "id": 12179,
                    "nome": "11110",
                    "municipio": ""
                },
                {
                    "id": 12180,
                    "nome": "ESCADA, PE",
                    "municipio": "ESCADA"
                },
                {
                    "id": 12181,
                    "nome": "LAGO DA PEDRA, MA",
                    "municipio": "LAGO DA PEDRA"
                },
                {
                    "id": 12182,
                    "nome": "SENADOR FLAQUER",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 12183,
                    "nome": "SOBRALIA, MG",
                    "municipio": "SOBRALIA"
                },
                {
                    "id": 12184,
                    "nome": "AVENIDA SOUZA FILHO,URB.PETROLINA, PE",
                    "municipio": "PETROLINA"
                },
                {
                    "id": 12185,
                    "nome": "Ag�ncia 11220",
                    "municipio": ""
                },
                {
                    "id": 12186,
                    "nome": "11223",
                    "municipio": ""
                },
                {
                    "id": 12187,
                    "nome": "MAIOBAO-DISTRITO DO MUNICIPIO DE PACO DO LUMIAR, M",
                    "municipio": "PACO DO LUMIAR"
                },
                {
                    "id": 12188,
                    "nome": "PRACA DA BANDEIRA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12189,
                    "nome": "PRAIA DOS INGLESES,URB.FLORIANOPOLIS, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 12190,
                    "nome": "AV.J.ANDRADE U.OSASC(SP)",
                    "municipio": ""
                },
                {
                    "id": 12191,
                    "nome": "SAO MIGUEL PAULISTA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12192,
                    "nome": "1130",
                    "municipio": ""
                },
                {
                    "id": 12193,
                    "nome": "CARBONITA, MG",
                    "municipio": "CARBONITA"
                },
                {
                    "id": 12194,
                    "nome": "COELHO NETO, MA",
                    "municipio": "COELHO NETO"
                },
                {
                    "id": 12195,
                    "nome": "BAIRRO S.JOAO-U.ATA.(SP)",
                    "municipio": ""
                },
                {
                    "id": 12196,
                    "nome": "PRESIDENTE DUTRA, MA",
                    "municipio": "PRESIDENTE DUTRA"
                },
                {
                    "id": 12197,
                    "nome": "1138",
                    "municipio": ""
                },
                {
                    "id": 12198,
                    "nome": "BOM RETIRO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12199,
                    "nome": "1140",
                    "municipio": ""
                },
                {
                    "id": 12200,
                    "nome": "SAO MATEUS DO MARANHAO, MA",
                    "municipio": "SAO MATEUS DO MARANHAO"
                },
                {
                    "id": 12201,
                    "nome": "ROSARIO, MA",
                    "municipio": "ROSARIO"
                },
                {
                    "id": 12202,
                    "nome": "PJ ALTO VALOR S�O JOS� DO RIO PRETO - URB. S�O JOS",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 12203,
                    "nome": "SAO BENTO, MA",
                    "municipio": "SAO BENTO"
                },
                {
                    "id": 12204,
                    "nome": "SAO JOSE DE RIBAMAR, MA",
                    "municipio": "SAO JOSE DE RIBAMAR"
                },
                {
                    "id": 12205,
                    "nome": "PORTO ALEGRE DO NORTE, MT",
                    "municipio": "PORTO ALEGRE DO NORTE"
                },
                {
                    "id": 12206,
                    "nome": "VILA PRUDENTE,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12207,
                    "nome": "ITOUPAVA CENTRAL, URB. BLUMENAU, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 12208,
                    "nome": "SAO FRANCISCO",
                    "municipio": "SAO FRANCISCO"
                },
                {
                    "id": 12209,
                    "nome": "1152",
                    "municipio": ""
                },
                {
                    "id": 12210,
                    "nome": "1153",
                    "municipio": ""
                },
                {
                    "id": 12211,
                    "nome": "CAPIM GROSSO, BA",
                    "municipio": "CAPIM GROSSO"
                },
                {
                    "id": 12212,
                    "nome": "CAMPO VERDE, MT",
                    "municipio": "CAMPO VERDE"
                },
                {
                    "id": 12213,
                    "nome": "1158",
                    "municipio": ""
                },
                {
                    "id": 12214,
                    "nome": "MANDAGUACU, PR",
                    "municipio": "MANDAGUACU"
                },
                {
                    "id": 12215,
                    "nome": "1160",
                    "municipio": ""
                },
                {
                    "id": 12216,
                    "nome": "Rua da Praia",
                    "municipio": ""
                },
                {
                    "id": 12217,
                    "nome": "1164",
                    "municipio": ""
                },
                {
                    "id": 12218,
                    "nome": "PALACIO DOS LEOES,URB.SAO LUIS, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 12219,
                    "nome": "COHAB,URB.SAO LUIS, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 12220,
                    "nome": "NOSSA SENHORA DO O,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12221,
                    "nome": "PJ ALTO VALOR GOI�NIA - URB. GOI�NIA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 12222,
                    "nome": "Ag�ncia 1171",
                    "municipio": ""
                },
                {
                    "id": 12223,
                    "nome": "1172",
                    "municipio": ""
                },
                {
                    "id": 12224,
                    "nome": "VILAS DO ATLANTICO,URB.LAURO DE FREITAS, BA",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 12225,
                    "nome": "RUA ELOI TEIXEIRA,URB.QUEIMADOS, RJ",
                    "municipio": "QUEIMADOS"
                },
                {
                    "id": 12226,
                    "nome": "NOVA GLORIA, GO",
                    "municipio": "NOVA GLORIA"
                },
                {
                    "id": 12227,
                    "nome": "AGUA CLARA",
                    "municipio": "AGUA CLARA"
                },
                {
                    "id": 12228,
                    "nome": "AVENIDA PAULO FACCINI,URB.GUARULHOS, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 12229,
                    "nome": "RUA BOQUEIRAO,URB.CANOAS, RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 12230,
                    "nome": "PONTE DA AMIZADE,URB.FOZ DO IGUACU, PR",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 12231,
                    "nome": "PENHA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12232,
                    "nome": "GOVERNADOR LOBAO,URB.SAO LUIS, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 12233,
                    "nome": "VIANA, MA",
                    "municipio": "VIANA"
                },
                {
                    "id": 12234,
                    "nome": "1183",
                    "municipio": ""
                },
                {
                    "id": 12235,
                    "nome": "PJ ALTO VALOR FORTALEZA LESTE - URB. FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 12236,
                    "nome": "ZE DOCA, MA",
                    "municipio": "ZE DOCA"
                },
                {
                    "id": 12237,
                    "nome": "CAMBUCI,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12238,
                    "nome": "PIRAPORINHA",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 12239,
                    "nome": "BACACHERI,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 12240,
                    "nome": "ANDRADINA, SP",
                    "municipio": "ANDRADINA"
                },
                {
                    "id": 12241,
                    "nome": "JABAQUARA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12242,
                    "nome": "VILA VELHA, CENTRO, ES",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 12243,
                    "nome": "JARDIM SANTO EDUARDO,URB.EMBU DAS ARTES, SP",
                    "municipio": "EMBU DAS ARTES"
                },
                {
                    "id": 12244,
                    "nome": "ALMIRANTE TAMANDARE, PR",
                    "municipio": "ALMIRANTE TAMANDARE"
                },
                {
                    "id": 12245,
                    "nome": "1207",
                    "municipio": ""
                },
                {
                    "id": 12246,
                    "nome": "TAPAJOS,URB.SANTAREM, PA",
                    "municipio": "SANTAREM"
                },
                {
                    "id": 12247,
                    "nome": "CENTRO, MAUA, SP",
                    "municipio": "MAUA"
                },
                {
                    "id": 12248,
                    "nome": "1210",
                    "municipio": ""
                },
                {
                    "id": 12249,
                    "nome": "1212",
                    "municipio": ""
                },
                {
                    "id": 12250,
                    "nome": "BARRO PRETO,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 12251,
                    "nome": "PINHEIRINHO, URB. CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 12252,
                    "nome": "SAO CAETANO DO SUL, CENTRO, SP",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 12253,
                    "nome": "VILA YARA",
                    "municipio": "OSASCO"
                },
                {
                    "id": 12254,
                    "nome": "1223",
                    "municipio": ""
                },
                {
                    "id": 12255,
                    "nome": "BARUERI, CENTRO, SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 12256,
                    "nome": "ASA NORTE,URB.BRASILIA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 12257,
                    "nome": "NOVA ESPERANCA, PR",
                    "municipio": "NOVA ESPERANCA"
                },
                {
                    "id": 12258,
                    "nome": "CAXANGA,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 12259,
                    "nome": "CUMBICA",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 12260,
                    "nome": "PIEDADE,URB.JABOATAO DOS GUARARAPES, PE",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 12261,
                    "nome": "Ag�ncia 12321",
                    "municipio": ""
                },
                {
                    "id": 12262,
                    "nome": "12327",
                    "municipio": ""
                },
                {
                    "id": 12263,
                    "nome": "AG�NCIA DIGITAL - SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12264,
                    "nome": "BEZERRA MENEZES,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 12265,
                    "nome": "PRACA OK,URB.GOIANIA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 12266,
                    "nome": "CAIEIRAS, CENTRO, SP",
                    "municipio": "CAIEIRAS"
                },
                {
                    "id": 12267,
                    "nome": "JATUARANA,URB.PORTO VELHO, RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 12268,
                    "nome": "LUZ,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12269,
                    "nome": "AV.NOVA YORK,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12270,
                    "nome": "CENTRO CULTURAL ELDORADO, URB. DIADEMA, SP",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 12271,
                    "nome": "QUIRINOPOLIS, GO",
                    "municipio": "QUIRINOPOLIS"
                },
                {
                    "id": 12272,
                    "nome": "1247",
                    "municipio": ""
                },
                {
                    "id": 12273,
                    "nome": "1248",
                    "municipio": ""
                },
                {
                    "id": 12274,
                    "nome": "TANGARA DA SERRA",
                    "municipio": "TANGARA DA SERRA"
                },
                {
                    "id": 12275,
                    "nome": "PAULA SOUZA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12276,
                    "nome": "PJ ALTO VALOR RECIFE NORTE - URB. RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 12277,
                    "nome": "PALMEIRA DAS MISSOES, RS",
                    "municipio": "PALMEIRA DAS MISSOES"
                },
                {
                    "id": 12278,
                    "nome": "ITAPEVI, CENTRO, SP",
                    "municipio": "ITAPEVI"
                },
                {
                    "id": 12279,
                    "nome": "CAROLINA, MA",
                    "municipio": "CAROLINA"
                },
                {
                    "id": 12280,
                    "nome": "PJ ALTO VALOR UBERL�NDIA - URB. UBERL�NDIA, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 12281,
                    "nome": "EMBU DAS ARTES CENTRO  SP",
                    "municipio": "EMBU DAS ARTES"
                },
                {
                    "id": 12282,
                    "nome": "AUGUSTA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12283,
                    "nome": "CABO",
                    "municipio": "CABO DE SANTO AGOSTINHO"
                },
                {
                    "id": 12284,
                    "nome": "Ag�ncia 12600",
                    "municipio": ""
                },
                {
                    "id": 12285,
                    "nome": "12602",
                    "municipio": ""
                },
                {
                    "id": 12286,
                    "nome": "ITAQUAQUECETUBA, CENTRO, SP",
                    "municipio": "ITAQUAQUECETUBA"
                },
                {
                    "id": 12287,
                    "nome": "12610",
                    "municipio": ""
                },
                {
                    "id": 12288,
                    "nome": "MAIRIPORA, CENTRO, SP",
                    "municipio": "MAIRIPORA"
                },
                {
                    "id": 12289,
                    "nome": "VARZEA GRANDE, CENTRO, MT",
                    "municipio": "VARZEA GRANDE"
                },
                {
                    "id": 12290,
                    "nome": "SENHORA DE OLIVEIRA, MG",
                    "municipio": "SENHORA DE OLIVEIRA"
                },
                {
                    "id": 12291,
                    "nome": "OSASCO, CENTRO, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 12292,
                    "nome": "ITINGA DO MARANHAO, MA",
                    "municipio": "ITINGA DO MARANHAO"
                },
                {
                    "id": 12293,
                    "nome": "BAIRRO BOA VISTA,URB.SAO JOSE DO RIO PRETO, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 12294,
                    "nome": "ITAJUBA, MG",
                    "municipio": "ITAJUBA"
                },
                {
                    "id": 12295,
                    "nome": "AMAMBAI",
                    "municipio": "AMAMBAI"
                },
                {
                    "id": 12296,
                    "nome": "IVINHEMA, MS",
                    "municipio": "IVINHEMA"
                },
                {
                    "id": 12297,
                    "nome": "PARANAIBA",
                    "municipio": "PARANAIBA"
                },
                {
                    "id": 12298,
                    "nome": "TUCURUVI,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12299,
                    "nome": "1280",
                    "municipio": ""
                },
                {
                    "id": 12300,
                    "nome": "NOVA ANDRADINA",
                    "municipio": "NOVA ANDRADINA"
                },
                {
                    "id": 12301,
                    "nome": "FAZENDINHA-U.S.PARN.(SP)",
                    "municipio": ""
                },
                {
                    "id": 12302,
                    "nome": "1284",
                    "municipio": ""
                },
                {
                    "id": 12303,
                    "nome": "RUA CAPIT�O JO�O VELHO - URB. CARUARU - PE",
                    "municipio": "CARUARU"
                },
                {
                    "id": 12304,
                    "nome": "GUARANTA DO NORTE, MT",
                    "municipio": "GUARANTA DO NORTE"
                },
                {
                    "id": 12305,
                    "nome": "MARCELANDIA",
                    "municipio": "MARCELANDIA"
                },
                {
                    "id": 12306,
                    "nome": "DUQUE DE CAXIAS, CENTRO, RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 12307,
                    "nome": "1290",
                    "municipio": ""
                },
                {
                    "id": 12308,
                    "nome": "CAMPINAPOLIS, MT",
                    "municipio": "CAMPINAPOLIS"
                },
                {
                    "id": 12309,
                    "nome": "CARLOS GOMES,URB.PORTO VELHO, RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 12310,
                    "nome": "NOVO SAO JOAQUIM",
                    "municipio": "NOVO SAO JOAQUIM"
                },
                {
                    "id": 12311,
                    "nome": "JAGUARIUNA",
                    "municipio": "JAGUARIUNA"
                },
                {
                    "id": 12312,
                    "nome": "PEREIRA BARRETO",
                    "municipio": "PEREIRA BARRETO"
                },
                {
                    "id": 12313,
                    "nome": "1298",
                    "municipio": ""
                },
                {
                    "id": 12314,
                    "nome": "NAO-ME-TOQUE",
                    "municipio": "NAO-ME-TOQUE"
                },
                {
                    "id": 12315,
                    "nome": "BAURU, CENTRO, SP",
                    "municipio": "BAURU"
                },
                {
                    "id": 12316,
                    "nome": "MOOCA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12317,
                    "nome": "BAIRRO BURITIZAL,URB.MACAPA, AP",
                    "municipio": "MACAPA"
                },
                {
                    "id": 12318,
                    "nome": "CANINDE, CE",
                    "municipio": "CANINDE"
                },
                {
                    "id": 12319,
                    "nome": "ROSARIO DO SUL, RS",
                    "municipio": "ROSARIO DO SUL"
                },
                {
                    "id": 12320,
                    "nome": "1309",
                    "municipio": ""
                },
                {
                    "id": 12321,
                    "nome": "LIBERDADE,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12322,
                    "nome": "RUA DR.CURVELO CAVALCANTI,URB.ITAGUAI, RJ",
                    "municipio": "ITAGUAI"
                },
                {
                    "id": 12323,
                    "nome": "PARQUE NOVO MUNDO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12324,
                    "nome": "JUSSARA, GO",
                    "municipio": "JUSSARA"
                },
                {
                    "id": 12325,
                    "nome": "PJ ALTO VALOR PORTO ALEGRE SUL - URB. PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 12326,
                    "nome": "AV.GETULIO VARGAS,URB.NILOPOLIS, RJ",
                    "municipio": "NILOPOLIS"
                },
                {
                    "id": 12327,
                    "nome": "PJ ALTO VALOR MANAUS LESTE - URB. MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 12328,
                    "nome": "JOAO PAULO,URB.SAO LUIS, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 12329,
                    "nome": "NOVA TOBIAS BARRETO - URB. S�O PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12330,
                    "nome": "JARDINS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12331,
                    "nome": "1324",
                    "municipio": ""
                },
                {
                    "id": 12332,
                    "nome": "MUNDO NOVO",
                    "municipio": "MUNDO NOVO"
                },
                {
                    "id": 12333,
                    "nome": "PJ ALTO VALOR SALVADOR REC�NCAVO - URB. SALVADOR, ",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 12334,
                    "nome": "ITAIM,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12335,
                    "nome": "JACARAIPE,URB.SERRA, ES",
                    "municipio": "SERRA"
                },
                {
                    "id": 12336,
                    "nome": "1332",
                    "municipio": ""
                },
                {
                    "id": 12337,
                    "nome": "PJ ALTO VALOR CAMPINAS LESTE - URB. CAMPINAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 12338,
                    "nome": "ESTREITO-MARANHAO, MA",
                    "municipio": "ESTREITO"
                },
                {
                    "id": 12339,
                    "nome": "1337",
                    "municipio": ""
                },
                {
                    "id": 12340,
                    "nome": "BAIRRO CERRADO,URB.SOROCABA, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 12341,
                    "nome": "V.STA.CECILIA-U.VRED(RJ)",
                    "municipio": ""
                },
                {
                    "id": 12342,
                    "nome": "JARDIM AMERICA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12343,
                    "nome": "DOIS CORREGOS",
                    "municipio": "DOIS CORREGOS"
                },
                {
                    "id": 12344,
                    "nome": "CENTRO CIVICO,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 12345,
                    "nome": "1344",
                    "municipio": ""
                },
                {
                    "id": 12346,
                    "nome": "BAIRRO FAZENDINHA,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 12347,
                    "nome": "PJ ALTO VALOR NITER�I - URB. NITER�I, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 12348,
                    "nome": "PONTE DO IMARUIM,URB.PALHOCA, SC",
                    "municipio": "PALHOCA"
                },
                {
                    "id": 12349,
                    "nome": "COPACABANA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12350,
                    "nome": "MONTE AZUL PAULISTA",
                    "municipio": "MONTE AZUL PAULISTA"
                },
                {
                    "id": 12351,
                    "nome": "ITAPIPOCA, CE",
                    "municipio": "ITAPIPOCA"
                },
                {
                    "id": 12352,
                    "nome": "PARAISO",
                    "municipio": "PARAISO"
                },
                {
                    "id": 12353,
                    "nome": "SEVERINIA",
                    "municipio": "SEVERINIA"
                },
                {
                    "id": 12354,
                    "nome": "ARIRANHA",
                    "municipio": "ARIRANHA"
                },
                {
                    "id": 12355,
                    "nome": "TABAPUA",
                    "municipio": "TABAPUA"
                },
                {
                    "id": 12356,
                    "nome": "PIRANGI",
                    "municipio": "PIRANGI"
                },
                {
                    "id": 12357,
                    "nome": "CARDOSO DE ALMEIDA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12358,
                    "nome": "AVENIDA MORUMBI,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12359,
                    "nome": "RUA DR  MOREIRA   URB  MANAUS  AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 12360,
                    "nome": "AVENIDA MATEO BEI,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12361,
                    "nome": "1368",
                    "municipio": ""
                },
                {
                    "id": 12362,
                    "nome": "PIRAQUARA, PR",
                    "municipio": "PIRAQUARA"
                },
                {
                    "id": 12363,
                    "nome": "VILA FORMOSA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12364,
                    "nome": "NAVIRAI",
                    "municipio": "NAVIRAI"
                },
                {
                    "id": 12365,
                    "nome": "1374",
                    "municipio": ""
                },
                {
                    "id": 12366,
                    "nome": "MARACAJU",
                    "municipio": "MARACAJU"
                },
                {
                    "id": 12367,
                    "nome": "EDUCANDOS,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 12368,
                    "nome": "JACIARA",
                    "municipio": "JACIARA"
                },
                {
                    "id": 12369,
                    "nome": "CONSOLACAO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12370,
                    "nome": "ALTA FLORESTA, MT",
                    "municipio": "ALTA FLORESTA"
                },
                {
                    "id": 12371,
                    "nome": "1381",
                    "municipio": ""
                },
                {
                    "id": 12372,
                    "nome": "ALPHAVILLE, URB. BARUERI, SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 12373,
                    "nome": "1383",
                    "municipio": ""
                },
                {
                    "id": 12374,
                    "nome": "GUAXUPE",
                    "municipio": "GUAXUPE"
                },
                {
                    "id": 12375,
                    "nome": "TRES PONTAS",
                    "municipio": "TRES PONTAS"
                },
                {
                    "id": 12376,
                    "nome": "VILA BANDEIRANTES,URB.CAMPO GRANDE, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 12377,
                    "nome": "SERRA DOS CARAJAS-DIST.MUN.PARAUAPEBAS, PA",
                    "municipio": "PARAUAPEBAS"
                },
                {
                    "id": 12378,
                    "nome": "VILHENA",
                    "municipio": "VILHENA"
                },
                {
                    "id": 12379,
                    "nome": "1390",
                    "municipio": ""
                },
                {
                    "id": 12380,
                    "nome": "CONSELHEIRO LAFAIETE",
                    "municipio": "CONSELHEIRO LAFAIETE"
                },
                {
                    "id": 12381,
                    "nome": "VACARIA",
                    "municipio": "VACARIA"
                },
                {
                    "id": 12382,
                    "nome": "MIGUEL PEREIRA, RJ",
                    "municipio": "MIGUEL PEREIRA"
                },
                {
                    "id": 12383,
                    "nome": "CATALAO, GO",
                    "municipio": "CATALAO"
                },
                {
                    "id": 12384,
                    "nome": "SAO BRAZ,URB.BELEM, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 12385,
                    "nome": "TAQUARAL",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 12386,
                    "nome": "BIRIGUI,CENTRO, SP",
                    "municipio": "BIRIGUI"
                },
                {
                    "id": 12387,
                    "nome": "GOIANIA, CENTRO, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 12388,
                    "nome": "VILA ISABEL,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12389,
                    "nome": "SANTA LUZIA DO PARUA, MA",
                    "municipio": "SANTA LUZIA DO PARUA"
                },
                {
                    "id": 12390,
                    "nome": "POJUCA, BA",
                    "municipio": "POJUCA"
                },
                {
                    "id": 12391,
                    "nome": "CAMBORIU, SC",
                    "municipio": "CAMBORIU"
                },
                {
                    "id": 12392,
                    "nome": "VILA BARROS",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 12393,
                    "nome": "SETOR INDUSTRIAL,URB.BRASILIA, DF",
                    "municipio": "BRASILIA (GUARA)"
                },
                {
                    "id": 12394,
                    "nome": "IBIPORA, PR",
                    "municipio": "IBIPORA"
                },
                {
                    "id": 12395,
                    "nome": "BAIRRO DA PAZ,URB.PARAUAPEBAS, PA",
                    "municipio": "PARAUAPEBAS"
                },
                {
                    "id": 12396,
                    "nome": "FLAMENGO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12397,
                    "nome": "VILA MATILDE,URB.SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12398,
                    "nome": "PIRITUBA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12399,
                    "nome": "MERCADO SAO SEBASTIAO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12400,
                    "nome": "CIANORTE, PR",
                    "municipio": "CIANORTE"
                },
                {
                    "id": 12401,
                    "nome": "RUA DA INDEPENDENCIA,URB.MACAPA, AP",
                    "municipio": "MACAPA"
                },
                {
                    "id": 12402,
                    "nome": "1421",
                    "municipio": ""
                },
                {
                    "id": 12403,
                    "nome": "TRT,URB.GOIANIA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 12404,
                    "nome": "IGUATEMI,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 12405,
                    "nome": "1426",
                    "municipio": ""
                },
                {
                    "id": 12406,
                    "nome": "CRUZEIRO D'OESTE, PR",
                    "municipio": "CRUZEIRO DO OESTE"
                },
                {
                    "id": 12407,
                    "nome": "AG�NCIA CORPORATE BELO HORIZONTE II, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 12408,
                    "nome": "PACAEMBU,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12409,
                    "nome": "1432",
                    "municipio": ""
                },
                {
                    "id": 12410,
                    "nome": "1434",
                    "municipio": ""
                },
                {
                    "id": 12411,
                    "nome": "PORTAO, RS",
                    "municipio": "PORTAO"
                },
                {
                    "id": 12412,
                    "nome": "NOVA BRASILIA,URB.JI-PARANA, RO",
                    "municipio": "JI-PARANA"
                },
                {
                    "id": 12413,
                    "nome": "PRACA GENERAL VALADAO,URB.ARACAJU, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 12414,
                    "nome": "BARRETOS, SP",
                    "municipio": "BARRETOS"
                },
                {
                    "id": 12415,
                    "nome": "RUA ANHAIA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12416,
                    "nome": "CIDADE DUTRA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12417,
                    "nome": "JARDIM BONFIGLIOLI,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12418,
                    "nome": "JARDIM BOTANICO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12419,
                    "nome": "AVENIDA BANDEIRANTES,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12420,
                    "nome": "CARIACICA, CENTRO, ES",
                    "municipio": "CARIACICA"
                },
                {
                    "id": 12421,
                    "nome": "MINEIROS, GO",
                    "municipio": "MINEIROS"
                },
                {
                    "id": 12422,
                    "nome": "ARIQUEMES",
                    "municipio": "ARIQUEMES"
                },
                {
                    "id": 12423,
                    "nome": "CAMPO LIMPO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12424,
                    "nome": "PIRACICABA, CENTRO, SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 12425,
                    "nome": "COXIM, MS",
                    "municipio": "COXIM"
                },
                {
                    "id": 12426,
                    "nome": "VILA DIVA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12427,
                    "nome": "SAARA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12428,
                    "nome": "BANGU,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12429,
                    "nome": "MIRASSOL D'OESTE",
                    "municipio": "MIRASSOL D'OESTE"
                },
                {
                    "id": 12430,
                    "nome": "S. JOSE DOS QUATRO MARCOS",
                    "municipio": "SAO JOSE DOS QUATRO MARCOS"
                },
                {
                    "id": 12431,
                    "nome": "SORRISO, MT",
                    "municipio": "SORRISO"
                },
                {
                    "id": 12432,
                    "nome": "PONTES E LACERDA, MT",
                    "municipio": "PONTES E LACERDA"
                },
                {
                    "id": 12433,
                    "nome": "PRIMAVERA DO LESTE",
                    "municipio": "PRIMAVERA DO LESTE"
                },
                {
                    "id": 12434,
                    "nome": "CATANDUVA,CENTRO, SP",
                    "municipio": "CATANDUVA"
                },
                {
                    "id": 12435,
                    "nome": "RIO VERDE DE MATO GROSSO",
                    "municipio": "RIO VERDE DE MATO GROSSO"
                },
                {
                    "id": 12436,
                    "nome": "COXIPO DA PONTE - URB. CUIABA, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 12437,
                    "nome": "PORTO - URB. CUIABA, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 12438,
                    "nome": "BETIM, CENTRO, MG",
                    "municipio": "BETIM"
                },
                {
                    "id": 12439,
                    "nome": "ITAPECERICA DA SERRA, CENTRO, SP",
                    "municipio": "ITAPECERICA DA SERRA"
                },
                {
                    "id": 12440,
                    "nome": "GUAIRA",
                    "municipio": "GUAIRA"
                },
                {
                    "id": 12441,
                    "nome": "JARDIM",
                    "municipio": "JARDIM"
                },
                {
                    "id": 12442,
                    "nome": "FRANCISCO BELTRAO",
                    "municipio": "FRANCISCO BELTRAO"
                },
                {
                    "id": 12443,
                    "nome": "MEDIANEIRA",
                    "municipio": "MEDIANEIRA"
                },
                {
                    "id": 12444,
                    "nome": "FORMOSA, GO",
                    "municipio": "FORMOSA"
                },
                {
                    "id": 12445,
                    "nome": "BELA VISTA PARAISO, PR",
                    "municipio": "BELA VISTA DO PARAISO"
                },
                {
                    "id": 12446,
                    "nome": "MONTE DOURADO, PA",
                    "municipio": "ALMEIRIM"
                },
                {
                    "id": 12447,
                    "nome": "SAO JOAO DEL REI",
                    "municipio": "SAO JOAO DEL REI"
                },
                {
                    "id": 12448,
                    "nome": "SAO JOSE, CENTRO, SC",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 12449,
                    "nome": "GUARAPARI,CENTRO, ES",
                    "municipio": "GUARAPARI"
                },
                {
                    "id": 12450,
                    "nome": "GUACUI, ES",
                    "municipio": "GUACUI"
                },
                {
                    "id": 12451,
                    "nome": "ITAPEMIRIM, ES",
                    "municipio": "ITAPEMIRIM"
                },
                {
                    "id": 12452,
                    "nome": "ARTUR ALVIM,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12453,
                    "nome": "MOGI DAS CRUZES, CENTRO, SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 12454,
                    "nome": "VILA SANTA CATARINA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12455,
                    "nome": "NOVA VENECIA, ES",
                    "municipio": "NOVA VENECIA"
                },
                {
                    "id": 12456,
                    "nome": "MIRANDA",
                    "municipio": "MIRANDA"
                },
                {
                    "id": 12457,
                    "nome": "CAARAPO",
                    "municipio": "CAARAPO"
                },
                {
                    "id": 12458,
                    "nome": "GOIATUBA, GO",
                    "municipio": "GOIATUBA"
                },
                {
                    "id": 12459,
                    "nome": "SIDROLANDIA",
                    "municipio": "SIDROLANDIA"
                },
                {
                    "id": 12460,
                    "nome": "ROLIM DE MOURA",
                    "municipio": "ROLIM DE MOURA"
                },
                {
                    "id": 12461,
                    "nome": "TRES CORACOES",
                    "municipio": "TRES CORACOES"
                },
                {
                    "id": 12462,
                    "nome": "VENDA NOVA DO IMIGRANTE, ES",
                    "municipio": "VENDA NOVA DO IMIGRANTE"
                },
                {
                    "id": 12463,
                    "nome": "ALEGRE, ES",
                    "municipio": "ALEGRE"
                },
                {
                    "id": 12464,
                    "nome": "GONZAGA",
                    "municipio": "SANTOS"
                },
                {
                    "id": 12465,
                    "nome": "ALTONIA,PR",
                    "municipio": "ALTONIA"
                },
                {
                    "id": 12466,
                    "nome": "MONTENEGRO, RS",
                    "municipio": "MONTENEGRO"
                },
                {
                    "id": 12467,
                    "nome": "LINHARES, ES",
                    "municipio": "LINHARES"
                },
                {
                    "id": 12468,
                    "nome": "MANHUMIRIM",
                    "municipio": "MANHUMIRIM"
                },
                {
                    "id": 12469,
                    "nome": "ERMELINO MATARAZZO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12470,
                    "nome": "SANTA ISABEL DO PARA, PA",
                    "municipio": "SANTA ISABEL DO PARA"
                },
                {
                    "id": 12471,
                    "nome": "POUSO ALEGRE",
                    "municipio": "POUSO ALEGRE"
                },
                {
                    "id": 12472,
                    "nome": "IVAIPORA",
                    "municipio": "IVAIPORA"
                },
                {
                    "id": 12473,
                    "nome": "ABOLICAO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12474,
                    "nome": "CAFELANDIA",
                    "municipio": "CAFELANDIA"
                },
                {
                    "id": 12475,
                    "nome": "JUNDIAI, CENTRO, SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 12476,
                    "nome": "SAO JOAQUIM DA BARRA",
                    "municipio": "SAO JOAQUIM DA BARRA"
                },
                {
                    "id": 12477,
                    "nome": "PATOS DE MINAS, CENTRO, MG",
                    "municipio": "PATOS DE MINAS"
                },
                {
                    "id": 12478,
                    "nome": "JOAO MONLEVADE",
                    "municipio": "JOAO MONLEVADE"
                },
                {
                    "id": 12479,
                    "nome": "CEREJEIRAS",
                    "municipio": "CEREJEIRAS"
                },
                {
                    "id": 12480,
                    "nome": "UMARIZAL,URB.BELEM, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 12481,
                    "nome": "CASSILANDIA, MS",
                    "municipio": "CASSILANDIA"
                },
                {
                    "id": 12482,
                    "nome": "SENADOR LA ROQUE, MA",
                    "municipio": "SENADOR LA ROCQUE"
                },
                {
                    "id": 12483,
                    "nome": "LIMEIRA, CENTRO, SP",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 12484,
                    "nome": "1510",
                    "municipio": ""
                },
                {
                    "id": 12485,
                    "nome": "1511",
                    "municipio": ""
                },
                {
                    "id": 12486,
                    "nome": "Ag�ncia 1512",
                    "municipio": ""
                },
                {
                    "id": 12487,
                    "nome": "PRACA SAO FRANCISCO,URB.MARABA, PA",
                    "municipio": "MARABA"
                },
                {
                    "id": 12488,
                    "nome": "RUA SCHILLING,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12489,
                    "nome": "SOROCABA, CENTRO, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 12490,
                    "nome": "BAIRRO CABULA,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 12491,
                    "nome": "BORBA GATO, URB. SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12492,
                    "nome": "PARNAIBA",
                    "municipio": "PARNAIBA"
                },
                {
                    "id": 12493,
                    "nome": "SAO JOAO BATISTA, SC",
                    "municipio": "SAO JOAO BATISTA"
                },
                {
                    "id": 12494,
                    "nome": "1526",
                    "municipio": ""
                },
                {
                    "id": 12495,
                    "nome": "1527",
                    "municipio": ""
                },
                {
                    "id": 12496,
                    "nome": "DEODAPOLIS,MS",
                    "municipio": "DEODAPOLIS"
                },
                {
                    "id": 12497,
                    "nome": "TURIACU, MA",
                    "municipio": "TURIACU"
                },
                {
                    "id": 12498,
                    "nome": "PORTO VELHO, CENTRO, RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 12499,
                    "nome": "1531",
                    "municipio": ""
                },
                {
                    "id": 12500,
                    "nome": "IBIRUBA",
                    "municipio": "IBIRUBA"
                },
                {
                    "id": 12501,
                    "nome": "SAO SEPE",
                    "municipio": "SAO SEPE"
                },
                {
                    "id": 12502,
                    "nome": "TRES DE MAIO, RS",
                    "municipio": "TRES DE MAIO"
                },
                {
                    "id": 12503,
                    "nome": "BATAGUASSU,MS",
                    "municipio": "BATAGUASSU"
                },
                {
                    "id": 12504,
                    "nome": "BONITO",
                    "municipio": "BONITO"
                },
                {
                    "id": 12505,
                    "nome": "CAMAPUA",
                    "municipio": "CAMAPUA"
                },
                {
                    "id": 12506,
                    "nome": "ELDORADO, MS",
                    "municipio": "ELDORADO"
                },
                {
                    "id": 12507,
                    "nome": "GUARULHOS, CENTRO, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 12508,
                    "nome": "IPORA, GO",
                    "municipio": "IPORA"
                },
                {
                    "id": 12509,
                    "nome": "ITAPORA",
                    "municipio": "ITAPORA"
                },
                {
                    "id": 12510,
                    "nome": "ITAGUAI, CENTRO, RJ",
                    "municipio": "ITAGUAI"
                },
                {
                    "id": 12511,
                    "nome": "SANTO AMARO,BA",
                    "municipio": "SANTO AMARO"
                },
                {
                    "id": 12512,
                    "nome": "APARECIDA DO TABOADO",
                    "municipio": "APARECIDA DO TABOADO"
                },
                {
                    "id": 12513,
                    "nome": "MACAE, CENTRO, RJ",
                    "municipio": "MACAE"
                },
                {
                    "id": 12514,
                    "nome": "MAGE, CENTRO, RJ",
                    "municipio": "MAGE"
                },
                {
                    "id": 12515,
                    "nome": "VALENCA, RJ",
                    "municipio": "VALENCA"
                },
                {
                    "id": 12516,
                    "nome": "BARCARENA",
                    "municipio": "BARCARENA"
                },
                {
                    "id": 12517,
                    "nome": "CAMPOS DO JORDAO",
                    "municipio": "CAMPOS DO JORDAO"
                },
                {
                    "id": 12518,
                    "nome": "VILA GALVAO,URB.GUARULHOS, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 12519,
                    "nome": "1550",
                    "municipio": ""
                },
                {
                    "id": 12520,
                    "nome": "ITUVERAVA",
                    "municipio": "ITUVERAVA"
                },
                {
                    "id": 12521,
                    "nome": "PALHOCA, CENTRO, SC",
                    "municipio": "PALHOCA"
                },
                {
                    "id": 12522,
                    "nome": "CASTRO, PR",
                    "municipio": "CASTRO"
                },
                {
                    "id": 12523,
                    "nome": "PARAISO DO TOCANTINS",
                    "municipio": "PARAISO DO TOCANTINS"
                },
                {
                    "id": 12524,
                    "nome": "SAO CARLOS",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 12525,
                    "nome": "CANGUCU, RS",
                    "municipio": "CANGUCU"
                },
                {
                    "id": 12526,
                    "nome": "IBIRITE, MG",
                    "municipio": "IBIRITE"
                },
                {
                    "id": 12527,
                    "nome": "ANDIRA, PR",
                    "municipio": "ANDIRA"
                },
                {
                    "id": 12528,
                    "nome": "NACOES UNIDAS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12529,
                    "nome": "ITARARE",
                    "municipio": "ITARARE"
                },
                {
                    "id": 12530,
                    "nome": "PATOS - PB",
                    "municipio": "PATOS"
                },
                {
                    "id": 12531,
                    "nome": "CARATINGA",
                    "municipio": "CARATINGA"
                },
                {
                    "id": 12532,
                    "nome": "CORONEL FABRICIANO, MG",
                    "municipio": "CORONEL FABRICIANO"
                },
                {
                    "id": 12533,
                    "nome": "RIO BRILHANTE",
                    "municipio": "RIO BRILHANTE"
                },
                {
                    "id": 12534,
                    "nome": "AVARE, SP",
                    "municipio": "AVARE"
                },
                {
                    "id": 12535,
                    "nome": "LUZIANIA, CENTRO, GO",
                    "municipio": "LUZIANIA"
                },
                {
                    "id": 12536,
                    "nome": "MARAU, RS",
                    "municipio": "MARAU"
                },
                {
                    "id": 12537,
                    "nome": "SAO LUIS DE MONTES BELOS, GO",
                    "municipio": "SAO LUIS DE MONTES BELOS"
                },
                {
                    "id": 12538,
                    "nome": "CARAPINA-DIST.MUN.SERRA, ES",
                    "municipio": "SERRA"
                },
                {
                    "id": 12539,
                    "nome": "FRANCO DA ROCHA",
                    "municipio": "FRANCO DA ROCHA"
                },
                {
                    "id": 12540,
                    "nome": "CAPAO BONITO",
                    "municipio": "CAPAO BONITO"
                },
                {
                    "id": 12541,
                    "nome": "IGREJINHA",
                    "municipio": "IGREJINHA"
                },
                {
                    "id": 12542,
                    "nome": "ITAPEVA",
                    "municipio": "ITAPEVA"
                },
                {
                    "id": 12543,
                    "nome": "JACAREZINHO",
                    "municipio": "JACAREZINHO"
                },
                {
                    "id": 12544,
                    "nome": "MARANGUAPE, CE",
                    "municipio": "MARANGUAPE"
                },
                {
                    "id": 12545,
                    "nome": "CABREUVA",
                    "municipio": "CABREUVA"
                },
                {
                    "id": 12546,
                    "nome": "SIMOES FILHO, CENTRO, BA",
                    "municipio": "SIMOES FILHO"
                },
                {
                    "id": 12547,
                    "nome": "PORECATU",
                    "municipio": "PORECATU"
                },
                {
                    "id": 12548,
                    "nome": "JURUENA",
                    "municipio": "JURUENA"
                },
                {
                    "id": 12549,
                    "nome": "LUCAS DO RIO VERDE  MT",
                    "municipio": "LUCAS DO RIO VERDE"
                },
                {
                    "id": 12550,
                    "nome": "JUINA",
                    "municipio": "JUINA"
                },
                {
                    "id": 12551,
                    "nome": "BARRA DO BUGRES",
                    "municipio": "BARRA DO BUGRES"
                },
                {
                    "id": 12552,
                    "nome": "DIAMANTINO, MT",
                    "municipio": "DIAMANTINO"
                },
                {
                    "id": 12553,
                    "nome": "SANTA CRUZ DO SUL, RS",
                    "municipio": "SANTA CRUZ DO SUL"
                },
                {
                    "id": 12554,
                    "nome": "STO ANTONIO DA PLATINA",
                    "municipio": "SANTO ANTONIO DA PLATINA"
                },
                {
                    "id": 12555,
                    "nome": "ESTEIO",
                    "municipio": "ESTEIO"
                },
                {
                    "id": 12556,
                    "nome": "CERQUEIRA CESAR, URB. SP",
                    "municipio": "CERQUEIRA CESAR"
                },
                {
                    "id": 12557,
                    "nome": "LARGO DO RIACHUELO,URB.JUIZ DE FORA, MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 12558,
                    "nome": "QUIXADA, CE",
                    "municipio": "QUIXADA"
                },
                {
                    "id": 12559,
                    "nome": "SOUSA",
                    "municipio": "SOUSA"
                },
                {
                    "id": 12560,
                    "nome": "FREDERICO WESTPHALEN, RS",
                    "municipio": "FREDERICO WESTPHALEN"
                },
                {
                    "id": 12561,
                    "nome": "1597",
                    "municipio": ""
                },
                {
                    "id": 12562,
                    "nome": "OLINDA, CENTRO, PE",
                    "municipio": "OLINDA"
                },
                {
                    "id": 12563,
                    "nome": "15994",
                    "municipio": ""
                },
                {
                    "id": 12564,
                    "nome": "15997",
                    "municipio": ""
                },
                {
                    "id": 12565,
                    "nome": "CANDIDO MOTA",
                    "municipio": "CANDIDO MOTA"
                },
                {
                    "id": 12566,
                    "nome": "COTIA, SP",
                    "municipio": "COTIA"
                },
                {
                    "id": 12567,
                    "nome": "TRES PASSOS",
                    "municipio": "TRES PASSOS"
                },
                {
                    "id": 12568,
                    "nome": "LEOPOLDINA",
                    "municipio": "LEOPOLDINA"
                },
                {
                    "id": 12569,
                    "nome": "ITAQUI",
                    "municipio": "ITAQUI"
                },
                {
                    "id": 12570,
                    "nome": "CACHOEIRINHA,CENTRO, RS",
                    "municipio": "CACHOEIRINHA"
                },
                {
                    "id": 12571,
                    "nome": "ESTANCIA",
                    "municipio": "ESTANCIA"
                },
                {
                    "id": 12572,
                    "nome": "PAULISTA-CENTRO, PE",
                    "municipio": "PAULISTA"
                },
                {
                    "id": 12573,
                    "nome": "Ag�ncia 16060",
                    "municipio": ""
                },
                {
                    "id": 12574,
                    "nome": "Ag�ncia 16063",
                    "municipio": ""
                },
                {
                    "id": 12575,
                    "nome": "BARRA VELHA",
                    "municipio": "BARRA VELHA"
                },
                {
                    "id": 12576,
                    "nome": "ITAMBE, PR",
                    "municipio": "ITAMBE"
                },
                {
                    "id": 12577,
                    "nome": "ITANHAEM, CENTRO, SP",
                    "municipio": "ITANHAEM"
                },
                {
                    "id": 12578,
                    "nome": "PERUIBE",
                    "municipio": "PERUIBE"
                },
                {
                    "id": 12579,
                    "nome": "CARAGUATATUBA, CENTRO, SP",
                    "municipio": "CARAGUATATUBA"
                },
                {
                    "id": 12580,
                    "nome": "UBATUBA",
                    "municipio": "UBATUBA"
                },
                {
                    "id": 12581,
                    "nome": "SALTO",
                    "municipio": "SALTO"
                },
                {
                    "id": 12582,
                    "nome": "TAQUARA",
                    "municipio": "TAQUARA"
                },
                {
                    "id": 12583,
                    "nome": "AGUAS LINDAS DE GOIAS, GO",
                    "municipio": "AGUAS LINDAS DE GOIAS"
                },
                {
                    "id": 12584,
                    "nome": "FORMIGA",
                    "municipio": "FORMIGA"
                },
                {
                    "id": 12585,
                    "nome": "ALTINOPOLIS",
                    "municipio": "ALTINOPOLIS"
                },
                {
                    "id": 12586,
                    "nome": "SAO MARCOS",
                    "municipio": "SAO MARCOS"
                },
                {
                    "id": 12587,
                    "nome": "GUAIMBE, SP",
                    "municipio": "GUAIMBE"
                },
                {
                    "id": 12588,
                    "nome": "FARTURA(SP)",
                    "municipio": ""
                },
                {
                    "id": 12589,
                    "nome": "FRANCISCO MORATO",
                    "municipio": "FRANCISCO MORATO"
                },
                {
                    "id": 12590,
                    "nome": "ITAPOLIS",
                    "municipio": "ITAPOLIS"
                },
                {
                    "id": 12591,
                    "nome": "PRACA DOM PEDRO II, URB.POCOS DE CALDAS, MG",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 12592,
                    "nome": "S SEBASTIAO DO PARAISO",
                    "municipio": "SAO SEBASTIAO DO PARAISO"
                },
                {
                    "id": 12593,
                    "nome": "RUA BOA VISTA, URB. SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12594,
                    "nome": "PRAIA DO BOTAFOGO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12595,
                    "nome": "NAVEGANTES, SC",
                    "municipio": "NAVEGANTES"
                },
                {
                    "id": 12596,
                    "nome": "1630",
                    "municipio": ""
                },
                {
                    "id": 12597,
                    "nome": "HUMAITA,UR.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12598,
                    "nome": "VASSOURAS",
                    "municipio": "VASSOURAS"
                },
                {
                    "id": 12599,
                    "nome": "TRINDADE  GO",
                    "municipio": "TRINDADE"
                },
                {
                    "id": 12600,
                    "nome": "RIBEIRAO CASCALHEIRA",
                    "municipio": "RIBEIRAO CASCALHEIRA"
                },
                {
                    "id": 12601,
                    "nome": "DOM PEDRITO",
                    "municipio": "DOM PEDRITO"
                },
                {
                    "id": 12602,
                    "nome": "ENCANTADO",
                    "municipio": "ENCANTADO"
                },
                {
                    "id": 12603,
                    "nome": "NOVA MUTUM, MT",
                    "municipio": "NOVA MUTUM"
                },
                {
                    "id": 12604,
                    "nome": "IBITINGA",
                    "municipio": "IBITINGA"
                },
                {
                    "id": 12605,
                    "nome": "LARANJEIRAS DO SUL",
                    "municipio": "LARANJEIRAS DO SUL"
                },
                {
                    "id": 12606,
                    "nome": "ITABERA, SP",
                    "municipio": "ITABERA"
                },
                {
                    "id": 12607,
                    "nome": "LAURO DE FREITAS, CENTRO, BA",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 12608,
                    "nome": "LOANDA",
                    "municipio": "LOANDA"
                },
                {
                    "id": 12609,
                    "nome": "1642",
                    "municipio": ""
                },
                {
                    "id": 12610,
                    "nome": "NOVA GRANADA",
                    "municipio": "NOVA GRANADA"
                },
                {
                    "id": 12611,
                    "nome": "NOVO HORIZONTE",
                    "municipio": "NOVO HORIZONTE"
                },
                {
                    "id": 12612,
                    "nome": "PARATI",
                    "municipio": "PARATY"
                },
                {
                    "id": 12613,
                    "nome": "PEIXOTO DE AZEVEDO, MT",
                    "municipio": "PEIXOTO DE AZEVEDO"
                },
                {
                    "id": 12614,
                    "nome": "PORTO SEGURO, BA",
                    "municipio": "PORTO SEGURO"
                },
                {
                    "id": 12615,
                    "nome": "PRADOPOLIS",
                    "municipio": "PRADOPOLIS"
                },
                {
                    "id": 12616,
                    "nome": "SANTIAGO",
                    "municipio": "SANTIAGO"
                },
                {
                    "id": 12617,
                    "nome": "BELENZINHO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12618,
                    "nome": "SAO MIGUEL DOS CAMPOS, AL",
                    "municipio": "SAO MIGUEL DOS CAMPOS"
                },
                {
                    "id": 12619,
                    "nome": "SAO SEBASTIAO DO CAI, RS",
                    "municipio": "SAO SEBASTIAO DO CAI"
                },
                {
                    "id": 12620,
                    "nome": "TEIXEIRA DE FREITAS, CENTRO, BA",
                    "municipio": "TEIXEIRA DE FREITAS"
                },
                {
                    "id": 12621,
                    "nome": "VILA RICA, MT",
                    "municipio": "VILA RICA"
                },
                {
                    "id": 12622,
                    "nome": "PRIME BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 12623,
                    "nome": "ANDRADAS",
                    "municipio": "ANDRADAS"
                },
                {
                    "id": 12624,
                    "nome": "ITATINGA, SP",
                    "municipio": "ITATINGA"
                },
                {
                    "id": 12625,
                    "nome": "PRIME PRACA ALMIRANTE TAMANDARE,URB.GOIANIA,GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 12626,
                    "nome": "TREZE DE MAIO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 12627,
                    "nome": "STA CRUZ DAS PALMEIRAS",
                    "municipio": "SANTA CRUZ DAS PALMEIRAS"
                },
                {
                    "id": 12628,
                    "nome": "STA RITA DO PASSA QUATRO",
                    "municipio": "SANTA RITA DO PASSA QUATRO"
                },
                {
                    "id": 12629,
                    "nome": "SANTO ANTONIO DA PATRULHA, RS",
                    "municipio": "SANTO ANTONIO DA PATRULHA"
                },
                {
                    "id": 12630,
                    "nome": "PRIME AV.HIGIENOPOLIS,URB.LONDRINA, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 12631,
                    "nome": "PRIME SAO JOSE DOS CAMPOS, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 12632,
                    "nome": "PRIME CAMBUI,URB.CAMPINAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 12633,
                    "nome": "PRIME AVENIDA RIO BRANCO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12634,
                    "nome": "LAVINIA",
                    "municipio": "LAVINIA"
                },
                {
                    "id": 12635,
                    "nome": "PRIME BACACHERI,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 12636,
                    "nome": "VIADUTO,URB.ANANINDEUA, PA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 12637,
                    "nome": "PRIME JOINVILLE, SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 12638,
                    "nome": "PANAMBI",
                    "municipio": "PANAMBI"
                },
                {
                    "id": 12639,
                    "nome": "PRIME MOINHOS DE VENTO,URB.PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 12640,
                    "nome": "VARJOTA, CE",
                    "municipio": "VARJOTA"
                },
                {
                    "id": 12641,
                    "nome": "CAPIVARI",
                    "municipio": "CAPIVARI"
                },
                {
                    "id": 12642,
                    "nome": "CLEMENTINA, SP",
                    "municipio": "CLEMENTINA"
                },
                {
                    "id": 12643,
                    "nome": "PRESIDENTE EPITACIO",
                    "municipio": "PRESIDENTE EPITACIO"
                },
                {
                    "id": 12644,
                    "nome": "ITABIRA",
                    "municipio": "ITABIRA"
                },
                {
                    "id": 12645,
                    "nome": "OURILANDIA DO NORTE, PA",
                    "municipio": "OURILANDIA DO NORTE"
                },
                {
                    "id": 12646,
                    "nome": "PRIME BOA VIAGEM,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 12647,
                    "nome": "PRIME MACEIO, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 12648,
                    "nome": "PRIME PARQUE DA UVA,URB.JUNDIAI, SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 12649,
                    "nome": "SAO PEDRO DO IVAI, PR",
                    "municipio": "SAO PEDRO DO IVAI"
                },
                {
                    "id": 12650,
                    "nome": "PRIME CASTELO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12651,
                    "nome": "ARAXA",
                    "municipio": "ARAXA"
                },
                {
                    "id": 12652,
                    "nome": "PASSOS",
                    "municipio": "PASSOS"
                },
                {
                    "id": 12653,
                    "nome": "IGARAPAVA",
                    "municipio": "IGARAPAVA"
                },
                {
                    "id": 12654,
                    "nome": "SALGUEIRO, PE",
                    "municipio": "SALGUEIRO"
                },
                {
                    "id": 12655,
                    "nome": "16950",
                    "municipio": ""
                },
                {
                    "id": 12656,
                    "nome": "PRIME PAMPULHA,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 12657,
                    "nome": "1698",
                    "municipio": ""
                },
                {
                    "id": 12658,
                    "nome": "JARDIM GUANABARA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12659,
                    "nome": "COSMORAMA",
                    "municipio": "COSMORAMA"
                },
                {
                    "id": 12660,
                    "nome": "SANTA CRUZ,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12661,
                    "nome": "PRIME AV.NOVE DE JULHO,URB.RIBEIRAO PRETO, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 12662,
                    "nome": "PRIME PRESIDENTE PRUDENTE, SP",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 12663,
                    "nome": "BENEVIDES",
                    "municipio": "BENEVIDES"
                },
                {
                    "id": 12664,
                    "nome": "PRIME UBERLANDIA, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 12665,
                    "nome": "PRIME GRACA,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 12666,
                    "nome": "PRIME CHAME CHAME,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 12667,
                    "nome": "VESPASIANO",
                    "municipio": "VESPASIANO"
                },
                {
                    "id": 12668,
                    "nome": "ORIENTE, SP",
                    "municipio": "ORIENTE"
                },
                {
                    "id": 12669,
                    "nome": "CASTELO, ES",
                    "municipio": "CASTELO"
                },
                {
                    "id": 12670,
                    "nome": "FAZENDA RIO GRANDE, PR",
                    "municipio": "FAZENDA RIO GRANDE"
                },
                {
                    "id": 12671,
                    "nome": "FORTALEZA DE MINAS",
                    "municipio": "FORTALEZA DE MINAS"
                },
                {
                    "id": 12672,
                    "nome": "1716",
                    "municipio": ""
                },
                {
                    "id": 12673,
                    "nome": "RINCAO",
                    "municipio": "RINCAO"
                },
                {
                    "id": 12674,
                    "nome": "PRIME PRAIA DO CANTO, URB. VITORIA, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 12675,
                    "nome": "1719",
                    "municipio": ""
                },
                {
                    "id": 12676,
                    "nome": "MIRASSOL, SP",
                    "municipio": "MIRASSOL"
                },
                {
                    "id": 12677,
                    "nome": "PRIME AVENIDA MANOEL DIAS,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 12678,
                    "nome": "1721",
                    "municipio": ""
                },
                {
                    "id": 12679,
                    "nome": "ARACRUZ, ES",
                    "municipio": "ARACRUZ"
                },
                {
                    "id": 12680,
                    "nome": "COLINAS DO TOCANTINS",
                    "municipio": "COLINAS DO TOCANTINS"
                },
                {
                    "id": 12681,
                    "nome": "CARANGOLA, MG",
                    "municipio": "CARANGOLA"
                },
                {
                    "id": 12682,
                    "nome": "AGUAS DE LINDOIA",
                    "municipio": "AGUAS DE LINDOIA"
                },
                {
                    "id": 12683,
                    "nome": "EPITACIO PESSOA,URB.JOAO PESSOA, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 12684,
                    "nome": "PONTA PORA, MS",
                    "municipio": "PONTA PORA"
                },
                {
                    "id": 12685,
                    "nome": "SABARA, CENTRO, MG",
                    "municipio": "SABARA"
                },
                {
                    "id": 12686,
                    "nome": "MARAVILHA",
                    "municipio": "MARAVILHA"
                },
                {
                    "id": 12687,
                    "nome": "URUBICI",
                    "municipio": "URUBICI"
                },
                {
                    "id": 12688,
                    "nome": "XAXIM, SC",
                    "municipio": "XAXIM"
                },
                {
                    "id": 12689,
                    "nome": "ABELARDO LUZ",
                    "municipio": "ABELARDO LUZ"
                },
                {
                    "id": 12690,
                    "nome": "TANGARA",
                    "municipio": "TANGARA"
                },
                {
                    "id": 12691,
                    "nome": "GUARAMIRIM",
                    "municipio": "GUARAMIRIM"
                },
                {
                    "id": 12692,
                    "nome": "GUARARAPES",
                    "municipio": "GUARARAPES"
                },
                {
                    "id": 12693,
                    "nome": "SOCORRO",
                    "municipio": "SOCORRO"
                },
                {
                    "id": 12694,
                    "nome": "AQUIDAUANA, MS",
                    "municipio": "AQUIDAUANA"
                },
                {
                    "id": 12695,
                    "nome": "RUA DO ORATORIO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12696,
                    "nome": "ARUJA, SP",
                    "municipio": "ARUJA"
                },
                {
                    "id": 12697,
                    "nome": "JACANA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12698,
                    "nome": "ARICANDUVA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12699,
                    "nome": "COLINA",
                    "municipio": "COLINA"
                },
                {
                    "id": 12700,
                    "nome": "PRIME CACHOEIRINHA,URB.CAMPO GRANDE, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 12701,
                    "nome": "IGUATEMI",
                    "municipio": "IGUATEMI"
                },
                {
                    "id": 12702,
                    "nome": "TAMBAU",
                    "municipio": "TAMBAU"
                },
                {
                    "id": 12703,
                    "nome": "ALTO ALEGRE DO PINDARE, MA",
                    "municipio": "ALTO ALEGRE DO PINDARE"
                },
                {
                    "id": 12704,
                    "nome": "PRIME AV.SUMARE,URB.SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12705,
                    "nome": "CANDELARIA",
                    "municipio": "CANDELARIA"
                },
                {
                    "id": 12706,
                    "nome": "1754",
                    "municipio": ""
                },
                {
                    "id": 12707,
                    "nome": "AVENIDA ITABERABA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12708,
                    "nome": "PRIME COMERCIO,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 12709,
                    "nome": "PRIME TRIBUNAL DE JUSTICA, URB. SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 12710,
                    "nome": "REGISTRO, SP",
                    "municipio": "REGISTRO"
                },
                {
                    "id": 12711,
                    "nome": "OUROESTE, SP",
                    "municipio": "OUROESTE"
                },
                {
                    "id": 12712,
                    "nome": "CAMPESTRE DO MARANHAO  MA",
                    "municipio": "CAMPESTRE DO MARANHAO"
                },
                {
                    "id": 12713,
                    "nome": "PRIME LIBERO BADARO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12714,
                    "nome": "PRIME CAMBUCI,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12715,
                    "nome": "PRIME MOGI DAS CRUZES, SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 12716,
                    "nome": "DUQUE BACELAR, MA",
                    "municipio": "DUQUE BACELAR"
                },
                {
                    "id": 12717,
                    "nome": "FORMOSA DA SERRA NEGRA, MA",
                    "municipio": "FORMOSA DA SERRA NEGRA"
                },
                {
                    "id": 12718,
                    "nome": "PRIME BOM RETIRO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12719,
                    "nome": "PRIME CARDOSO ALMEIDA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12720,
                    "nome": "PRIME SANTO ANDRE, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 12721,
                    "nome": "177",
                    "municipio": ""
                },
                {
                    "id": 12722,
                    "nome": "1771",
                    "municipio": ""
                },
                {
                    "id": 12723,
                    "nome": "MARACACUME, MA",
                    "municipio": "MARACACUME"
                },
                {
                    "id": 12724,
                    "nome": "PRIME PRACA OSWALDO CRUZ,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12725,
                    "nome": "FARROUPILHA",
                    "municipio": "FARROUPILHA"
                },
                {
                    "id": 12726,
                    "nome": "DOIS IRMAOS",
                    "municipio": "DOIS IRMAOS"
                },
                {
                    "id": 12727,
                    "nome": "1777",
                    "municipio": ""
                },
                {
                    "id": 12728,
                    "nome": "TORRES",
                    "municipio": "TORRES"
                },
                {
                    "id": 12729,
                    "nome": "GARIBALDI",
                    "municipio": "GARIBALDI"
                },
                {
                    "id": 12730,
                    "nome": "TAQUARITUBA, SP",
                    "municipio": "TAQUARITUBA"
                },
                {
                    "id": 12731,
                    "nome": "PRIME AV. T 63, URB. GOIANIA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 12732,
                    "nome": "LIMOEIRO DO NORTE, CE",
                    "municipio": "LIMOEIRO DO NORTE"
                },
                {
                    "id": 12733,
                    "nome": "CARPINA",
                    "municipio": "CARPINA"
                },
                {
                    "id": 12734,
                    "nome": "LIMOEIRO, PE",
                    "municipio": "LIMOEIRO"
                },
                {
                    "id": 12735,
                    "nome": "GAVEA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12736,
                    "nome": "ALFENAS, MG",
                    "municipio": "ALFENAS"
                },
                {
                    "id": 12737,
                    "nome": "INDIANOPOLIS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12738,
                    "nome": "SERRA DE BRAGANCA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12739,
                    "nome": "AVENIDA VEREADOR JOSE DINIZ,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12740,
                    "nome": "CAMPO MOURAO, CENTRO, PR",
                    "municipio": "CAMPO MOURAO"
                },
                {
                    "id": 12741,
                    "nome": "GRAJAU,URB.RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12742,
                    "nome": "HENRIQUE VALADARES - URB. RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12743,
                    "nome": "MACHADO",
                    "municipio": "MACHADO"
                },
                {
                    "id": 12744,
                    "nome": "VIANA, ES",
                    "municipio": "VIANA"
                },
                {
                    "id": 12745,
                    "nome": "PRIME AV. DOM PEDRO II, URB. SANTO ANDRE, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 12746,
                    "nome": "PARQUE DAS NACOES",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 12747,
                    "nome": "GRAMADO  RS",
                    "municipio": "GRAMADO"
                },
                {
                    "id": 12748,
                    "nome": "SAO LUIS GONZAGA",
                    "municipio": "SAO LUIZ GONZAGA"
                },
                {
                    "id": 12749,
                    "nome": "PRIME VILA CLEMENTINO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12750,
                    "nome": "DUARTINA, SP",
                    "municipio": "DUARTINA"
                },
                {
                    "id": 12751,
                    "nome": "UMUARAMA,CENTRO, PR",
                    "municipio": "UMUARAMA"
                },
                {
                    "id": 12752,
                    "nome": "GOIANA",
                    "municipio": "GOIANA"
                },
                {
                    "id": 12753,
                    "nome": "BOQUEIRAO",
                    "municipio": "SANTOS"
                },
                {
                    "id": 12754,
                    "nome": "AV.PRESIDENTE VARGAS,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12755,
                    "nome": "FREGUESIA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12756,
                    "nome": "TERRA BOA, PR",
                    "municipio": "TERRA BOA"
                },
                {
                    "id": 12757,
                    "nome": "SANTA QUITERIA, MA",
                    "municipio": "SANTA QUITERIA DO MARANHAO"
                },
                {
                    "id": 12758,
                    "nome": "Ag�ncia 1814",
                    "municipio": ""
                },
                {
                    "id": 12759,
                    "nome": "1815",
                    "municipio": ""
                },
                {
                    "id": 12760,
                    "nome": "SAO JOAO DO PARAISO  MA",
                    "municipio": "SAO JOAO DO PARAISO"
                },
                {
                    "id": 12761,
                    "nome": "COLORADO, PR",
                    "municipio": "COLORADO"
                },
                {
                    "id": 12762,
                    "nome": "SAO VICENTE FERRER, MA",
                    "municipio": "SAO VICENTE FERRER"
                },
                {
                    "id": 12763,
                    "nome": "VILA NOVA DOS MARTIRIOS, MA",
                    "municipio": "VILA NOVA DOS MARTIRIOS"
                },
                {
                    "id": 12764,
                    "nome": "1822",
                    "municipio": ""
                },
                {
                    "id": 12765,
                    "nome": "1823",
                    "municipio": ""
                },
                {
                    "id": 12766,
                    "nome": "PRIME NACIONAL - URB. S�O PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12767,
                    "nome": "GUARA",
                    "municipio": "GUARA"
                },
                {
                    "id": 12768,
                    "nome": "PRIME PAMPLONA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12769,
                    "nome": "PRIME VILA NOVA CONCEICAO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12770,
                    "nome": "SAO JOAO CAIUA",
                    "municipio": "SAO JOAO DO CAIUA"
                },
                {
                    "id": 12771,
                    "nome": "PRACA ALMIRANTE TAMANDARE - URB. GOIANIA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 12772,
                    "nome": "DESCALVADO",
                    "municipio": "DESCALVADO"
                },
                {
                    "id": 12773,
                    "nome": "CEILANDIA-CIDADE SATELITE, DF",
                    "municipio": "BRASILIA (CEILANDIA)"
                },
                {
                    "id": 12774,
                    "nome": "JOAO NEIVA, ES",
                    "municipio": "JOAO NEIVA"
                },
                {
                    "id": 12775,
                    "nome": "PACO MUNICIPAL,URB.SAO BERNARDO DO CAMPO, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 12776,
                    "nome": "PRIME MONSENHOR CELSO,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 12777,
                    "nome": "ICONHA, ES",
                    "municipio": "ICONHA"
                },
                {
                    "id": 12778,
                    "nome": "ALMENARA",
                    "municipio": "ALMENARA"
                },
                {
                    "id": 12779,
                    "nome": "TERENOS",
                    "municipio": "TERENOS"
                },
                {
                    "id": 12780,
                    "nome": "SERTAOZINHO,CENTRO, SP",
                    "municipio": "SERTAOZINHO"
                },
                {
                    "id": 12781,
                    "nome": "ATAULFO DE PAIVA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12782,
                    "nome": "OURO FINO",
                    "municipio": "OURO FINO"
                },
                {
                    "id": 12783,
                    "nome": "POMERODE",
                    "municipio": "POMERODE"
                },
                {
                    "id": 12784,
                    "nome": "CONGONHAS",
                    "municipio": "CONGONHAS"
                },
                {
                    "id": 12785,
                    "nome": "SANTA LUZIA,CENTRO, MG",
                    "municipio": "SANTA LUZIA"
                },
                {
                    "id": 12786,
                    "nome": "JANAUBA",
                    "municipio": "JANAUBA"
                },
                {
                    "id": 12787,
                    "nome": "MONTANHA, ES",
                    "municipio": "MONTANHA"
                },
                {
                    "id": 12788,
                    "nome": "PRIME AV.JUSCELINO KUBITSCHEK,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12789,
                    "nome": "DIAMANTINA",
                    "municipio": "DIAMANTINA"
                },
                {
                    "id": 12790,
                    "nome": "PITANGUI",
                    "municipio": "PITANGUI"
                },
                {
                    "id": 12791,
                    "nome": "OLIVEIRA",
                    "municipio": "OLIVEIRA"
                },
                {
                    "id": 12792,
                    "nome": "BOM DESPACHO",
                    "municipio": "BOM DESPACHO"
                },
                {
                    "id": 12793,
                    "nome": "UNAI",
                    "municipio": "UNAI"
                },
                {
                    "id": 12794,
                    "nome": "COLOMBO, CENTRO, PR",
                    "municipio": "COLOMBO"
                },
                {
                    "id": 12795,
                    "nome": "SAO LOURENCO, MG",
                    "municipio": "SAO LOURENCO"
                },
                {
                    "id": 12796,
                    "nome": "SANTA TERESA, ES",
                    "municipio": "SANTA TERESA"
                },
                {
                    "id": 12797,
                    "nome": "RIO CLARO, CENTRO, SP",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 12798,
                    "nome": "ALEM PARAIBA",
                    "municipio": "ALEM PARAIBA"
                },
                {
                    "id": 12799,
                    "nome": "ALTO GARCAS, MT",
                    "municipio": "ALTO GARCAS"
                },
                {
                    "id": 12800,
                    "nome": "1873",
                    "municipio": ""
                },
                {
                    "id": 12801,
                    "nome": "MONTE CARMELO",
                    "municipio": "MONTE CARMELO"
                },
                {
                    "id": 12802,
                    "nome": "SANTA RITA DO SAPUCAI",
                    "municipio": "SANTA RITA DO SAPUCAI"
                },
                {
                    "id": 12803,
                    "nome": "SAO FELIX DO XINGU",
                    "municipio": "SAO FELIX DO XINGU"
                },
                {
                    "id": 12804,
                    "nome": "TIMBAUBA",
                    "municipio": "TIMBAUBA"
                },
                {
                    "id": 12805,
                    "nome": "TRAMANDAI",
                    "municipio": "TRAMANDAI"
                },
                {
                    "id": 12806,
                    "nome": "TUPACIGUARA",
                    "municipio": "TUPACIGUARA"
                },
                {
                    "id": 12807,
                    "nome": "CORUMBA, MS",
                    "municipio": "CORUMBA"
                },
                {
                    "id": 12808,
                    "nome": "SAO JOAO CLIMACO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12809,
                    "nome": "SARANDI",
                    "municipio": "SARANDI"
                },
                {
                    "id": 12810,
                    "nome": "ARARUAMA, CENTRO, RJ",
                    "municipio": "ARARUAMA"
                },
                {
                    "id": 12811,
                    "nome": "BOM JESUS DA LAPA, BA",
                    "municipio": "BOM JESUS DA LAPA"
                },
                {
                    "id": 12812,
                    "nome": "CAMPO BELO",
                    "municipio": "CAMPO BELO"
                },
                {
                    "id": 12813,
                    "nome": "CAMPO FORMOSO  BA",
                    "municipio": "CAMPO FORMOSO"
                },
                {
                    "id": 12814,
                    "nome": "CAMPO LARGO",
                    "municipio": "CAMPO LARGO"
                },
                {
                    "id": 12815,
                    "nome": "COMODORO, MT",
                    "municipio": "COMODORO"
                },
                {
                    "id": 12816,
                    "nome": "CORDEIRO",
                    "municipio": "CORDEIRO"
                },
                {
                    "id": 12817,
                    "nome": "ITAUNA",
                    "municipio": "ITAUNA"
                },
                {
                    "id": 12818,
                    "nome": "DOURADOS,CENTRO, MS",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 12819,
                    "nome": "LAVRAS, MG",
                    "municipio": "LAVRAS"
                },
                {
                    "id": 12820,
                    "nome": "NOVA LIMA",
                    "municipio": "NOVA LIMA"
                },
                {
                    "id": 12821,
                    "nome": "PATROCINIO",
                    "municipio": "PATROCINIO"
                },
                {
                    "id": 12822,
                    "nome": "PIRAPORA",
                    "municipio": "PIRAPORA"
                },
                {
                    "id": 12823,
                    "nome": "PIRES DO RIO, GO",
                    "municipio": "PIRES DO RIO"
                },
                {
                    "id": 12824,
                    "nome": "PRAIA DO CANTO,URB.VITORIA, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 12825,
                    "nome": "SACRAMENTO",
                    "municipio": "SACRAMENTO"
                },
                {
                    "id": 12826,
                    "nome": "SANTA ADELIA",
                    "municipio": "SANTA ADELIA"
                },
                {
                    "id": 12827,
                    "nome": "SANTA CRUZ DO CAPIBARIBE",
                    "municipio": "SANTA CRUZ DO CAPIBARIBE"
                },
                {
                    "id": 12828,
                    "nome": "18988",
                    "municipio": ""
                },
                {
                    "id": 12829,
                    "nome": "SAO PEDRO DA ALDEIA",
                    "municipio": "SAO PEDRO DA ALDEIA"
                },
                {
                    "id": 12830,
                    "nome": "LUCELIA, SP",
                    "municipio": "LUCELIA"
                },
                {
                    "id": 12831,
                    "nome": "SERRA NEGRA, SP",
                    "municipio": "SERRA NEGRA"
                },
                {
                    "id": 12832,
                    "nome": "SOLEDADE",
                    "municipio": "SOLEDADE"
                },
                {
                    "id": 12833,
                    "nome": "AV.FLORIANO PEIXOTO,URB.UBERLANDIA, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 12834,
                    "nome": "1902",
                    "municipio": ""
                },
                {
                    "id": 12835,
                    "nome": "SAO LOURENCO DA MATA",
                    "municipio": "SAO LOURENCO DA MATA"
                },
                {
                    "id": 12836,
                    "nome": "CAMARAGIBE",
                    "municipio": "CAMARAGIBE"
                },
                {
                    "id": 12837,
                    "nome": "19046",
                    "municipio": ""
                },
                {
                    "id": 12838,
                    "nome": "VICENTE DE CARVALHO",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 12839,
                    "nome": "CHAVANTES, SP",
                    "municipio": "CHAVANTES"
                },
                {
                    "id": 12840,
                    "nome": "BORBOREMA",
                    "municipio": "BORBOREMA"
                },
                {
                    "id": 12841,
                    "nome": "MARACAI",
                    "municipio": "MARACAI"
                },
                {
                    "id": 12842,
                    "nome": "TORRINHA, SP",
                    "municipio": "TORRINHA"
                },
                {
                    "id": 12843,
                    "nome": "OSORIO",
                    "municipio": "OSORIO"
                },
                {
                    "id": 12844,
                    "nome": "AV. SAPOPEMBA - URB. S�O PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12845,
                    "nome": "ESPERANCA, PB",
                    "municipio": "ESPERANCA"
                },
                {
                    "id": 12846,
                    "nome": "SHOP.JAR.CONC-U.CAMP(SP)",
                    "municipio": ""
                },
                {
                    "id": 12847,
                    "nome": "CERQUILHO",
                    "municipio": "CERQUILHO"
                },
                {
                    "id": 12848,
                    "nome": "ITAJOBI",
                    "municipio": "ITAJOBI"
                },
                {
                    "id": 12849,
                    "nome": "UCHOA",
                    "municipio": "UCHOA"
                },
                {
                    "id": 12850,
                    "nome": "MONTE APRAZIVEL, SP",
                    "municipio": "MONTE APRAZIVEL"
                },
                {
                    "id": 12851,
                    "nome": "NHANDEARA",
                    "municipio": "NHANDEARA"
                },
                {
                    "id": 12852,
                    "nome": "TABATINGA, SP",
                    "municipio": "TABATINGA"
                },
                {
                    "id": 12853,
                    "nome": "AURIFLAMA",
                    "municipio": "AURIFLAMA"
                },
                {
                    "id": 12854,
                    "nome": "ENGENHEIRO BELTRAO",
                    "municipio": "ENGENHEIRO BELTRAO"
                },
                {
                    "id": 12855,
                    "nome": "CALDAS NOVAS, GO",
                    "municipio": "CALDAS NOVAS"
                },
                {
                    "id": 12856,
                    "nome": "CLAUDIA",
                    "municipio": "CLAUDIA"
                },
                {
                    "id": 12857,
                    "nome": "CAMPO BOM",
                    "municipio": "CAMPO BOM"
                },
                {
                    "id": 12858,
                    "nome": "ESTANCIA VELHA, RS",
                    "municipio": "ESTANCIA VELHA"
                },
                {
                    "id": 12859,
                    "nome": "VIAMAO, CENTRO, RS",
                    "municipio": "VIAMAO"
                },
                {
                    "id": 12860,
                    "nome": "PAROBE",
                    "municipio": "PAROBE"
                },
                {
                    "id": 12861,
                    "nome": "SANTOS DUMONT",
                    "municipio": "SANTOS DUMONT"
                },
                {
                    "id": 12862,
                    "nome": "TAQUARITINGA, SP",
                    "municipio": "TAQUARITINGA"
                },
                {
                    "id": 12863,
                    "nome": "VERANOPOLIS",
                    "municipio": "VERANOPOLIS"
                },
                {
                    "id": 12864,
                    "nome": "PIRAPOZINHO",
                    "municipio": "PIRAPOZINHO"
                },
                {
                    "id": 12865,
                    "nome": "BROTAS",
                    "municipio": "BROTAS"
                },
                {
                    "id": 12866,
                    "nome": "BOCAINA, SP",
                    "municipio": "BOCAINA"
                },
                {
                    "id": 12867,
                    "nome": "PEDRO LEOPOLDO",
                    "municipio": "PEDRO LEOPOLDO"
                },
                {
                    "id": 12868,
                    "nome": "CURVELO",
                    "municipio": "CURVELO"
                },
                {
                    "id": 12869,
                    "nome": "IBIUNA",
                    "municipio": "IBIUNA"
                },
                {
                    "id": 12870,
                    "nome": "MAIRINQUE",
                    "municipio": "MAIRINQUE"
                },
                {
                    "id": 12871,
                    "nome": "PEDREIRA,URB.BELEM, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 12872,
                    "nome": "ESPIRITO SANTO DO PINHAL, SP",
                    "municipio": "ESPIRITO SANTO DO PINHAL"
                },
                {
                    "id": 12873,
                    "nome": "UBA",
                    "municipio": "UBA"
                },
                {
                    "id": 12874,
                    "nome": "AVENIDA COUTO MAGALHAES,URB.VARZEA GRANDE, MT",
                    "municipio": "VARZEA GRANDE"
                },
                {
                    "id": 12875,
                    "nome": "SAPIRANGA",
                    "municipio": "SAPIRANGA"
                },
                {
                    "id": 12876,
                    "nome": "JANUARIA",
                    "municipio": "JANUARIA"
                },
                {
                    "id": 12877,
                    "nome": "ANICUNS, GO",
                    "municipio": "ANICUNS"
                },
                {
                    "id": 12878,
                    "nome": "SERRANA, SP",
                    "municipio": "SERRANA"
                },
                {
                    "id": 12879,
                    "nome": "TUCURUI",
                    "municipio": "TUCURUI"
                },
                {
                    "id": 12880,
                    "nome": "ITABORAI, CENTRO, RJ",
                    "municipio": "ITABORAI"
                },
                {
                    "id": 12881,
                    "nome": "PIEDADE",
                    "municipio": "PIEDADE"
                },
                {
                    "id": 12882,
                    "nome": "TAUBATE, CENTRO, SP",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 12883,
                    "nome": "BARAO DE GURGUEIA,URB.TERESINA, PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 12884,
                    "nome": "BOA ESPERANCA",
                    "municipio": "BOA ESPERANCA"
                },
                {
                    "id": 12885,
                    "nome": "BOITUVA, SP",
                    "municipio": "BOITUVA"
                },
                {
                    "id": 12886,
                    "nome": "PARA DE MINAS",
                    "municipio": "PARA DE MINAS"
                },
                {
                    "id": 12887,
                    "nome": "SANTANA DE PARNAIBA,CENTRO, SP",
                    "municipio": "SANTANA DE PARNAIBA"
                },
                {
                    "id": 12888,
                    "nome": "PIUMHI",
                    "municipio": "PIUMHI"
                },
                {
                    "id": 12889,
                    "nome": "JARDIM DIONISIO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12890,
                    "nome": "PILAR DO SUL",
                    "municipio": "PILAR DO SUL"
                },
                {
                    "id": 12891,
                    "nome": "MUNHOZ",
                    "municipio": "MUNHOZ"
                },
                {
                    "id": 12892,
                    "nome": "JARDIM SATELITE",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 12893,
                    "nome": "PORTO TROMBETAS-DIST.MUN.ORIXIMINA, PA",
                    "municipio": "ORIXIMINA"
                },
                {
                    "id": 12894,
                    "nome": "VARZEA PAULISTA",
                    "municipio": "VARZEA PAULISTA"
                },
                {
                    "id": 12895,
                    "nome": "ITAI",
                    "municipio": "ITAI"
                },
                {
                    "id": 12896,
                    "nome": "VOTORANTIM",
                    "municipio": "VOTORANTIM"
                },
                {
                    "id": 12897,
                    "nome": "IGUAPE",
                    "municipio": "IGUAPE"
                },
                {
                    "id": 12898,
                    "nome": "RUA BARAO DE MELGACO,URB.CUIABA, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 12899,
                    "nome": "ITABIRITO",
                    "municipio": "ITABIRITO"
                },
                {
                    "id": 12900,
                    "nome": "SANTO ANTONIO DE POSSE",
                    "municipio": "SANTO ANTONIO DE POSSE"
                },
                {
                    "id": 12901,
                    "nome": "BONFIM",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 12902,
                    "nome": "VILA NOVA CONCEICAO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12903,
                    "nome": "PIRACAIA",
                    "municipio": "PIRACAIA"
                },
                {
                    "id": 12904,
                    "nome": "GUAIBA, RS",
                    "municipio": "GUAIBA"
                },
                {
                    "id": 12905,
                    "nome": "SAPUCAIA DO SUL",
                    "municipio": "SAPUCAIA DO SUL"
                },
                {
                    "id": 12906,
                    "nome": "CANGAIBA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12907,
                    "nome": "PRIME SAO CRISTOVAO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12908,
                    "nome": "APARECIDA, SP",
                    "municipio": "APARECIDA"
                },
                {
                    "id": 12909,
                    "nome": "SANTA ISABEL, SP",
                    "municipio": "SANTA ISABEL"
                },
                {
                    "id": 12910,
                    "nome": "MONGAGUA",
                    "municipio": "MONGAGUA"
                },
                {
                    "id": 12911,
                    "nome": "BAR�O DE ITAPETININGA, URB. S�O PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12912,
                    "nome": "CAMAQUA",
                    "municipio": "CAMAQUA"
                },
                {
                    "id": 12913,
                    "nome": "JOSE BONIFACIO",
                    "municipio": "JOSE BONIFACIO"
                },
                {
                    "id": 12914,
                    "nome": "ALCANTARA, MA",
                    "municipio": "ALCANTARA"
                },
                {
                    "id": 12915,
                    "nome": "DOM PEDRO, MA",
                    "municipio": "DOM PEDRO"
                },
                {
                    "id": 12916,
                    "nome": "TANABI",
                    "municipio": "TANABI"
                },
                {
                    "id": 12917,
                    "nome": "VIRADOURO",
                    "municipio": "VIRADOURO"
                },
                {
                    "id": 12918,
                    "nome": "JORDANESIA,SP - DISTRITO DO MUNICIPIO DE CAJAMAR",
                    "municipio": "CAJAMAR"
                },
                {
                    "id": 12919,
                    "nome": "EMBU-GUACU",
                    "municipio": "EMBU-GUACU"
                },
                {
                    "id": 12920,
                    "nome": "CORDEIROPOLIS",
                    "municipio": "CORDEIROPOLIS"
                },
                {
                    "id": 12921,
                    "nome": "VILA MARIA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12922,
                    "nome": "AVENIDA JUSCELINO KUBITSCHEK,URB.SAO PAULO,SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12923,
                    "nome": "1992",
                    "municipio": ""
                },
                {
                    "id": 12924,
                    "nome": "PONTE RASA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12925,
                    "nome": "SOBRADINHO,CIDADE SATELITE, DF",
                    "municipio": "BRASILIA (SOBRADINHO)"
                },
                {
                    "id": 12926,
                    "nome": "1995",
                    "municipio": ""
                },
                {
                    "id": 12927,
                    "nome": "M'BOI MIRIM,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12928,
                    "nome": "1997",
                    "municipio": ""
                },
                {
                    "id": 12929,
                    "nome": "CERRO CORA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12930,
                    "nome": "AVENIDA DJALMA BATISTA - URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 12931,
                    "nome": "MARILIA, CENTRO, SP",
                    "municipio": "MARILIA"
                },
                {
                    "id": 12932,
                    "nome": "MIRANDOPOLIS",
                    "municipio": "MIRANDOPOLIS"
                },
                {
                    "id": 12933,
                    "nome": "MAJOR DIOGO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12934,
                    "nome": "PENINSULA - URB. RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12935,
                    "nome": "2001",
                    "municipio": ""
                },
                {
                    "id": 12936,
                    "nome": "PLATAFORMA OPERACIONAL PJ CORPORATE E EMPRESAS, CA",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 12937,
                    "nome": "NOVA CANTAREIRA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12938,
                    "nome": "GUAIANAZES,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12939,
                    "nome": "2005",
                    "municipio": ""
                },
                {
                    "id": 12940,
                    "nome": "GUARABIRA",
                    "municipio": "GUARABIRA"
                },
                {
                    "id": 12941,
                    "nome": "PARAUAPEBAS, CENTRO, PA",
                    "municipio": "PARAUAPEBAS"
                },
                {
                    "id": 12942,
                    "nome": "MAMANGUAPE",
                    "municipio": "MAMANGUAPE"
                },
                {
                    "id": 12943,
                    "nome": "BOTUCATU,CENTRO, SP",
                    "municipio": "BOTUCATU"
                },
                {
                    "id": 12944,
                    "nome": "SANTA RITA",
                    "municipio": "SANTA RITA"
                },
                {
                    "id": 12945,
                    "nome": "PLATAFORMA OPERACIONAL PJ CORPORATE E EMPRESAS BEL",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 12946,
                    "nome": "ESTACIO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12947,
                    "nome": "JARDIM DO MEIER,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12948,
                    "nome": "RIO GRANDE DA SERRA",
                    "municipio": "RIO GRANDE DA SERRA"
                },
                {
                    "id": 12949,
                    "nome": "SANTA TEREZINHA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12950,
                    "nome": "2018",
                    "municipio": ""
                },
                {
                    "id": 12951,
                    "nome": "SAO MIGUEL ARCANJO",
                    "municipio": "SAO MIGUEL ARCANJO"
                },
                {
                    "id": 12952,
                    "nome": "GOIO-ERE, PR",
                    "municipio": "GOIOERE"
                },
                {
                    "id": 12953,
                    "nome": "ARAUCARIA, CENTRO, PR",
                    "municipio": "ARAUCARIA"
                },
                {
                    "id": 12954,
                    "nome": "NUCLEO BANDEIRANTE, CIDADE SATELITE, DF",
                    "municipio": "BRASILIA (NUCLEO BANDEIRANTE)"
                },
                {
                    "id": 12955,
                    "nome": "BERNARDINO DE CAMPOS",
                    "municipio": "BERNARDINO DE CAMPOS"
                },
                {
                    "id": 12956,
                    "nome": "APIAI",
                    "municipio": "APIAI"
                },
                {
                    "id": 12957,
                    "nome": "PLATAFORMA OPERACIONAL PJ CORPORATE E EMPRESAS - P",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 12958,
                    "nome": "CIDADE OCIAN,URB.PRAIA GRANDE",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 12959,
                    "nome": "FATIMA DO SUL, MS",
                    "municipio": "FATIMA DO SUL"
                },
                {
                    "id": 12960,
                    "nome": "BIGUACU",
                    "municipio": "BIGUACU"
                },
                {
                    "id": 12961,
                    "nome": "RIOLANDIA",
                    "municipio": "RIOLANDIA"
                },
                {
                    "id": 12962,
                    "nome": "LUIZIANIA, SP",
                    "municipio": "LUIZIANIA"
                },
                {
                    "id": 12963,
                    "nome": "IGARASSU",
                    "municipio": "IGARASSU"
                },
                {
                    "id": 12964,
                    "nome": "Ag�ncia 20330",
                    "municipio": ""
                },
                {
                    "id": 12965,
                    "nome": "20338",
                    "municipio": ""
                },
                {
                    "id": 12966,
                    "nome": "ALCANTARA,URB.SAO GONCALO, RJ",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 12967,
                    "nome": "MASSARANDUBA",
                    "municipio": "MASSARANDUBA"
                },
                {
                    "id": 12968,
                    "nome": "VILA HAUER,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 12969,
                    "nome": "CANTAGALO",
                    "municipio": "CANTAGALO"
                },
                {
                    "id": 12970,
                    "nome": "RIBAS DO RIO PARDO",
                    "municipio": "RIBAS DO RIO PARDO"
                },
                {
                    "id": 12971,
                    "nome": "JUQUIA, SP",
                    "municipio": "JUQUIA"
                },
                {
                    "id": 12972,
                    "nome": "CACHOEIRA PAULISTA",
                    "municipio": "CACHOEIRA PAULISTA"
                },
                {
                    "id": 12973,
                    "nome": "SAO GOTARDO",
                    "municipio": "SAO GOTARDO"
                },
                {
                    "id": 12974,
                    "nome": "PLATAFORMA OPERACIONAL  PJ CORPORATE E EMPRESAS, R",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 12975,
                    "nome": "2043",
                    "municipio": ""
                },
                {
                    "id": 12976,
                    "nome": "2044",
                    "municipio": ""
                },
                {
                    "id": 12977,
                    "nome": "PALMITAL",
                    "municipio": "PALMITAL"
                },
                {
                    "id": 12978,
                    "nome": "TELEGRAFO,URB.BELEM, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 12979,
                    "nome": "SANTO ANTONIO DE PADUA, RJ",
                    "municipio": "SANTO ANTONIO DE PADUA"
                },
                {
                    "id": 12980,
                    "nome": "2048",
                    "municipio": ""
                },
                {
                    "id": 12981,
                    "nome": "HERCULANDIA, SP",
                    "municipio": "HERCULANDIA"
                },
                {
                    "id": 12982,
                    "nome": "CACHOEIRAS DE MACACU",
                    "municipio": "CACHOEIRAS DE MACACU"
                },
                {
                    "id": 12983,
                    "nome": "VILAR DOS TELES-DIST.MUN.SAO JOAO DE MERITI",
                    "municipio": "SAO JOAO DE MERITI"
                },
                {
                    "id": 12984,
                    "nome": "NOSSA SENHORA DO SOCORRO",
                    "municipio": "NOSSA SENHORA DO SOCORRO"
                },
                {
                    "id": 12985,
                    "nome": "PARAIBA DO SUL",
                    "municipio": "PARAIBA DO SUL"
                },
                {
                    "id": 12986,
                    "nome": "RIO BONITO",
                    "municipio": "RIO BONITO"
                },
                {
                    "id": 12987,
                    "nome": "UBIRATA",
                    "municipio": "UBIRATA"
                },
                {
                    "id": 12988,
                    "nome": "PLANALTINA, GO",
                    "municipio": "PLANALTINA"
                },
                {
                    "id": 12989,
                    "nome": "CRISTALINA, GO",
                    "municipio": "CRISTALINA"
                },
                {
                    "id": 12990,
                    "nome": "CARMO DO PARANAIBA",
                    "municipio": "CARMO DO PARANAIBA"
                },
                {
                    "id": 12991,
                    "nome": "SAO SEBASTIAO, SP",
                    "municipio": "SAO SEBASTIAO"
                },
                {
                    "id": 12992,
                    "nome": "JAGUAQUARA, BA",
                    "municipio": "JAGUAQUARA"
                },
                {
                    "id": 12993,
                    "nome": "SAO LOURENCO DO SUL",
                    "municipio": "SAO LOURENCO DO SUL"
                },
                {
                    "id": 12994,
                    "nome": "FRADIQUE COUTINHO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12995,
                    "nome": "POCOES, BA",
                    "municipio": "POCOES"
                },
                {
                    "id": 12996,
                    "nome": "2064",
                    "municipio": ""
                },
                {
                    "id": 12997,
                    "nome": "ITAIM PAULISTA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12998,
                    "nome": "2066",
                    "municipio": ""
                },
                {
                    "id": 12999,
                    "nome": "MARIANA",
                    "municipio": "MARIANA"
                },
                {
                    "id": 13000,
                    "nome": "ARACOIABA DA SERRA",
                    "municipio": "ARACOIABA DA SERRA"
                },
                {
                    "id": 13001,
                    "nome": "JACUPIRANGA, SP",
                    "municipio": "JACUPIRANGA"
                },
                {
                    "id": 13002,
                    "nome": "MANDURI",
                    "municipio": "MANDURI"
                },
                {
                    "id": 13003,
                    "nome": "ICARA",
                    "municipio": "ICARA"
                },
                {
                    "id": 13004,
                    "nome": "CARLOS CHAGAS",
                    "municipio": "CARLOS CHAGAS"
                },
                {
                    "id": 13005,
                    "nome": "VENANCIO AIRES, RS",
                    "municipio": "VENANCIO AIRES"
                },
                {
                    "id": 13006,
                    "nome": "TRES VENDAS,URB.PELOTAS, RS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 13007,
                    "nome": "BELFORD ROXO, CENTRO, RJ",
                    "municipio": "BELFORD ROXO"
                },
                {
                    "id": 13008,
                    "nome": "208",
                    "municipio": ""
                },
                {
                    "id": 13009,
                    "nome": "ABREU E LIMA",
                    "municipio": "ABREU E LIMA"
                },
                {
                    "id": 13010,
                    "nome": "PEDREGULHO",
                    "municipio": "PEDREGULHO"
                },
                {
                    "id": 13011,
                    "nome": "IPUA",
                    "municipio": "IPUA"
                },
                {
                    "id": 13012,
                    "nome": "ATAIDE TEIVE,URB.BOA VISTA, RR",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 13013,
                    "nome": "NAZARE DA MATA, PE",
                    "municipio": "NAZARE DA MATA"
                },
                {
                    "id": 13014,
                    "nome": "2087",
                    "municipio": ""
                },
                {
                    "id": 13015,
                    "nome": "PRIME SAO LEOPOLDO, RS",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 13016,
                    "nome": "QUEIMADOS, CENTRO, RJ",
                    "municipio": "QUEIMADOS"
                },
                {
                    "id": 13017,
                    "nome": "ITAOCARA",
                    "municipio": "ITAOCARA"
                },
                {
                    "id": 13018,
                    "nome": "TIMOTEO-ACESITA",
                    "municipio": "TIMOTEO"
                },
                {
                    "id": 13019,
                    "nome": "2093",
                    "municipio": ""
                },
                {
                    "id": 13020,
                    "nome": "PLANALTINA,CIDADE SATELITE, DF",
                    "municipio": "BRASILIA (PLANALTINA)"
                },
                {
                    "id": 13021,
                    "nome": "ESTRADA DE ITAPECERICA - URB. S�O PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13022,
                    "nome": "ALTA FLORESTA DO OESTE",
                    "municipio": "ALTA FLORESTA D'OESTE"
                },
                {
                    "id": 13023,
                    "nome": "CONCHAL",
                    "municipio": "CONCHAL"
                },
                {
                    "id": 13024,
                    "nome": "OSVALDO CRUZ, SP",
                    "municipio": "OSVALDO CRUZ"
                },
                {
                    "id": 13025,
                    "nome": "LARANJAL PAULISTA, SP",
                    "municipio": "LARANJAL PAULISTA"
                },
                {
                    "id": 13026,
                    "nome": "CORONEL ANTONINO,URB.CAMPO GRANDE, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 13027,
                    "nome": "BASTOS",
                    "municipio": "BASTOS"
                },
                {
                    "id": 13028,
                    "nome": "PINDORAMA",
                    "municipio": "PINDORAMA"
                },
                {
                    "id": 13029,
                    "nome": "BAYEUX",
                    "municipio": "BAYEUX"
                },
                {
                    "id": 13030,
                    "nome": "AV.VINTE E OITO DE ABRIL,URB.IPATINGA, MG",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 13031,
                    "nome": "CRUZ DAS ARMAS,URB.JOAO PESSOA, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 13032,
                    "nome": "ITOUPAVA NORTE,URB.BLUMENAU, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 13033,
                    "nome": "FERRAZ DE VASCONCELOS, SP",
                    "municipio": "FERRAZ DE VASCONCELOS"
                },
                {
                    "id": 13034,
                    "nome": "BURITAMA",
                    "municipio": "BURITAMA"
                },
                {
                    "id": 13035,
                    "nome": "GAMA-CIDADE SATELITE, DF",
                    "municipio": "BRASILIA (GAMA)"
                },
                {
                    "id": 13036,
                    "nome": "PARNAMIRIM",
                    "municipio": "PARNAMIRIM"
                },
                {
                    "id": 13037,
                    "nome": "VIA EXPRESSA,URB.MACEIO, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 13038,
                    "nome": "BARREIROS",
                    "municipio": "BARREIROS"
                },
                {
                    "id": 13039,
                    "nome": "Ag�ncia 21160",
                    "municipio": ""
                },
                {
                    "id": 13040,
                    "nome": "DERGO,URB.GOIANIA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 13041,
                    "nome": "JOCKEY,URB.TERESINA, PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 13042,
                    "nome": "TIRIRICAL,URB.SAO LUIS, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 13043,
                    "nome": "SAQUAREMA",
                    "municipio": "SAQUAREMA"
                },
                {
                    "id": 13044,
                    "nome": "2125",
                    "municipio": ""
                },
                {
                    "id": 13045,
                    "nome": "PRIME FORTALEZA URB FORTALEZA  CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 13046,
                    "nome": "JAGUARAO",
                    "municipio": "JAGUARAO"
                },
                {
                    "id": 13047,
                    "nome": "IPANEMA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13048,
                    "nome": "PRIME MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 13049,
                    "nome": "CURRAIS NOVOS",
                    "municipio": "CURRAIS NOVOS"
                },
                {
                    "id": 13050,
                    "nome": "CEASA MINAS,URB.CONTAGEM, MG",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 13051,
                    "nome": "MESQUITA",
                    "municipio": "MESQUITA"
                },
                {
                    "id": 13052,
                    "nome": "PRUDENTE DE MORAIS,URB.NATAL, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 13053,
                    "nome": "2135",
                    "municipio": ""
                },
                {
                    "id": 13054,
                    "nome": "2139",
                    "municipio": ""
                },
                {
                    "id": 13055,
                    "nome": "VALINHOS,CENTRO, SP",
                    "municipio": "VALINHOS"
                },
                {
                    "id": 13056,
                    "nome": "JABOATAO DOS GUARARAPES",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 13057,
                    "nome": "MARICA, RJ",
                    "municipio": "MARICA"
                },
                {
                    "id": 13058,
                    "nome": "PRIME BELEM, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 13059,
                    "nome": "FAROL,URB.MACEIO, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 13060,
                    "nome": "CARLOS PRATES,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13061,
                    "nome": "VILA NOVA,URB.GOIANIA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 13062,
                    "nome": "ITAPEMA",
                    "municipio": "ITAPEMA"
                },
                {
                    "id": 13063,
                    "nome": "AMERICANA, CENTRO, SP",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 13064,
                    "nome": "BARRA DO RIO,URB.ITAJAI, SC",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 13065,
                    "nome": "2153",
                    "municipio": ""
                },
                {
                    "id": 13066,
                    "nome": "DIVINOLANDIA",
                    "municipio": "DIVINOLANDIA"
                },
                {
                    "id": 13067,
                    "nome": "ENTRONCAMENTO,URB.BELEM, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 13068,
                    "nome": "MATINHOS",
                    "municipio": "MATINHOS"
                },
                {
                    "id": 13069,
                    "nome": "PRIME ITU, SP",
                    "municipio": "ITU"
                },
                {
                    "id": 13070,
                    "nome": "SAPE",
                    "municipio": "SAPE"
                },
                {
                    "id": 13071,
                    "nome": "PINDAMONHANGABA, CENTRO, SP",
                    "municipio": "PINDAMONHANGABA"
                },
                {
                    "id": 13072,
                    "nome": "FLORES DA CUNHA, RS",
                    "municipio": "FLORES DA CUNHA"
                },
                {
                    "id": 13073,
                    "nome": "CACHOEIRINHA,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 13074,
                    "nome": "ESTRELA, RS",
                    "municipio": "ESTRELA"
                },
                {
                    "id": 13075,
                    "nome": "PINHEIRO MACHADO,URB.PORTO VELHO, RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 13076,
                    "nome": "BELO JARDIM, PE",
                    "municipio": "BELO JARDIM"
                },
                {
                    "id": 13077,
                    "nome": "21690",
                    "municipio": ""
                },
                {
                    "id": 13078,
                    "nome": "SAO CARLOS, CENTRO, SP",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 13079,
                    "nome": "CENTENARIO,URB.CRICIUMA,SC",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 13080,
                    "nome": "PRIME SANTA MARIA, RS",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 13081,
                    "nome": "BAIRRO NITEROI,URB.CANOAS, RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 13082,
                    "nome": "2173",
                    "municipio": ""
                },
                {
                    "id": 13083,
                    "nome": "2175",
                    "municipio": ""
                },
                {
                    "id": 13084,
                    "nome": "CANINDE DE SAO FRANCISCO, SE",
                    "municipio": "CANINDE DE SAO FRANCISCO"
                },
                {
                    "id": 13085,
                    "nome": "NOVA MARABA,URB.MARABA, PA",
                    "municipio": "MARABA"
                },
                {
                    "id": 13086,
                    "nome": "ITAMBE DE PERNAMBUCO, PE",
                    "municipio": "ITAMBE"
                },
                {
                    "id": 13087,
                    "nome": "2180",
                    "municipio": ""
                },
                {
                    "id": 13088,
                    "nome": "2181",
                    "municipio": ""
                },
                {
                    "id": 13089,
                    "nome": "JARDIM PLANALTO, URB. PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 13090,
                    "nome": "AVENIDA TABOAO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 13091,
                    "nome": "VILA PIRES",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 13092,
                    "nome": "TRINDADE,URB.FLORIANOPOLIS, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 13093,
                    "nome": "ITAIPU,URB.NITEROI, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 13094,
                    "nome": "VILA JONES,URB.AMERICANA, SP",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 13095,
                    "nome": "MORRO AGUDO",
                    "municipio": "MORRO AGUDO"
                },
                {
                    "id": 13096,
                    "nome": "2190",
                    "municipio": ""
                },
                {
                    "id": 13097,
                    "nome": "PRIME SAO LUIS, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 13098,
                    "nome": "PARTENON,URB.PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 13099,
                    "nome": "AGUANAMBI,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 13100,
                    "nome": "BATISTA CAMPOS,URB.BEL�M,PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 13101,
                    "nome": "TUCUMA",
                    "municipio": "TUCUMA"
                },
                {
                    "id": 13102,
                    "nome": "AMARAIS-CEASA,URB.CAMPINAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 13103,
                    "nome": "JARDIM GUEDALA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13104,
                    "nome": "PENAPOLIS, SP",
                    "municipio": "PENAPOLIS"
                },
                {
                    "id": 13105,
                    "nome": "220",
                    "municipio": ""
                },
                {
                    "id": 13106,
                    "nome": "PRA�A DA REP�BLICA - URB. SANTOS, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 13107,
                    "nome": "CALOGERAS,URB.CAMPO GRANDE, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 13108,
                    "nome": "ARCOS, MG",
                    "municipio": "ARCOS"
                },
                {
                    "id": 13109,
                    "nome": "Ag�ncia 2206",
                    "municipio": ""
                },
                {
                    "id": 13110,
                    "nome": "RIO PEQUENO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13111,
                    "nome": "Paudalho - Centro",
                    "municipio": ""
                },
                {
                    "id": 13112,
                    "nome": "AVENIDA CARLOS BOTELHO,URB.PIRACICABA, SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 13113,
                    "nome": "TEODORO SAMPAIO, SP",
                    "municipio": "TEODORO SAMPAIO"
                },
                {
                    "id": 13114,
                    "nome": "S�O JOS� DO BELMONTE",
                    "municipio": ""
                },
                {
                    "id": 13115,
                    "nome": "ELDORADO,URB.CONTAGEM, MG",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 13116,
                    "nome": "MEIRELES,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 13117,
                    "nome": "BERTIOGA, SP",
                    "municipio": "BERTIOGA"
                },
                {
                    "id": 13118,
                    "nome": "PERUS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13119,
                    "nome": "BR-010,URB.IMPERATRIZ, MA",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 13120,
                    "nome": "W3 NORTE,URB.BRASILIA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 13121,
                    "nome": "RINOPOLIS, SP",
                    "municipio": "RINOPOLIS"
                },
                {
                    "id": 13122,
                    "nome": "AVENIDA MUTINGA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13123,
                    "nome": "JARDIM MARACANA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13124,
                    "nome": "2222",
                    "municipio": ""
                },
                {
                    "id": 13125,
                    "nome": "BAIRRO SARANDI,URB.PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 13126,
                    "nome": "BAIRRO SERRARIA",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 13127,
                    "nome": "SERTANIA, PE",
                    "municipio": "SERTANIA"
                },
                {
                    "id": 13128,
                    "nome": "2227",
                    "municipio": ""
                },
                {
                    "id": 13129,
                    "nome": "PARQUE SAO VICENTE",
                    "municipio": "MAUA"
                },
                {
                    "id": 13130,
                    "nome": "SAO JOAO DA BOA VISTA, CENTRO, SP",
                    "municipio": "SAO JOAO DA BOA VISTA"
                },
                {
                    "id": 13131,
                    "nome": "PRIME COLONIAL,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13132,
                    "nome": "JOAO COLIN,URB.JOINVILLE",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 13133,
                    "nome": "2236",
                    "municipio": ""
                },
                {
                    "id": 13134,
                    "nome": "2237",
                    "municipio": ""
                },
                {
                    "id": 13135,
                    "nome": "ALVORADA,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 13136,
                    "nome": "MOGI GUACU, CENTRO, SP",
                    "municipio": "MOGI-GUACU"
                },
                {
                    "id": 13137,
                    "nome": "AVENIDA T-9,URB.GOIANIA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 13138,
                    "nome": "PRIME AVENIDA,URB.BRASILIA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 13139,
                    "nome": "TABIRA, PE",
                    "municipio": "TABIRA"
                },
                {
                    "id": 13140,
                    "nome": "BAIRRO DA VELHA,URB.BLUMENAU, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 13141,
                    "nome": "ROCHDALE",
                    "municipio": "OSASCO"
                },
                {
                    "id": 13142,
                    "nome": "SANTA FELICIDADE,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 13143,
                    "nome": "SAO JOSE DOS CAMPOS, CENTRO, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 13144,
                    "nome": "AVENIDA TOMAS ESPINDOLA - URB. MACEIO, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 13145,
                    "nome": "2251",
                    "municipio": ""
                },
                {
                    "id": 13146,
                    "nome": "JANGADA, MT",
                    "municipio": "JANGADA"
                },
                {
                    "id": 13147,
                    "nome": "ALTO TAQUARI, MT",
                    "municipio": "ALTO TAQUARI"
                },
                {
                    "id": 13148,
                    "nome": "CAMPOS VERDES, GO",
                    "municipio": "CAMPOS VERDES"
                },
                {
                    "id": 13149,
                    "nome": "CAPELA DO ALTO",
                    "municipio": "CAPELA DO ALTO"
                },
                {
                    "id": 13150,
                    "nome": "DOLCINOPOLIS, SP",
                    "municipio": "DOLCINOPOLIS"
                },
                {
                    "id": 13151,
                    "nome": "PRACA SAENS PENA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13152,
                    "nome": "BRADESCO DIGITAL PJ CIDADE DE DEUS - URB. OSASCO, ",
                    "municipio": "OSASCO"
                },
                {
                    "id": 13153,
                    "nome": "SANTA RITA D'OESTE, SP",
                    "municipio": "SANTA RITA D'OESTE"
                },
                {
                    "id": 13154,
                    "nome": "TAPIRAI",
                    "municipio": "TAPIRAI"
                },
                {
                    "id": 13155,
                    "nome": "PRIME CAPELA DO SOCORRO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13156,
                    "nome": "RUA RIO DE JANEIRO,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13157,
                    "nome": "BOTAFOGO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13158,
                    "nome": "PEDRO ADAMS,URB.NOVO HAMBURGO, RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 13159,
                    "nome": "JARDIM BELA VISTA,URB.OSASCO, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 13160,
                    "nome": "ALAMEDA DOS MARACATINS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13161,
                    "nome": "AVENIDA GETULIO VARGAS,URB.FEIRA DE SANTANA, BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 13162,
                    "nome": "AVENIDA 85,URB.GOIANIA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 13163,
                    "nome": "CARLOS GOMES,URB.PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 13164,
                    "nome": "PRIME CEASA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13165,
                    "nome": "RIBEIRAO DO SUL",
                    "municipio": "RIBEIRAO DO SUL"
                },
                {
                    "id": 13166,
                    "nome": "PIACATU, SP",
                    "municipio": "PIACATU"
                },
                {
                    "id": 13167,
                    "nome": "RUA BORGES LAGOA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13168,
                    "nome": "2284",
                    "municipio": ""
                },
                {
                    "id": 13169,
                    "nome": "SACRAMENTA, URB. BELEM, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 13170,
                    "nome": "AVENIDA ALBERTO ANDALO,URB.SAO JOSE DO RIO PRETO, ",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 13171,
                    "nome": "OURO VERDE, SP",
                    "municipio": "OURO VERDE"
                },
                {
                    "id": 13172,
                    "nome": "NOVA LONDRINA",
                    "municipio": "NOVA LONDRINA"
                },
                {
                    "id": 13173,
                    "nome": "CANARANA",
                    "municipio": "CANARANA"
                },
                {
                    "id": 13174,
                    "nome": "CALHAU,URB.SAO LUIS, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 13175,
                    "nome": "TORITAMA, PE",
                    "municipio": "TORITAMA"
                },
                {
                    "id": 13176,
                    "nome": "2296",
                    "municipio": ""
                },
                {
                    "id": 13177,
                    "nome": "BARAO GERALDO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 13178,
                    "nome": "PRIME POCOS DE CALDAS,MG",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 13179,
                    "nome": "SAO JOSE DO RIO PRETO, CENTRO, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 13180,
                    "nome": "CASTILHO, SP",
                    "municipio": "CASTILHO"
                },
                {
                    "id": 13181,
                    "nome": "PRIME ARRECIFES,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13182,
                    "nome": "PRAIA DE TAMBAU,URB.JOAO PESSOA, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 13183,
                    "nome": "CIDADE A.E. CARVALHO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13184,
                    "nome": "JARDIM TRANQUILIDADE",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 13185,
                    "nome": "AV.DR.TIMOTEO PENTEADO",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 13186,
                    "nome": "BRAS CUBAS",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 13187,
                    "nome": "BAIRRO GLORIA,URB.VILA VELHA, ES",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 13188,
                    "nome": "2314",
                    "municipio": ""
                },
                {
                    "id": 13189,
                    "nome": "PRIME VILA OLIMPIA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13190,
                    "nome": "PRIME VINHEDO, SP",
                    "municipio": "VINHEDO"
                },
                {
                    "id": 13191,
                    "nome": "232",
                    "municipio": ""
                },
                {
                    "id": 13192,
                    "nome": "MORRINHOS, GO",
                    "municipio": "MORRINHOS"
                },
                {
                    "id": 13193,
                    "nome": "PRIME AGAMENON MAGALHAES,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13194,
                    "nome": "PRIME JARDIM ANALIA FRANCO, URB. SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13195,
                    "nome": "PONTAL",
                    "municipio": "PONTAL"
                },
                {
                    "id": 13196,
                    "nome": "SALTO DE PIRAPORA",
                    "municipio": "SALTO DE PIRAPORA"
                },
                {
                    "id": 13197,
                    "nome": "PRIME ALAMEDA ARAGUAIA, URB. BARUERI, SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 13198,
                    "nome": "PRIME JUVEVE,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 13199,
                    "nome": "PORTO MURTINHO, MS",
                    "municipio": "PORTO MURTINHO"
                },
                {
                    "id": 13200,
                    "nome": "CACAPAVA DO SUL",
                    "municipio": "CACAPAVA DO SUL"
                },
                {
                    "id": 13201,
                    "nome": "2335",
                    "municipio": ""
                },
                {
                    "id": 13202,
                    "nome": "EMBAUBA",
                    "municipio": "EMBAUBA"
                },
                {
                    "id": 13203,
                    "nome": "PRIME PRACA DO BATEL,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 13204,
                    "nome": "SINOP, CENTRO, MT",
                    "municipio": "SINOP"
                },
                {
                    "id": 13205,
                    "nome": "BAIRRO MANGABEIRA, URB. JOAO PESSOA, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 13206,
                    "nome": "TARUMA",
                    "municipio": "TARUMA"
                },
                {
                    "id": 13207,
                    "nome": "PRIME POSTO SEIS,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13208,
                    "nome": "BARBOSA",
                    "municipio": "BARBOSA"
                },
                {
                    "id": 13209,
                    "nome": "2349",
                    "municipio": ""
                },
                {
                    "id": 13210,
                    "nome": "PRACA MUNICIPAL,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13211,
                    "nome": "JARDIM LONDRES",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 13212,
                    "nome": "IEPE",
                    "municipio": "IEPE"
                },
                {
                    "id": 13213,
                    "nome": "SAO JOAO DOS PATOS, MA",
                    "municipio": "SAO JOAO DOS PATOS"
                },
                {
                    "id": 13214,
                    "nome": "CENTRO EMPRESARIAL MARIO HENRIQUE SIMONSEN,URB.RIO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13215,
                    "nome": "FEIRA DE SANTANA, CENTRO, BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 13216,
                    "nome": "2362",
                    "municipio": ""
                },
                {
                    "id": 13217,
                    "nome": "ARM�NIA - URB. S�O PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13218,
                    "nome": "AG�NCIA CORPORATE BEL�M, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 13219,
                    "nome": "NOVA IMPERATRIZ,URB.IMPERATRIZ, MA",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 13220,
                    "nome": "ALEM LINHA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 13221,
                    "nome": "AG�NCIA CORPORATE FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 13222,
                    "nome": "AG�NCIA CORPORATE MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 13223,
                    "nome": "ILHEUS,CENTRO, BA",
                    "municipio": "ILHEUS"
                },
                {
                    "id": 13224,
                    "nome": "PLATAFORMA OPERACIONAL PJ CORPORATE E EMPRESAS-PAU",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13225,
                    "nome": "PLATAFORMA OPERACIONAL PJ CORPORATE E EMPRESAS - R",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13226,
                    "nome": "PLATAFORMA OPERACIONAL PJ CORPORATE E EMPRESAS � N",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13227,
                    "nome": "PRIME EDIFICIO DACON, URB. SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13228,
                    "nome": "2376",
                    "municipio": ""
                },
                {
                    "id": 13229,
                    "nome": "PRIME ITAIM BIBI, URB.SAO PAULO,SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13230,
                    "nome": "LARGO DO BICAO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13231,
                    "nome": "2379",
                    "municipio": ""
                },
                {
                    "id": 13232,
                    "nome": "IPIAU, BA",
                    "municipio": "IPIAU"
                },
                {
                    "id": 13233,
                    "nome": "PRIME MOEMA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13234,
                    "nome": "PRIME AV.ANGELICA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13235,
                    "nome": "LAGOA VERMELHA",
                    "municipio": "LAGOA VERMELHA"
                },
                {
                    "id": 13236,
                    "nome": "GRANJA VIANA",
                    "municipio": "COTIA"
                },
                {
                    "id": 13237,
                    "nome": "PRIME AVENIDA PAULISTA, URB. SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13238,
                    "nome": "Ag�ncia 2386",
                    "municipio": ""
                },
                {
                    "id": 13239,
                    "nome": "LOUVEIRA",
                    "municipio": "LOUVEIRA"
                },
                {
                    "id": 13240,
                    "nome": "PRIME CAMPINAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 13241,
                    "nome": "ITABUNA, CENTRO, BA",
                    "municipio": "ITABUNA"
                },
                {
                    "id": 13242,
                    "nome": "PRIME SALVADOR,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13243,
                    "nome": "VILA DOS REMEDIOS",
                    "municipio": "OSASCO"
                },
                {
                    "id": 13244,
                    "nome": "VILA SABRINA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13245,
                    "nome": "Ag�ncia 2395",
                    "municipio": ""
                },
                {
                    "id": 13246,
                    "nome": "PRACA 14 DE JANEIRO,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 13247,
                    "nome": "PALMAS,CENTRO, TO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 13248,
                    "nome": "NAZARE,URB.BELEM, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 13249,
                    "nome": "ITAPISSUMA",
                    "municipio": "ITAPISSUMA"
                },
                {
                    "id": 13250,
                    "nome": "VALPARAISO, SP",
                    "municipio": "VALPARAISO"
                },
                {
                    "id": 13251,
                    "nome": "ANAPOLIS, CENTRO, GO",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 13252,
                    "nome": "2401",
                    "municipio": ""
                },
                {
                    "id": 13253,
                    "nome": "PRATA",
                    "municipio": "PRATA"
                },
                {
                    "id": 13254,
                    "nome": "PORTAL DO MURUMBI,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13255,
                    "nome": "PIRAJUCARA,URB.TABOAO DA SERRA, SP",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 13256,
                    "nome": "AMERICO DE CAMPOS",
                    "municipio": "AMERICO DE CAMPOS"
                },
                {
                    "id": 13257,
                    "nome": "NOVA EUROPA",
                    "municipio": "NOVA EUROPA"
                },
                {
                    "id": 13258,
                    "nome": "POTIRENDABA",
                    "municipio": "POTIRENDABA"
                },
                {
                    "id": 13259,
                    "nome": "ANGATUBA, SP",
                    "municipio": "ANGATUBA"
                },
                {
                    "id": 13260,
                    "nome": "W-3 SUL 511,URB.BRASILIA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 13261,
                    "nome": "MIRACATU",
                    "municipio": "MIRACATU"
                },
                {
                    "id": 13262,
                    "nome": "PARIQUERA-ACU",
                    "municipio": "PARIQUERA-ACU"
                },
                {
                    "id": 13263,
                    "nome": "SAO SIMAO",
                    "municipio": "SAO SIMAO"
                },
                {
                    "id": 13264,
                    "nome": "CAJURU",
                    "municipio": "CAJURU"
                },
                {
                    "id": 13265,
                    "nome": "JARDIM HELENA MARIA,URB.OSASCO, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 13266,
                    "nome": "SANTA ROSA DE VITERBO",
                    "municipio": "SANTA ROSA DE VITERBO"
                },
                {
                    "id": 13267,
                    "nome": "CERES, GO",
                    "municipio": "CERES"
                },
                {
                    "id": 13268,
                    "nome": "COROMANDEL",
                    "municipio": "COROMANDEL"
                },
                {
                    "id": 13269,
                    "nome": "JARDIM ANALIA FRANCO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13270,
                    "nome": "2424",
                    "municipio": ""
                },
                {
                    "id": 13271,
                    "nome": "ITAPUA,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13272,
                    "nome": "MIRANTE DO PARAPANEMA",
                    "municipio": "MIRANTE DO PARANAPANEMA"
                },
                {
                    "id": 13273,
                    "nome": "GOIANESIA,GO",
                    "municipio": "GOIANESIA"
                },
                {
                    "id": 13274,
                    "nome": "PATROCINIO PAULISTA",
                    "municipio": "PATROCINIO PAULISTA"
                },
                {
                    "id": 13275,
                    "nome": "SANTA GERTRUDES",
                    "municipio": "SANTA GERTRUDES"
                },
                {
                    "id": 13276,
                    "nome": "SAO SEBASTIAO DA GRAMA, SP",
                    "municipio": "SAO SEBASTIAO DA GRAMA"
                },
                {
                    "id": 13277,
                    "nome": "PRIME CENTRAL,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13278,
                    "nome": "TAPIRATIBA",
                    "municipio": "TAPIRATIBA"
                },
                {
                    "id": 13279,
                    "nome": "CAMPINAS,URB.GOIANIA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 13280,
                    "nome": "CONCEICAO DAS ALAGOAS",
                    "municipio": "CONCEICAO DAS ALAGOAS"
                },
                {
                    "id": 13281,
                    "nome": "IBIA",
                    "municipio": "IBIA"
                },
                {
                    "id": 13282,
                    "nome": "SAO JOAO NEPOMUCENO",
                    "municipio": "SAO JOAO NEPOMUCENO"
                },
                {
                    "id": 13283,
                    "nome": "MUZAMBINHO",
                    "municipio": "MUZAMBINHO"
                },
                {
                    "id": 13284,
                    "nome": "CIDADE DE GOIAS, GO",
                    "municipio": "GOIAS"
                },
                {
                    "id": 13285,
                    "nome": "NOVA APARECIDA",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 13286,
                    "nome": "MATOZINHOS",
                    "municipio": "MATOZINHOS"
                },
                {
                    "id": 13287,
                    "nome": "RIO POMBA",
                    "municipio": "RIO POMBA"
                },
                {
                    "id": 13288,
                    "nome": "NOVA SERRANA, MG",
                    "municipio": "NOVA SERRANA"
                },
                {
                    "id": 13289,
                    "nome": "SANTO ANTONIO DO MONTE",
                    "municipio": "SANTO ANTONIO DO MONTE"
                },
                {
                    "id": 13290,
                    "nome": "CHAPADAO DO SUL",
                    "municipio": "CHAPADAO DO SUL"
                },
                {
                    "id": 13291,
                    "nome": "VILA SAO JOSE,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13292,
                    "nome": "INHUMAS, GO",
                    "municipio": "INHUMAS"
                },
                {
                    "id": 13293,
                    "nome": "PC.31 DE MARCO U.MAR(PR)",
                    "municipio": ""
                },
                {
                    "id": 13294,
                    "nome": "CONCHAS",
                    "municipio": "CONCHAS"
                },
                {
                    "id": 13295,
                    "nome": "GUANHAES, MG",
                    "municipio": "GUANHAES"
                },
                {
                    "id": 13296,
                    "nome": "PEDRO CANARIO, ES",
                    "municipio": "PEDRO CANARIO"
                },
                {
                    "id": 13297,
                    "nome": "SAO BENTO DE SAPUCAI",
                    "municipio": "SAO BENTO DO SAPUCAI"
                },
                {
                    "id": 13298,
                    "nome": "AVENIDA CRISTIANO MACHADO,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13299,
                    "nome": "JARDIM SANTO ANTONIO,URB.OSASCO, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 13300,
                    "nome": "ALEIXO,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 13301,
                    "nome": "CAVALHADA,URB.PORTO ALEGRE,RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 13302,
                    "nome": "PERDOES",
                    "municipio": "PERDOES"
                },
                {
                    "id": 13303,
                    "nome": "ITABERAI, GO",
                    "municipio": "ITABERAI"
                },
                {
                    "id": 13304,
                    "nome": "SUD MUNUCCI",
                    "municipio": "SUD MENNUCCI"
                },
                {
                    "id": 13305,
                    "nome": "PORTO SECO PIRAJA,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13306,
                    "nome": "PRESIDENTE ALTINO,URB.OSASCO, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 13307,
                    "nome": "MORUNGABA",
                    "municipio": "MORUNGABA"
                },
                {
                    "id": 13308,
                    "nome": "PONTALINA  GO",
                    "municipio": "PONTALINA"
                },
                {
                    "id": 13309,
                    "nome": "TAPEJARA",
                    "municipio": "TAPEJARA"
                },
                {
                    "id": 13310,
                    "nome": "ITAPURANGA, GO",
                    "municipio": "ITAPURANGA"
                },
                {
                    "id": 13311,
                    "nome": "PAULO DE FARIA, SP",
                    "municipio": "PAULO DE FARIA"
                },
                {
                    "id": 13312,
                    "nome": "LUIS EDUARDO MAGALHAES - CENTRO, BA",
                    "municipio": "LUIS EDUARDO MAGALHAES"
                },
                {
                    "id": 13313,
                    "nome": "BARAO DE COCAIS",
                    "municipio": "BARAO DE COCAIS"
                },
                {
                    "id": 13314,
                    "nome": "ALIPIO DE MELO,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13315,
                    "nome": "CHARQUEADA",
                    "municipio": "CHARQUEADA"
                },
                {
                    "id": 13316,
                    "nome": "CACONDE",
                    "municipio": "CACONDE"
                },
                {
                    "id": 13317,
                    "nome": "PIRACANJUBA, GO",
                    "municipio": "PIRACANJUBA"
                },
                {
                    "id": 13318,
                    "nome": "JARAGUA, GO",
                    "municipio": "JARAGUA"
                },
                {
                    "id": 13319,
                    "nome": "REALENGO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13320,
                    "nome": "MANTENA",
                    "municipio": "MANTENA"
                },
                {
                    "id": 13321,
                    "nome": "SAO PEDRO DO TURVO",
                    "municipio": "SAO PEDRO DO TURVO"
                },
                {
                    "id": 13322,
                    "nome": "AREADO",
                    "municipio": "AREADO"
                },
                {
                    "id": 13323,
                    "nome": "2494",
                    "municipio": ""
                },
                {
                    "id": 13324,
                    "nome": "PRIME BERRINI,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13325,
                    "nome": "AGUAS DE SANTA BARBARA, SP",
                    "municipio": "AGUAS DE SANTA BARBARA"
                },
                {
                    "id": 13326,
                    "nome": "2497",
                    "municipio": ""
                },
                {
                    "id": 13327,
                    "nome": "PALMEIRA D'OESTE",
                    "municipio": "PALMEIRA D'OESTE"
                },
                {
                    "id": 13328,
                    "nome": "2499",
                    "municipio": ""
                },
                {
                    "id": 13329,
                    "nome": "VOTUPORANGA, SP",
                    "municipio": "VOTUPORANGA"
                },
                {
                    "id": 13330,
                    "nome": "JATAI, GO",
                    "municipio": "JATAI"
                },
                {
                    "id": 13331,
                    "nome": "PRIME VILA MARIANA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13332,
                    "nome": "CEASA RIO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13333,
                    "nome": "RUA DA PASSAGEM,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13334,
                    "nome": "PORANGATU, GO",
                    "municipio": "PORANGATU"
                },
                {
                    "id": 13335,
                    "nome": "CAMPO DE SAO BENTO,URB.NITEROI, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 13336,
                    "nome": "VILA INDUSTRIAL,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13337,
                    "nome": "PIABETA-DIST.DO MUNICIPIO",
                    "municipio": "MAGE"
                },
                {
                    "id": 13338,
                    "nome": "AV.SANTOS DUMONT",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 13339,
                    "nome": "PRIME ALDEOTA - URB. FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 13340,
                    "nome": "PRIME ALPHAVILLE-BARUERI, SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 13341,
                    "nome": "NOVA PETROPOLIS",
                    "municipio": "NOVA PETROPOLIS"
                },
                {
                    "id": 13342,
                    "nome": "CASA FORTE,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13343,
                    "nome": "Ag�ncia 25180",
                    "municipio": ""
                },
                {
                    "id": 13344,
                    "nome": "PRIME ALTO DE PINHEIROS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13345,
                    "nome": "RONDONOPOLIS, CENTRO, MT",
                    "municipio": "RONDONOPOLIS"
                },
                {
                    "id": 13346,
                    "nome": "VENDA NOVA,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13347,
                    "nome": "CORINTO",
                    "municipio": "CORINTO"
                },
                {
                    "id": 13348,
                    "nome": "NOVA SUISSA,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13349,
                    "nome": "RIO CASCA",
                    "municipio": "RIO CASCA"
                },
                {
                    "id": 13350,
                    "nome": "IGARAPE, MG",
                    "municipio": "IGARAPE"
                },
                {
                    "id": 13351,
                    "nome": "PARAGUACU",
                    "municipio": "PARAGUACU"
                },
                {
                    "id": 13352,
                    "nome": "PRIME SANTANA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13353,
                    "nome": "VISCONDE DO RIO BANCO",
                    "municipio": "VISCONDE DO RIO BRANCO"
                },
                {
                    "id": 13354,
                    "nome": "2529",
                    "municipio": ""
                },
                {
                    "id": 13355,
                    "nome": "RUBIATABA, GO",
                    "municipio": "RUBIATABA"
                },
                {
                    "id": 13356,
                    "nome": "BEZERROS",
                    "municipio": "BEZERROS"
                },
                {
                    "id": 13357,
                    "nome": "BOA ESPERANCA DO SUL",
                    "municipio": "BOA ESPERANCA DO SUL"
                },
                {
                    "id": 13358,
                    "nome": "JARINU - SP",
                    "municipio": "JARINU"
                },
                {
                    "id": 13359,
                    "nome": "DORES DO INDAIA",
                    "municipio": "DORES DO INDAIA"
                },
                {
                    "id": 13360,
                    "nome": "BOM JESUS DOS PERDOES",
                    "municipio": "BOM JESUS DOS PERDOES"
                },
                {
                    "id": 13361,
                    "nome": "CENTRALINA(MG)",
                    "municipio": ""
                },
                {
                    "id": 13362,
                    "nome": "254",
                    "municipio": ""
                },
                {
                    "id": 13363,
                    "nome": "ESTRELA D'OESTE",
                    "municipio": "ESTRELA D'OESTE"
                },
                {
                    "id": 13364,
                    "nome": "VALPARAISO DE GOIAS, GO",
                    "municipio": "VALPARAISO DE GOIAS"
                },
                {
                    "id": 13365,
                    "nome": "AFOGADOS DA INGAZEIRA, PE",
                    "municipio": "AFOGADOS DA INGAZEIRA"
                },
                {
                    "id": 13366,
                    "nome": "Ag�ncia 25420",
                    "municipio": ""
                },
                {
                    "id": 13367,
                    "nome": "ESMERALDAS",
                    "municipio": "ESMERALDAS"
                },
                {
                    "id": 13368,
                    "nome": "ELDORADO",
                    "municipio": "ELDORADO"
                },
                {
                    "id": 13369,
                    "nome": "2545",
                    "municipio": ""
                },
                {
                    "id": 13370,
                    "nome": "PICARRAS  SC",
                    "municipio": "BALNEARIO PICARRAS"
                },
                {
                    "id": 13371,
                    "nome": "TURVO SC",
                    "municipio": "TURVO"
                },
                {
                    "id": 13372,
                    "nome": "HORTO FLORESTAL,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13373,
                    "nome": "AGROLANDIA",
                    "municipio": "AGROLANDIA"
                },
                {
                    "id": 13374,
                    "nome": "PARAUNA, GO",
                    "municipio": "PARAUNA"
                },
                {
                    "id": 13375,
                    "nome": "ITAU DE MINAS (MG)",
                    "municipio": "ITAU DE MINAS"
                },
                {
                    "id": 13376,
                    "nome": "BOCAIUVA",
                    "municipio": "BOCAIUVA"
                },
                {
                    "id": 13377,
                    "nome": "BURITIS",
                    "municipio": "BURITIS"
                },
                {
                    "id": 13378,
                    "nome": "MOZARLANDIA, GO",
                    "municipio": "MOZARLANDIA"
                },
                {
                    "id": 13379,
                    "nome": "TAIOBEIRAS (MG)",
                    "municipio": "TAIOBEIRAS"
                },
                {
                    "id": 13380,
                    "nome": "CAMPO NOVO DO PARECIS",
                    "municipio": "CAMPO NOVO DO PARECIS"
                },
                {
                    "id": 13381,
                    "nome": "TRES LAGOAS, MS",
                    "municipio": "TRES LAGOAS"
                },
                {
                    "id": 13382,
                    "nome": "PRIME RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13383,
                    "nome": "SAO PEDRO",
                    "municipio": "SAO PEDRO"
                },
                {
                    "id": 13384,
                    "nome": "FORMOSO DO ARAGUAIA",
                    "municipio": "FORMOSO DO ARAGUAIA"
                },
                {
                    "id": 13385,
                    "nome": "SAO GABRIEL DA PALHA, ES",
                    "municipio": "SAO GABRIEL DA PALHA"
                },
                {
                    "id": 13386,
                    "nome": "ITIRAPINA",
                    "municipio": "ITIRAPINA"
                },
                {
                    "id": 13387,
                    "nome": "VILA DIRCE",
                    "municipio": "CARAPICUIBA"
                },
                {
                    "id": 13388,
                    "nome": "DOM ELISEU",
                    "municipio": "DOM ELISEU"
                },
                {
                    "id": 13389,
                    "nome": "URUACU, GO",
                    "municipio": "URUACU"
                },
                {
                    "id": 13390,
                    "nome": "SALES OLIVEIRA",
                    "municipio": "SALES OLIVEIRA"
                },
                {
                    "id": 13391,
                    "nome": "EDSON QUEIROZ,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 13392,
                    "nome": "PRIME PRACA SILVIO ROMERO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13393,
                    "nome": "BAIRRO DEMARCHI",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 13394,
                    "nome": "TRANCOSO - DISTRITO DO MUNICIPIO DE PORTO SEGURO, ",
                    "municipio": "PORTO SEGURO"
                },
                {
                    "id": 13395,
                    "nome": "REAL GRANDEZA-FURNAS,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13396,
                    "nome": "RODOVIA ANHANGUERA-BOSCH",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 13397,
                    "nome": "AVENIDA INTERLAGOS-AVON,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13398,
                    "nome": "2589",
                    "municipio": ""
                },
                {
                    "id": 13399,
                    "nome": "PIRENOPOLIS, GO",
                    "municipio": "PIRENOPOLIS"
                },
                {
                    "id": 13400,
                    "nome": "JARDIM DAS PERDIZES - URB. S�O PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13401,
                    "nome": "BU�QUE - PE",
                    "municipio": "BUIQUE"
                },
                {
                    "id": 13402,
                    "nome": "25925",
                    "municipio": ""
                },
                {
                    "id": 13403,
                    "nome": "PRIME CARLOS DE CAMPOS,URB.SAO PAULO,SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13404,
                    "nome": "AVENIDA ALFRIED KRUPP-KRUPP,URB.CAMPO LIMPO PAULIS",
                    "municipio": "CAMPO LIMPO PAULISTA"
                },
                {
                    "id": 13405,
                    "nome": "PRIME ARAGUAINA, TO",
                    "municipio": "ARAGUAINA"
                },
                {
                    "id": 13406,
                    "nome": "CIC BOSCH,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 13407,
                    "nome": "RIO DE JANEIRO, CENTRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13408,
                    "nome": "MONTE ALTO, SP",
                    "municipio": "MONTE ALTO"
                },
                {
                    "id": 13409,
                    "nome": "2602",
                    "municipio": ""
                },
                {
                    "id": 13410,
                    "nome": "PARQUE REDENCAO,URB.PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 13411,
                    "nome": "PLINIO CASADO-U.D.CX(RJ)",
                    "municipio": ""
                },
                {
                    "id": 13412,
                    "nome": "AV.DAS AMERICAS,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13413,
                    "nome": "CARLITO PAMPLONA,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 13414,
                    "nome": "ITAPETININGA, CENTRO, SP",
                    "municipio": "ITAPETININGA"
                },
                {
                    "id": 13415,
                    "nome": "PARQUE DOS PINHEIROS,URB.TABOAO DA SERRA, SP",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 13416,
                    "nome": "JARDIM DA PENHA - URB. VIT�RIA, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 13417,
                    "nome": "2613",
                    "municipio": ""
                },
                {
                    "id": 13418,
                    "nome": "2614",
                    "municipio": ""
                },
                {
                    "id": 13419,
                    "nome": "2615",
                    "municipio": ""
                },
                {
                    "id": 13420,
                    "nome": "RUA DA PAZ,URB.SAO LUIS, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 13421,
                    "nome": "MIRACEMA DO TOCANTINS",
                    "municipio": "MIRACEMA DO TOCANTINS"
                },
                {
                    "id": 13422,
                    "nome": "2620",
                    "municipio": ""
                },
                {
                    "id": 13423,
                    "nome": "AVENIDA ANGELICA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13424,
                    "nome": "AVENIDA ENGENHEIRO CAETANO ALVARES,URB.SAO PAULO,S",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13425,
                    "nome": "2625",
                    "municipio": ""
                },
                {
                    "id": 13426,
                    "nome": "SIQUEIRA CAMPOS,URB.ARACAJU, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 13427,
                    "nome": "FRANCA, CENTRO, SP",
                    "municipio": "FRANCA"
                },
                {
                    "id": 13428,
                    "nome": "VARGEM GRANDE, MA",
                    "municipio": "VARGEM GRANDE"
                },
                {
                    "id": 13429,
                    "nome": "AG�NCIA CORPORATE NATAL, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 13430,
                    "nome": "VITORINO FREIRE, MA",
                    "municipio": "VITORINO FREIRE"
                },
                {
                    "id": 13431,
                    "nome": "AVENIDA CORONEL ESCOLASTICO,URB.CUIABA, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 13432,
                    "nome": "PRACA DA ASSEMBLEIA,URB.BELO HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13433,
                    "nome": "UBERABA, CENTRO, MG",
                    "municipio": "UBERABA"
                },
                {
                    "id": 13434,
                    "nome": "BARREIRO,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13435,
                    "nome": "PRIME RIO VERDE, GO",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 13436,
                    "nome": "JARDIM DO TREVO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 13437,
                    "nome": "AG�NCIA CORPORATE CUIAB�, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 13438,
                    "nome": "PRIME LONDRINA,PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 13439,
                    "nome": "UBERLANDIA, CENTRO, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 13440,
                    "nome": "PRIME BARRA DA TIJUCA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13441,
                    "nome": "PRIME PORTO VELHO, RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 13442,
                    "nome": "AVENIDA MARECHAL FLORIANO PEIXOTO - URB. CAMPINA G",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 13443,
                    "nome": "AG�NCIA CORPORATE BLUMENAU, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 13444,
                    "nome": "AG�NCIA CORPORATE FLORIAN�POLIS, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 13445,
                    "nome": "AVENIDA ABRAMO RANDON,URB.CAXIAS DO SUL, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 13446,
                    "nome": "SAO MIGUEL DO ARAGUAIA, GO",
                    "municipio": "SAO MIGUEL DO ARAGUAIA"
                },
                {
                    "id": 13447,
                    "nome": "PRIME VILA PRUDENTE,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13448,
                    "nome": "PRIME SANTO AMARO,URB.SAO PAULO,SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13449,
                    "nome": "PRIME BARAO DE LIMEIRA,URB.SAO PAULO,SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13450,
                    "nome": "PRIME AV.CONSELHEIRO CARRAO,URB.SAO PAULO,SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13451,
                    "nome": "PRIME VILA GUILHERME,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13452,
                    "nome": "CARMO DO RIO VERDE, GO",
                    "municipio": "CARMO DO RIO VERDE"
                },
                {
                    "id": 13453,
                    "nome": "NAPOLEAO DE BARROS-HOSP.S.PAULO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13454,
                    "nome": "CAIS DO APOLO-TRIB.DO TRABALHO,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13455,
                    "nome": "Ag�ncia 26797",
                    "municipio": ""
                },
                {
                    "id": 13456,
                    "nome": "PORTO ALEGRE, CENTRO, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 13457,
                    "nome": "2682",
                    "municipio": ""
                },
                {
                    "id": 13458,
                    "nome": "CAXIAS DO SUL, CENTRO, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 13459,
                    "nome": "GRANDE CIRCULAR,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 13460,
                    "nome": "RUA LIBERO BADARO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13461,
                    "nome": "AG�NCIA CORPORATE JOINVILLE, SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 13462,
                    "nome": "GASTAO VIDIGAL, SP",
                    "municipio": "GASTAO VIDIGAL"
                },
                {
                    "id": 13463,
                    "nome": "NOSSA SENHORA DA CANDELARIA,URB.INDAIATUBA, SP",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 13464,
                    "nome": "CAMBE, CENTRO, PR",
                    "municipio": "CAMBE"
                },
                {
                    "id": 13465,
                    "nome": "VITORIA DA CONQUISTA, CENTRO, BA",
                    "municipio": "VITORIA DA CONQUISTA"
                },
                {
                    "id": 13466,
                    "nome": "PRIME ALTO DO IPIRANGA,URB.SAO PAULO,SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13467,
                    "nome": "RUA QUINZE DE NOVEMBRO,URB.SOROCABA, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 13468,
                    "nome": "Ag�ncia 271",
                    "municipio": ""
                },
                {
                    "id": 13469,
                    "nome": "PRIME ARARAQUARA, SP",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 13470,
                    "nome": "APARECIDA DE GOIANIA, CENTRO, GO",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 13471,
                    "nome": "BAIRRO ANCHIETA,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13472,
                    "nome": "VILA LINDA",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 13473,
                    "nome": "BOM CLIMA,URB.GUARULHOS, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 13474,
                    "nome": "DIADEMA, CENTRO, SP",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 13475,
                    "nome": "AV.NAZARE-USP(SP)",
                    "municipio": ""
                },
                {
                    "id": 13476,
                    "nome": "2721",
                    "municipio": ""
                },
                {
                    "id": 13477,
                    "nome": "BARRA GARDEN SHOPPING,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13478,
                    "nome": "JD.MIRIAM-USP(SP)",
                    "municipio": ""
                },
                {
                    "id": 13479,
                    "nome": "HORTO SHOPPING OURO VERDE",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 13480,
                    "nome": "BAEPENDI-WEG,URB.JARAGUA DO SUL, SC",
                    "municipio": "JARAGUA DO SUL"
                },
                {
                    "id": 13481,
                    "nome": "2728",
                    "municipio": ""
                },
                {
                    "id": 13482,
                    "nome": "MINEIRAO,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13483,
                    "nome": "ITAPETINGA, BA",
                    "municipio": "ITAPETINGA"
                },
                {
                    "id": 13484,
                    "nome": "2732",
                    "municipio": ""
                },
                {
                    "id": 13485,
                    "nome": "VILA BAETA NEVES, SP",
                    "municipio": ""
                },
                {
                    "id": 13486,
                    "nome": "Ag�ncia 2735",
                    "municipio": ""
                },
                {
                    "id": 13487,
                    "nome": "2736",
                    "municipio": ""
                },
                {
                    "id": 13488,
                    "nome": "2739",
                    "municipio": ""
                },
                {
                    "id": 13489,
                    "nome": "ITARIRI, SP",
                    "municipio": "ITARIRI"
                },
                {
                    "id": 13490,
                    "nome": "PRACA 8 DE DEZEMBRO",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 13491,
                    "nome": "2743",
                    "municipio": ""
                },
                {
                    "id": 13492,
                    "nome": "JARDIM ANGELA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13493,
                    "nome": "ESTRADA DO MENDANHA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13494,
                    "nome": "RUA LOPES QUINTAS-TV GLOBO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13495,
                    "nome": "TIJUCA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13496,
                    "nome": "2757",
                    "municipio": ""
                },
                {
                    "id": 13497,
                    "nome": "PITANGUEIRAS, SP",
                    "municipio": "PITANGUEIRAS"
                },
                {
                    "id": 13498,
                    "nome": "PA�O IMPERIAL - URB. RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13499,
                    "nome": "2763",
                    "municipio": ""
                },
                {
                    "id": 13500,
                    "nome": "2765",
                    "municipio": ""
                },
                {
                    "id": 13501,
                    "nome": "DOWNTOWN,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13502,
                    "nome": "VILA JAGUARA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13503,
                    "nome": "PRIME BAURU, SP",
                    "municipio": "BAURU"
                },
                {
                    "id": 13504,
                    "nome": "2772",
                    "municipio": ""
                },
                {
                    "id": 13505,
                    "nome": "NOVA ALPHAVILLE",
                    "municipio": "SANTANA DE PARNAIBA"
                },
                {
                    "id": 13506,
                    "nome": "V.ANDRADE-USP(SP)",
                    "municipio": ""
                },
                {
                    "id": 13507,
                    "nome": "ESTRADA DOS BANDEIRANTES,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13508,
                    "nome": "RUA DIAS DA CRUZ,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13509,
                    "nome": "GASOMETRO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13510,
                    "nome": "CEASA COLUBANDE - URB. SAO GONCALO, RJ",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 13511,
                    "nome": "2784",
                    "municipio": ""
                },
                {
                    "id": 13512,
                    "nome": "2785",
                    "municipio": ""
                },
                {
                    "id": 13513,
                    "nome": "MARECHAL HERMES,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13514,
                    "nome": "2788",
                    "municipio": ""
                },
                {
                    "id": 13515,
                    "nome": "SAO CRISTOVAO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13516,
                    "nome": "MERCADAO DE MADUREIRA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13517,
                    "nome": "MANDAQUI,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13518,
                    "nome": "AVENIDA DOS DEMOCRATICOS,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13519,
                    "nome": "CACHAMBI,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13520,
                    "nome": "2796",
                    "municipio": ""
                },
                {
                    "id": 13521,
                    "nome": "IMBIRIBEIRA,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13522,
                    "nome": "VILA BORGES,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13523,
                    "nome": "BILAC, SP",
                    "municipio": "BILAC"
                },
                {
                    "id": 13524,
                    "nome": "PRAIA GRANDE, CENTRO, SP",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 13525,
                    "nome": "AV.FELIC.SODRE-U.TER(RJ)",
                    "municipio": ""
                },
                {
                    "id": 13526,
                    "nome": "2802",
                    "municipio": ""
                },
                {
                    "id": 13527,
                    "nome": "2803",
                    "municipio": ""
                },
                {
                    "id": 13528,
                    "nome": "2804",
                    "municipio": ""
                },
                {
                    "id": 13529,
                    "nome": "ITAIPAVA-DISTRITO DO MUNICIPIO",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 13530,
                    "nome": "2807",
                    "municipio": ""
                },
                {
                    "id": 13531,
                    "nome": "ITAPORANGA, SP",
                    "municipio": "ITAPORANGA"
                },
                {
                    "id": 13532,
                    "nome": "DISTRITO INDUSTRIAL-HONDA,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 13533,
                    "nome": "JARDIM PRIMAVERA,URB.DUQUE DE CAXIAS, RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 13534,
                    "nome": "MARACANA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13535,
                    "nome": "SETE BARRAS, SP",
                    "municipio": "SETE BARRAS"
                },
                {
                    "id": 13536,
                    "nome": "2820",
                    "municipio": ""
                },
                {
                    "id": 13537,
                    "nome": "PONTA NEGRA,URB.NATAL, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 13538,
                    "nome": "TAGUASUL,TAGUATINGA,CIDADE SATELITE, DF",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 13539,
                    "nome": "2829",
                    "municipio": ""
                },
                {
                    "id": 13540,
                    "nome": "GRAVATA, PE",
                    "municipio": "GRAVATA"
                },
                {
                    "id": 13541,
                    "nome": "ANANINDEUA, CENTRO, PA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 13542,
                    "nome": "2832",
                    "municipio": ""
                },
                {
                    "id": 13543,
                    "nome": "AVENIDA BRAZ LEME,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13544,
                    "nome": "AVENIDA PIRES DO RIO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13545,
                    "nome": "ARMACAO DE PENHA",
                    "municipio": "PENHA"
                },
                {
                    "id": 13546,
                    "nome": "PENINSULA SUL,URB.BRASILIA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 13547,
                    "nome": "AVENIDA PAPA JOAO PAULO I,URB.GUARULHOS, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 13548,
                    "nome": "TATUI, SP",
                    "municipio": "TATUI"
                },
                {
                    "id": 13549,
                    "nome": "BOSQUE,URB.RIO BRANCO, AC",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 13550,
                    "nome": "2841",
                    "municipio": ""
                },
                {
                    "id": 13551,
                    "nome": "PRIME SANTOS, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 13552,
                    "nome": "2845",
                    "municipio": ""
                },
                {
                    "id": 13553,
                    "nome": "VILA OLIMPIA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13554,
                    "nome": "2848",
                    "municipio": ""
                },
                {
                    "id": 13555,
                    "nome": "SAO LEOPOLDO, CENTRO, RS",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 13556,
                    "nome": "ILHA SOLTEIRA",
                    "municipio": "ILHA SOLTEIRA"
                },
                {
                    "id": 13557,
                    "nome": "VILA SAO FRANCISCO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13558,
                    "nome": "CIDADE DE DEUS, URB.OSASCO, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 13559,
                    "nome": "CONDE DA BOA VISTA,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13560,
                    "nome": "2860",
                    "municipio": ""
                },
                {
                    "id": 13561,
                    "nome": "AG�NCIA CORPORATE SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13562,
                    "nome": "Ag�ncia 2865",
                    "municipio": ""
                },
                {
                    "id": 13563,
                    "nome": "BENFICA,URB.JUIZ DE FORA, MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 13564,
                    "nome": "RUA MARQUES DO HERVAL,URB.CAXIAS DO SUL, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 13565,
                    "nome": "SAO JUDAS TADEU,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13566,
                    "nome": "VILA CARMOSINA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13567,
                    "nome": "PEDRO PINHO-U.OSASCO(SP)",
                    "municipio": ""
                },
                {
                    "id": 13568,
                    "nome": "JARDIM CAMARGO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13569,
                    "nome": "AVENIDA MARECHAL TITO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13570,
                    "nome": "2877",
                    "municipio": ""
                },
                {
                    "id": 13571,
                    "nome": "2879",
                    "municipio": ""
                },
                {
                    "id": 13572,
                    "nome": "VERDES MARES,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 13573,
                    "nome": "ONDINA,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13574,
                    "nome": "JAGUARE, URB. SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13575,
                    "nome": "AVENIDA GENERAL ATALIBA LEONEL,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13576,
                    "nome": "AVENIDA DO FORTE,URB.PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 13577,
                    "nome": "RUA DA CONCORDIA,URB.RECIFE,PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13578,
                    "nome": "PRA�A 20 DE SETEMBRO,URB.NOVO HAMBURGO, RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 13579,
                    "nome": "SHOPPING RECIFE RECIFE,PE",
                    "municipio": ""
                },
                {
                    "id": 13580,
                    "nome": "Ag�ncia 28916",
                    "municipio": ""
                },
                {
                    "id": 13581,
                    "nome": "2893",
                    "municipio": ""
                },
                {
                    "id": 13582,
                    "nome": "2895",
                    "municipio": ""
                },
                {
                    "id": 13583,
                    "nome": "ESTORIL,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13584,
                    "nome": "BRAUNA",
                    "municipio": "BRAUNA"
                },
                {
                    "id": 13585,
                    "nome": "290",
                    "municipio": ""
                },
                {
                    "id": 13586,
                    "nome": "BETANIA,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13587,
                    "nome": "2904",
                    "municipio": ""
                },
                {
                    "id": 13588,
                    "nome": "2906",
                    "municipio": ""
                },
                {
                    "id": 13589,
                    "nome": "ALVORADA",
                    "municipio": "ALVORADA"
                },
                {
                    "id": 13590,
                    "nome": "BOA VIAGEM,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13591,
                    "nome": "2914",
                    "municipio": ""
                },
                {
                    "id": 13592,
                    "nome": "2917",
                    "municipio": ""
                },
                {
                    "id": 13593,
                    "nome": "2918",
                    "municipio": ""
                },
                {
                    "id": 13594,
                    "nome": "CAMPOS ELISEOS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13595,
                    "nome": "BAIRRO BENFICA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13596,
                    "nome": "BAIRRO DO LIMAO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13597,
                    "nome": "2934",
                    "municipio": ""
                },
                {
                    "id": 13598,
                    "nome": "HOLAMBRA",
                    "municipio": "HOLAMBRA"
                },
                {
                    "id": 13599,
                    "nome": "SAO BRAZ,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 13600,
                    "nome": "BAIRRO BARREIROS,URB.SAO JOSE, SC",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 13601,
                    "nome": "PLANALTO,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13602,
                    "nome": "VILA GUSTAVO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13603,
                    "nome": "Ag�ncia 2945",
                    "municipio": ""
                },
                {
                    "id": 13604,
                    "nome": "2946",
                    "municipio": ""
                },
                {
                    "id": 13605,
                    "nome": "PRAZERES,URB.JABOATAO DOS GUARARAPES, PE",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 13606,
                    "nome": "29475",
                    "municipio": ""
                },
                {
                    "id": 13607,
                    "nome": "2949",
                    "municipio": ""
                },
                {
                    "id": 13608,
                    "nome": "CAUCAIA, CE",
                    "municipio": "CAUCAIA"
                },
                {
                    "id": 13609,
                    "nome": "GUAPORE",
                    "municipio": "GUAPORE"
                },
                {
                    "id": 13610,
                    "nome": "2957",
                    "municipio": ""
                },
                {
                    "id": 13611,
                    "nome": "VILA MADALENA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13612,
                    "nome": "BARAO DE LIMEIRA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13613,
                    "nome": "AG�NCIA CORPORATE RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13614,
                    "nome": "2962",
                    "municipio": ""
                },
                {
                    "id": 13615,
                    "nome": "BOISSUCANGA-SAO SEBASTIAO",
                    "municipio": "SAO SEBASTIAO"
                },
                {
                    "id": 13616,
                    "nome": "CAPAO DA CANOA",
                    "municipio": "CAPAO DA CANOA"
                },
                {
                    "id": 13617,
                    "nome": "CIDADE VARGAS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13618,
                    "nome": "2979",
                    "municipio": ""
                },
                {
                    "id": 13619,
                    "nome": "VILA CARRAO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13620,
                    "nome": "2983",
                    "municipio": ""
                },
                {
                    "id": 13621,
                    "nome": "TOBIAS BARRETO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13622,
                    "nome": "B.STA.TEREZINHA-U.BR(SC)",
                    "municipio": ""
                },
                {
                    "id": 13623,
                    "nome": "AGAMENON MAGALHAES,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13624,
                    "nome": "CEASA,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 13625,
                    "nome": "BAIRRO LARANJEIRAS-SERRA, ES",
                    "municipio": "SERRA"
                },
                {
                    "id": 13626,
                    "nome": "DISTRITO INDUSTRIAL,URB.MARACANAU,CE",
                    "municipio": "MARACANAU"
                },
                {
                    "id": 13627,
                    "nome": "ARARAQUARA, CENTRO, SP",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 13628,
                    "nome": "GALIA, SP",
                    "municipio": "GALIA"
                },
                {
                    "id": 13629,
                    "nome": "IACRI",
                    "municipio": "IACRI"
                },
                {
                    "id": 13630,
                    "nome": "SALVADOR, CENTRO, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13631,
                    "nome": "PRACA PIO X,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13632,
                    "nome": "3003",
                    "municipio": ""
                },
                {
                    "id": 13633,
                    "nome": "ALAGOINHAS, CENTRO, BA",
                    "municipio": "ALAGOINHAS"
                },
                {
                    "id": 13634,
                    "nome": "BAIXA DOS SAPATEIROS,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13635,
                    "nome": "BRUMADO, BA",
                    "municipio": "BRUMADO"
                },
                {
                    "id": 13636,
                    "nome": "AVENIDA ANTARTICA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13637,
                    "nome": "BUERAREMA, BA",
                    "municipio": "BUERAREMA"
                },
                {
                    "id": 13638,
                    "nome": "CACHOEIRA, BA",
                    "municipio": "CACHOEIRA"
                },
                {
                    "id": 13639,
                    "nome": "CALCADA,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13640,
                    "nome": "CAMACAN, BA",
                    "municipio": "CAMACAN"
                },
                {
                    "id": 13641,
                    "nome": "3014",
                    "municipio": ""
                },
                {
                    "id": 13642,
                    "nome": "CANAVIEIRAS, BA",
                    "municipio": "CANAVIEIRAS"
                },
                {
                    "id": 13643,
                    "nome": "CANDEIAS, BA",
                    "municipio": "CANDEIAS"
                },
                {
                    "id": 13644,
                    "nome": "3017",
                    "municipio": ""
                },
                {
                    "id": 13645,
                    "nome": "CATETE,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13646,
                    "nome": "RUDGE RAMOS,URB.SAO BERNARDO DO CAMPO,SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 13647,
                    "nome": "CATU, BA",
                    "municipio": "CATU"
                },
                {
                    "id": 13648,
                    "nome": "COARACI, BA",
                    "municipio": "COARACI"
                },
                {
                    "id": 13649,
                    "nome": "3023",
                    "municipio": ""
                },
                {
                    "id": 13650,
                    "nome": "CRUZ DAS ALMAS, BA",
                    "municipio": "CRUZ DAS ALMAS"
                },
                {
                    "id": 13651,
                    "nome": "SENHOR DOS PASSOS,URB.FEIRA DE SANTANA, BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 13652,
                    "nome": "GANDU, BA",
                    "municipio": "GANDU"
                },
                {
                    "id": 13653,
                    "nome": "GUANAMBI, BA",
                    "municipio": "GUANAMBI"
                },
                {
                    "id": 13654,
                    "nome": "AGUAI, SP",
                    "municipio": "AGUAI"
                },
                {
                    "id": 13655,
                    "nome": "GUAPIACU, SP",
                    "municipio": "GUAPIACU"
                },
                {
                    "id": 13656,
                    "nome": "IBICARAI, BA",
                    "municipio": "IBICARAI"
                },
                {
                    "id": 13657,
                    "nome": "MIMOSO DO OESTE - URB. LUIS EDUARDO MAGALH�ES - BA",
                    "municipio": "LUIS EDUARDO MAGALHAES"
                },
                {
                    "id": 13658,
                    "nome": "3035",
                    "municipio": ""
                },
                {
                    "id": 13659,
                    "nome": "IRECE, BA",
                    "municipio": "IRECE"
                },
                {
                    "id": 13660,
                    "nome": "ITABERABA, BA",
                    "municipio": "ITABERABA"
                },
                {
                    "id": 13661,
                    "nome": "CANAA DOS CARAJAS, PA",
                    "municipio": "CANAA DOS CARAJAS"
                },
                {
                    "id": 13662,
                    "nome": "CARDOSO, SP",
                    "municipio": "CARDOSO"
                },
                {
                    "id": 13663,
                    "nome": "VILA ROMANA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13664,
                    "nome": "3041",
                    "municipio": ""
                },
                {
                    "id": 13665,
                    "nome": "AG�NCIA CORPORATE S�O LU�S, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 13666,
                    "nome": "JACOBINA, BA",
                    "municipio": "JACOBINA"
                },
                {
                    "id": 13667,
                    "nome": "JUAZEIRO, CENTRO, BA",
                    "municipio": "JUAZEIRO"
                },
                {
                    "id": 13668,
                    "nome": "LIMA E SILVA,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13669,
                    "nome": "RUA DO SOL,URB.MACEIO, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 13670,
                    "nome": "3048",
                    "municipio": ""
                },
                {
                    "id": 13671,
                    "nome": "MONTES CLAROS, CENTRO, MG",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 13672,
                    "nome": "VARGEM GRANDE DO SUL, SP",
                    "municipio": "VARGEM GRANDE DO SUL"
                },
                {
                    "id": 13673,
                    "nome": "NANUQUE, MG",
                    "municipio": "NANUQUE"
                },
                {
                    "id": 13674,
                    "nome": "PAULO AFONSO, CENTRO, BA",
                    "municipio": "PAULO AFONSO"
                },
                {
                    "id": 13675,
                    "nome": "BAIRRO ADRIAN�POLIS - URB. MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 13676,
                    "nome": "AG�NCIA CORPORATE JO�O PESSOA, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 13677,
                    "nome": "ITUPEVA, SP",
                    "municipio": "ITUPEVA"
                },
                {
                    "id": 13678,
                    "nome": "SANTO ANTONIO DE JESUS, CENTRO, BA",
                    "municipio": "SANTO ANTONIO DE JESUS"
                },
                {
                    "id": 13679,
                    "nome": "SERRINHA, BA",
                    "municipio": "SERRINHA"
                },
                {
                    "id": 13680,
                    "nome": "TEOFILO OTONI, MG",
                    "municipio": "TEOFILO OTONI"
                },
                {
                    "id": 13681,
                    "nome": "UBAITABA, BA",
                    "municipio": "UBAITABA"
                },
                {
                    "id": 13682,
                    "nome": "UBATA, BA",
                    "municipio": "UBATA"
                },
                {
                    "id": 13683,
                    "nome": "VALENCA, BA",
                    "municipio": "VALENCA"
                },
                {
                    "id": 13684,
                    "nome": "JARDIM SUL, URB. SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13685,
                    "nome": "IBATE, SP",
                    "municipio": "IBATE"
                },
                {
                    "id": 13686,
                    "nome": "3070",
                    "municipio": ""
                },
                {
                    "id": 13687,
                    "nome": "CAMPO GRANDE,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13688,
                    "nome": "CONCEICAO DO COITE, BA",
                    "municipio": "CONCEICAO DO COITE"
                },
                {
                    "id": 13689,
                    "nome": "ITORORO, BA",
                    "municipio": "ITORORO"
                },
                {
                    "id": 13690,
                    "nome": "SAO GONCALO DOS CAMPOS, BA",
                    "municipio": "SAO GONCALO DOS CAMPOS"
                },
                {
                    "id": 13691,
                    "nome": "AMERICO BRASILIENSE, SP",
                    "municipio": "AMERICO BRASILIENSE"
                },
                {
                    "id": 13692,
                    "nome": "TABOAO DA SERRA, CENTRO, SP",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 13693,
                    "nome": "SERRA AZUL, SP",
                    "municipio": "SERRA AZUL"
                },
                {
                    "id": 13694,
                    "nome": "AVENIDA BRASIL,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13695,
                    "nome": "NITEROI, CENTRO, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 13696,
                    "nome": "TAGUAI, SP",
                    "municipio": "TAGUAI"
                },
                {
                    "id": 13697,
                    "nome": "CACULE, BA",
                    "municipio": "CACULE"
                },
                {
                    "id": 13698,
                    "nome": "ITAMARAJU, BA",
                    "municipio": "ITAMARAJU"
                },
                {
                    "id": 13699,
                    "nome": "SAO SEBASTIAO DO PASSE, BA",
                    "municipio": "SAO SEBASTIAO DO PASSE"
                },
                {
                    "id": 13700,
                    "nome": "PLATAFORMA OPERACIONAL PJ CORPORATE E EMPRESAS,CUR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 13701,
                    "nome": "PRACA PANAMERICANA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13702,
                    "nome": "CARMO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 13703,
                    "nome": "PRIME DIGITAL SANTA CECILIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13704,
                    "nome": "PETROLINA, CENTRO, PE",
                    "municipio": "PETROLINA"
                },
                {
                    "id": 13705,
                    "nome": "31011",
                    "municipio": ""
                },
                {
                    "id": 13706,
                    "nome": "RUA JOAO BETTEGA,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 13707,
                    "nome": "SENHOR DO BONFIM, BA",
                    "municipio": "SENHOR DO BONFIM"
                },
                {
                    "id": 13708,
                    "nome": "PRESIDENTE VARGAS,URB.BELEM, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 13709,
                    "nome": "311",
                    "municipio": ""
                },
                {
                    "id": 13710,
                    "nome": "PRACA SAN MARTIN,URB.VITORIA, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 13711,
                    "nome": "NACIONAL,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13712,
                    "nome": "VILA GUILHERME,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13713,
                    "nome": "3121",
                    "municipio": ""
                },
                {
                    "id": 13714,
                    "nome": "NOVA SANTA RITA",
                    "municipio": "NOVA SANTA RITA"
                },
                {
                    "id": 13715,
                    "nome": "NOVO PROGRESSO, PA",
                    "municipio": "NOVO PROGRESSO"
                },
                {
                    "id": 13716,
                    "nome": "PLATAFORMA OPERACIONAL PJ CORPORATE E EMPRESAS-GOI",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 13717,
                    "nome": "V.LEOPOLDINA-USP(SP)",
                    "municipio": ""
                },
                {
                    "id": 13718,
                    "nome": "MAJOR SERTORIO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13719,
                    "nome": "NOVO MUNDO,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 13720,
                    "nome": "PRACA FLORIANO PEIXOTO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13721,
                    "nome": "3138",
                    "municipio": ""
                },
                {
                    "id": 13722,
                    "nome": "3139",
                    "municipio": ""
                },
                {
                    "id": 13723,
                    "nome": "ARTUR NOGUEIRA",
                    "municipio": "ARTUR NOGUEIRA"
                },
                {
                    "id": 13724,
                    "nome": "AV.BARAO DO TRIUNFO,URB.JOAO PESSOA, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 13725,
                    "nome": "SHOPPING CASA CENTER,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 13726,
                    "nome": "AZENHA,URB.PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 13727,
                    "nome": "RUA SIQUEIRA CAMPOS, URB. PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 13728,
                    "nome": "OURO BRANCO",
                    "municipio": "OURO BRANCO"
                },
                {
                    "id": 13729,
                    "nome": "COSMOPOLIS, SP",
                    "municipio": "COSMOPOLIS"
                },
                {
                    "id": 13730,
                    "nome": "AVENIDA NORTE SUL,URB.CAMPINAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 13731,
                    "nome": "NOVO HAMBURBGO, CENTRO, RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 13732,
                    "nome": "PASSO FUNDO, CENTRO, RS",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 13733,
                    "nome": "SANTANA DO LIVRAMENTO, RS",
                    "municipio": "SANTANA DO LIVRAMENTO"
                },
                {
                    "id": 13734,
                    "nome": "ALTO MARACANA,URB.COLOMBO, PR",
                    "municipio": "COLOMBO"
                },
                {
                    "id": 13735,
                    "nome": "URUGUAIANA, RS",
                    "municipio": "URUGUAIANA"
                },
                {
                    "id": 13736,
                    "nome": "INDAIATUBA, CENTRO, SP",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 13737,
                    "nome": "AG�NCIA CORPORATE CHAPEC�, SC",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 13738,
                    "nome": "ARACAJU, CENTRO, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 13739,
                    "nome": "PRACA DO FORUM",
                    "municipio": ""
                },
                {
                    "id": 13740,
                    "nome": "PRACA DO FORUM",
                    "municipio": ""
                },
                {
                    "id": 13741,
                    "nome": "ITABAIANA",
                    "municipio": "ITABAIANA"
                },
                {
                    "id": 13742,
                    "nome": "LAGARTO, SE",
                    "municipio": "LAGARTO"
                },
                {
                    "id": 13743,
                    "nome": "PROPRIA, SE",
                    "municipio": "PROPRIA"
                },
                {
                    "id": 13744,
                    "nome": "3168",
                    "municipio": ""
                },
                {
                    "id": 13745,
                    "nome": "ARAPIRACA - CENTRO, AL",
                    "municipio": "ARAPIRACA"
                },
                {
                    "id": 13746,
                    "nome": "NOVA ODESSA, SP",
                    "municipio": "NOVA ODESSA"
                },
                {
                    "id": 13747,
                    "nome": "PENEDO, AL",
                    "municipio": "PENEDO"
                },
                {
                    "id": 13748,
                    "nome": "3172",
                    "municipio": ""
                },
                {
                    "id": 13749,
                    "nome": "MARQUES CARAVELA,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13750,
                    "nome": "CINELANDIA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13751,
                    "nome": "PLATAFORMA OPERACIONAL PJ CORPORATE E EMPRESAS JOI",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 13752,
                    "nome": "PAULINIA-CENTRO, SP",
                    "municipio": "PAULINIA"
                },
                {
                    "id": 13753,
                    "nome": "PRINCESA ISABEL DE BRAGANCA, URB. MOGI DAS CRUZES,",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 13754,
                    "nome": "EUNAPOLIS, BA",
                    "municipio": "EUNAPOLIS"
                },
                {
                    "id": 13755,
                    "nome": "ILHA DO GOVERNADOR,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13756,
                    "nome": "FOZ DO IGUACU,CENTRO, PR",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 13757,
                    "nome": "CENTER LAPA,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13758,
                    "nome": "PEDREIRA, SP",
                    "municipio": "PEDREIRA"
                },
                {
                    "id": 13759,
                    "nome": "RUA PAISSANDU,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13760,
                    "nome": "PRIME BORGES LAGOA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13761,
                    "nome": "AMERICA BUSINESS PARK,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13762,
                    "nome": "PRIME CANOAS, RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 13763,
                    "nome": "MEDEIROS NETO, BA",
                    "municipio": "MEDEIROS NETO"
                },
                {
                    "id": 13764,
                    "nome": "PRIME CINELANDIA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13765,
                    "nome": "ROLANDIA, PR",
                    "municipio": "ROLANDIA"
                },
                {
                    "id": 13766,
                    "nome": "MANAUS,CENTRO, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 13767,
                    "nome": "RECIFE, CENTRO, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13768,
                    "nome": "Ag�ncia 32010",
                    "municipio": ""
                },
                {
                    "id": 13769,
                    "nome": "AFOGADOS,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13770,
                    "nome": "PLATAFORMA OPERACIONAL PJ CORPORATE E EMPRESAS SAL",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13771,
                    "nome": "PRIME COPACABANA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13772,
                    "nome": "CASA AMARELA,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13773,
                    "nome": "32050",
                    "municipio": ""
                },
                {
                    "id": 13774,
                    "nome": "ENCRUZILHADA,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13775,
                    "nome": "DANTAS BARRETO,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13776,
                    "nome": "32080",
                    "municipio": ""
                },
                {
                    "id": 13777,
                    "nome": "Ag�ncia 32085",
                    "municipio": ""
                },
                {
                    "id": 13778,
                    "nome": "AV. MARQUES DE OLINDA",
                    "municipio": ""
                },
                {
                    "id": 13779,
                    "nome": "NATAL, CENTRO, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 13780,
                    "nome": "ARCOVERDE, PE",
                    "municipio": "ARCOVERDE"
                },
                {
                    "id": 13781,
                    "nome": "Ag�ncia 32104",
                    "municipio": ""
                },
                {
                    "id": 13782,
                    "nome": "32107",
                    "municipio": ""
                },
                {
                    "id": 13783,
                    "nome": "CARUARU, CENTRO, PE",
                    "municipio": "CARUARU"
                },
                {
                    "id": 13784,
                    "nome": "32110",
                    "municipio": ""
                },
                {
                    "id": 13785,
                    "nome": "GARANHUNS, CENTRO, PE",
                    "municipio": "GARANHUNS"
                },
                {
                    "id": 13786,
                    "nome": "Ag�ncia 32120",
                    "municipio": ""
                },
                {
                    "id": 13787,
                    "nome": "Ag�ncia 3213",
                    "municipio": ""
                },
                {
                    "id": 13788,
                    "nome": "PALMARES",
                    "municipio": "PALMARES"
                },
                {
                    "id": 13789,
                    "nome": "32140",
                    "municipio": ""
                },
                {
                    "id": 13790,
                    "nome": "PESQUEIRA, PE",
                    "municipio": "PESQUEIRA"
                },
                {
                    "id": 13791,
                    "nome": "Ag�ncia 32150",
                    "municipio": ""
                },
                {
                    "id": 13792,
                    "nome": "32152",
                    "municipio": ""
                },
                {
                    "id": 13793,
                    "nome": "VITORIA DE SANTO ANTAO, PE",
                    "municipio": "VITORIA DE SANTO ANTAO"
                },
                {
                    "id": 13794,
                    "nome": "PRIME CUIABA, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 13795,
                    "nome": "SUMARE, CENTRO, SP",
                    "municipio": "SUMARE"
                },
                {
                    "id": 13796,
                    "nome": "PRIME CURITIBA, CENTRO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 13797,
                    "nome": "PRIME FARIA LIMA,URB.SAO PAULO,SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13798,
                    "nome": "ALECRIM,URB.NATAL, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 13799,
                    "nome": "PRIME JARDIM BOTANICO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13800,
                    "nome": "MOSSORO, CENTRO, RN",
                    "municipio": "MOSSORO"
                },
                {
                    "id": 13801,
                    "nome": "PRIME IPANEMA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13802,
                    "nome": "BAIRRO JARAGUA,URB.MACEIO, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 13803,
                    "nome": "VINHEDO, CENTRO, SP",
                    "municipio": "VINHEDO"
                },
                {
                    "id": 13804,
                    "nome": "PALMEIRA DOS INDIOS, AL",
                    "municipio": "PALMEIRA DOS INDIOS"
                },
                {
                    "id": 13805,
                    "nome": "PITUBA,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13806,
                    "nome": "3232",
                    "municipio": ""
                },
                {
                    "id": 13807,
                    "nome": "SERDEZELO CORREIA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13808,
                    "nome": "LARGO DO TANQUE,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13809,
                    "nome": "IRACEMA,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 13810,
                    "nome": "PRIME IPIRANGA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13811,
                    "nome": "GENERAL CAMARA,URB.PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 13812,
                    "nome": "PRIME LIBERDADE,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13813,
                    "nome": "PRIME PETROPOLIS, RJ",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 13814,
                    "nome": "PRIME RUA BOA VISTA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13815,
                    "nome": "PRIME SAO BERNARDO DO CAMPO, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 13816,
                    "nome": "PRIME SAVASSI,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13817,
                    "nome": "AV.CESARIO DE MELO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13818,
                    "nome": "MEIER,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13819,
                    "nome": "FARRAPOS,URB.PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 13820,
                    "nome": "PRIME SIQUEIRA CAMPOS,URB.PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 13821,
                    "nome": "ITUIUTABA, MG",
                    "municipio": "ITUIUTABA"
                },
                {
                    "id": 13822,
                    "nome": "FRUTAL, MG",
                    "municipio": "FRUTAL"
                },
                {
                    "id": 13823,
                    "nome": "ITAPAGIPE, MG",
                    "municipio": "ITAPAGIPE"
                },
                {
                    "id": 13824,
                    "nome": "ITURAMA, MG",
                    "municipio": "ITURAMA"
                },
                {
                    "id": 13825,
                    "nome": "PRIME CITY LAPA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13826,
                    "nome": "RUA ANTONIO DE BARROS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13827,
                    "nome": "PRIME FRANCA, SP",
                    "municipio": "FRANCA"
                },
                {
                    "id": 13828,
                    "nome": "PASSO D AREIA,URB.PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 13829,
                    "nome": "PRIME ICARAI,URB.NITEROI, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 13830,
                    "nome": "PRIME LEBLON,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13831,
                    "nome": "BONSUCESSO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13832,
                    "nome": "CONGONHAS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13833,
                    "nome": "PRIME VITORIA, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 13834,
                    "nome": "PRIME JUIZ DE FORA, MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 13835,
                    "nome": "CAMPO DA POLVORA,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13836,
                    "nome": "GUILHERME COTCHING,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13837,
                    "nome": "ALEGRETE",
                    "municipio": "ALEGRETE"
                },
                {
                    "id": 13838,
                    "nome": "BENTO GONCALVES, CENTRO, RS",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 13839,
                    "nome": "BELEM, CENTRO, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 13840,
                    "nome": "CACHOEIRA DO SUL",
                    "municipio": "CACHOEIRA DO SUL"
                },
                {
                    "id": 13841,
                    "nome": "CANOAS, CENTRO, RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 13842,
                    "nome": "CARAZINHO, RS",
                    "municipio": "CARAZINHO"
                },
                {
                    "id": 13843,
                    "nome": "CRUZ ALTA",
                    "municipio": "CRUZ ALTA"
                },
                {
                    "id": 13844,
                    "nome": "ERECHIM, RS",
                    "municipio": "ERECHIM"
                },
                {
                    "id": 13845,
                    "nome": "IJUI, RS",
                    "municipio": "IJUI"
                },
                {
                    "id": 13846,
                    "nome": "SANTA ROSA, RS",
                    "municipio": "SANTA ROSA"
                },
                {
                    "id": 13847,
                    "nome": "SANTO ANGELO, RS",
                    "municipio": "SANTO ANGELO"
                },
                {
                    "id": 13848,
                    "nome": "SAO BORJA, RS",
                    "municipio": "SAO BORJA"
                },
                {
                    "id": 13849,
                    "nome": "SAO GABRIEL",
                    "municipio": "SAO GABRIEL"
                },
                {
                    "id": 13850,
                    "nome": "ITU,CENTRO, SP",
                    "municipio": "ITU"
                },
                {
                    "id": 13851,
                    "nome": "TOLEDO, CENTRO, PR",
                    "municipio": "TOLEDO"
                },
                {
                    "id": 13852,
                    "nome": "ASSIS CHATEAUBRIAND",
                    "municipio": "ASSIS CHATEAUBRIAND"
                },
                {
                    "id": 13853,
                    "nome": "PATO BRANCO, PR",
                    "municipio": "PATO BRANCO"
                },
                {
                    "id": 13854,
                    "nome": "MARECHAL CANDIDO RONDON, PR",
                    "municipio": "MARECHAL CANDIDO RONDON"
                },
                {
                    "id": 13855,
                    "nome": "PORTAO,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 13856,
                    "nome": "VILA PAROLIN,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 13857,
                    "nome": "ITUMBIARA, GO",
                    "municipio": "ITUMBIARA"
                },
                {
                    "id": 13858,
                    "nome": "SANTA HELENA DE GOIAS, GO",
                    "municipio": "SANTA HELENA DE GOIAS"
                },
                {
                    "id": 13859,
                    "nome": "ARARAS, CENTRO, SP",
                    "municipio": "ARARAS"
                },
                {
                    "id": 13860,
                    "nome": "RIO VERDE, CENTRO, GO",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 13861,
                    "nome": "ARAGUAINA, CENTRO, TO",
                    "municipio": "ARAGUAINA"
                },
                {
                    "id": 13862,
                    "nome": "BARRA DO GARCAS",
                    "municipio": "BARRA DO GARCAS"
                },
                {
                    "id": 13863,
                    "nome": "CACERES",
                    "municipio": "CACERES"
                },
                {
                    "id": 13864,
                    "nome": "AV.GETULIO VARGAS",
                    "municipio": "BAURU"
                },
                {
                    "id": 13865,
                    "nome": "MARTINOPOLIS, SP",
                    "municipio": "MARTINOPOLIS"
                },
                {
                    "id": 13866,
                    "nome": "ITAJAI, CENTRO, SC",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 13867,
                    "nome": "GUARAI, TO",
                    "municipio": "GUARAI"
                },
                {
                    "id": 13868,
                    "nome": "Ag�ncia 33000",
                    "municipio": ""
                },
                {
                    "id": 13869,
                    "nome": "3305",
                    "municipio": ""
                },
                {
                    "id": 13870,
                    "nome": "ARARANGUA, SC",
                    "municipio": "ARARANGUA"
                },
                {
                    "id": 13871,
                    "nome": "3310",
                    "municipio": ""
                },
                {
                    "id": 13872,
                    "nome": "Extra Carapicu�ba",
                    "municipio": ""
                },
                {
                    "id": 13873,
                    "nome": "3317",
                    "municipio": ""
                },
                {
                    "id": 13874,
                    "nome": "BALNEARIO DE CAMBORIU,CENTRO,SC",
                    "municipio": "BALNEARIO CAMBORIU"
                },
                {
                    "id": 13875,
                    "nome": "3322",
                    "municipio": ""
                },
                {
                    "id": 13876,
                    "nome": "ITAIGARA,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 13877,
                    "nome": "JARDIM FRANCA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13878,
                    "nome": "BLUMENAU, CENTRO, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 13879,
                    "nome": "JOCKEY,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13880,
                    "nome": "3337",
                    "municipio": ""
                },
                {
                    "id": 13881,
                    "nome": "GUAIRA, SP",
                    "municipio": "GUAIRA"
                },
                {
                    "id": 13882,
                    "nome": "PREFEITURA DE PRAIA GRANDE,URB.PRAIA GRANDE, SP",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 13883,
                    "nome": "3359",
                    "municipio": ""
                },
                {
                    "id": 13884,
                    "nome": "BRACO DO NORTE, SC",
                    "municipio": "BRACO DO NORTE"
                },
                {
                    "id": 13885,
                    "nome": "AG�NCIA CORPORATE JUNDIA�, SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 13886,
                    "nome": "AG�NCIA CORPORATE MOGI-GUA�U, SP",
                    "municipio": "MOGI-GUACU"
                },
                {
                    "id": 13887,
                    "nome": "AG�NCIA CORPORATE CENTRAL RIO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13888,
                    "nome": "BRUSQUE, CENTRO, SC",
                    "municipio": "BRUSQUE"
                },
                {
                    "id": 13889,
                    "nome": "AG�NCIA CORPORATE DUQUE DE CAXIAS, RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 13890,
                    "nome": "AG�NCIA CORPORATE PIRACICABA, SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 13891,
                    "nome": "AG�NCIA CORPORATE SOROCABA, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 13892,
                    "nome": "AG�NCIA CORPORATE S�O JOS� DOS CAMPOS, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 13893,
                    "nome": "AG�NCIA CORPORATE MOGI DAS CRUZES, SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 13894,
                    "nome": "AG�NCIA CORPORATE NITER�I, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 13895,
                    "nome": "AG�NCIA CORPORATE RIBEIR�O PRETO, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 13896,
                    "nome": "AG�NCIA CORPORATE BARRA DA TIJUCA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13897,
                    "nome": "CACADOR, CENTRO, SC",
                    "municipio": "CACADOR"
                },
                {
                    "id": 13898,
                    "nome": "AG�NCIA CORPORATE BERRINI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13899,
                    "nome": "AG�NCIA CORPORATE PAULISTA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13900,
                    "nome": "AG�NCIA CORPORATE ARA�ATUBA, SP",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 13901,
                    "nome": "AG�NCIA CORPORATE ARARAQUARA, SP",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 13902,
                    "nome": "AG�NCIA CORPORATE BAURU, SP",
                    "municipio": "BAURU"
                },
                {
                    "id": 13903,
                    "nome": "AG�NCIA CORPORATE FRANCA, SP",
                    "municipio": "FRANCA"
                },
                {
                    "id": 13904,
                    "nome": "AG�NCIA CORPORATE PRESIDENTE PRUDENTE, SP",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 13905,
                    "nome": "AG�NCIA CORPORATE UBERL�NDIA, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 13906,
                    "nome": "AG�NCIA CORPORATE VOLTA REDONDA, RJ",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 13907,
                    "nome": "AG�NCIA CORPORATE CAMPINAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 13908,
                    "nome": "BARRA BONITA",
                    "municipio": "BARRA BONITA"
                },
                {
                    "id": 13909,
                    "nome": "AG�NCIA CORPORATE ALPHAVILLE, SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 13910,
                    "nome": "AG�NCIA CORPORATE FARIA LIMA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13911,
                    "nome": "AG�NCIA CORPORATE IPIRANGA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13912,
                    "nome": "AG�NCIA CORPORATE TATUAP�, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13913,
                    "nome": "AG�NCIA CORPORATE LAPA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13914,
                    "nome": "AG�NCIA CORPORATE NOVA CENTRAL, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13915,
                    "nome": "AG�NCIA CORPORATE MORUMBI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13916,
                    "nome": "AG�NCIA CORPORATE GUARULHOS, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 13917,
                    "nome": "AG�NCIA CORPORATE S�O BERNARDO DO CAMPO, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 13918,
                    "nome": "AG�NCIA CORPORATE SANTOS, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 13919,
                    "nome": "PARAPUA, SP",
                    "municipio": "PARAPUA"
                },
                {
                    "id": 13920,
                    "nome": "CAMPOS NOVOS, SC",
                    "municipio": "CAMPOS NOVOS"
                },
                {
                    "id": 13921,
                    "nome": "3402",
                    "municipio": ""
                },
                {
                    "id": 13922,
                    "nome": "RUA MARECHAL RONDON,URB.CAMPO GRANDE, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 13923,
                    "nome": "AG�NCIA CORPORATE BENTO GON�ALVES, RS",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 13924,
                    "nome": "CANOINHAS, SC",
                    "municipio": "CANOINHAS"
                },
                {
                    "id": 13925,
                    "nome": "3411",
                    "municipio": ""
                },
                {
                    "id": 13926,
                    "nome": "3413",
                    "municipio": ""
                },
                {
                    "id": 13927,
                    "nome": "AG�NCIA CORPORATE BRAS�LIA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 13928,
                    "nome": "PRIME FLORIANOPOLIS, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 13929,
                    "nome": "AVENIDA WENCESLAU ESCOBAR,URB.PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 13930,
                    "nome": "RUA ESPIRITO SANTO,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13931,
                    "nome": "PRIME INDAIATUBA, SP",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 13932,
                    "nome": "BEIRA RIO - URB. JO�O PESSOA - PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 13933,
                    "nome": "3426",
                    "municipio": ""
                },
                {
                    "id": 13934,
                    "nome": "CHAPECO, SC",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 13935,
                    "nome": "METROCAMPO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 13936,
                    "nome": "3432",
                    "municipio": ""
                },
                {
                    "id": 13937,
                    "nome": "3433",
                    "municipio": ""
                },
                {
                    "id": 13938,
                    "nome": "PROFESSOR ALFREDO BALENA,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13939,
                    "nome": "AVENIDA PRUDENTE DE MORAIS,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13940,
                    "nome": "3438",
                    "municipio": ""
                },
                {
                    "id": 13941,
                    "nome": "BANC�RIOS - URB. JO�O PESSOA - PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 13942,
                    "nome": "CONCORDIA, SC",
                    "municipio": "CONCORDIA"
                },
                {
                    "id": 13943,
                    "nome": "PRIME PIRACICABA, SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 13944,
                    "nome": "BAIRRO SAO MATEUS,URB.JUIZ DE FORA, MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 13945,
                    "nome": "DR.FLAQUER",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 13946,
                    "nome": "3445",
                    "municipio": ""
                },
                {
                    "id": 13947,
                    "nome": "Ag�ncia 3446",
                    "municipio": ""
                },
                {
                    "id": 13948,
                    "nome": "PRIME RIO CLARO, SP",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 13949,
                    "nome": "ARARUNA - PB",
                    "municipio": "ARARUNA"
                },
                {
                    "id": 13950,
                    "nome": "CRICIUMA, CENTRO, SC",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 13951,
                    "nome": "3452",
                    "municipio": ""
                },
                {
                    "id": 13952,
                    "nome": "CONSELHEIRO AGUIAR,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 13953,
                    "nome": "POMBAL - PB",
                    "municipio": "POMBAL"
                },
                {
                    "id": 13954,
                    "nome": "ALVARO DE CARVALHO,URB.FLORIANOPOLIS, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 13955,
                    "nome": "AVENIDA PONTES VIEIRA,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 13956,
                    "nome": "PRINCESA ISABEL - PB",
                    "municipio": "PRINCESA ISABEL"
                },
                {
                    "id": 13957,
                    "nome": "CURITIBANOS, SC",
                    "municipio": "CURITIBANOS"
                },
                {
                    "id": 13958,
                    "nome": "VILA ISA,URB.GOVERNADOR VALADARES, MG",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 13959,
                    "nome": "3461",
                    "municipio": ""
                },
                {
                    "id": 13960,
                    "nome": "3464",
                    "municipio": ""
                },
                {
                    "id": 13961,
                    "nome": "PRIME SAO CARLOS, SP",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 13962,
                    "nome": "PRIME SOROCABA,SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 13963,
                    "nome": "3467",
                    "municipio": ""
                },
                {
                    "id": 13964,
                    "nome": "3468",
                    "municipio": ""
                },
                {
                    "id": 13965,
                    "nome": "ESTREITO,URB.FLORIANOPOLIS, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 13966,
                    "nome": "AG�NCIA CORPORATE CAXIAS DO SUL, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 13967,
                    "nome": "AVENIDA VITORIA,URB.VITORIA, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 13968,
                    "nome": "AG�NCIA CORPORATE CRICI�MA, SC",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 13969,
                    "nome": "PRIME MARINGA, PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 13970,
                    "nome": "3478",
                    "municipio": ""
                },
                {
                    "id": 13971,
                    "nome": "PRIME CAXIAS DO SUL, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 13972,
                    "nome": "FLORIANOPOLIS, CENTRO, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 13973,
                    "nome": "PRIME NOVO HAMBURGO, RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 13974,
                    "nome": "3481",
                    "municipio": ""
                },
                {
                    "id": 13975,
                    "nome": "PRIME BLUMENAU, URB. BLUMENAU, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 13976,
                    "nome": "AG�NCIA CORPORATE BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13977,
                    "nome": "3485",
                    "municipio": ""
                },
                {
                    "id": 13978,
                    "nome": "PRIME DIADEMA, SP",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 13979,
                    "nome": "PRIME CAMPO GRANDE, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 13980,
                    "nome": "GASPAR, SC",
                    "municipio": "GASPAR"
                },
                {
                    "id": 13981,
                    "nome": "PRIME ARACAJU, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 13982,
                    "nome": "AG�NCIA CORPORATE CA�ADOR, SC",
                    "municipio": "CACADOR"
                },
                {
                    "id": 13983,
                    "nome": "BENJAMIM GUIMARAES,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 13984,
                    "nome": "AG�NCIA CORPORATE MAR�LIA, SP",
                    "municipio": "MARILIA"
                },
                {
                    "id": 13985,
                    "nome": "PRIME GUILHERME COTCHING,URB.SAO PAULO,SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13986,
                    "nome": "AG�NCIA CORPORATE PASSO FUNDO, RS",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 13987,
                    "nome": "3496",
                    "municipio": ""
                },
                {
                    "id": 13988,
                    "nome": "PRIME FEIRA DE SANTANA, BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 13989,
                    "nome": "AG�NCIA CORPORATE S�O JOS� DO RIO PRETO, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 13990,
                    "nome": "CACAPAVA, SP",
                    "municipio": "CACAPAVA"
                },
                {
                    "id": 13991,
                    "nome": "AG�NCIA CORPORATE GOVERNADOR VALADARES, MG",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 13992,
                    "nome": "CERQUEIRA CESAR,URB.SAO PAULO,SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 13993,
                    "nome": "AG�NCIA CORPORATE JUIZ DE FORA, MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 13994,
                    "nome": "NEXT XXi",
                    "municipio": ""
                },
                {
                    "id": 13995,
                    "nome": "AG�NCIA CORPORATE NOVO HAMBURGO, RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 13996,
                    "nome": "AG�NCIA CORPORATE MARING�, PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 13997,
                    "nome": "IBIRAMA, SC",
                    "municipio": "IBIRAMA"
                },
                {
                    "id": 13998,
                    "nome": "BAIRRO BOTAFOGO,URB.BENTO GONCALVES, RS",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 13999,
                    "nome": "AG�NCIA CORPORATE VIT�RIA, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 14000,
                    "nome": "3512",
                    "municipio": ""
                },
                {
                    "id": 14001,
                    "nome": "CONCEICAO DO ALMEIDA, BA",
                    "municipio": "CONCEICAO DO ALMEIDA"
                },
                {
                    "id": 14002,
                    "nome": "ESPLANADA, BA",
                    "municipio": "ESPLANADA"
                },
                {
                    "id": 14003,
                    "nome": "EUCLIDES DA CUNHA, BA",
                    "municipio": "EUCLIDES DA CUNHA"
                },
                {
                    "id": 14004,
                    "nome": "CONSELHEIRO FRANCO,URB.FEIRA DE SANTANA, BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 14005,
                    "nome": "IGUAI, BA",
                    "municipio": "IGUAI"
                },
                {
                    "id": 14006,
                    "nome": "RUA MARQUES DE PARANAGUA,URB.ILHEUS, BA",
                    "municipio": "ILHEUS"
                },
                {
                    "id": 14007,
                    "nome": "IMBITUBA",
                    "municipio": "IMBITUBA"
                },
                {
                    "id": 14008,
                    "nome": "PRIME SAO JOSE DO RIO PRETO, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 14009,
                    "nome": "Grupo JCPM",
                    "municipio": ""
                },
                {
                    "id": 14010,
                    "nome": "CEASA BAHIA,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14011,
                    "nome": "ITIRUCU, BA",
                    "municipio": "ITIRUCU"
                },
                {
                    "id": 14012,
                    "nome": "JEQUI�, BA",
                    "municipio": "JEQUIE"
                },
                {
                    "id": 14013,
                    "nome": "3527",
                    "municipio": ""
                },
                {
                    "id": 14014,
                    "nome": "LIVRAMENTO DE NOSSA SENHORA, BA",
                    "municipio": "LIVRAMENTO DE NOSSA SENHORA"
                },
                {
                    "id": 14015,
                    "nome": "SAUDE, BA",
                    "municipio": "SAUDE"
                },
                {
                    "id": 14016,
                    "nome": "INDAIAL, SC",
                    "municipio": "INDAIAL"
                },
                {
                    "id": 14017,
                    "nome": "PRIME RIBEIRAO PRETO, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 14018,
                    "nome": "MORRO DO CHAPEU, BA",
                    "municipio": "MORRO DO CHAPEU"
                },
                {
                    "id": 14019,
                    "nome": "MURITIBA, BA",
                    "municipio": "MURITIBA"
                },
                {
                    "id": 14020,
                    "nome": "NAZARE, BA",
                    "municipio": "NAZARE"
                },
                {
                    "id": 14021,
                    "nome": "PARAMIRIM, BA",
                    "municipio": "PARAMIRIM"
                },
                {
                    "id": 14022,
                    "nome": "AG�NCIA CORPORATE CASCAVEL, PR",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 14023,
                    "nome": "POTIRAGUA, BA",
                    "municipio": "POTIRAGUA"
                },
                {
                    "id": 14024,
                    "nome": "RUY BARBOSA, BA",
                    "municipio": "RUY BARBOSA"
                },
                {
                    "id": 14025,
                    "nome": "PRIME CASA VERDE,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14026,
                    "nome": "CARAPICUIBA, CENTRO, SP",
                    "municipio": "CARAPICUIBA"
                },
                {
                    "id": 14027,
                    "nome": "SANTANA, BA",
                    "municipio": "SANTANA"
                },
                {
                    "id": 14028,
                    "nome": "PRIME BUTANTA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14029,
                    "nome": "SEABRA, BA",
                    "municipio": "SEABRA"
                },
                {
                    "id": 14030,
                    "nome": "PRIME ARACATUBA, SP",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 14031,
                    "nome": "TUCANO, BA",
                    "municipio": "TUCANO"
                },
                {
                    "id": 14032,
                    "nome": "FORUM RUY BARBOSA,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14033,
                    "nome": "XIQUE-XIQUE, BA",
                    "municipio": "XIQUE-XIQUE"
                },
                {
                    "id": 14034,
                    "nome": "ITUPORANGA, SC",
                    "municipio": "ITUPORANGA"
                },
                {
                    "id": 14035,
                    "nome": "RELOGIO DE SAO PEDRO,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14036,
                    "nome": "AG�NCIA CORPORATE LONDRINA, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 14037,
                    "nome": "INSTITUTO DO CACAU,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14038,
                    "nome": "PRIME NOSSA SENHORA DO O,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14039,
                    "nome": "3557",
                    "municipio": ""
                },
                {
                    "id": 14040,
                    "nome": "CONCEICAO DO JACUIPE, BA",
                    "municipio": "CONCEICAO DO JACUIPE"
                },
                {
                    "id": 14041,
                    "nome": "BOQUIRA, BA",
                    "municipio": "BOQUIRA"
                },
                {
                    "id": 14042,
                    "nome": "JARAGUA DO SUL, CENTRO, SC",
                    "municipio": "JARAGUA DO SUL"
                },
                {
                    "id": 14043,
                    "nome": "PRIME SAO CAETANO DO SUL, SP",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 14044,
                    "nome": "PRIME OSASCO, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 14045,
                    "nome": "SANTO ESTEVAO, BA",
                    "municipio": "SANTO ESTEVAO"
                },
                {
                    "id": 14046,
                    "nome": "SAO FRANCISCO DO CONDE, BA",
                    "municipio": "SAO FRANCISCO DO CONDE"
                },
                {
                    "id": 14047,
                    "nome": "PRACA JOAO TIAGO DOS SANTOS,URB.LAURO DE FREITAS, ",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 14048,
                    "nome": "COM�RCIO SALVADOR - URB. SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14049,
                    "nome": "PRIME MOOCA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14050,
                    "nome": "URUCUCA, BA",
                    "municipio": "URUCUCA"
                },
                {
                    "id": 14051,
                    "nome": "JOACABA",
                    "municipio": "JOACABA"
                },
                {
                    "id": 14052,
                    "nome": "JEREMOABO, BA",
                    "municipio": "JEREMOABO"
                },
                {
                    "id": 14053,
                    "nome": "C.A.B.,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14054,
                    "nome": "ENCRUZILHADA, BA",
                    "municipio": "ENCRUZILHADA"
                },
                {
                    "id": 14055,
                    "nome": "AVENIDA ACM,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14056,
                    "nome": "RIACHAO DO JACUIPE, BA",
                    "municipio": "RIACHAO DO JACUIPE"
                },
                {
                    "id": 14057,
                    "nome": "RIO REAL, BA",
                    "municipio": "RIO REAL"
                },
                {
                    "id": 14058,
                    "nome": "AVENIDA RADIAL,URB.CAMACARI, BA",
                    "municipio": "CAMACARI"
                },
                {
                    "id": 14059,
                    "nome": "JOINVILLE,CENTRO,SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 14060,
                    "nome": "CONDEUBA, BA",
                    "municipio": "CONDEUBA"
                },
                {
                    "id": 14061,
                    "nome": "MUCURI, BA",
                    "municipio": "MUCURI"
                },
                {
                    "id": 14062,
                    "nome": "SOBRADINHO, BA",
                    "municipio": "SOBRADINHO"
                },
                {
                    "id": 14063,
                    "nome": "MALHADA DE PEDRAS, BA",
                    "municipio": "MALHADA DE PEDRAS"
                },
                {
                    "id": 14064,
                    "nome": "TAPIRAMUTA, BA",
                    "municipio": "TAPIRAMUTA"
                },
                {
                    "id": 14065,
                    "nome": "LAGUNA",
                    "municipio": "LAGUNA"
                },
                {
                    "id": 14066,
                    "nome": "PRIME UBERABA, MG",
                    "municipio": "UBERABA"
                },
                {
                    "id": 14067,
                    "nome": "CRISOPOLIS, BA",
                    "municipio": "CRISOPOLIS"
                },
                {
                    "id": 14068,
                    "nome": "CENTRO EMPRESARIAL IGUATEMI,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14069,
                    "nome": "ITAJU DO COLONIA, BA",
                    "municipio": "ITAJU DO COLONIA"
                },
                {
                    "id": 14070,
                    "nome": "DARIO MEIRA, BA",
                    "municipio": "DARIO MEIRA"
                },
                {
                    "id": 14071,
                    "nome": "ITAGIMIRIM, BA",
                    "municipio": "ITAGIMIRIM"
                },
                {
                    "id": 14072,
                    "nome": "NILO PECANHA, BA",
                    "municipio": "NILO PECANHA"
                },
                {
                    "id": 14073,
                    "nome": "PRIME PRACA SAENS PENA,URB.RIO DE JANEIRO,RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14074,
                    "nome": "PRESIDENTE PRUDENTE, CENTRO, SP",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 14075,
                    "nome": "LAGES,CENTRO,SC",
                    "municipio": "LAGES"
                },
                {
                    "id": 14076,
                    "nome": "IBICOARA, BA",
                    "municipio": "IBICOARA"
                },
                {
                    "id": 14077,
                    "nome": "IBIPEBA, BA",
                    "municipio": "IBIPEBA"
                },
                {
                    "id": 14078,
                    "nome": "3602",
                    "municipio": ""
                },
                {
                    "id": 14079,
                    "nome": "BARRA DO CHOCA, BA",
                    "municipio": "BARRA DO CHOCA"
                },
                {
                    "id": 14080,
                    "nome": "ILHA DE ITAPARICA, BA",
                    "municipio": "ITAPARICA"
                },
                {
                    "id": 14081,
                    "nome": "QUIJINGUE, BA",
                    "municipio": "QUIJINGUE"
                },
                {
                    "id": 14082,
                    "nome": "RIO DO PIRES, BA",
                    "municipio": "RIO DO PIRES"
                },
                {
                    "id": 14083,
                    "nome": "PRIME MARILIA, SP",
                    "municipio": "MARILIA"
                },
                {
                    "id": 14084,
                    "nome": "LAURO MULLER, SC",
                    "municipio": "LAURO MULLER"
                },
                {
                    "id": 14085,
                    "nome": "IPIRA, BA",
                    "municipio": "IPIRA"
                },
                {
                    "id": 14086,
                    "nome": "PRIME AMERICANA, SP",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 14087,
                    "nome": "ABARE, BA",
                    "municipio": "ABARE"
                },
                {
                    "id": 14088,
                    "nome": "36150",
                    "municipio": ""
                },
                {
                    "id": 14089,
                    "nome": "WAGNER, BA",
                    "municipio": "WAGNER"
                },
                {
                    "id": 14090,
                    "nome": "PRIME BARRETOS,URB.BARRETOS, SP",
                    "municipio": "BARRETOS"
                },
                {
                    "id": 14091,
                    "nome": "MAFRA",
                    "municipio": "MAFRA"
                },
                {
                    "id": 14092,
                    "nome": "SANTA BRIGIDA, BA",
                    "municipio": "SANTA BRIGIDA"
                },
                {
                    "id": 14093,
                    "nome": "MONTE SANTO, BA",
                    "municipio": "MONTE SANTO"
                },
                {
                    "id": 14094,
                    "nome": "IRARA, BA",
                    "municipio": "IRARA"
                },
                {
                    "id": 14095,
                    "nome": "ITUACU, BA",
                    "municipio": "ITUACU"
                },
                {
                    "id": 14096,
                    "nome": "WEALTH   URB  SAO PAULO  SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14097,
                    "nome": "PRESIDENTE JANIO QUADROS, BA",
                    "municipio": "PRESIDENTE JANIO QUADROS"
                },
                {
                    "id": 14098,
                    "nome": "ORLEANS, SC",
                    "municipio": "ORLEANS"
                },
                {
                    "id": 14099,
                    "nome": "CHORROCHO, BA",
                    "municipio": "CHORROCHO"
                },
                {
                    "id": 14100,
                    "nome": "PIATA, BA",
                    "municipio": "PIATA"
                },
                {
                    "id": 14101,
                    "nome": "PRIME CATANDUVA, SP",
                    "municipio": "CATANDUVA"
                },
                {
                    "id": 14102,
                    "nome": "PRIME BOTAFOGO,URB.RIO DE JANEIRO,RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14103,
                    "nome": "AMARGOSA, BA",
                    "municipio": "AMARGOSA"
                },
                {
                    "id": 14104,
                    "nome": "TOP TIER   URB  RIO DE JANEIRO  RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14105,
                    "nome": "PORTO FELIZ, SP",
                    "municipio": "PORTO FELIZ"
                },
                {
                    "id": 14106,
                    "nome": "MAIQUINIQUE, BA",
                    "municipio": "MAIQUINIQUE"
                },
                {
                    "id": 14107,
                    "nome": "PRIME JUNDIAI, URB. JUNDIAI, SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 14108,
                    "nome": "TOP TIER   URB  SAO PAULO  SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14109,
                    "nome": "AG�NCIA CORPORATE CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14110,
                    "nome": "AVENIDA TANCREDO NEVES,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14111,
                    "nome": "PRIME LIMEIRA, URB. LIMEIRA, SP",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 14112,
                    "nome": "PRIME GUARULHOS, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 14113,
                    "nome": "SHOPPING LITORAL NORTE,URB.LAURO DE FREITAS, BA",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 14114,
                    "nome": "PORTO UNIAO, SC",
                    "municipio": "PORTO UNIAO"
                },
                {
                    "id": 14115,
                    "nome": "JORGE AMADO,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14116,
                    "nome": "IPUPIARA, BA",
                    "municipio": "IPUPIARA"
                },
                {
                    "id": 14117,
                    "nome": "FAZENDA GRANDE,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14118,
                    "nome": "SOUTO SOARES, BA",
                    "municipio": "SOUTO SOARES"
                },
                {
                    "id": 14119,
                    "nome": "TOP TIER   URB  CURITIBA  PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14120,
                    "nome": "RIO NEGRINHO, SC",
                    "municipio": "RIO NEGRINHO"
                },
                {
                    "id": 14121,
                    "nome": "RODELAS, BA",
                    "municipio": "RODELAS"
                },
                {
                    "id": 14122,
                    "nome": "36600",
                    "municipio": ""
                },
                {
                    "id": 14123,
                    "nome": "PLANALTINO, BA",
                    "municipio": "PLANALTINO"
                },
                {
                    "id": 14124,
                    "nome": "CHAME-CHAME,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14125,
                    "nome": "AV.JK,URB.PALMAS, TO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 14126,
                    "nome": "PERIPERI,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14127,
                    "nome": "PRIME ANAPOLIS, GO",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 14128,
                    "nome": "TEOLANDIA, BA",
                    "municipio": "TEOLANDIA"
                },
                {
                    "id": 14129,
                    "nome": "DIAS D'AVILA, BA",
                    "municipio": "DIAS D'AVILA"
                },
                {
                    "id": 14130,
                    "nome": "RIO DO SUL,SC",
                    "municipio": "RIO DO SUL"
                },
                {
                    "id": 14131,
                    "nome": "CORIBE, BA",
                    "municipio": "CORIBE"
                },
                {
                    "id": 14132,
                    "nome": "PEDRO ALEXANDRE, BA",
                    "municipio": "PEDRO ALEXANDRE"
                },
                {
                    "id": 14133,
                    "nome": "AVENIDA MANOEL DIAS,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14134,
                    "nome": "NOVA VICOSA, BA",
                    "municipio": "NOVA VICOSA"
                },
                {
                    "id": 14135,
                    "nome": "SERRA PRETA, BA",
                    "municipio": "SERRA PRETA"
                },
                {
                    "id": 14136,
                    "nome": "PRIME JATAI, GO",
                    "municipio": "JATAI"
                },
                {
                    "id": 14137,
                    "nome": "AVENIDA DOM JOAO VI,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14138,
                    "nome": "CLELIA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14139,
                    "nome": "CASA NOVA, BA",
                    "municipio": "CASA NOVA"
                },
                {
                    "id": 14140,
                    "nome": "PRIME CAMPINAS,URB.GOIANIA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 14141,
                    "nome": "AG�NCIA CORPORATE SANTA CRUZ DO SUL, RS",
                    "municipio": "SANTA CRUZ DO SUL"
                },
                {
                    "id": 14142,
                    "nome": "AG�NCIA CORPORATE GOI�NIA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 14143,
                    "nome": "ITABELA, BA",
                    "municipio": "ITABELA"
                },
                {
                    "id": 14144,
                    "nome": "AG�NCIA CORPORATE CAMPO GRANDE, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 14145,
                    "nome": "3688",
                    "municipio": ""
                },
                {
                    "id": 14146,
                    "nome": "36889",
                    "municipio": ""
                },
                {
                    "id": 14147,
                    "nome": "IPECAETA, BA",
                    "municipio": "IPECAETA"
                },
                {
                    "id": 14148,
                    "nome": "SANTO AMARO IMPERATRIZ, SC",
                    "municipio": "SANTO AMARO DA IMPERATRIZ"
                },
                {
                    "id": 14149,
                    "nome": "AREMBEPE-POVOADO DE CAMACARI, BA",
                    "municipio": "CAMACARI"
                },
                {
                    "id": 14150,
                    "nome": "ITABATAN-POVOADO DE MUCURI, BA",
                    "municipio": "MUCURI"
                },
                {
                    "id": 14151,
                    "nome": "MILAGRES, BA",
                    "municipio": "MILAGRES"
                },
                {
                    "id": 14152,
                    "nome": "PINDAI, BA",
                    "municipio": "PINDAI"
                },
                {
                    "id": 14153,
                    "nome": "PALMAS DE MONTE ALTO, BA",
                    "municipio": "PALMAS DE MONTE ALTO"
                },
                {
                    "id": 14154,
                    "nome": "PRIME TAUBATE, SP",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 14155,
                    "nome": "PRIME VALINHOS, SP",
                    "municipio": "VALINHOS"
                },
                {
                    "id": 14156,
                    "nome": "PRESIDENTE VENCESLAU, SP",
                    "municipio": "PRESIDENTE VENCESLAU"
                },
                {
                    "id": 14157,
                    "nome": "SAO BENTO DO SUL, CENTRO, SC",
                    "municipio": "SAO BENTO DO SUL"
                },
                {
                    "id": 14158,
                    "nome": "PARINTINS, AM",
                    "municipio": "PARINTINS"
                },
                {
                    "id": 14159,
                    "nome": "ITACOATIARA, AM",
                    "municipio": "ITACOATIARA"
                },
                {
                    "id": 14160,
                    "nome": "BOCA DO ACRE, AM",
                    "municipio": "BOCA DO ACRE"
                },
                {
                    "id": 14161,
                    "nome": "MAUES, AM",
                    "municipio": "MAUES"
                },
                {
                    "id": 14162,
                    "nome": "MANACAPURU, AM",
                    "municipio": "MANACAPURU"
                },
                {
                    "id": 14163,
                    "nome": "AG�NCIA CORPORATE PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 14164,
                    "nome": "MANICORE, AM",
                    "municipio": "MANICORE"
                },
                {
                    "id": 14165,
                    "nome": "PORTO FERREIRA",
                    "municipio": "PORTO FERREIRA"
                },
                {
                    "id": 14166,
                    "nome": "COARI,AM",
                    "municipio": "COARI"
                },
                {
                    "id": 14167,
                    "nome": "AVENIDA SETE DE SETEMBRO,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 14168,
                    "nome": "MERCADO,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 14169,
                    "nome": "HUMAITA, AM",
                    "municipio": "HUMAITA"
                },
                {
                    "id": 14170,
                    "nome": "SAO GABRIEL DA CACHOEIRA, AM",
                    "municipio": "SAO GABRIEL DA CACHOEIRA"
                },
                {
                    "id": 14171,
                    "nome": "AVENIDA CARVALHO LEAL,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 14172,
                    "nome": "CODAJAS, AM",
                    "municipio": "CODAJAS"
                },
                {
                    "id": 14173,
                    "nome": "MANAQUIRI, AM",
                    "municipio": "MANAQUIRI"
                },
                {
                    "id": 14174,
                    "nome": "BORBA, AM",
                    "municipio": "BORBA"
                },
                {
                    "id": 14175,
                    "nome": "URUCARA, AM",
                    "municipio": "URUCARA"
                },
                {
                    "id": 14176,
                    "nome": "SAO FRANCISCO DO SUL",
                    "municipio": "SAO FRANCISCO DO SUL"
                },
                {
                    "id": 14177,
                    "nome": "NOVO ARIPUANA, AM",
                    "municipio": "NOVO ARIPUANA"
                },
                {
                    "id": 14178,
                    "nome": "IRANDUBA, AM",
                    "municipio": "IRANDUBA"
                },
                {
                    "id": 14179,
                    "nome": "CARAUARI, AM",
                    "municipio": "CARAUARI"
                },
                {
                    "id": 14180,
                    "nome": "LABREA, AM",
                    "municipio": "LABREA"
                },
                {
                    "id": 14181,
                    "nome": "EIRUNEPE, AM",
                    "municipio": "EIRUNEPE"
                },
                {
                    "id": 14182,
                    "nome": "BARREIRINHA, AM",
                    "municipio": "BARREIRINHA"
                },
                {
                    "id": 14183,
                    "nome": "BOULEVARD - URB. MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 14184,
                    "nome": "CAREIRO CASTANHO, AM",
                    "municipio": "CAREIRO"
                },
                {
                    "id": 14185,
                    "nome": "AG. NEXT II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14186,
                    "nome": "SAO JOAQUIM, SC",
                    "municipio": "SAO JOAQUIM"
                },
                {
                    "id": 14187,
                    "nome": "NHAMUNDA, AM",
                    "municipio": "NHAMUNDA"
                },
                {
                    "id": 14188,
                    "nome": "FONTE BOA, AM",
                    "municipio": "FONTE BOA"
                },
                {
                    "id": 14189,
                    "nome": "PRESIDENTE FIGUEIREDO, AM",
                    "municipio": "PRESIDENTE FIGUEIREDO"
                },
                {
                    "id": 14190,
                    "nome": "AVENIDA NOEL NUTELS,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 14191,
                    "nome": "PARQUE DEZ,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 14192,
                    "nome": "BAIRRO PLANALTO,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 14193,
                    "nome": "COMPENSA,URB.MANAIS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 14194,
                    "nome": "NEXT XI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14195,
                    "nome": "NEXT XII",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14196,
                    "nome": "SEFAZ-ALEIXO,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 14197,
                    "nome": "SANTA FE DO SUL, SP",
                    "municipio": "SANTA FE DO SUL"
                },
                {
                    "id": 14198,
                    "nome": "BENJAMIN CONSTANT, AM",
                    "municipio": "BENJAMIN CONSTANT"
                },
                {
                    "id": 14199,
                    "nome": "BARCELOS, AM",
                    "municipio": "BARCELOS"
                },
                {
                    "id": 14200,
                    "nome": "CANUTAMA, AM",
                    "municipio": "CANUTAMA"
                },
                {
                    "id": 14201,
                    "nome": "TEFE, AM",
                    "municipio": "TEFE"
                },
                {
                    "id": 14202,
                    "nome": "NOVO AIRAO, AM",
                    "municipio": "NOVO AIRAO"
                },
                {
                    "id": 14203,
                    "nome": "RIO PRETO DA EVA, AM",
                    "municipio": "RIO PRETO DA EVA"
                },
                {
                    "id": 14204,
                    "nome": "APUI, AM",
                    "municipio": "APUI"
                },
                {
                    "id": 14205,
                    "nome": "NOVA OLINDA DO NORTE, AM",
                    "municipio": "NOVA OLINDA DO NORTE"
                },
                {
                    "id": 14206,
                    "nome": "SAO PAULO DE OLIVENCA, AM",
                    "municipio": "SAO PAULO DE OLIVENCA"
                },
                {
                    "id": 14207,
                    "nome": "NEXT   OSASCO  SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14208,
                    "nome": "PRACA CORONEL FRANCISCO PEREIRA DO NASCIMENTO   UR",
                    "municipio": "VITORIA"
                },
                {
                    "id": 14209,
                    "nome": "ENSEADA   URB  VITORIA  ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 14210,
                    "nome": "RUA TAPAJOS   URB  APARECIDA DE GOIANIA  GO",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 14211,
                    "nome": "SAO MIGUEL D'OESTE, SC",
                    "municipio": "SAO MIGUEL D'OESTE"
                },
                {
                    "id": 14212,
                    "nome": "NOVA AVENIDA GOIAS   URB  GOIANIA  GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 14213,
                    "nome": "REPUBLICA DO LIBANO   URB  GOIANIA  GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 14214,
                    "nome": "AGUDOS",
                    "municipio": "AGUDOS"
                },
                {
                    "id": 14215,
                    "nome": "TAIO, SC",
                    "municipio": "TAIO"
                },
                {
                    "id": 14216,
                    "nome": "SENADOR CANEDO, GO",
                    "municipio": "SENADOR CANEDO"
                },
                {
                    "id": 14217,
                    "nome": "RENASCENCA   URB  SAO LUIS  MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 14218,
                    "nome": "MANHUACU, MG",
                    "municipio": "MANHUACU"
                },
                {
                    "id": 14219,
                    "nome": "BEBEDOURO,CENTRO, SP",
                    "municipio": "BEBEDOURO"
                },
                {
                    "id": 14220,
                    "nome": "PROMISSAO, SP",
                    "municipio": "PROMISSAO"
                },
                {
                    "id": 14221,
                    "nome": "TIJUCAS",
                    "municipio": "TIJUCAS"
                },
                {
                    "id": 14222,
                    "nome": "BONITO, BA",
                    "municipio": "BONITO"
                },
                {
                    "id": 14223,
                    "nome": "BUENO BRAND�O, MG",
                    "municipio": "BUENO BRANDAO"
                },
                {
                    "id": 14224,
                    "nome": "TIMBO, SC",
                    "municipio": "TIMBO"
                },
                {
                    "id": 14225,
                    "nome": "TUBARAO,CENTRO, SC",
                    "municipio": "TUBARAO"
                },
                {
                    "id": 14226,
                    "nome": "BARAO   URB  JUIZ DE FORA  MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 14227,
                    "nome": "VIDEIRA, SC",
                    "municipio": "VIDEIRA"
                },
                {
                    "id": 14228,
                    "nome": "PARAISOPOLIS, MG",
                    "municipio": "PARAISOPOLIS"
                },
                {
                    "id": 14229,
                    "nome": "PRIME BEIRA MAR, URB. FLORIANOPOLIS, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 14230,
                    "nome": "PICARRA, URB. TERESINA, PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 14231,
                    "nome": "XANXERE, SC",
                    "municipio": "XANXERE"
                },
                {
                    "id": 14232,
                    "nome": "SARZEDO  MG",
                    "municipio": "SARZEDO"
                },
                {
                    "id": 14233,
                    "nome": "3854",
                    "municipio": ""
                },
                {
                    "id": 14234,
                    "nome": "NEXT XIII",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14235,
                    "nome": "BARRINHA, SP",
                    "municipio": "BARRINHA"
                },
                {
                    "id": 14236,
                    "nome": "NEXT XIV",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14237,
                    "nome": "NEXT XV",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14238,
                    "nome": "Ag�ncia 3863",
                    "municipio": ""
                },
                {
                    "id": 14239,
                    "nome": "LAGOA DA PRATA, MG",
                    "municipio": "LAGOA DA PRATA"
                },
                {
                    "id": 14240,
                    "nome": "TABULEIRO,URB.MACEIO, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 14241,
                    "nome": "PELOTAS, CENTRO, RS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 14242,
                    "nome": "NEXT XVI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14243,
                    "nome": "B.FORQUILHINHAS-USJ-SC",
                    "municipio": ""
                },
                {
                    "id": 14244,
                    "nome": "SANTA MARIA, CENTRO, RS",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 14245,
                    "nome": "MACEIO,CENTRO, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 14246,
                    "nome": "Ag�ncia 3890",
                    "municipio": ""
                },
                {
                    "id": 14247,
                    "nome": "3897",
                    "municipio": ""
                },
                {
                    "id": 14248,
                    "nome": "NEXT XVII",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14249,
                    "nome": "CRUZEIRO, SP",
                    "municipio": "CRUZEIRO"
                },
                {
                    "id": 14250,
                    "nome": "JARDIM CAMBURI, URB. VITORIA, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 14251,
                    "nome": "3902",
                    "municipio": ""
                },
                {
                    "id": 14252,
                    "nome": "NEXT XVIII",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14253,
                    "nome": "Ag�ncia 39050",
                    "municipio": ""
                },
                {
                    "id": 14254,
                    "nome": "LAGOA SANTA, MG",
                    "municipio": "LAGOA SANTA"
                },
                {
                    "id": 14255,
                    "nome": "GUARAREMA, SP",
                    "municipio": "GUARAREMA"
                },
                {
                    "id": 14256,
                    "nome": "AG�NCIA PJ ALTO VALOR S�O PAULO CENTRO - URB. S�O ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14257,
                    "nome": "BRADESCO DIGITAL V, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 14258,
                    "nome": "GUARIBA, SP",
                    "municipio": "GUARIBA"
                },
                {
                    "id": 14259,
                    "nome": "AG�NCIA NEXT III",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14260,
                    "nome": "AG�NCIA NEXT IV � S�O PAULO, SP.",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14261,
                    "nome": "ITATIBA, CENTRO, SP",
                    "municipio": "ITATIBA"
                },
                {
                    "id": 14262,
                    "nome": "3930",
                    "municipio": ""
                },
                {
                    "id": 14263,
                    "nome": "PRIME AV. SAO JOAO, URB SAO JOSE DOS CAMPOS, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 14264,
                    "nome": "IPUTINGA,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 14265,
                    "nome": "AG. PLATAFORMA TOP TIER FARIA LIMA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14266,
                    "nome": "JABOTICABAL, SP",
                    "municipio": "JABOTICABAL"
                },
                {
                    "id": 14267,
                    "nome": "NEXT XIX",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14268,
                    "nome": "NEXT XX",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14269,
                    "nome": "3946",
                    "municipio": ""
                },
                {
                    "id": 14270,
                    "nome": "JACAREI, CENTRO, SP",
                    "municipio": "JACAREI"
                },
                {
                    "id": 14271,
                    "nome": "Ag�ncia 3953",
                    "municipio": ""
                },
                {
                    "id": 14272,
                    "nome": "3956",
                    "municipio": ""
                },
                {
                    "id": 14273,
                    "nome": "3957",
                    "municipio": ""
                },
                {
                    "id": 14274,
                    "nome": "GOVERNADOR VALADARES, CENTRO, MG",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 14275,
                    "nome": "BRADESCO DIGITAL VI, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 14276,
                    "nome": "BRADESCO DIGITAL VII, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 14277,
                    "nome": "LENCOIS PAULISTA, SP",
                    "municipio": "LENCOIS PAULISTA"
                },
                {
                    "id": 14278,
                    "nome": "BRADESCO DIGITAL VIII",
                    "municipio": "OSASCO"
                },
                {
                    "id": 14279,
                    "nome": "DIGITAL S�O JOS� DOS CAMPOS, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 14280,
                    "nome": "LORENA, SP",
                    "municipio": "LORENA"
                },
                {
                    "id": 14281,
                    "nome": "BRADESCO DIGITAL CLASSIC - URB. OSASCO, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 14282,
                    "nome": "399",
                    "municipio": ""
                },
                {
                    "id": 14283,
                    "nome": "SAO MATEUS DO SUL, PR",
                    "municipio": "SAO MATEUS DO SUL"
                },
                {
                    "id": 14284,
                    "nome": "ASSIS, CENTRO, SP",
                    "municipio": "ASSIS"
                },
                {
                    "id": 14285,
                    "nome": "ALVARES MACHADO, SP",
                    "municipio": "ALVARES MACHADO"
                },
                {
                    "id": 14286,
                    "nome": "PETROPOLIS,CENTRO,RJ",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 14287,
                    "nome": "MOGI MIRIM, CENTRO, SP",
                    "municipio": "MOGI-MIRIM"
                },
                {
                    "id": 14288,
                    "nome": "MONTE MOR",
                    "municipio": "MONTE MOR"
                },
                {
                    "id": 14289,
                    "nome": "PARAGUACU PAULISTA, SP",
                    "municipio": "PARAGUACU PAULISTA"
                },
                {
                    "id": 14290,
                    "nome": "TERESINA,CENTRO,PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 14291,
                    "nome": "4051",
                    "municipio": ""
                },
                {
                    "id": 14292,
                    "nome": "NOVA IGUACU, CENTRO, RJ",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 14293,
                    "nome": "POA, CENTRO, SP",
                    "municipio": "POA"
                },
                {
                    "id": 14294,
                    "nome": "SAO LUIS, CENTRO, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 14295,
                    "nome": "QUELUZ, SP",
                    "municipio": "QUELUZ"
                },
                {
                    "id": 14296,
                    "nome": "IBIRAREMA",
                    "municipio": "IBIRAREMA"
                },
                {
                    "id": 14297,
                    "nome": "RIO DAS PEDRAS",
                    "municipio": "RIO DAS PEDRAS"
                },
                {
                    "id": 14298,
                    "nome": "SALESOPOLIS, SP",
                    "municipio": "SALESOPOLIS"
                },
                {
                    "id": 14299,
                    "nome": "RIO GRANDE, RS",
                    "municipio": "RIO GRANDE"
                },
                {
                    "id": 14300,
                    "nome": "SANTO ANDRE, CENTRO, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 14301,
                    "nome": "BANCO BRADESCO SA",
                    "municipio": ""
                },
                {
                    "id": 14302,
                    "nome": "414",
                    "municipio": ""
                },
                {
                    "id": 14303,
                    "nome": "GUARATINGUETA, CENTRO, SP",
                    "municipio": "GUARATINGUETA"
                },
                {
                    "id": 14304,
                    "nome": "CUIABA, CENTRO, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 14305,
                    "nome": "TREMEMBE, SP",
                    "municipio": "TREMEMBE"
                },
                {
                    "id": 14306,
                    "nome": "419",
                    "municipio": ""
                },
                {
                    "id": 14307,
                    "nome": "JARDIM PAULISTA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14308,
                    "nome": "HEITOR PENTEADO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14309,
                    "nome": "ALFONSO BOVERO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14310,
                    "nome": "GUARAPUAVA, CENTRO, PR",
                    "municipio": "GUARAPUAVA"
                },
                {
                    "id": 14311,
                    "nome": "MONSENHOR CELSO,URB.CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14312,
                    "nome": "RIO BRANCO,CENTRO, AC",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 14313,
                    "nome": "PALMAS, PR",
                    "municipio": "PALMAS"
                },
                {
                    "id": 14314,
                    "nome": "PEDERNEIRAS, SP",
                    "municipio": "PEDERNEIRAS"
                },
                {
                    "id": 14315,
                    "nome": "PALMEIRA",
                    "municipio": "PALMEIRA"
                },
                {
                    "id": 14316,
                    "nome": "VOLTA REDONDA, CENTRO, RJ",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 14317,
                    "nome": "JANDIRA, CENTRO, SP",
                    "municipio": "JANDIRA"
                },
                {
                    "id": 14318,
                    "nome": "BARRA MANSA, CENTRO, RJ",
                    "municipio": "BARRA MANSA"
                },
                {
                    "id": 14319,
                    "nome": "JOAO PESSOA, CENTRO, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 14320,
                    "nome": "VISCONDE DE INHAUMA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14321,
                    "nome": "AUTAZES, AM",
                    "municipio": "AUTAZES"
                },
                {
                    "id": 14322,
                    "nome": "CASCAVEL, CENTRO, PR",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 14323,
                    "nome": "BAGE, RS",
                    "municipio": "BAGE"
                },
                {
                    "id": 14324,
                    "nome": "OURINHOS, SP",
                    "municipio": "OURINHOS"
                },
                {
                    "id": 14325,
                    "nome": "BRODOWSKI, SP",
                    "municipio": "BRODOWSKI"
                },
                {
                    "id": 14326,
                    "nome": "CRAVINHOS, SP",
                    "municipio": "CRAVINHOS"
                },
                {
                    "id": 14327,
                    "nome": "JARDINOPOLIS, SP",
                    "municipio": "JARDINOPOLIS"
                },
                {
                    "id": 14328,
                    "nome": "AVENIDA DA SAUDADE,URB.RIBEIRAO PRETO,SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 14329,
                    "nome": "CASTELO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14330,
                    "nome": "446",
                    "municipio": ""
                },
                {
                    "id": 14331,
                    "nome": "LARANJEIRAS,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14332,
                    "nome": "HADDOCK LOBO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14333,
                    "nome": "BRIGADEIRO LUIS ANTONIO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14334,
                    "nome": "SANTOS, CENTRO, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 14335,
                    "nome": "COLONIAL,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14336,
                    "nome": "AEROPORTO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14337,
                    "nome": "FORTALEZA, CENTRO, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 14338,
                    "nome": "AMPARO, SP",
                    "municipio": "AMPARO"
                },
                {
                    "id": 14339,
                    "nome": "CRATO,CENTRO, CE",
                    "municipio": "CRATO"
                },
                {
                    "id": 14340,
                    "nome": "IGUATU, CE",
                    "municipio": "IGUATU"
                },
                {
                    "id": 14341,
                    "nome": "JUAZEIRO DO NORTE, CENTRO, CE",
                    "municipio": "JUAZEIRO DO NORTE"
                },
                {
                    "id": 14342,
                    "nome": "JI PARANA  CENTRO  RO",
                    "municipio": "JI-PARANA"
                },
                {
                    "id": 14343,
                    "nome": "SOBRAL, CENTRO, CE",
                    "municipio": "SOBRAL"
                },
                {
                    "id": 14344,
                    "nome": "ANGRA DOS REIS, CENTRO, RJ",
                    "municipio": "ANGRA DOS REIS"
                },
                {
                    "id": 14345,
                    "nome": "CAMPINAS, CENTRO, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 14346,
                    "nome": "IMPERATRIZ, CENTRO, MA",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 14347,
                    "nome": "NOSSA SENHORA DO SABARA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14348,
                    "nome": "RUA CURITIBA,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 14349,
                    "nome": "463",
                    "municipio": ""
                },
                {
                    "id": 14350,
                    "nome": "COMERCIO,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 14351,
                    "nome": "BELO HORIZONTE, CENTRO, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 14352,
                    "nome": "CIDADE INDUSTRIAL,URB.CONTAGEM, MG",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 14353,
                    "nome": "IPATINGA, CENTRO, MG",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 14354,
                    "nome": "AV.RIO BRANCO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14355,
                    "nome": "SANTOS DUMONT,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14356,
                    "nome": "APUCARANA, CENTRO, PR",
                    "municipio": "APUCARANA"
                },
                {
                    "id": 14357,
                    "nome": "PRESIDENTE ANTONIO CARLOS,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14358,
                    "nome": "RUA SANTA CLARA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14359,
                    "nome": "SETE DE SETEMBRO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14360,
                    "nome": "ANHANGABAU,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14361,
                    "nome": "ATIBAIA, SP",
                    "municipio": "ATIBAIA"
                },
                {
                    "id": 14362,
                    "nome": "PAISSANDU,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14363,
                    "nome": "NOBRES",
                    "municipio": "NOBRES"
                },
                {
                    "id": 14364,
                    "nome": "PARANAGUA, CENTRO, PR",
                    "municipio": "PARANAGUA"
                },
                {
                    "id": 14365,
                    "nome": "BRAGANCA PAULISTA,CENTRO, SP",
                    "municipio": "BRAGANCA PAULISTA"
                },
                {
                    "id": 14366,
                    "nome": "CUBATAO, SP",
                    "municipio": "CUBATAO"
                },
                {
                    "id": 14367,
                    "nome": "EDUARDO RIBEIRO,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 14368,
                    "nome": "PIMENTA BUENO",
                    "municipio": "PIMENTA BUENO"
                },
                {
                    "id": 14369,
                    "nome": "AVENIDA,URB.BRASILIA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 14370,
                    "nome": "VITORIA, CENTRO, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 14371,
                    "nome": "MARAJO,URB.BELEM, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 14372,
                    "nome": "CURITIBA, CENTRO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14373,
                    "nome": "490",
                    "municipio": ""
                },
                {
                    "id": 14374,
                    "nome": "491",
                    "municipio": ""
                },
                {
                    "id": 14375,
                    "nome": "V.RECREIO-URB.BETIM(MG)",
                    "municipio": ""
                },
                {
                    "id": 14376,
                    "nome": "CAMPINA GRANDE, CENTRO, PB",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 14377,
                    "nome": "RUA SANTA CRUZ,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14378,
                    "nome": "AVENIDA IBIRAPUERA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14379,
                    "nome": "ACLIMACAO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14380,
                    "nome": "PRACA BENEDITO CALIXTO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14381,
                    "nome": "CAPELA DO SOCORRO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14382,
                    "nome": "GARCA",
                    "municipio": "GARCA"
                },
                {
                    "id": 14383,
                    "nome": "SERTANOPOLIS, PR",
                    "municipio": "SERTANOPOLIS"
                },
                {
                    "id": 14384,
                    "nome": "PRACA DA SE,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14385,
                    "nome": "5002",
                    "municipio": ""
                },
                {
                    "id": 14386,
                    "nome": "AV  CALOGERAS   URB  CAMPO GRANDE  MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 14387,
                    "nome": "CITY LAPA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14388,
                    "nome": "CEASA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14389,
                    "nome": "TEOTONIO VILELA, AL",
                    "municipio": "TEOTONIO VILELA"
                },
                {
                    "id": 14390,
                    "nome": "BERURI, AM",
                    "municipio": "BERURI"
                },
                {
                    "id": 14391,
                    "nome": "UNIAO DOS PALMARES, AL",
                    "municipio": "UNIAO DOS PALMARES"
                },
                {
                    "id": 14392,
                    "nome": "PRACA SILVIO ROMERO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14393,
                    "nome": "ENVIRA, AM",
                    "municipio": "ENVIRA"
                },
                {
                    "id": 14394,
                    "nome": "FARIA LIMA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14395,
                    "nome": "IPIXUNA, AM",
                    "municipio": "IPIXUNA"
                },
                {
                    "id": 14396,
                    "nome": "JUTAI, AM",
                    "municipio": "JUTAI"
                },
                {
                    "id": 14397,
                    "nome": "PAUINI, AM",
                    "municipio": "PAUINI"
                },
                {
                    "id": 14398,
                    "nome": "TAPAUA, AM",
                    "municipio": "TAPAUA"
                },
                {
                    "id": 14399,
                    "nome": "PRA�A ANT�NIO JO�O - URB. DOURADOS, MS",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 14400,
                    "nome": "PAES DE BARROS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14401,
                    "nome": "VICOSA, AL",
                    "municipio": "VICOSA"
                },
                {
                    "id": 14402,
                    "nome": "MAZAGAO, AP",
                    "municipio": "MAZAGAO"
                },
                {
                    "id": 14403,
                    "nome": "BURITIRAMA. BA",
                    "municipio": "BURITIRAMA"
                },
                {
                    "id": 14404,
                    "nome": "ARAGUARI, MG",
                    "municipio": "ARAGUARI"
                },
                {
                    "id": 14405,
                    "nome": "ITATIM, BA",
                    "municipio": "ITATIM"
                },
                {
                    "id": 14406,
                    "nome": "BARBACENA, MG",
                    "municipio": "BARBACENA"
                },
                {
                    "id": 14407,
                    "nome": "5076",
                    "municipio": ""
                },
                {
                    "id": 14408,
                    "nome": "DIVINOPOLIS, CENTRO, MG",
                    "municipio": "DIVINOPOLIS"
                },
                {
                    "id": 14409,
                    "nome": "SAO GABRIEL. BA",
                    "municipio": "SAO GABRIEL"
                },
                {
                    "id": 14410,
                    "nome": "5084",
                    "municipio": ""
                },
                {
                    "id": 14411,
                    "nome": "PONTE NOVA, MG",
                    "municipio": "PONTE NOVA"
                },
                {
                    "id": 14412,
                    "nome": "ANDARAI, BA",
                    "municipio": "ANDARAI"
                },
                {
                    "id": 14413,
                    "nome": "ANGICAL, BA",
                    "municipio": "ANGICAL"
                },
                {
                    "id": 14414,
                    "nome": "ARACI, BA",
                    "municipio": "ARACI"
                },
                {
                    "id": 14415,
                    "nome": "ALTO SANTO, CE",
                    "municipio": "ALTO SANTO"
                },
                {
                    "id": 14416,
                    "nome": "CARIDADE, CE",
                    "municipio": "CARIDADE"
                },
                {
                    "id": 14417,
                    "nome": "CORNELIO PROCOPIO, PR",
                    "municipio": "CORNELIO PROCOPIO"
                },
                {
                    "id": 14418,
                    "nome": "VARGINHA,CENTRO, MG",
                    "municipio": "VARGINHA"
                },
                {
                    "id": 14419,
                    "nome": "BARRA, BA",
                    "municipio": "BARRA"
                },
                {
                    "id": 14420,
                    "nome": "CATAGUASES, MG",
                    "municipio": "CATAGUASES"
                },
                {
                    "id": 14421,
                    "nome": "CAMAMU, BA",
                    "municipio": "CAMAMU"
                },
                {
                    "id": 14422,
                    "nome": "SETE LAGOAS, CENTRO, MG",
                    "municipio": "SETE LAGOAS"
                },
                {
                    "id": 14423,
                    "nome": "AMARANTE DO MARANH�O, MA",
                    "municipio": "AMARANTE DO MARANHAO"
                },
                {
                    "id": 14424,
                    "nome": "SAVASSI,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 14425,
                    "nome": "POCOS DE CALDAS, CENTRO, MG",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 14426,
                    "nome": "RUA TABATINGUERA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14427,
                    "nome": "GRANJA JULIETA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14428,
                    "nome": "ITAPIRA, SP",
                    "municipio": "ITAPIRA"
                },
                {
                    "id": 14429,
                    "nome": "PONTA DA PRAIA",
                    "municipio": "SANTOS"
                },
                {
                    "id": 14430,
                    "nome": "CICERO DANTAS, BA",
                    "municipio": "CICERO DANTAS"
                },
                {
                    "id": 14431,
                    "nome": "PIRASSUNUNGA  SP",
                    "municipio": "PIRASSUNUNGA"
                },
                {
                    "id": 14432,
                    "nome": "FORMOSA DO RIO PRETO, BA",
                    "municipio": "FORMOSA DO RIO PRETO"
                },
                {
                    "id": 14433,
                    "nome": "ARAPONGAS, CENTRO, PR",
                    "municipio": "ARAPONGAS"
                },
                {
                    "id": 14434,
                    "nome": "SANTA BARBARA D OESTE, CENTRO, SP",
                    "municipio": "SANTA BARBARA D'OESTE"
                },
                {
                    "id": 14435,
                    "nome": "TIETE",
                    "municipio": "TIETE"
                },
                {
                    "id": 14436,
                    "nome": "INHAMBUPE, BA",
                    "municipio": "INHAMBUPE"
                },
                {
                    "id": 14437,
                    "nome": "IRAQUARA, BA",
                    "municipio": "IRAQUARA"
                },
                {
                    "id": 14438,
                    "nome": "ITACARE, BA",
                    "municipio": "ITACARE"
                },
                {
                    "id": 14439,
                    "nome": "ANAJATUBA, MA",
                    "municipio": "ANAJATUBA"
                },
                {
                    "id": 14440,
                    "nome": "BOA VISTA, CENTRO, RR",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 14441,
                    "nome": "APICUM-ACU, MA",
                    "municipio": "APICUM-ACU"
                },
                {
                    "id": 14442,
                    "nome": "ARAME,MA",
                    "municipio": "ARAME"
                },
                {
                    "id": 14443,
                    "nome": "BEQUIMAO, MA",
                    "municipio": "BEQUIMAO"
                },
                {
                    "id": 14444,
                    "nome": "BURITI BRAVO, MA",
                    "municipio": "BURITI BRAVO"
                },
                {
                    "id": 14445,
                    "nome": "PRIME MANA�RA - URB. JO�O PESSOA, PB.",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 14446,
                    "nome": "CANDIDO MENDES, MA",
                    "municipio": "CANDIDO MENDES"
                },
                {
                    "id": 14447,
                    "nome": "MACAPA,CENTRO, AP",
                    "municipio": "MACAPA"
                },
                {
                    "id": 14448,
                    "nome": "FORTALEZA DOS NOGUEIRAS, MA",
                    "municipio": "FORTALEZA DOS NOGUEIRAS"
                },
                {
                    "id": 14449,
                    "nome": "MACAUBAS, BA",
                    "municipio": "MACAUBAS"
                },
                {
                    "id": 14450,
                    "nome": "SANTAREM,CENTRO, PA",
                    "municipio": "SANTAREM"
                },
                {
                    "id": 14451,
                    "nome": "MAIRI, BA",
                    "municipio": "MAIRI"
                },
                {
                    "id": 14452,
                    "nome": "BAR�O DO RIO BRANCO - URB. CAMPO GRANDE, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 14453,
                    "nome": "GUARUJA, CENTRO, SP",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 14454,
                    "nome": "FORTUNA, MA",
                    "municipio": "FORTUNA"
                },
                {
                    "id": 14455,
                    "nome": "ICATU, MA",
                    "municipio": "ICATU"
                },
                {
                    "id": 14456,
                    "nome": "LAGO VERDE, MA",
                    "municipio": "LAGO VERDE"
                },
                {
                    "id": 14457,
                    "nome": "JALES, SP",
                    "municipio": "JALES"
                },
                {
                    "id": 14458,
                    "nome": "OLINDINA, BA",
                    "municipio": "OLINDINA"
                },
                {
                    "id": 14459,
                    "nome": "MATA ROMA, MA",
                    "municipio": "MATA ROMA"
                },
                {
                    "id": 14460,
                    "nome": "MATINHA, MA",
                    "municipio": "MATINHA"
                },
                {
                    "id": 14461,
                    "nome": "5268",
                    "municipio": ""
                },
                {
                    "id": 14462,
                    "nome": "SAO ROQUE, SP",
                    "municipio": "SAO ROQUE"
                },
                {
                    "id": 14463,
                    "nome": "PRESIDETE TANCREDO NEVES, BA",
                    "municipio": "PRESIDENTE TANCREDO NEVES"
                },
                {
                    "id": 14464,
                    "nome": "QUEIMADAS, BA",
                    "municipio": "QUEIMADAS"
                },
                {
                    "id": 14465,
                    "nome": "VIA ANCHIETA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14466,
                    "nome": "PENALVA, MA",
                    "municipio": "PENALVA"
                },
                {
                    "id": 14467,
                    "nome": "RIACHO DE SANTANA, BA",
                    "municipio": "RIACHO DE SANTANA"
                },
                {
                    "id": 14468,
                    "nome": "SANTALUZ, BA",
                    "municipio": "SANTALUZ"
                },
                {
                    "id": 14469,
                    "nome": "KM 18",
                    "municipio": "OSASCO"
                },
                {
                    "id": 14470,
                    "nome": "5294",
                    "municipio": ""
                },
                {
                    "id": 14471,
                    "nome": "PRIME DIGITAL S�O PAULO III, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 14472,
                    "nome": "PRESIDENTE SARNEY, MA",
                    "municipio": "PRESIDENTE SARNEY"
                },
                {
                    "id": 14473,
                    "nome": "5298",
                    "municipio": ""
                },
                {
                    "id": 14474,
                    "nome": "PRACA WILLIE DAVIDS,URB.LONDRINA, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 14475,
                    "nome": "BATATAIS, SP",
                    "municipio": "BATATAIS"
                },
                {
                    "id": 14476,
                    "nome": "ACOPIARA, CE",
                    "municipio": "ACOPIARA"
                },
                {
                    "id": 14477,
                    "nome": "AMONTADA, CE",
                    "municipio": "AMONTADA"
                },
                {
                    "id": 14478,
                    "nome": "AQUIRAZ, CE",
                    "municipio": "AQUIRAZ"
                },
                {
                    "id": 14479,
                    "nome": "GUARACIABA   URB  CAMPO GRANDE  MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 14480,
                    "nome": "LEME, SP",
                    "municipio": "LEME"
                },
                {
                    "id": 14481,
                    "nome": "MATAO, SP",
                    "municipio": "MATAO"
                },
                {
                    "id": 14482,
                    "nome": "MOCOCA, SP",
                    "municipio": "MOCOCA"
                },
                {
                    "id": 14483,
                    "nome": "OLIMPIA",
                    "municipio": "OLIMPIA"
                },
                {
                    "id": 14484,
                    "nome": "ORLANDIA, SP",
                    "municipio": "ORLANDIA"
                },
                {
                    "id": 14485,
                    "nome": "SAO JOSE DO RIO PARDO, SP",
                    "municipio": "SAO JOSE DO RIO PARDO"
                },
                {
                    "id": 14486,
                    "nome": "BATURITE, CE",
                    "municipio": "BATURITE"
                },
                {
                    "id": 14487,
                    "nome": "BEBERIBE, CE",
                    "municipio": "BEBERIBE"
                },
                {
                    "id": 14488,
                    "nome": "BELA CRUZ, CE",
                    "municipio": "BELA CRUZ"
                },
                {
                    "id": 14489,
                    "nome": "SAO VICENTE, CENTRO, SP",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 14490,
                    "nome": "UTINGA",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 14491,
                    "nome": "5383",
                    "municipio": ""
                },
                {
                    "id": 14492,
                    "nome": "EUSEBIO  CE",
                    "municipio": "EUSEBIO"
                },
                {
                    "id": 14493,
                    "nome": "GRANJA, CE",
                    "municipio": "GRANJA"
                },
                {
                    "id": 14494,
                    "nome": "SAO BENEDITO DO RIO PRETO, MA",
                    "municipio": "SAO BENEDITO DO RIO PRETO"
                },
                {
                    "id": 14495,
                    "nome": "SITIO NOVO, MA",
                    "municipio": "SITIO NOVO"
                },
                {
                    "id": 14496,
                    "nome": "RESENDE,CENTRO, RJ",
                    "municipio": "RESENDE"
                },
                {
                    "id": 14497,
                    "nome": "URBANO SANTOS, MA",
                    "municipio": "URBANO SANTOS"
                },
                {
                    "id": 14498,
                    "nome": "HIDROLANDIA, CE",
                    "municipio": "HIDROLANDIA"
                },
                {
                    "id": 14499,
                    "nome": "ICO, CE",
                    "municipio": "ICO"
                },
                {
                    "id": 14500,
                    "nome": "IPU, CE",
                    "municipio": "IPU"
                },
                {
                    "id": 14501,
                    "nome": "JAGUARIBE, CE",
                    "municipio": "JAGUARIBE"
                },
                {
                    "id": 14502,
                    "nome": "JAGUARUANA, CE",
                    "municipio": "JAGUARUANA"
                },
                {
                    "id": 14503,
                    "nome": "LAVRAS DA MANGABEIRA, CE",
                    "municipio": "LAVRAS DA MANGABEIRA"
                },
                {
                    "id": 14504,
                    "nome": "BRAS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14505,
                    "nome": "NOVA FRIBURGO, CENTRO, RJ",
                    "municipio": "NOVA FRIBURGO"
                },
                {
                    "id": 14506,
                    "nome": "ICARAI,URB.NITEROI, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 14507,
                    "nome": "MASSAPE, CE",
                    "municipio": "MASSAPE"
                },
                {
                    "id": 14508,
                    "nome": "VITORIA DO MEARIM, MA",
                    "municipio": "VITORIA DO MEARIM"
                },
                {
                    "id": 14509,
                    "nome": "TERESOPOLIS, CENTRO, RJ",
                    "municipio": "TERESOPOLIS"
                },
                {
                    "id": 14510,
                    "nome": "5422",
                    "municipio": ""
                },
                {
                    "id": 14511,
                    "nome": "RAIZ   URB  MANAUS  AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 14512,
                    "nome": "SAO GONCALO, CENTRO, RJ",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 14513,
                    "nome": "MORADA NOVA, CE",
                    "municipio": "MORADA NOVA"
                },
                {
                    "id": 14514,
                    "nome": "SAO JOAO DE MERITI, CENTRO, RJ",
                    "municipio": "SAO JOAO DE MERITI"
                },
                {
                    "id": 14515,
                    "nome": "NOVO ORIENTE, CE",
                    "municipio": "NOVO ORIENTE"
                },
                {
                    "id": 14516,
                    "nome": "PARACURU, CE",
                    "municipio": "PARACURU"
                },
                {
                    "id": 14517,
                    "nome": "PARAIPABA, CE",
                    "municipio": "PARAIPABA"
                },
                {
                    "id": 14518,
                    "nome": "PENTECOSTE, CE",
                    "municipio": "PENTECOSTE"
                },
                {
                    "id": 14519,
                    "nome": "5448",
                    "municipio": ""
                },
                {
                    "id": 14520,
                    "nome": "REDENCAO, CE",
                    "municipio": "REDENCAO"
                },
                {
                    "id": 14521,
                    "nome": "VILA NOVA CACHOEIRINHA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14522,
                    "nome": "SANTANA DO CARIRI, CE",
                    "municipio": "SANTANA DO CARIRI"
                },
                {
                    "id": 14523,
                    "nome": "Ag�ncia 5456",
                    "municipio": ""
                },
                {
                    "id": 14524,
                    "nome": "TRAIRI, CE",
                    "municipio": "TRAIRI"
                },
                {
                    "id": 14525,
                    "nome": "MARABA, CENTRO, PA",
                    "municipio": "MARABA"
                },
                {
                    "id": 14526,
                    "nome": "BAIXO GUANDU, ES",
                    "municipio": "BAIXO GUANDU"
                },
                {
                    "id": 14527,
                    "nome": "CARLOS DE CAMPOS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14528,
                    "nome": "CAMPINORTE, GO",
                    "municipio": "CAMPINORTE"
                },
                {
                    "id": 14529,
                    "nome": "5474",
                    "municipio": ""
                },
                {
                    "id": 14530,
                    "nome": "5475",
                    "municipio": ""
                },
                {
                    "id": 14531,
                    "nome": "IPAMERI, GO",
                    "municipio": "IPAMERI"
                },
                {
                    "id": 14532,
                    "nome": "VILA CLEMENTINO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14533,
                    "nome": "NIQUELANDIA, GO",
                    "municipio": "NIQUELANDIA"
                },
                {
                    "id": 14534,
                    "nome": "SANTO ANTONIO DO DESCOBERTO, GO",
                    "municipio": "SANTO ANTONIO DO DESCOBERTO"
                },
                {
                    "id": 14535,
                    "nome": "BARRA FUNDA URB SAO PAULO  SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14536,
                    "nome": "SAO DOMINGOS  GO",
                    "municipio": "SAO DOMINGOS"
                },
                {
                    "id": 14537,
                    "nome": "BARREIRINHAS, MA",
                    "municipio": "BARREIRINHAS"
                },
                {
                    "id": 14538,
                    "nome": "PARNARAMA, MA",
                    "municipio": "PARNARAMA"
                },
                {
                    "id": 14539,
                    "nome": "SANTA HELENA, MA",
                    "municipio": "SANTA HELENA"
                },
                {
                    "id": 14540,
                    "nome": "AGUAS FORMOSAS, MG",
                    "municipio": "AGUAS FORMOSAS"
                },
                {
                    "id": 14541,
                    "nome": "ARACUAI, MG",
                    "municipio": "ARACUAI"
                },
                {
                    "id": 14542,
                    "nome": "LAPA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14543,
                    "nome": "VILA ESPERANCA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14544,
                    "nome": "BAMBUI, MG",
                    "municipio": "BAMBUI"
                },
                {
                    "id": 14545,
                    "nome": "BRASILIA DE MINAS, MG",
                    "municipio": "BRASILIA DE MINAS"
                },
                {
                    "id": 14546,
                    "nome": "LEBLON,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14547,
                    "nome": "CAMBUI, MG",
                    "municipio": "CAMBUI"
                },
                {
                    "id": 14548,
                    "nome": "NOVA ESPERAN�A DO PIRIA, PA",
                    "municipio": "NOVA ESPERANCA DO PIRIA"
                },
                {
                    "id": 14549,
                    "nome": "CARANDAI, MG",
                    "municipio": "CARANDAI"
                },
                {
                    "id": 14550,
                    "nome": "CAMPO GRANDE,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14551,
                    "nome": "PRIME DIGITAL S�O PAULO I, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 14552,
                    "nome": "CACHOEIRO DE ITAPEMIRIM, CENTRO, ES",
                    "municipio": "CACHOEIRO DE ITAPEMIRIM"
                },
                {
                    "id": 14553,
                    "nome": "COLATINA, CENTRO, ES",
                    "municipio": "COLATINA"
                },
                {
                    "id": 14554,
                    "nome": "ITAMBACURI, MG",
                    "municipio": "ITAMBACURI"
                },
                {
                    "id": 14555,
                    "nome": "JAIBA, MG",
                    "municipio": "JAIBA"
                },
                {
                    "id": 14556,
                    "nome": "JOAO PINHEIRO, MG",
                    "municipio": "JOAO PINHEIRO"
                },
                {
                    "id": 14557,
                    "nome": "BARRA DO PIRAI",
                    "municipio": "BARRA DO PIRAI"
                },
                {
                    "id": 14558,
                    "nome": "MATO VERDE, MG",
                    "municipio": "MATO VERDE"
                },
                {
                    "id": 14559,
                    "nome": "TRES RIOS, CENTRO, RJ",
                    "municipio": "TRES RIOS"
                },
                {
                    "id": 14560,
                    "nome": "PRAINHA, PA",
                    "municipio": "PRAINHA"
                },
                {
                    "id": 14561,
                    "nome": "RIBEIRAO PIRES, CENTRO, SP",
                    "municipio": "RIBEIRAO PIRES"
                },
                {
                    "id": 14562,
                    "nome": "RUA PIRACICABA   URB  PRIMAVERA DO LESTE  MT",
                    "municipio": "PRIMAVERA DO LESTE"
                },
                {
                    "id": 14563,
                    "nome": "MOINHOS DE VENTO,URB.PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 14564,
                    "nome": "RODOVIA BR 316   URB  ANANINDEUA  PA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 14565,
                    "nome": "RADIAL LESTE,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14566,
                    "nome": "Ag�ncia 5591",
                    "municipio": ""
                },
                {
                    "id": 14567,
                    "nome": "AVENIDA JOSE BONIFACIO   URB  BELEM  PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 14568,
                    "nome": "AG. TOP TIER ALPHAVILLE, SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 14569,
                    "nome": "ADAMANTINA, SP",
                    "municipio": "ADAMANTINA"
                },
                {
                    "id": 14570,
                    "nome": "LONDRINA, CENTRO, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 14571,
                    "nome": "561",
                    "municipio": ""
                },
                {
                    "id": 14572,
                    "nome": "5610",
                    "municipio": ""
                },
                {
                    "id": 14573,
                    "nome": "5611",
                    "municipio": ""
                },
                {
                    "id": 14574,
                    "nome": "5613",
                    "municipio": ""
                },
                {
                    "id": 14575,
                    "nome": "5614",
                    "municipio": ""
                },
                {
                    "id": 14576,
                    "nome": "5615",
                    "municipio": ""
                },
                {
                    "id": 14577,
                    "nome": "5616",
                    "municipio": ""
                },
                {
                    "id": 14578,
                    "nome": "5617",
                    "municipio": ""
                },
                {
                    "id": 14579,
                    "nome": "Ag�ncia 56170",
                    "municipio": ""
                },
                {
                    "id": 14580,
                    "nome": "5619",
                    "municipio": ""
                },
                {
                    "id": 14581,
                    "nome": "PAMPLONA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14582,
                    "nome": "LAJEADO, RS",
                    "municipio": "LAJEADO"
                },
                {
                    "id": 14583,
                    "nome": "SANTA BARBARA, MG",
                    "municipio": "SANTA BARBARA"
                },
                {
                    "id": 14584,
                    "nome": "5635",
                    "municipio": ""
                },
                {
                    "id": 14585,
                    "nome": "AV  ENGENHEIRO DOMINGOS FERREIRA   URB  RECIFE  PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 14586,
                    "nome": "ALDEOTA,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 14587,
                    "nome": "MOMBUCA, SP",
                    "municipio": "MOMBUCA"
                },
                {
                    "id": 14588,
                    "nome": "5650",
                    "municipio": ""
                },
                {
                    "id": 14589,
                    "nome": "SANTA MARIA DO SUACUI, MG",
                    "municipio": "SANTA MARIA DO SUACUI"
                },
                {
                    "id": 14590,
                    "nome": "CAMPO LIMPO PAULISTA, CENTRO, SP",
                    "municipio": "CAMPO LIMPO PAULISTA"
                },
                {
                    "id": 14591,
                    "nome": "SAO JOAO DA PONTE, MG",
                    "municipio": "SAO JOAO DA PONTE"
                },
                {
                    "id": 14592,
                    "nome": "SAO JOAO DO PARAISO, MG",
                    "municipio": "SAO JOAO DO PARAISO"
                },
                {
                    "id": 14593,
                    "nome": "IRACEMAPOLIS, SP",
                    "municipio": "IRACEMAPOLIS"
                },
                {
                    "id": 14594,
                    "nome": "ARAPOTI,  PR",
                    "municipio": "ARAPOTI"
                },
                {
                    "id": 14595,
                    "nome": "VARZELANDIA, MG",
                    "municipio": "VARZELANDIA"
                },
                {
                    "id": 14596,
                    "nome": "ENTRE RIOS, BA",
                    "municipio": "ENTRE RIOS"
                },
                {
                    "id": 14597,
                    "nome": "CAMPINA GRANDE DO SUL, PR",
                    "municipio": "CAMPINA GRANDE DO SUL"
                },
                {
                    "id": 14598,
                    "nome": "QUERENCIA, MT",
                    "municipio": "QUERENCIA"
                },
                {
                    "id": 14599,
                    "nome": "ASSAI, PR",
                    "municipio": "ASSAI"
                },
                {
                    "id": 14600,
                    "nome": "PERDIZES, MG",
                    "municipio": "PERDIZES"
                },
                {
                    "id": 14601,
                    "nome": "CHOPINZINHO, PR",
                    "municipio": "CHOPINZINHO"
                },
                {
                    "id": 14602,
                    "nome": "AIURUOCA",
                    "municipio": "AIURUOCA"
                },
                {
                    "id": 14603,
                    "nome": "CORBELIA, PR",
                    "municipio": "CORBELIA"
                },
                {
                    "id": 14604,
                    "nome": "BAIRRO AGUA VERDE   URB  CURITIBA  PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14605,
                    "nome": "AHU   URB  CURITIBA  PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14606,
                    "nome": "RUA XV DE NOVEMBRO   URB  CURITIBA  PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14607,
                    "nome": "PAVAO, MG",
                    "municipio": "PAVAO"
                },
                {
                    "id": 14608,
                    "nome": "SALGADO FILHO   URB  CURITIBA  PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14609,
                    "nome": "ALENQUER, PA",
                    "municipio": "ALENQUER"
                },
                {
                    "id": 14610,
                    "nome": "RUA CORONEL DULCIDIO   URB  CURITIBA  PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14611,
                    "nome": "BIGORRILHO   URB  CURITIBA  PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14612,
                    "nome": "AUGUSTO CORREA, PA",
                    "municipio": "AUGUSTO CORREA"
                },
                {
                    "id": 14613,
                    "nome": "BREVES, PA",
                    "municipio": "BREVES"
                },
                {
                    "id": 14614,
                    "nome": "ATALEIA, MG",
                    "municipio": "ATALEIA"
                },
                {
                    "id": 14615,
                    "nome": "CAMETA, PA",
                    "municipio": "CAMETA"
                },
                {
                    "id": 14616,
                    "nome": "CURIONOPOLIS, PA",
                    "municipio": "CURIONOPOLIS"
                },
                {
                    "id": 14617,
                    "nome": "CURUCA, PA",
                    "municipio": "CURUCA"
                },
                {
                    "id": 14618,
                    "nome": "ITUPIRANGA, PA",
                    "municipio": "ITUPIRANGA"
                },
                {
                    "id": 14619,
                    "nome": "JURUTI, PA",
                    "municipio": "JURUTI"
                },
                {
                    "id": 14620,
                    "nome": "MARITUBA, PA",
                    "municipio": "MARITUBA"
                },
                {
                    "id": 14621,
                    "nome": "MOJU, PA",
                    "municipio": "MOJU"
                },
                {
                    "id": 14622,
                    "nome": "MONTE ALEGRE, PA",
                    "municipio": "MONTE ALEGRE"
                },
                {
                    "id": 14623,
                    "nome": "NOVO REPARTIMENTO, PA",
                    "municipio": "NOVO REPARTIMENTO"
                },
                {
                    "id": 14624,
                    "nome": "PACAJA, PA",
                    "municipio": "PACAJA"
                },
                {
                    "id": 14625,
                    "nome": "PORTEL, PA",
                    "municipio": "PORTEL"
                },
                {
                    "id": 14626,
                    "nome": "RUA MANOEL VALDOMIRO DE MACEDO   URB  CURITIBA  PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14627,
                    "nome": "BAIRRO CAVALEIROS,URB.MACAE, RJ",
                    "municipio": "MACAE"
                },
                {
                    "id": 14628,
                    "nome": "AVENIDA   URB  CURITIBA  PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14629,
                    "nome": "RUA JOAO NEGRAO   URB  CURITIBA  PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14630,
                    "nome": "SALINOPOLIS, PA",
                    "municipio": "SALINOPOLIS"
                },
                {
                    "id": 14631,
                    "nome": "AV  JOAO GUALBERTO   URB  CURITIBA  PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14632,
                    "nome": "MURIAE",
                    "municipio": "MURIAE"
                },
                {
                    "id": 14633,
                    "nome": "BAIRRO MERCES   URB  CURITIBA  PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14634,
                    "nome": "SAO GERALDO DO ARAGUAIA, PA",
                    "municipio": "SAO GERALDO DO ARAGUAIA"
                },
                {
                    "id": 14635,
                    "nome": "SAO MIGUEL DO GUAMA, PA",
                    "municipio": "SAO MIGUEL DO GUAMA"
                },
                {
                    "id": 14636,
                    "nome": "TAILANDIA,PA",
                    "municipio": "TAILANDIA"
                },
                {
                    "id": 14637,
                    "nome": "TERRA SANTA, PA",
                    "municipio": "TERRA SANTA"
                },
                {
                    "id": 14638,
                    "nome": "URUARA, PA",
                    "municipio": "URUARA"
                },
                {
                    "id": 14639,
                    "nome": "VIGIA, PA",
                    "municipio": "VIGIA"
                },
                {
                    "id": 14640,
                    "nome": "ALAGOA GRANDE, PB",
                    "municipio": "ALAGOA GRANDE"
                },
                {
                    "id": 14641,
                    "nome": "5772",
                    "municipio": ""
                },
                {
                    "id": 14642,
                    "nome": "CABEDELO, PB",
                    "municipio": "CABEDELO"
                },
                {
                    "id": 14643,
                    "nome": "CATOLE DO ROCHA, PB",
                    "municipio": "CATOLE DO ROCHA"
                },
                {
                    "id": 14644,
                    "nome": "CUITE, PB",
                    "municipio": "CUITE"
                },
                {
                    "id": 14645,
                    "nome": "ITABAIANA, PB",
                    "municipio": "ITABAIANA"
                },
                {
                    "id": 14646,
                    "nome": "ITAPORANGA, PB",
                    "municipio": "ITAPORANGA"
                },
                {
                    "id": 14647,
                    "nome": "578",
                    "municipio": ""
                },
                {
                    "id": 14648,
                    "nome": "MARI, PB",
                    "municipio": "MARI"
                },
                {
                    "id": 14649,
                    "nome": "MONTEIRO, PB",
                    "municipio": "MONTEIRO"
                },
                {
                    "id": 14650,
                    "nome": "5783",
                    "municipio": ""
                },
                {
                    "id": 14651,
                    "nome": "QUEIMADAS, PB",
                    "municipio": "QUEIMADAS"
                },
                {
                    "id": 14652,
                    "nome": "SANTA LUZIA, PB",
                    "municipio": "SANTA LUZIA"
                },
                {
                    "id": 14653,
                    "nome": "SAO JOAO DO RIO DO PEIXE, PB",
                    "municipio": "SAO JOAO DO RIO DO PEIXE"
                },
                {
                    "id": 14654,
                    "nome": "SOLANEA, PB",
                    "municipio": "SOLANEA"
                },
                {
                    "id": 14655,
                    "nome": "BODOCO, PE",
                    "municipio": "BODOCO"
                },
                {
                    "id": 14656,
                    "nome": "Ag�ncia 57886",
                    "municipio": ""
                },
                {
                    "id": 14657,
                    "nome": "TRINDADE, PE",
                    "municipio": "TRINDADE"
                },
                {
                    "id": 14658,
                    "nome": "BOM JESUS, GO",
                    "municipio": "BOM JESUS DE GOIAS"
                },
                {
                    "id": 14659,
                    "nome": "ALTOS, PI",
                    "municipio": "ALTOS"
                },
                {
                    "id": 14660,
                    "nome": "AMARANTE, PI",
                    "municipio": "AMARANTE"
                },
                {
                    "id": 14661,
                    "nome": "BARRAS, PI",
                    "municipio": "BARRAS"
                },
                {
                    "id": 14662,
                    "nome": "BOM JESUS, PI",
                    "municipio": "BOM JESUS"
                },
                {
                    "id": 14663,
                    "nome": "CANTO DO BURITI, PI",
                    "municipio": "CANTO DO BURITI"
                },
                {
                    "id": 14664,
                    "nome": "CORRENTE, PI",
                    "municipio": "CORRENTE"
                },
                {
                    "id": 14665,
                    "nome": "ESPERANTINA, PI",
                    "municipio": "ESPERANTINA"
                },
                {
                    "id": 14666,
                    "nome": "58",
                    "municipio": ""
                },
                {
                    "id": 14667,
                    "nome": "ANTONIO JOAO",
                    "municipio": "ANTONIO JOAO"
                },
                {
                    "id": 14668,
                    "nome": "PAULISTANA, PI",
                    "municipio": "PAULISTANA"
                },
                {
                    "id": 14669,
                    "nome": "PEDRO II, PI",
                    "municipio": "PEDRO II"
                },
                {
                    "id": 14670,
                    "nome": "PIRIPIRI, PI",
                    "municipio": "PIRIPIRI"
                },
                {
                    "id": 14671,
                    "nome": "SAO JOAO DO PIAUI, PI",
                    "municipio": "SAO JOAO DO PIAUI"
                },
                {
                    "id": 14672,
                    "nome": "INOCENCIA",
                    "municipio": "INOCENCIA"
                },
                {
                    "id": 14673,
                    "nome": "SAO RAIMUNDO NONATO, PI",
                    "municipio": "SAO RAIMUNDO NONATO"
                },
                {
                    "id": 14674,
                    "nome": "UNIAO PI",
                    "municipio": "UNIAO"
                },
                {
                    "id": 14675,
                    "nome": "URUCUI, PI",
                    "municipio": "URUCUI"
                },
                {
                    "id": 14676,
                    "nome": "VALENCA DO PIAUI, PI",
                    "municipio": "VALENCA DO PIAUI"
                },
                {
                    "id": 14677,
                    "nome": "ARARUNA, PR",
                    "municipio": "ARARUNA"
                },
                {
                    "id": 14678,
                    "nome": "JACAREPAGUA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14679,
                    "nome": "CAPITAO LEONIDAS MARQUES, PR",
                    "municipio": "CAPITAO LEONIDAS MARQUES"
                },
                {
                    "id": 14680,
                    "nome": "LIDO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14681,
                    "nome": "MANOEL RIBAS, PR",
                    "municipio": "MANOEL RIBAS"
                },
                {
                    "id": 14682,
                    "nome": "BAIRRO SAO CRISTOVAO,URB.CHAPECO, SC",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 14683,
                    "nome": "NOVA PRATA DO IGUACU, PR",
                    "municipio": "NOVA PRATA DO IGUACU"
                },
                {
                    "id": 14684,
                    "nome": "REALEZA, PR",
                    "municipio": "REALEZA"
                },
                {
                    "id": 14685,
                    "nome": "RIO BONITO DO IGUACU, PR",
                    "municipio": "RIO BONITO DO IGUACU"
                },
                {
                    "id": 14686,
                    "nome": "SERRA TALHADA, PE",
                    "municipio": "SERRA TALHADA"
                },
                {
                    "id": 14687,
                    "nome": "Ag�ncia 5860",
                    "municipio": ""
                },
                {
                    "id": 14688,
                    "nome": "SANTO ANTONIO DO SUDOESTE, PR",
                    "municipio": "SANTO ANTONIO DO SUDOESTE"
                },
                {
                    "id": 14689,
                    "nome": "SAO JOAO DO IVAI, PR",
                    "municipio": "SAO JOAO DO IVAI"
                },
                {
                    "id": 14690,
                    "nome": "TRES BARRAS DO PARANA",
                    "municipio": "TRES BARRAS DO PARANA"
                },
                {
                    "id": 14691,
                    "nome": "ITAPERUNA, CENTRO, RJ",
                    "municipio": "ITAPERUNA"
                },
                {
                    "id": 14692,
                    "nome": "APODI, RN",
                    "municipio": "APODI"
                },
                {
                    "id": 14693,
                    "nome": "CANGUARETAMA, RN",
                    "municipio": "CANGUARETAMA"
                },
                {
                    "id": 14694,
                    "nome": "CARAUBAS  RN",
                    "municipio": "CARAUBAS"
                },
                {
                    "id": 14695,
                    "nome": "CEARA-MIRIM, RN",
                    "municipio": "CEARA-MIRIM"
                },
                {
                    "id": 14696,
                    "nome": "GOIANINHA, RN",
                    "municipio": "GOIANINHA"
                },
                {
                    "id": 14697,
                    "nome": "JOAO CAMARA, RN",
                    "municipio": "JOAO CAMARA"
                },
                {
                    "id": 14698,
                    "nome": "MACAIBA, RN",
                    "municipio": "MACAIBA"
                },
                {
                    "id": 14699,
                    "nome": "MACAU, RN",
                    "municipio": "MACAU"
                },
                {
                    "id": 14700,
                    "nome": "MONTE ALEGRE, RN",
                    "municipio": "MONTE ALEGRE"
                },
                {
                    "id": 14701,
                    "nome": "CABO FRIO, CENTRO, RJ",
                    "municipio": "CABO FRIO"
                },
                {
                    "id": 14702,
                    "nome": "NOVA CRUZ, RN",
                    "municipio": "NOVA CRUZ"
                },
                {
                    "id": 14703,
                    "nome": "PAU DOS FERROS, RN",
                    "municipio": "PAU DOS FERROS"
                },
                {
                    "id": 14704,
                    "nome": "SANTO ANTONIO, RN",
                    "municipio": "SANTO ANTONIO"
                },
                {
                    "id": 14705,
                    "nome": "SAO JOSE DE MIPIBU, RN",
                    "municipio": "SAO JOSE DE MIPIBU"
                },
                {
                    "id": 14706,
                    "nome": "5885",
                    "municipio": ""
                },
                {
                    "id": 14707,
                    "nome": "ALTO PARAISO, RO",
                    "municipio": "ALTO PARAISO"
                },
                {
                    "id": 14708,
                    "nome": "CUJUBIM, RO",
                    "municipio": "CUJUBIM"
                },
                {
                    "id": 14709,
                    "nome": "MACHADINHO D'OESTE, RO",
                    "municipio": "MACHADINHO D'OESTE"
                },
                {
                    "id": 14710,
                    "nome": "SAO SIMAO, GO",
                    "municipio": "SAO SIMAO"
                },
                {
                    "id": 14711,
                    "nome": "MONTE NEGRO, RO",
                    "municipio": "MONTE NEGRO"
                },
                {
                    "id": 14712,
                    "nome": "SAO FRANCISCO DO GUAPORE, RO",
                    "municipio": "SAO FRANCISCO DO GUAPORE"
                },
                {
                    "id": 14713,
                    "nome": "BREJO DO CRUZ, PB",
                    "municipio": "BREJO DO CRUZ"
                },
                {
                    "id": 14714,
                    "nome": "MARIALVA, PR",
                    "municipio": "MARIALVA"
                },
                {
                    "id": 14715,
                    "nome": "GURUPI, TO",
                    "municipio": "GURUPI"
                },
                {
                    "id": 14716,
                    "nome": "AG. TOP TIER BLUMENAU, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 14717,
                    "nome": "VILA GERTI,URB.SAO CAETANO DO SUL, SP",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 14718,
                    "nome": "CACEQUI, RS",
                    "municipio": "CACEQUI"
                },
                {
                    "id": 14719,
                    "nome": "GRACA,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14720,
                    "nome": "CHARQUEADAS, RS",
                    "municipio": "CHARQUEADAS"
                },
                {
                    "id": 14721,
                    "nome": "CAETES, PE",
                    "municipio": "CAETES"
                },
                {
                    "id": 14722,
                    "nome": "VILA ENDRES,URB.GUARULHOS,SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 14723,
                    "nome": "RONDON DO PARA, PA",
                    "municipio": "RONDON DO PARA"
                },
                {
                    "id": 14724,
                    "nome": "BARAO DE ITAPURA",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 14725,
                    "nome": "CAMPO ERE, SC",
                    "municipio": "CAMPO ERE"
                },
                {
                    "id": 14726,
                    "nome": "NOVA MAMORE, RO",
                    "municipio": "NOVA MAMORE"
                },
                {
                    "id": 14727,
                    "nome": "ARENAPOLIS, MT",
                    "municipio": "ARENAPOLIS"
                },
                {
                    "id": 14728,
                    "nome": "CAPELA, SE",
                    "municipio": "CAPELA"
                },
                {
                    "id": 14729,
                    "nome": "ITABAIANINHA, SE",
                    "municipio": "ITABAIANINHA"
                },
                {
                    "id": 14730,
                    "nome": "NOSSA SENHORA DA GLORIA, SE",
                    "municipio": "NOSSA SENHORA DA GLORIA"
                },
                {
                    "id": 14731,
                    "nome": "Ag�ncia 5979",
                    "municipio": ""
                },
                {
                    "id": 14732,
                    "nome": "CHAPADA GUIMARAES, MT",
                    "municipio": "CHAPADA DOS GUIMARAES"
                },
                {
                    "id": 14733,
                    "nome": "SAO CRISTOVAO, SE",
                    "municipio": "SAO CRISTOVAO"
                },
                {
                    "id": 14734,
                    "nome": "SIMAO DIAS, SE",
                    "municipio": "SIMAO DIAS"
                },
                {
                    "id": 14735,
                    "nome": "TOBIAS BARRETO, SE",
                    "municipio": "TOBIAS BARRETO"
                },
                {
                    "id": 14736,
                    "nome": "AGUAS DA PRATA, SP",
                    "municipio": "AGUAS DA PRATA"
                },
                {
                    "id": 14737,
                    "nome": "CANANEIA, SP",
                    "municipio": "CANANEIA"
                },
                {
                    "id": 14738,
                    "nome": "CESARIO LANGE, SP",
                    "municipio": "CESARIO LANGE"
                },
                {
                    "id": 14739,
                    "nome": "Ag�ncia 599",
                    "municipio": ""
                },
                {
                    "id": 14740,
                    "nome": "MONTE ALEGRE DO SUL, SP",
                    "municipio": "MONTE ALEGRE DO SUL"
                },
                {
                    "id": 14741,
                    "nome": "JAU, CENTRO, SP",
                    "municipio": "JAU"
                },
                {
                    "id": 14742,
                    "nome": "ANTONIO SALES,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 14743,
                    "nome": "DOIS VIZINHOS, PR",
                    "municipio": "DOIS VIZINHOS"
                },
                {
                    "id": 14744,
                    "nome": "AVENIDA REPUBLICA ARGENTINA,URB.FOZ DO IGUACU, PR",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 14745,
                    "nome": "PARADA DE TAIPAS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14746,
                    "nome": "RODOVIA  DO SOL,URB.GUARAPARI, ES",
                    "municipio": "GUARAPARI"
                },
                {
                    "id": 14747,
                    "nome": "GUARATUBA, PR",
                    "municipio": "GUARATUBA"
                },
                {
                    "id": 14748,
                    "nome": "AVENIDA SAO JOAO,URB.SAO JOSE DOS CAMPOS, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 14749,
                    "nome": "FAXINAL, PR",
                    "municipio": "FAXINAL"
                },
                {
                    "id": 14750,
                    "nome": "6017",
                    "municipio": ""
                },
                {
                    "id": 14751,
                    "nome": "CANSANCAO, BA",
                    "municipio": "CANSANCAO"
                },
                {
                    "id": 14752,
                    "nome": "Ag�ncia 6025",
                    "municipio": ""
                },
                {
                    "id": 14753,
                    "nome": "CAVALEIRO,URB.JABOATAO DOS GUARARAPES, PE",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 14754,
                    "nome": "60291",
                    "municipio": ""
                },
                {
                    "id": 14755,
                    "nome": "CAMPOS BELOS, GO",
                    "municipio": "CAMPOS BELOS"
                },
                {
                    "id": 14756,
                    "nome": "ESPIRITO SANTO DO TURVO, SP",
                    "municipio": "ESPIRITO SANTO DO TURVO"
                },
                {
                    "id": 14757,
                    "nome": "CABROBO, PE",
                    "municipio": "CABROBO"
                },
                {
                    "id": 14758,
                    "nome": "OURICURI, PE",
                    "municipio": "OURICURI"
                },
                {
                    "id": 14759,
                    "nome": "60348",
                    "municipio": ""
                },
                {
                    "id": 14760,
                    "nome": "SANTA MARIA DA BOA VISTA, PE",
                    "municipio": "SANTA MARIA DA BOA VISTA"
                },
                {
                    "id": 14761,
                    "nome": "AGUAS BELAS, PE",
                    "municipio": "AGUAS BELAS"
                },
                {
                    "id": 14762,
                    "nome": "Ag�ncia 60360",
                    "municipio": ""
                },
                {
                    "id": 14763,
                    "nome": "BOM CONSELHO, PE",
                    "municipio": "BOM CONSELHO"
                },
                {
                    "id": 14764,
                    "nome": "FERNANDO DE NORONHA, PE",
                    "municipio": "FERNANDO DE NORONHA"
                },
                {
                    "id": 14765,
                    "nome": "FLORESTA, PE",
                    "municipio": "FLORESTA"
                },
                {
                    "id": 14766,
                    "nome": "60390",
                    "municipio": ""
                },
                {
                    "id": 14767,
                    "nome": "VIANOPOLIS, GO",
                    "municipio": "VIANOPOLIS"
                },
                {
                    "id": 14768,
                    "nome": "LAJEDO, PE",
                    "municipio": "LAJEDO"
                },
                {
                    "id": 14769,
                    "nome": "PETROLANDIA, PE",
                    "municipio": "PETROLANDIA"
                },
                {
                    "id": 14770,
                    "nome": "Ag�ncia 60419",
                    "municipio": ""
                },
                {
                    "id": 14771,
                    "nome": "RIBEIRAO, PE",
                    "municipio": "RIBEIRAO"
                },
                {
                    "id": 14772,
                    "nome": "60422",
                    "municipio": ""
                },
                {
                    "id": 14773,
                    "nome": "RIO FORMOSO, PE",
                    "municipio": "RIO FORMOSO"
                },
                {
                    "id": 14774,
                    "nome": "SAO BENTO DO UNA, PE",
                    "municipio": "SAO BENTO DO UNA"
                },
                {
                    "id": 14775,
                    "nome": "SAO JOSE DO EGITO, PE",
                    "municipio": "SAO JOSE DO EGITO"
                },
                {
                    "id": 14776,
                    "nome": "6046",
                    "municipio": ""
                },
                {
                    "id": 14777,
                    "nome": "AVENIDA DAS AMOREIRAS,URB.CAMPINAS,SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 14778,
                    "nome": "CANDOI, PR",
                    "municipio": "CANDOI"
                },
                {
                    "id": 14779,
                    "nome": "BURITIS, RO",
                    "municipio": "BURITIS"
                },
                {
                    "id": 14780,
                    "nome": "BRASILIA, CENTRO, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 14781,
                    "nome": "IVAI, PR",
                    "municipio": "IVAI"
                },
                {
                    "id": 14782,
                    "nome": "AVENIDA AUGUSTO MONTENEGRO,URB.BELEM, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 14783,
                    "nome": "ORTIGUEIRA, PR",
                    "municipio": "ORTIGUEIRA"
                },
                {
                    "id": 14784,
                    "nome": "ASSEMBLEIA CEARA,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 14785,
                    "nome": "PEABIRU, PR",
                    "municipio": "PEABIRU"
                },
                {
                    "id": 14786,
                    "nome": "PIEN, PR",
                    "municipio": "PIEN"
                },
                {
                    "id": 14787,
                    "nome": "PRIME MEIER, URB. RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14788,
                    "nome": "PINHAO, PR",
                    "municipio": "PINHAO"
                },
                {
                    "id": 14789,
                    "nome": "608",
                    "municipio": ""
                },
                {
                    "id": 14790,
                    "nome": "PRIME IMPERADOR, URB. RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 14791,
                    "nome": "6087",
                    "municipio": ""
                },
                {
                    "id": 14792,
                    "nome": "SAO PEDRO DO SUACUI, MG",
                    "municipio": "SAO PEDRO DO SUACUI"
                },
                {
                    "id": 14793,
                    "nome": "6090",
                    "municipio": ""
                },
                {
                    "id": 14794,
                    "nome": "BARIRI",
                    "municipio": "BARIRI"
                },
                {
                    "id": 14795,
                    "nome": "BAIRRO SAO GERARDO,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 14796,
                    "nome": "TEIXEIRA SOARES, PR",
                    "municipio": "TEIXEIRA SOARES"
                },
                {
                    "id": 14797,
                    "nome": "TIJUCAS DO SUL, PR",
                    "municipio": "TIJUCAS DO SUL"
                },
                {
                    "id": 14798,
                    "nome": "PREFEITURA MUNICIPAL DO RECIFE - URB. RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 14799,
                    "nome": "61080",
                    "municipio": ""
                },
                {
                    "id": 14800,
                    "nome": "ALEXANIA, GO",
                    "municipio": "ALEXANIA"
                },
                {
                    "id": 14801,
                    "nome": "NOVA ALVORADA DO SUL, MS",
                    "municipio": "NOVA ALVORADA DO SUL"
                },
                {
                    "id": 14802,
                    "nome": "6112",
                    "municipio": ""
                },
                {
                    "id": 14803,
                    "nome": "PADRE BERNARDO, GO",
                    "municipio": "PADRE BERNARDO"
                },
                {
                    "id": 14804,
                    "nome": "PRIME UERJ URB. RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14805,
                    "nome": "CRUZ MACHADO, PR",
                    "municipio": "CRUZ MACHADO"
                },
                {
                    "id": 14806,
                    "nome": "PONTAL DO PARANA, PR",
                    "municipio": "PONTAL DO PARANA"
                },
                {
                    "id": 14807,
                    "nome": "PRIME ESPLANADA DOS MINIST�RIOS - URB. BRAS�LIA, D",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 14808,
                    "nome": "SAO DOMINGOS DO ARAGUAIA, PA",
                    "municipio": "SAO DOMINGOS DO ARAGUAIA"
                },
                {
                    "id": 14809,
                    "nome": "HIGIENOPOLIS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14810,
                    "nome": "CAMANDUCAIA, MG",
                    "municipio": "CAMANDUCAIA"
                },
                {
                    "id": 14811,
                    "nome": "PRACA BOM JESUS   URB  MANDIRITUBA  PR",
                    "municipio": "MANDIRITUBA"
                },
                {
                    "id": 14812,
                    "nome": "ULIANOPOLIS, PA",
                    "municipio": "ULIANOPOLIS"
                },
                {
                    "id": 14813,
                    "nome": "BRASILEIA, AC",
                    "municipio": "BRASILEIA"
                },
                {
                    "id": 14814,
                    "nome": "ARAGUACU",
                    "municipio": "ARAGUACU"
                },
                {
                    "id": 14815,
                    "nome": "ATALAIA, AL",
                    "municipio": "ATALAIA"
                },
                {
                    "id": 14816,
                    "nome": "6167",
                    "municipio": ""
                },
                {
                    "id": 14817,
                    "nome": "AG�NCIA PRIME DIGITAL CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14818,
                    "nome": "BOCA DA MATA, AL",
                    "municipio": "BOCA DA MATA"
                },
                {
                    "id": 14819,
                    "nome": "Ag�ncia 617",
                    "municipio": ""
                },
                {
                    "id": 14820,
                    "nome": "PRIME BELVEDERE,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 14821,
                    "nome": "CAMPO ALEGRE, AL",
                    "municipio": "CAMPO ALEGRE"
                },
                {
                    "id": 14822,
                    "nome": "IMBITUVA, PR",
                    "municipio": "IMBITUVA"
                },
                {
                    "id": 14823,
                    "nome": "6174",
                    "municipio": ""
                },
                {
                    "id": 14824,
                    "nome": "CORURIPE, AL",
                    "municipio": "CORURIPE"
                },
                {
                    "id": 14825,
                    "nome": "NEXT VII",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14826,
                    "nome": "6177",
                    "municipio": ""
                },
                {
                    "id": 14827,
                    "nome": "DELMIRO GOUVEIA, AL",
                    "municipio": "DELMIRO GOUVEIA"
                },
                {
                    "id": 14828,
                    "nome": "GIRAU DO PONCIANO, AL",
                    "municipio": "GIRAU DO PONCIANO"
                },
                {
                    "id": 14829,
                    "nome": "SAO FELIX DO ARAGUAIA",
                    "municipio": "SAO FELIX DO ARAGUAIA"
                },
                {
                    "id": 14830,
                    "nome": "6180",
                    "municipio": ""
                },
                {
                    "id": 14831,
                    "nome": "6182",
                    "municipio": ""
                },
                {
                    "id": 14832,
                    "nome": "6183",
                    "municipio": ""
                },
                {
                    "id": 14833,
                    "nome": "MARAGOGI, AL",
                    "municipio": "MARAGOGI"
                },
                {
                    "id": 14834,
                    "nome": "MARECHAL DEODORO, AL",
                    "municipio": "MARECHAL DEODORO"
                },
                {
                    "id": 14835,
                    "nome": "MURICI, AL",
                    "municipio": "MURICI"
                },
                {
                    "id": 14836,
                    "nome": "6187",
                    "municipio": ""
                },
                {
                    "id": 14837,
                    "nome": "6189",
                    "municipio": ""
                },
                {
                    "id": 14838,
                    "nome": "AVENIDA CUPECE,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14839,
                    "nome": "PORTO CALVO, AL",
                    "municipio": "PORTO CALVO"
                },
                {
                    "id": 14840,
                    "nome": "RIO LARGO, AL",
                    "municipio": "RIO LARGO"
                },
                {
                    "id": 14841,
                    "nome": "SANTANA DO IPANEMA, AL",
                    "municipio": "SANTANA DO IPANEMA"
                },
                {
                    "id": 14842,
                    "nome": "SAO JOSE DA TAPERA, AL",
                    "municipio": "SAO JOSE DA TAPERA"
                },
                {
                    "id": 14843,
                    "nome": "SAO LUIS DO QUITUNDE, AL",
                    "municipio": "SAO LUIS DO QUITUNDE"
                },
                {
                    "id": 14844,
                    "nome": "SAO SEBASTIAO, AL",
                    "municipio": "SAO SEBASTIAO"
                },
                {
                    "id": 14845,
                    "nome": "PRIME ADRIANOPOLIS - URB. MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 14846,
                    "nome": "SAO MANUEL, SP",
                    "municipio": "SAO MANUEL"
                },
                {
                    "id": 14847,
                    "nome": "REDENCAO, PA",
                    "municipio": "REDENCAO"
                },
                {
                    "id": 14848,
                    "nome": "BAIRRO FATIMA,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 14849,
                    "nome": "JAGUAPITA, PR",
                    "municipio": "JAGUAPITA"
                },
                {
                    "id": 14850,
                    "nome": "ARAIOSES, MA",
                    "municipio": "ARAIOSES"
                },
                {
                    "id": 14851,
                    "nome": "TUTOIA, MA",
                    "municipio": "TUTOIA"
                },
                {
                    "id": 14852,
                    "nome": "NOVA LONDRINA   URB  LONDRINA  PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 14853,
                    "nome": "Ag�ncia 623",
                    "municipio": ""
                },
                {
                    "id": 14854,
                    "nome": "Prata - Campina Grande",
                    "municipio": ""
                },
                {
                    "id": 14855,
                    "nome": "LAGO PARQUE   URB  LONDRINA  PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 14856,
                    "nome": "CAMBEBA,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 14857,
                    "nome": "DIGITAL CLASSIC II",
                    "municipio": ""
                },
                {
                    "id": 14858,
                    "nome": "TRIBUNAL DE JUSTICA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14859,
                    "nome": "6249",
                    "municipio": ""
                },
                {
                    "id": 14860,
                    "nome": "CONJUNTO CEARA,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 14861,
                    "nome": "ASSEMBLEIA LEGISLATIVA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14862,
                    "nome": "6253",
                    "municipio": ""
                },
                {
                    "id": 14863,
                    "nome": "AGENCIA MANDAGUARI  PR",
                    "municipio": "MANDAGUARI"
                },
                {
                    "id": 14864,
                    "nome": "JOAQUIM TAVORA, PR",
                    "municipio": "JOAQUIM TAVORA"
                },
                {
                    "id": 14865,
                    "nome": "PARQUE DA UVA,URB.JUNDIAI,SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 14866,
                    "nome": "DETRAN CEARA,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 14867,
                    "nome": "629",
                    "municipio": ""
                },
                {
                    "id": 14868,
                    "nome": "CAPITAO POCO, PA",
                    "municipio": "CAPITAO POCO"
                },
                {
                    "id": 14869,
                    "nome": "Casa Caiada, Olinda",
                    "municipio": ""
                },
                {
                    "id": 14870,
                    "nome": "FERNANDOPOLIS, SP",
                    "municipio": "FERNANDOPOLIS"
                },
                {
                    "id": 14871,
                    "nome": "631",
                    "municipio": ""
                },
                {
                    "id": 14872,
                    "nome": "AVENIDA DOUTOR JOSE RUFINO,URB.RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 14873,
                    "nome": "OURO PRETO, MG",
                    "municipio": "OURO PRETO"
                },
                {
                    "id": 14874,
                    "nome": "PALOTINA  PR",
                    "municipio": "PALOTINA"
                },
                {
                    "id": 14875,
                    "nome": "6326",
                    "municipio": ""
                },
                {
                    "id": 14876,
                    "nome": "BAIRRO HELIOPOLIS,URB.GARANHUNS, PE",
                    "municipio": "GARANHUNS"
                },
                {
                    "id": 14877,
                    "nome": "6328",
                    "municipio": ""
                },
                {
                    "id": 14878,
                    "nome": "MAE DO RIO, PA",
                    "municipio": "MAE DO RIO"
                },
                {
                    "id": 14879,
                    "nome": "6330",
                    "municipio": ""
                },
                {
                    "id": 14880,
                    "nome": "R.JOSE AMA.REIS-UPV (RO)",
                    "municipio": ""
                },
                {
                    "id": 14881,
                    "nome": "ASSARE, CE",
                    "municipio": "ASSARE"
                },
                {
                    "id": 14882,
                    "nome": "JANGA",
                    "municipio": ""
                },
                {
                    "id": 14883,
                    "nome": "JANGA - PAULISTA  PE",
                    "municipio": ""
                },
                {
                    "id": 14884,
                    "nome": "RIO MAR SHOPPING",
                    "municipio": ""
                },
                {
                    "id": 14885,
                    "nome": "6343",
                    "municipio": ""
                },
                {
                    "id": 14886,
                    "nome": "6344",
                    "municipio": ""
                },
                {
                    "id": 14887,
                    "nome": "MAURICIO DE NASSAU,URB.CARUARU, PE",
                    "municipio": "CARUARU"
                },
                {
                    "id": 14888,
                    "nome": "AG�NCIA CORPORATE CURITIBA II, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 14889,
                    "nome": "MINACU, GO",
                    "municipio": "MINACU"
                },
                {
                    "id": 14890,
                    "nome": "PINHALZINHO, SP",
                    "municipio": "PINHALZINHO"
                },
                {
                    "id": 14891,
                    "nome": "PALMARES PAULISTA, SP",
                    "municipio": "PALMARES PAULISTA"
                },
                {
                    "id": 14892,
                    "nome": "RIO BRANCO DO SUL, PR",
                    "municipio": "RIO BRANCO DO SUL"
                },
                {
                    "id": 14893,
                    "nome": "HIDROLANDIA, GO",
                    "municipio": "HIDROLANDIA"
                },
                {
                    "id": 14894,
                    "nome": "TOCANTINOPOLIS, TO",
                    "municipio": "TOCANTINOPOLIS"
                },
                {
                    "id": 14895,
                    "nome": "BORBOREMA,URB.CAMPINA GRANDE, PB",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 14896,
                    "nome": "RIBEIRAO PRETO, CENTRO, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 14897,
                    "nome": "PIRAUBA, MG",
                    "municipio": "PIRAUBA"
                },
                {
                    "id": 14898,
                    "nome": "ALVORADA DO NORTE, GO",
                    "municipio": "ALVORADA DO NORTE"
                },
                {
                    "id": 14899,
                    "nome": "PRIME DIGITAL S�O PAULO II, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 14900,
                    "nome": "IGARAPE-MIRI, PA",
                    "municipio": "IGARAPE-MIRI"
                },
                {
                    "id": 14901,
                    "nome": "BURITIZEIRO, MG",
                    "municipio": "BURITIZEIRO"
                },
                {
                    "id": 14902,
                    "nome": "643",
                    "municipio": ""
                },
                {
                    "id": 14903,
                    "nome": "PITANGA, PR",
                    "municipio": "PITANGA"
                },
                {
                    "id": 14904,
                    "nome": "ACREUNA, GO",
                    "municipio": "ACREUNA"
                },
                {
                    "id": 14905,
                    "nome": "CAMPESTRE, MG",
                    "municipio": "CAMPESTRE"
                },
                {
                    "id": 14906,
                    "nome": "ELOI MENDES, MG",
                    "municipio": "ELOI MENDES"
                },
                {
                    "id": 14907,
                    "nome": "ESTIVA, MG",
                    "municipio": "ESTIVA"
                },
                {
                    "id": 14908,
                    "nome": "JOSE WALTER,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 14909,
                    "nome": "RUA DOM PEDRO II   URB  PONTA GROSSA  PR",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 14910,
                    "nome": "PRIMEIRO DE MAIO, PR",
                    "municipio": "PRIMEIRO DE MAIO"
                },
                {
                    "id": 14911,
                    "nome": "PONTA GROSSA, CENTRO, PR",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 14912,
                    "nome": "PRUDENTOPOLIS, PR",
                    "municipio": "PRUDENTOPOLIS"
                },
                {
                    "id": 14913,
                    "nome": "ALPHAVILLE CAMPINAS, URB. CAMPINAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 14914,
                    "nome": "GUAREI, SP",
                    "municipio": "GUAREI"
                },
                {
                    "id": 14915,
                    "nome": "PORTO FRANCO, MA",
                    "municipio": "PORTO FRANCO"
                },
                {
                    "id": 14916,
                    "nome": "QUATRO BARRAS  PR",
                    "municipio": "QUATRO BARRAS"
                },
                {
                    "id": 14917,
                    "nome": "BURI, SP",
                    "municipio": "BURI"
                },
                {
                    "id": 14918,
                    "nome": "BANANAL, SP",
                    "municipio": "BANANAL"
                },
                {
                    "id": 14919,
                    "nome": "648",
                    "municipio": ""
                },
                {
                    "id": 14920,
                    "nome": "PARDINHO, SP",
                    "municipio": "PARDINHO"
                },
                {
                    "id": 14921,
                    "nome": "QUEDAS DO IGUACU, PR",
                    "municipio": "QUEDAS DO IGUACU"
                },
                {
                    "id": 14922,
                    "nome": "PARANGABA,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 14923,
                    "nome": "CAMPOS, CENTRO, RJ",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 14924,
                    "nome": "CUST�DIA",
                    "municipio": ""
                },
                {
                    "id": 14925,
                    "nome": "CIDADE UNIVERSITARIA USP,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14926,
                    "nome": "IPUBI, PE",
                    "municipio": "IPUBI"
                },
                {
                    "id": 14927,
                    "nome": "6540",
                    "municipio": ""
                },
                {
                    "id": 14928,
                    "nome": "PARELHEIROS, URB. SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14929,
                    "nome": "BRUMADINHO, MG",
                    "municipio": "BRUMADINHO"
                },
                {
                    "id": 14930,
                    "nome": "6550",
                    "municipio": ""
                },
                {
                    "id": 14931,
                    "nome": "VILA SONIA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14932,
                    "nome": "BAIRRO POLVILHO-CAJAMAR, SP",
                    "municipio": "CAJAMAR"
                },
                {
                    "id": 14933,
                    "nome": "6570",
                    "municipio": ""
                },
                {
                    "id": 14934,
                    "nome": "6578",
                    "municipio": ""
                },
                {
                    "id": 14935,
                    "nome": "SAO JOAO DA BARRA, RJ",
                    "municipio": "SAO JOAO DA BARRA"
                },
                {
                    "id": 14936,
                    "nome": "PRIME GRANJA VIANA, URB. COTIA, SP",
                    "municipio": "COTIA"
                },
                {
                    "id": 14937,
                    "nome": "SIRINHAEM, PE",
                    "municipio": "SIRINHAEM"
                },
                {
                    "id": 14938,
                    "nome": "PRIME SETE DE SETEMBRO, URB. RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14939,
                    "nome": "PRIME AVENIDA DAS AMERICAS, URB. RIO DE JANEIRO, R",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14940,
                    "nome": "PRIME NOVA ALPHAVILLE, URB. SANTANA DE PARNAIBA, S",
                    "municipio": "SANTANA DE PARNAIBA"
                },
                {
                    "id": 14941,
                    "nome": "PRIME PRESIDENTE ANTONIO CARLOS, URB. RIO DE JANEI",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14942,
                    "nome": "PIRAJUI, SP",
                    "municipio": "PIRAJUI"
                },
                {
                    "id": 14943,
                    "nome": "BAIRRO CANAA,URB.IPATINGA, MG",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 14944,
                    "nome": "6608",
                    "municipio": ""
                },
                {
                    "id": 14945,
                    "nome": "CACOAL",
                    "municipio": "CACOAL"
                },
                {
                    "id": 14946,
                    "nome": "Ag�ncia 6610",
                    "municipio": ""
                },
                {
                    "id": 14947,
                    "nome": "NOVA RECREIO,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14948,
                    "nome": "PRIME PANAMBY, URB. SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14949,
                    "nome": "PRIME BARAO GERALDO, URB. CAMPINAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 14950,
                    "nome": "BROTAS,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 14951,
                    "nome": "6623",
                    "municipio": ""
                },
                {
                    "id": 14952,
                    "nome": "PRIME NOVA CAMPINAS, URB. CAMPINAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 14953,
                    "nome": "6629",
                    "municipio": ""
                },
                {
                    "id": 14954,
                    "nome": "LARGO DA PENHA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14955,
                    "nome": "RUA XV DE NOVEMBRO   URB  SAO JOSE DOS PINHAIS  PR",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 14956,
                    "nome": "CONCEICAO DOS OUROS, MG",
                    "municipio": "CONCEICAO DOS OUROS"
                },
                {
                    "id": 14957,
                    "nome": "AVENIDA MOZART PINHEIRO DE LUCENA, URB. FORTALEZA,",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 14958,
                    "nome": "CENTRO EMPRESARIAL,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14959,
                    "nome": "SEROPEDICA, RJ",
                    "municipio": "SEROPEDICA"
                },
                {
                    "id": 14960,
                    "nome": "666",
                    "municipio": ""
                },
                {
                    "id": 14961,
                    "nome": "JUARA, MT",
                    "municipio": "JUARA"
                },
                {
                    "id": 14962,
                    "nome": "BRAGANCA, PA",
                    "municipio": "BRAGANCA"
                },
                {
                    "id": 14963,
                    "nome": "6674",
                    "municipio": ""
                },
                {
                    "id": 14964,
                    "nome": "AV  SANTOS DUMONT   URB  LAURO DE FREITAS  BA",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 14965,
                    "nome": "NOVA XAVANTINA",
                    "municipio": "NOVA XAVANTINA"
                },
                {
                    "id": 14966,
                    "nome": "6682",
                    "municipio": ""
                },
                {
                    "id": 14967,
                    "nome": "SERRA DO SALITRE",
                    "municipio": "SERRA DO SALITRE"
                },
                {
                    "id": 14968,
                    "nome": "6690",
                    "municipio": ""
                },
                {
                    "id": 14969,
                    "nome": "AVENIDA JOAQUIM TEOTONIO SEGURADO,URB.PALMAS, TO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 14970,
                    "nome": "PRAIA DO FORTE, MATA DE SAO JOAO, BA",
                    "municipio": "MATA DE SAO JOAO"
                },
                {
                    "id": 14971,
                    "nome": "SIQUEIRA CAMPOS, PR",
                    "municipio": "SIQUEIRA CAMPOS"
                },
                {
                    "id": 14972,
                    "nome": "FLORIDA PAULISTA, SP",
                    "municipio": "FLORIDA PAULISTA"
                },
                {
                    "id": 14973,
                    "nome": "SAUDE,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 14974,
                    "nome": "SANCLERLANDIA, GO",
                    "municipio": "SANCLERLANDIA"
                },
                {
                    "id": 14975,
                    "nome": "6718",
                    "municipio": ""
                },
                {
                    "id": 14976,
                    "nome": "PIRANHAS, GO",
                    "municipio": "PIRANHAS"
                },
                {
                    "id": 14977,
                    "nome": "POSSE, GO",
                    "municipio": "POSSE"
                },
                {
                    "id": 14978,
                    "nome": "6735",
                    "municipio": ""
                },
                {
                    "id": 14979,
                    "nome": "REMANSO, BA",
                    "municipio": "REMANSO"
                },
                {
                    "id": 14980,
                    "nome": "RUA FREI CANECA, URB. RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14981,
                    "nome": "CAETITE, BA",
                    "municipio": "CAETITE"
                },
                {
                    "id": 14982,
                    "nome": "UNI�O DA VIT�RIA, PR",
                    "municipio": "UNIAO DA VITORIA"
                },
                {
                    "id": 14983,
                    "nome": "AREAL, RJ",
                    "municipio": "AREAL"
                },
                {
                    "id": 14984,
                    "nome": "BOM JARDIM, RJ",
                    "municipio": "BOM JARDIM"
                },
                {
                    "id": 14985,
                    "nome": "CARMO, RJ",
                    "municipio": "CARMO"
                },
                {
                    "id": 14986,
                    "nome": "CONCEICAO DE MACABU, RJ",
                    "municipio": "CONCEICAO DE MACABU"
                },
                {
                    "id": 14987,
                    "nome": "GUARACIABA DO NORTE  CE",
                    "municipio": "GUARACIABA DO NORTE"
                },
                {
                    "id": 14988,
                    "nome": "DUAS BARRAS, RJ",
                    "municipio": "DUAS BARRAS"
                },
                {
                    "id": 14989,
                    "nome": "IGUABA GRANDE, RJ",
                    "municipio": "IGUABA GRANDE"
                },
                {
                    "id": 14990,
                    "nome": "ITATIAIA, RJ",
                    "municipio": "ITATIAIA"
                },
                {
                    "id": 14991,
                    "nome": "678",
                    "municipio": ""
                },
                {
                    "id": 14992,
                    "nome": "LAJE DO MURIAE, RJ",
                    "municipio": "LAJE DO MURIAE"
                },
                {
                    "id": 14993,
                    "nome": "MENDES, RJ",
                    "municipio": "MENDES"
                },
                {
                    "id": 14994,
                    "nome": "6789",
                    "municipio": ""
                },
                {
                    "id": 14995,
                    "nome": "PARAGOMINAS, PA",
                    "municipio": "PARAGOMINAS"
                },
                {
                    "id": 14996,
                    "nome": "PARACAMBI, RJ",
                    "municipio": "PARACAMBI"
                },
                {
                    "id": 14997,
                    "nome": "PINHEIRAL, RJ",
                    "municipio": "PINHEIRAL"
                },
                {
                    "id": 14998,
                    "nome": "JANDAIA DO SUL, PR",
                    "municipio": "JANDAIA DO SUL"
                },
                {
                    "id": 14999,
                    "nome": "NOVE DE JULHO,URB.RIBEIRAO PRETO,SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 15000,
                    "nome": "QUISSAMA, RJ",
                    "municipio": "QUISSAMA"
                },
                {
                    "id": 15001,
                    "nome": "BELA VISTA, MS",
                    "municipio": "BELA VISTA"
                },
                {
                    "id": 15002,
                    "nome": "AVENIDA SANTOS DUMONT,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 15003,
                    "nome": "WALDEMAR ALCANTARA,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 15004,
                    "nome": "SAPUCAIA, RJ",
                    "municipio": "SAPUCAIA"
                },
                {
                    "id": 15005,
                    "nome": "ACARAU, CE",
                    "municipio": "ACARAU"
                },
                {
                    "id": 15006,
                    "nome": "ARACATI, CE",
                    "municipio": "ARACATI"
                },
                {
                    "id": 15007,
                    "nome": "TANGUA, RJ",
                    "municipio": "TANGUA"
                },
                {
                    "id": 15008,
                    "nome": "BOA VIAGEM, CE",
                    "municipio": "BOA VIAGEM"
                },
                {
                    "id": 15009,
                    "nome": "JARDIM LUZ,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15010,
                    "nome": "CURICICA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15011,
                    "nome": "RUA VISCONDE DE SEPETIBA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15012,
                    "nome": "BREJO SANTO, CE",
                    "municipio": "BREJO SANTO"
                },
                {
                    "id": 15013,
                    "nome": "6891",
                    "municipio": ""
                },
                {
                    "id": 15014,
                    "nome": "RUA JAPORANGA, URB. ANGRA DOS REIS, RJ",
                    "municipio": "ANGRA DOS REIS"
                },
                {
                    "id": 15015,
                    "nome": "SAO FIDELIS, RJ",
                    "municipio": "SAO FIDELIS"
                },
                {
                    "id": 15016,
                    "nome": "UERJ, URB. RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15017,
                    "nome": "SECRETARIA DA FAZENDA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15018,
                    "nome": "MARINGA, CENTRO, PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 15019,
                    "nome": "RIBEIRA DO POMBAL, BA",
                    "municipio": "RIBEIRA DO POMBAL"
                },
                {
                    "id": 15020,
                    "nome": "SAO LOURENCO DA SERRA, SP",
                    "municipio": "SAO LOURENCO DA SERRA"
                },
                {
                    "id": 15021,
                    "nome": "ARAGUATINS, TO",
                    "municipio": "ARAGUATINS"
                },
                {
                    "id": 15022,
                    "nome": "AUGUSTINOPOLIS  TO",
                    "municipio": "AUGUSTINOPOLIS"
                },
                {
                    "id": 15023,
                    "nome": "TAGUATINGA, TO",
                    "municipio": "TAGUATINGA"
                },
                {
                    "id": 15024,
                    "nome": "SAO JOSE DO RIO CLARO, MT",
                    "municipio": "SAO JOSE DO RIO CLARO"
                },
                {
                    "id": 15025,
                    "nome": "PALMEIRAS DE GOIAS, GO",
                    "municipio": "PALMEIRAS DE GOIAS"
                },
                {
                    "id": 15026,
                    "nome": "FLORESTA AZUL, BA",
                    "municipio": "FLORESTA AZUL"
                },
                {
                    "id": 15027,
                    "nome": "PADRE CICERO,URB.JUAZEIRO DO NORTE, CE",
                    "municipio": "JUAZEIRO DO NORTE"
                },
                {
                    "id": 15028,
                    "nome": "MARACANAU,CENTRO, CE",
                    "municipio": "MARACANAU"
                },
                {
                    "id": 15029,
                    "nome": "BRADESCO DIGITAL NOVA CENTRAL I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15030,
                    "nome": "BRADESCO DIGITAL CURITIBA - PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 15031,
                    "nome": "PRIME DIGITAL ITAPEVA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15032,
                    "nome": "PRIME DIGITAL PAULISTA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15033,
                    "nome": "6939",
                    "municipio": ""
                },
                {
                    "id": 15034,
                    "nome": "SAO GERALDO, MG",
                    "municipio": "SAO GERALDO"
                },
                {
                    "id": 15035,
                    "nome": "POUSO REDONDO, SC",
                    "municipio": "POUSO REDONDO"
                },
                {
                    "id": 15036,
                    "nome": "SAO BERNARDO, MA",
                    "municipio": "SAO BERNARDO"
                },
                {
                    "id": 15037,
                    "nome": "RUSSAS, CE",
                    "municipio": "RUSSAS"
                },
                {
                    "id": 15038,
                    "nome": "ITAIOPOLIS, SC",
                    "municipio": "ITAIOPOLIS"
                },
                {
                    "id": 15039,
                    "nome": "IGARAPE-ACU, PA",
                    "municipio": "IGARAPE-ACU"
                },
                {
                    "id": 15040,
                    "nome": "IBIRA, SP",
                    "municipio": "IBIRA"
                },
                {
                    "id": 15041,
                    "nome": "SANTANA DO ARAGUAIA",
                    "municipio": "SANTANA DO ARAGUAIA"
                },
                {
                    "id": 15042,
                    "nome": "ENGENHEIRO CALDAS, MG",
                    "municipio": "ENGENHEIRO CALDAS"
                },
                {
                    "id": 15043,
                    "nome": "IMBAU, PR",
                    "municipio": "IMBAU"
                },
                {
                    "id": 15044,
                    "nome": "ILHA COMPRIDA, SP",
                    "municipio": "ILHA COMPRIDA"
                },
                {
                    "id": 15045,
                    "nome": "PRATANIA, SP",
                    "municipio": "PRATANIA"
                },
                {
                    "id": 15046,
                    "nome": "BONITO, PE",
                    "municipio": "BONITO"
                },
                {
                    "id": 15047,
                    "nome": "SAO GONCALO DO AMARANTE, CE",
                    "municipio": "SAO GONCALO DO AMARANTE"
                },
                {
                    "id": 15048,
                    "nome": "BREJO DA MADRE DE DEUS, PE",
                    "municipio": "BREJO DA MADRE DE DEUS"
                },
                {
                    "id": 15049,
                    "nome": "6991",
                    "municipio": ""
                },
                {
                    "id": 15050,
                    "nome": "CATENDE, PE",
                    "municipio": "CATENDE"
                },
                {
                    "id": 15051,
                    "nome": "69922",
                    "municipio": ""
                },
                {
                    "id": 15052,
                    "nome": "6993",
                    "municipio": ""
                },
                {
                    "id": 15053,
                    "nome": "SANTA RITA, MA",
                    "municipio": "SANTA RITA"
                },
                {
                    "id": 15054,
                    "nome": "LINS, CENTRO, SP",
                    "municipio": "LINS"
                },
                {
                    "id": 15055,
                    "nome": "TUPI PAULISTA, SP",
                    "municipio": "TUPI PAULISTA"
                },
                {
                    "id": 15056,
                    "nome": "PRIME CENTRO EMPRESARIAL MARIO HENRIQUE SIMONSEN,U",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15057,
                    "nome": "PRINCESA DO NORTE,URB.SOBRAL, CE",
                    "municipio": "SOBRAL"
                },
                {
                    "id": 15058,
                    "nome": "TABULEIRO DO NORTE, CE",
                    "municipio": "TABULEIRO DO NORTE"
                },
                {
                    "id": 15059,
                    "nome": "7038",
                    "municipio": ""
                },
                {
                    "id": 15060,
                    "nome": "ARACOIABA, CE",
                    "municipio": "ARACOIABA"
                },
                {
                    "id": 15061,
                    "nome": "AG. TOP TIER - SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 15062,
                    "nome": "URB RIO DAS OSTRAS-RJ",
                    "municipio": ""
                },
                {
                    "id": 15063,
                    "nome": "COLOMBIA",
                    "municipio": "COLOMBIA"
                },
                {
                    "id": 15064,
                    "nome": "PLATAFORMA TOP TIER - RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 15065,
                    "nome": "TOP TIER - FORTALEZA, PE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 15066,
                    "nome": "TOP TIER - BRASILIA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 15067,
                    "nome": "SANTO ANTONIO JARDIM, SP",
                    "municipio": "SANTO ANTONIO DO JARDIM"
                },
                {
                    "id": 15068,
                    "nome": "PRIME BRASILIA,URB.BRASILIA,DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 15069,
                    "nome": "GUAJARA MIRIM",
                    "municipio": "GUAJARA-MIRIM"
                },
                {
                    "id": 15070,
                    "nome": "ANALANDIA, SP",
                    "municipio": "ANALANDIA"
                },
                {
                    "id": 15071,
                    "nome": "PLATAFORMA TOP TIER - CAMPINAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 15072,
                    "nome": "NOVA PRACA SECA   URB  RIO DE JANEIRO  RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15073,
                    "nome": "PLATAFORMA TOP TIER - BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15074,
                    "nome": "BANDEIRANTES, PR",
                    "municipio": "BANDEIRANTES"
                },
                {
                    "id": 15075,
                    "nome": "MENDONCA, SP",
                    "municipio": "MENDONCA"
                },
                {
                    "id": 15076,
                    "nome": "CENTRAL RIO   URB  RIO DE JANEIRO  RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15077,
                    "nome": "TOP TIER - NITEROI, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 15078,
                    "nome": "TOP TIER - BARRA DA TIJUCA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15079,
                    "nome": "HORIZONTE, CE",
                    "municipio": "HORIZONTE"
                },
                {
                    "id": 15080,
                    "nome": "TOP TIER - SAO PAULO ABCD",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 15081,
                    "nome": "RUA VOLUNTARIOS DA PATRIA   URB  RIO DE JANEIRO  R",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15082,
                    "nome": "NAZARE PAULISTA, SP",
                    "municipio": "NAZARE PAULISTA"
                },
                {
                    "id": 15083,
                    "nome": "PLATAFORMA TOP TIER - PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 15084,
                    "nome": "DOIS DE JULHO   URB  SALVADOR  BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 15085,
                    "nome": "MESSEJANA,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 15086,
                    "nome": "BARBALHA, CE",
                    "municipio": "BARBALHA"
                },
                {
                    "id": 15087,
                    "nome": "7140",
                    "municipio": ""
                },
                {
                    "id": 15088,
                    "nome": "CAMOCIM, CE",
                    "municipio": "CAMOCIM"
                },
                {
                    "id": 15089,
                    "nome": "7151",
                    "municipio": ""
                },
                {
                    "id": 15090,
                    "nome": "7152",
                    "municipio": ""
                },
                {
                    "id": 15091,
                    "nome": "CASCAVEL, CE",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 15092,
                    "nome": "NEXT V � S�O PAULO, SP.",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15093,
                    "nome": "INDIANA, SP",
                    "municipio": "INDIANA"
                },
                {
                    "id": 15094,
                    "nome": "CAMINHO DAS ARVORES   URB  SALVADOR  BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 15095,
                    "nome": "ITAPAJE, CE",
                    "municipio": "ITAPAGE"
                },
                {
                    "id": 15096,
                    "nome": "7196",
                    "municipio": ""
                },
                {
                    "id": 15097,
                    "nome": "CAMBARA, PR",
                    "municipio": "CAMBARA"
                },
                {
                    "id": 15098,
                    "nome": "MOMBACA, CE",
                    "municipio": "MOMBACA"
                },
                {
                    "id": 15099,
                    "nome": "ACAILANDIA, MA",
                    "municipio": "ACAILANDIA"
                },
                {
                    "id": 15100,
                    "nome": "7210",
                    "municipio": ""
                },
                {
                    "id": 15101,
                    "nome": "QUIXERAMOBIM, CE",
                    "municipio": "QUIXERAMOBIM"
                },
                {
                    "id": 15102,
                    "nome": "GRAJAU, MA",
                    "municipio": "GRAJAU"
                },
                {
                    "id": 15103,
                    "nome": "AV  GETULIO VARGAS   URB  CHAPECO  SC",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 15104,
                    "nome": "COCAL DO SUL  SC",
                    "municipio": "COCAL DO SUL"
                },
                {
                    "id": 15105,
                    "nome": "SANTA QUITERIA, CE",
                    "municipio": "SANTA QUITERIA"
                },
                {
                    "id": 15106,
                    "nome": "GUABIRUBA, SC",
                    "municipio": "GUABIRUBA"
                },
                {
                    "id": 15107,
                    "nome": "PORTO NACIONAL",
                    "municipio": "PORTO NACIONAL"
                },
                {
                    "id": 15108,
                    "nome": "NOVA JOINVILLE   URB  JOINVILLE  SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 15109,
                    "nome": "TIANGUA, CE",
                    "municipio": "TIANGUA"
                },
                {
                    "id": 15110,
                    "nome": "MORRO DA FUMACA, SC",
                    "municipio": "MORRO DA FUMACA"
                },
                {
                    "id": 15111,
                    "nome": "OTAC�LIO COSTA, SC",
                    "municipio": "OTACILIO COSTA"
                },
                {
                    "id": 15112,
                    "nome": "PRESIDENTE GETULIO, SC",
                    "municipio": "PRESIDENTE GETULIO"
                },
                {
                    "id": 15113,
                    "nome": "VICOSA DO CEARA, CE",
                    "municipio": "VICOSA DO CEARA"
                },
                {
                    "id": 15114,
                    "nome": "SAO LOURENCO DO OESTE, SC",
                    "municipio": "SAO LOURENCO D'OESTE"
                },
                {
                    "id": 15115,
                    "nome": "IPUEIRAS, CE",
                    "municipio": "IPUEIRAS"
                },
                {
                    "id": 15116,
                    "nome": "CAMPO GRANDE, CENTRO, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 15117,
                    "nome": "ITAGUARA, MG",
                    "municipio": "ITAGUARA"
                },
                {
                    "id": 15118,
                    "nome": "MAURITI, CE",
                    "municipio": "MAURITI"
                },
                {
                    "id": 15119,
                    "nome": "PARAMBU, CE",
                    "municipio": "PARAMBU"
                },
                {
                    "id": 15120,
                    "nome": "NEXT VI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15121,
                    "nome": "CANDIDO RODRIGUES, SP",
                    "municipio": "CANDIDO RODRIGUES"
                },
                {
                    "id": 15122,
                    "nome": "PRACA BARAO DO RIO BRANCO   URB  VITORIA DA CONQUI",
                    "municipio": "VITORIA DA CONQUISTA"
                },
                {
                    "id": 15123,
                    "nome": "OURO PRETO DO OESTE",
                    "municipio": "OURO PRETO DO OESTE"
                },
                {
                    "id": 15124,
                    "nome": "PEDRA BRANCA, CE",
                    "municipio": "PEDRA BRANCA"
                },
                {
                    "id": 15125,
                    "nome": "TABATINGA, AM",
                    "municipio": "TABATINGA"
                },
                {
                    "id": 15126,
                    "nome": "SERRANOPOLIS, GO",
                    "municipio": "SERRANOPOLIS"
                },
                {
                    "id": 15127,
                    "nome": "AG�NCIA PJ ALTO VALOR FARIA LIMA - URB. S�O PAULO,",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15128,
                    "nome": "NOVA CAMBUI   URB  CAMPINAS  SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 15129,
                    "nome": "TAMBORIL, CE",
                    "municipio": "TAMBORIL"
                },
                {
                    "id": 15130,
                    "nome": "JUNQUEIROPOLIS, SP",
                    "municipio": "JUNQUEIROPOLIS"
                },
                {
                    "id": 15131,
                    "nome": "BEC CENTRO COMERCIAL,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 15132,
                    "nome": "CAGECE,URB.FORTALEZA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 15133,
                    "nome": "SAO BENEDITO, CE",
                    "municipio": "SAO BENEDITO"
                },
                {
                    "id": 15134,
                    "nome": "747",
                    "municipio": ""
                },
                {
                    "id": 15135,
                    "nome": "ITAUNA DO SUL, PR",
                    "municipio": "ITAUNA DO SUL"
                },
                {
                    "id": 15136,
                    "nome": "TAMBOARA",
                    "municipio": "TAMBOARA"
                },
                {
                    "id": 15137,
                    "nome": "PIRAJU, SP",
                    "municipio": "PIRAJU"
                },
                {
                    "id": 15138,
                    "nome": "COLIDER",
                    "municipio": "COLIDER"
                },
                {
                    "id": 15139,
                    "nome": "FRECHEIRINHA, CE",
                    "municipio": "FRECHEIRINHA"
                },
                {
                    "id": 15140,
                    "nome": "IBIAPINA, CE",
                    "municipio": "IBIAPINA"
                },
                {
                    "id": 15141,
                    "nome": "NEXT VIII",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15142,
                    "nome": "INDEPENDENCIA, CE",
                    "municipio": "INDEPENDENCIA"
                },
                {
                    "id": 15143,
                    "nome": "IPAUMIRIM, CE",
                    "municipio": "IPAUMIRIM"
                },
                {
                    "id": 15144,
                    "nome": "MILAGRES, CE",
                    "municipio": "MILAGRES"
                },
                {
                    "id": 15145,
                    "nome": "MISSAO VELHA, CE",
                    "municipio": "MISSAO VELHA"
                },
                {
                    "id": 15146,
                    "nome": "758",
                    "municipio": ""
                },
                {
                    "id": 15147,
                    "nome": "ITAITUBA, PA",
                    "municipio": "ITAITUBA"
                },
                {
                    "id": 15148,
                    "nome": "SANTA CRUZ DO RIO PARDO, SP",
                    "municipio": "SANTA CRUZ DO RIO PARDO"
                },
                {
                    "id": 15149,
                    "nome": "NEXT IX",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15150,
                    "nome": "BRADESCO DIGITAL NOVA CENTRAL II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15151,
                    "nome": "AG. BRADESCO DIGITAL NOVA CENTRAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15152,
                    "nome": "AG. BRADESCO DIGITAL NOVA CENTRAL IV - SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15153,
                    "nome": "PRIME PRACA PANAMERICANA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15154,
                    "nome": "CAPANEMA, PA",
                    "municipio": "CAPANEMA"
                },
                {
                    "id": 15155,
                    "nome": "PRIME NOVA CENTRAL,URB.SAO PAULO,SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15156,
                    "nome": "PACAJUS, CE",
                    "municipio": "PACAJUS"
                },
                {
                    "id": 15157,
                    "nome": "BRITANIA, GO",
                    "municipio": "BRITANIA"
                },
                {
                    "id": 15158,
                    "nome": "PACATUBA, CE",
                    "municipio": "PACATUBA"
                },
                {
                    "id": 15159,
                    "nome": "JUQUITIBA  SP",
                    "municipio": "JUQUITIBA"
                },
                {
                    "id": 15160,
                    "nome": "PRIME NITEROI, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 15161,
                    "nome": "769",
                    "municipio": ""
                },
                {
                    "id": 15162,
                    "nome": "IRAPURU, SP",
                    "municipio": "IRAPURU"
                },
                {
                    "id": 15163,
                    "nome": "VARZEA ALEGRE, CE",
                    "municipio": "VARZEA ALEGRE"
                },
                {
                    "id": 15164,
                    "nome": "771",
                    "municipio": ""
                },
                {
                    "id": 15165,
                    "nome": "LARGO SAO MATEUS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15166,
                    "nome": "Ag�ncia 77313",
                    "municipio": ""
                },
                {
                    "id": 15167,
                    "nome": "JARDIM   URB  SANTO ANDRE  SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 15168,
                    "nome": "NOVA ALDEOTA   URB  FORTALEZA  CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 15169,
                    "nome": "PRIME PACAEMBU,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15170,
                    "nome": "MARECHAL   URB  SAO BERNARDO DO CAMPOS  SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 15171,
                    "nome": "GMB SAO CAETANO    URB  SAO CAETANO DO SUL  SP",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 15172,
                    "nome": "AVENIDA JOAO DURVAL,URB.FEIRA DE SANTANA, BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 15173,
                    "nome": "7770",
                    "municipio": ""
                },
                {
                    "id": 15174,
                    "nome": "CINCO CJTOS-U.LONDRI(PR)",
                    "municipio": ""
                },
                {
                    "id": 15175,
                    "nome": "PRIME GONZAGA,URB.SANTOS, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 15176,
                    "nome": "7791",
                    "municipio": ""
                },
                {
                    "id": 15177,
                    "nome": "IMIRIM   URB  SAO PAULO  SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15178,
                    "nome": "PRIME EDIF�CIO INTERNATIONAL PLAZA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15179,
                    "nome": "DRACENA, SP",
                    "municipio": "DRACENA"
                },
                {
                    "id": 15180,
                    "nome": "SITIO CERCADO,URB,CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 15181,
                    "nome": "NEXT X",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15182,
                    "nome": "AV RIO DAS PEDRAS - URB  SAO PAULO  SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15183,
                    "nome": "ITAPECURU MIRIM, MA",
                    "municipio": "ITAPECURU MIRIM"
                },
                {
                    "id": 15184,
                    "nome": "BALSAS, MA",
                    "municipio": "BALSAS"
                },
                {
                    "id": 15185,
                    "nome": "7825",
                    "municipio": ""
                },
                {
                    "id": 15186,
                    "nome": "NOVA BERRINI - URB. S�O PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15187,
                    "nome": "VILA PREL   URB  SAO PAULO  SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15188,
                    "nome": "IPOJUCA, PE",
                    "municipio": "IPOJUCA"
                },
                {
                    "id": 15189,
                    "nome": "Ag�ncia 7850",
                    "municipio": ""
                },
                {
                    "id": 15190,
                    "nome": "7854",
                    "municipio": ""
                },
                {
                    "id": 15191,
                    "nome": "7855",
                    "municipio": ""
                },
                {
                    "id": 15192,
                    "nome": "BRADESCO DIGITAL BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15193,
                    "nome": "PINHEIRO, MA",
                    "municipio": "PINHEIRO"
                },
                {
                    "id": 15194,
                    "nome": "PRIME INDIANOPOLIS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15195,
                    "nome": "7872",
                    "municipio": ""
                },
                {
                    "id": 15196,
                    "nome": "COSTA RICA, MS",
                    "municipio": "COSTA RICA"
                },
                {
                    "id": 15197,
                    "nome": "TAUA, CE",
                    "municipio": "TAUA"
                },
                {
                    "id": 15198,
                    "nome": "PACAEMBU",
                    "municipio": "PACAEMBU"
                },
                {
                    "id": 15199,
                    "nome": "PARANATINGA",
                    "municipio": "PARANATINGA"
                },
                {
                    "id": 15200,
                    "nome": "CODO, MA",
                    "municipio": "CODO"
                },
                {
                    "id": 15201,
                    "nome": "COLORADO DO OESTE",
                    "municipio": "COLORADO DO OESTE"
                },
                {
                    "id": 15202,
                    "nome": "BELEM, PB",
                    "municipio": "BELEM"
                },
                {
                    "id": 15203,
                    "nome": "JARDIM SAO JOAO,URB.GUARULHOS, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 15204,
                    "nome": "7958",
                    "municipio": ""
                },
                {
                    "id": 15205,
                    "nome": "PRIME CAMPOS, RJ",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 15206,
                    "nome": "NOSSA SENHORA DOS NAVEGANTES,URB.PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 15207,
                    "nome": "CACHOEIRA DOURADA  GO",
                    "municipio": "CACHOEIRA DOURADA"
                },
                {
                    "id": 15208,
                    "nome": "LIMEIRA DO OESTE  MG",
                    "municipio": "LIMEIRA DO OESTE"
                },
                {
                    "id": 15209,
                    "nome": "ITAPEVA  MG",
                    "municipio": "ITAPEVA"
                },
                {
                    "id": 15210,
                    "nome": "Ag�ncia 7979",
                    "municipio": ""
                },
                {
                    "id": 15211,
                    "nome": "SHI SUL   URB  BRASILIA  DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 15212,
                    "nome": "POMPEIA",
                    "municipio": "POMPEIA"
                },
                {
                    "id": 15213,
                    "nome": "JUIZ DE FORA, CENTRO, MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 15214,
                    "nome": "ARAPUTANGA",
                    "municipio": "ARAPUTANGA"
                },
                {
                    "id": 15215,
                    "nome": "SAO GABRIEL DO OESTE",
                    "municipio": "SAO GABRIEL DO OESTE"
                },
                {
                    "id": 15216,
                    "nome": "PORTEIRINHA, MG",
                    "municipio": "PORTEIRINHA"
                },
                {
                    "id": 15217,
                    "nome": "ESPIGAO DO OESTE(RO)",
                    "municipio": ""
                },
                {
                    "id": 15218,
                    "nome": "JARU, RO",
                    "municipio": "JARU"
                },
                {
                    "id": 15219,
                    "nome": "RIO MARIA",
                    "municipio": "RIO MARIA"
                },
                {
                    "id": 15220,
                    "nome": "IGUATAMA, MG",
                    "municipio": "IGUATAMA"
                },
                {
                    "id": 15221,
                    "nome": "809",
                    "municipio": ""
                },
                {
                    "id": 15222,
                    "nome": "BAIRRO TAQUARALTO,URB.PALMAS, TO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 15223,
                    "nome": "PRIME JABAQUARA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15224,
                    "nome": "813",
                    "municipio": ""
                },
                {
                    "id": 15225,
                    "nome": "JOAO PAULO II,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15226,
                    "nome": "815",
                    "municipio": ""
                },
                {
                    "id": 15227,
                    "nome": "CIDADE TIRADENTES,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15228,
                    "nome": "PILAR-JAGUARARI, BA",
                    "municipio": "JAGUARARI"
                },
                {
                    "id": 15229,
                    "nome": "818",
                    "municipio": ""
                },
                {
                    "id": 15230,
                    "nome": "SANTA TEREZINHA DE GOIAS, GO",
                    "municipio": "SANTA TEREZINHA DE GOIAS"
                },
                {
                    "id": 15231,
                    "nome": "SANTO ANASTACIO, SP",
                    "municipio": "SANTO ANASTACIO"
                },
                {
                    "id": 15232,
                    "nome": "CRIXAS, GO",
                    "municipio": "CRIXAS"
                },
                {
                    "id": 15233,
                    "nome": "PRIME CARLOS GOMES,URB.PORTO ALEGRE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 15234,
                    "nome": "823",
                    "municipio": ""
                },
                {
                    "id": 15235,
                    "nome": "824",
                    "municipio": ""
                },
                {
                    "id": 15236,
                    "nome": "LARGO JOAO FIUZA, URB. RIBEIRAO PRETO, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 15237,
                    "nome": "CAMACARI,CENTRO, BA",
                    "municipio": "CAMACARI"
                },
                {
                    "id": 15238,
                    "nome": "MATOSO URJ(RJ)",
                    "municipio": ""
                },
                {
                    "id": 15239,
                    "nome": "PARANAVAI, PR",
                    "municipio": "PARANAVAI"
                },
                {
                    "id": 15240,
                    "nome": "831",
                    "municipio": ""
                },
                {
                    "id": 15241,
                    "nome": "832",
                    "municipio": ""
                },
                {
                    "id": 15242,
                    "nome": "FIGUEIRA",
                    "municipio": "FIGUEIRA"
                },
                {
                    "id": 15243,
                    "nome": "SURUBIM, PE",
                    "municipio": "SURUBIM"
                },
                {
                    "id": 15244,
                    "nome": "8350",
                    "municipio": ""
                },
                {
                    "id": 15245,
                    "nome": "MORENO, PE",
                    "municipio": "MORENO"
                },
                {
                    "id": 15246,
                    "nome": "839",
                    "municipio": ""
                },
                {
                    "id": 15247,
                    "nome": "VINTE E CINCO DE MARCO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15248,
                    "nome": "PRIME AV.ANTARTICA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15249,
                    "nome": "SAPEZAL, MT",
                    "municipio": "SAPEZAL"
                },
                {
                    "id": 15250,
                    "nome": "BAIRRO CAJAZEIRAS,URB.SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 15251,
                    "nome": "845",
                    "municipio": ""
                },
                {
                    "id": 15252,
                    "nome": "846",
                    "municipio": ""
                },
                {
                    "id": 15253,
                    "nome": "MARAVILHAS, MG",
                    "municipio": "MARAVILHAS"
                },
                {
                    "id": 15254,
                    "nome": "PRIME PRACA DA ASSEMBLEIA,URB.BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15255,
                    "nome": "PINHEIROS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15256,
                    "nome": "COLMEIA",
                    "municipio": "COLMEIA"
                },
                {
                    "id": 15257,
                    "nome": "IVATE",
                    "municipio": "IVATE"
                },
                {
                    "id": 15258,
                    "nome": "BAIRRO DOS PIMENTAS,URB.GUARULHOS, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 15259,
                    "nome": "TIMON, MA",
                    "municipio": "TIMON"
                },
                {
                    "id": 15260,
                    "nome": "GUAPIMIRIM",
                    "municipio": "GUAPIMIRIM"
                },
                {
                    "id": 15261,
                    "nome": "AGENCIA PRIME SETOR HOSPITALAR SUL, URB BRAS�LIA, ",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 15262,
                    "nome": "JARDIM DAS INDUSTRIAS",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 15263,
                    "nome": "PRIME BARAO DE ITAPURA,URB.CAMPINAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 15264,
                    "nome": "AVENIDA EDGAR FACO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15265,
                    "nome": "CAPELINHA",
                    "municipio": "CAPELINHA"
                },
                {
                    "id": 15266,
                    "nome": "PRIME ITAJAI, SC",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 15267,
                    "nome": "CARDOSO MOREIRA, RJ",
                    "municipio": "CARDOSO MOREIRA"
                },
                {
                    "id": 15268,
                    "nome": "864",
                    "municipio": ""
                },
                {
                    "id": 15269,
                    "nome": "865",
                    "municipio": ""
                },
                {
                    "id": 15270,
                    "nome": "PRIME RUDGE RAMOS,URB.SAO BERNARDO DO CAMPO, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 15271,
                    "nome": "867",
                    "municipio": ""
                },
                {
                    "id": 15272,
                    "nome": "868",
                    "municipio": ""
                },
                {
                    "id": 15273,
                    "nome": "IBOTIRAMA, BA",
                    "municipio": "IBOTIRAMA"
                },
                {
                    "id": 15274,
                    "nome": "MADUREIRA,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15275,
                    "nome": "PRIME CIDADE DE DEUS,URB.OSASCO, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 15276,
                    "nome": "MAUA DA SERRA",
                    "municipio": "MAUA DA SERRA"
                },
                {
                    "id": 15277,
                    "nome": "BARRA WORLD,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15278,
                    "nome": "BORACEIA",
                    "municipio": "BORACEIA"
                },
                {
                    "id": 15279,
                    "nome": "ICOARACI,URB.BELEM, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 15280,
                    "nome": "876",
                    "municipio": ""
                },
                {
                    "id": 15281,
                    "nome": "GRAVATAI,CENTRO,RS",
                    "municipio": "GRAVATAI"
                },
                {
                    "id": 15282,
                    "nome": "PIRABEIRABA-DIST.MUN.JOINVILLE",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 15283,
                    "nome": "TAGUATINGA, CENTRO, CIDADE SATELITE, DF",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 15284,
                    "nome": "GUAIAUNA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15285,
                    "nome": "880",
                    "municipio": ""
                },
                {
                    "id": 15286,
                    "nome": "POUSO ALTO, MG",
                    "municipio": "POUSO ALTO"
                },
                {
                    "id": 15287,
                    "nome": "GAMELEIRA, PE",
                    "municipio": "GAMELEIRA"
                },
                {
                    "id": 15288,
                    "nome": "8823",
                    "municipio": ""
                },
                {
                    "id": 15289,
                    "nome": "RIO DAS OSTRAS, CENTRO, RJ",
                    "municipio": "RIO DAS OSTRAS"
                },
                {
                    "id": 15290,
                    "nome": "PRIME NACOES UNIDAS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15291,
                    "nome": "MANGARATIBA, RJ",
                    "municipio": "MANGARATIBA"
                },
                {
                    "id": 15292,
                    "nome": "VISCONDE DE PIRAJA - URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15293,
                    "nome": "PRIME HIGIENOPOLIS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15294,
                    "nome": "ASTORGA, PR",
                    "municipio": "ASTORGA"
                },
                {
                    "id": 15295,
                    "nome": "PRIME NATAL, CENTRO",
                    "municipio": "NATAL"
                },
                {
                    "id": 15296,
                    "nome": "ENGENHEIRO COELHO, SP",
                    "municipio": "ENGENHEIRO COELHO"
                },
                {
                    "id": 15297,
                    "nome": "AVENIDA MANOEL RIBAS,URB.GUARAPUAVA, PR",
                    "municipio": "GUARAPUAVA"
                },
                {
                    "id": 15298,
                    "nome": "TRIANON,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15299,
                    "nome": "BAIRRO JARAGUA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15300,
                    "nome": "898",
                    "municipio": ""
                },
                {
                    "id": 15301,
                    "nome": "MARECHAL FLORIANO, ES",
                    "municipio": "MARECHAL FLORIANO"
                },
                {
                    "id": 15302,
                    "nome": "RANCHARIA, SP",
                    "municipio": "RANCHARIA"
                },
                {
                    "id": 15303,
                    "nome": "IPIRANGA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15304,
                    "nome": "MUNDO NOVO DE GOIAS, GO",
                    "municipio": "MUNDO NOVO"
                },
                {
                    "id": 15305,
                    "nome": "CASTELANDIA, GO",
                    "municipio": "CASTELANDIA"
                },
                {
                    "id": 15306,
                    "nome": "904",
                    "municipio": ""
                },
                {
                    "id": 15307,
                    "nome": "XINGUARA",
                    "municipio": "XINGUARA"
                },
                {
                    "id": 15308,
                    "nome": "SANTA CRUZ",
                    "municipio": "SANTA CRUZ"
                },
                {
                    "id": 15309,
                    "nome": "NOVA PRATA, RS",
                    "municipio": "NOVA PRATA"
                },
                {
                    "id": 15310,
                    "nome": "PRIME PORTAL DO MORUMBI,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15311,
                    "nome": "SANTANA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15312,
                    "nome": "BRASILANDIA DE MINAS, MG",
                    "municipio": "BRASILANDIA DE MINAS"
                },
                {
                    "id": 15313,
                    "nome": "912",
                    "municipio": ""
                },
                {
                    "id": 15314,
                    "nome": "CAJATI",
                    "municipio": "CAJATI"
                },
                {
                    "id": 15315,
                    "nome": "GUAPE, MG",
                    "municipio": "GUAPE"
                },
                {
                    "id": 15316,
                    "nome": "EXTREMA, MG",
                    "municipio": "EXTREMA"
                },
                {
                    "id": 15317,
                    "nome": "MEDINA, MG",
                    "municipio": "MEDINA"
                },
                {
                    "id": 15318,
                    "nome": "AVENIDA CONEGO LIMA,URB.ARAGUAINA, TO",
                    "municipio": "ARAGUAINA"
                },
                {
                    "id": 15319,
                    "nome": "PC. JULIO MESQUITA(SP)",
                    "municipio": ""
                },
                {
                    "id": 15320,
                    "nome": "TELEMACO BORBA",
                    "municipio": "TELEMACO BORBA"
                },
                {
                    "id": 15321,
                    "nome": "PRIME ALFONSO BOVERO,URB.SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15322,
                    "nome": "CONCEICAO DO ARAGUAIA, PA",
                    "municipio": "CONCEICAO DO ARAGUAIA"
                },
                {
                    "id": 15323,
                    "nome": "COLONIA MURICI-SAO JOSE DOS PINHAIS, PR",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 15324,
                    "nome": "HORTOLANDIA,CENTRO, SP",
                    "municipio": "HORTOLANDIA"
                },
                {
                    "id": 15325,
                    "nome": "PARQUE SAO LUCAS,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15326,
                    "nome": "PINHAIS, CENTRO, PR",
                    "municipio": "PINHAIS"
                },
                {
                    "id": 15327,
                    "nome": "SANTA CECILIA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15328,
                    "nome": "ESPINOSA, MG",
                    "municipio": "ESPINOSA"
                },
                {
                    "id": 15329,
                    "nome": "JARDIM ALEGRE",
                    "municipio": "JARDIM ALEGRE"
                },
                {
                    "id": 15330,
                    "nome": "ROSARIO DO IVAI, PR",
                    "municipio": "ROSARIO DO IVAI"
                },
                {
                    "id": 15331,
                    "nome": "SALINAS",
                    "municipio": "SALINAS"
                },
                {
                    "id": 15332,
                    "nome": "PICOS, PI",
                    "municipio": "PICOS"
                },
                {
                    "id": 15333,
                    "nome": "PRIME BOULEVARD,URB.MANAUS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 15334,
                    "nome": "CASA VERDE,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15335,
                    "nome": "AVENIDA TIRADENTES,URB.LONDRINA, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 15336,
                    "nome": "942",
                    "municipio": ""
                },
                {
                    "id": 15337,
                    "nome": "Ag�ncia 9423",
                    "municipio": ""
                },
                {
                    "id": 15338,
                    "nome": "TURVO",
                    "municipio": "TURVO"
                },
                {
                    "id": 15339,
                    "nome": "SANTA RITA DO ARAGUAIA, GO",
                    "municipio": "SANTA RITA DO ARAGUAIA"
                },
                {
                    "id": 15340,
                    "nome": "NOVA CENTRAL,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15341,
                    "nome": "AVENIDA GEREMARIO DANTAS,URB.RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15342,
                    "nome": "LAPA",
                    "municipio": "LAPA"
                },
                {
                    "id": 15343,
                    "nome": "955",
                    "municipio": ""
                },
                {
                    "id": 15344,
                    "nome": "CAXIAS, MA",
                    "municipio": "CAXIAS"
                },
                {
                    "id": 15345,
                    "nome": "958",
                    "municipio": ""
                },
                {
                    "id": 15346,
                    "nome": "SANTA INES, MA",
                    "municipio": "SANTA INES"
                },
                {
                    "id": 15347,
                    "nome": "MARECHAL DEODORO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15348,
                    "nome": "SAO FRANCISCO DE ITABAPOANA - RJ",
                    "municipio": "SAO FRANCISCO DE ITABAPOANA"
                },
                {
                    "id": 15349,
                    "nome": "PRIME PRACA BENEDITO CALIXTO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15350,
                    "nome": "ESTRADA DO CAMPO LIMPO,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15351,
                    "nome": "SANTA ISABEL DO IVAI",
                    "municipio": "SANTA ISABEL DO IVAI"
                },
                {
                    "id": 15352,
                    "nome": "IBAITI, PR",
                    "municipio": "IBAITI"
                },
                {
                    "id": 15353,
                    "nome": "TATUAPE,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15354,
                    "nome": "FLORIANO, PI",
                    "municipio": "FLORIANO"
                },
                {
                    "id": 15355,
                    "nome": "BARREIRAS, CENTRO, BA",
                    "municipio": "BARREIRAS"
                },
                {
                    "id": 15356,
                    "nome": "ALDEIA DA SERRA,URB.BARUERI, SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 15357,
                    "nome": "PALMEIROPOLIS",
                    "municipio": "PALMEIROPOLIS"
                },
                {
                    "id": 15358,
                    "nome": "PRIME LAGO SUL,URB.BRASILIA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 15359,
                    "nome": "PRIME RIO DE JANEIRO,CENTRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15360,
                    "nome": "CASTANHAL, CENTRO, PA",
                    "municipio": "CASTANHAL"
                },
                {
                    "id": 15361,
                    "nome": "RANGEL PESTANA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15362,
                    "nome": "TAPES, RS",
                    "municipio": "TAPES"
                },
                {
                    "id": 15363,
                    "nome": "QUATRO BOCAS-DIS.TOME ACU",
                    "municipio": "TOME-ACU"
                },
                {
                    "id": 15364,
                    "nome": "CAMPO MAIOR, PI",
                    "municipio": "CAMPO MAIOR"
                },
                {
                    "id": 15365,
                    "nome": "VICOSA, MG",
                    "municipio": "VICOSA"
                },
                {
                    "id": 15366,
                    "nome": "PARACATU, MG",
                    "municipio": "PARACATU"
                },
                {
                    "id": 15367,
                    "nome": "PRIME BENTO GONCALVES, RS",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 15368,
                    "nome": "PRIME CIDADE INDUSTRIAL,URB.CONTAGEM, MG",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 15369,
                    "nome": "CENTRAL,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15370,
                    "nome": "SANTANA, AP",
                    "municipio": "SANTANA"
                },
                {
                    "id": 15371,
                    "nome": "PRIME JARDIM AMERICA,URB.SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15372,
                    "nome": "CANABARRO-TEUTONIA, RS",
                    "municipio": "TEUTONIA"
                },
                {
                    "id": 15373,
                    "nome": "SAO GONCALO DO AMARANTE",
                    "municipio": "SAO GONCALO DO AMARANTE"
                },
                {
                    "id": 15374,
                    "nome": "CRATEUS, CE",
                    "municipio": "CRATEUS"
                },
                {
                    "id": 15375,
                    "nome": "BOM JESUS DE ITABAPOANA",
                    "municipio": "BOM JESUS DO ITABAPOANA"
                },
                {
                    "id": 15376,
                    "nome": "OIAPOQUE, AP",
                    "municipio": "OIAPOQUE"
                }
            ]
        },
        {
            "id": 198,
            "banco": "378",
            "nome": "BANCO BRASILEIRO DE CRÉDITO SOCIEDADE ANÔNIMA",
            "agencias": [
                {
                    "id": 18063,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 109,
            "banco": "218",
            "nome": "BANCO BS2 S.A.",
            "agencias": [
                {
                    "id": 12068,
                    "nome": "MATRIZ",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 12069,
                    "nome": "218",
                    "municipio": ""
                },
                {
                    "id": 12070,
                    "nome": "AGENCIA SAO PAULO",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 105,
            "banco": "208",
            "nome": "BANCO BTG PACTUAL S.A.",
            "agencias": [
                {
                    "id": 12044,
                    "nome": "MATRIZ (BOTAFOGO)",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12045,
                    "nome": "PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 12046,
                    "nome": "CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 12047,
                    "nome": "CAMPO GRANDE",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 12048,
                    "nome": "SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12049,
                    "nome": "S�O PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12050,
                    "nome": "ARTON",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12051,
                    "nome": "ZOOP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12052,
                    "nome": "NVIO BRASIL SERVI�OS DE PAGAMENTOS LTDA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12053,
                    "nome": "BELO HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 12054,
                    "nome": "BAAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12055,
                    "nome": "FORTALEZA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 12056,
                    "nome": "RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 12057,
                    "nome": "BTG+ BUSINESS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12058,
                    "nome": "AQUICARD",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12059,
                    "nome": "AG�NCIA - RIBEIR�O PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 12060,
                    "nome": "BANCO BTG PACTUAL S.A. ZOOM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12061,
                    "nome": "ALIPAY",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12062,
                    "nome": "BANCO BTG PACTUAL S.A. AGENCIA BUSCAPE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12063,
                    "nome": "GEMINI",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 229,
            "banco": "413",
            "nome": "BANCO BV S.A.",
            "agencias": [
                {
                    "id": 18094,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18095,
                    "nome": "AG�NCIA BANCO BV",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 323,
            "banco": "626",
            "nome": "BANCO C6 CONSIGNADO S.A.",
            "agencias": [
                {
                    "id": 18305,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 172,
            "banco": "336",
            "nome": "BANCO C6 S.A.",
            "agencias": [
                {
                    "id": 15479,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 275,
            "banco": "473",
            "nome": "BANCO CAIXA GERAL - BRASIL S.A.",
            "agencias": [
                {
                    "id": 18256,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 20,
            "banco": "40",
            "nome": "BANCO CARGILL S.A.",
            "agencias": [
                {
                    "id": 7744,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 124,
            "banco": "266",
            "nome": "BANCO CEDULA S.A.",
            "agencias": [
                {
                    "id": 15397,
                    "nome": "MATRIZ",
                    "municipio": "RIO DE JANEIRO"
                }
            ]
        },
        {
            "id": 335,
            "banco": "739",
            "nome": "BANCO CETELEM S.A.",
            "agencias": [
                {
                    "id": 18395,
                    "nome": "MATRIZ_BARUERI - SP",
                    "municipio": "BARUERI"
                }
            ]
        },
        {
            "id": 112,
            "banco": "233",
            "nome": "BANCO CIFRA S.A.",
            "agencias": [
                {
                    "id": 12073,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 338,
            "banco": "745",
            "nome": "BANCO CITIBANK S.A.",
            "agencias": [
                {
                    "id": 18398,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18399,
                    "nome": "CURITIBA (PR)",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 18400,
                    "nome": "PAULISTA-TRIANON",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18401,
                    "nome": "TEODORO SAMPAIO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18402,
                    "nome": "CASA VERDE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18403,
                    "nome": "PORTO ALEGRE (RS)",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 18404,
                    "nome": "SANTOS",
                    "municipio": "SANTOS"
                },
                {
                    "id": 18405,
                    "nome": "AG�NCIA GOI�NIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 18406,
                    "nome": "AG�NCIA CAMPINAS CAMBU�",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 18407,
                    "nome": "AG�NCIA SOROCABA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 18408,
                    "nome": "AG�NCIA LONDRINA/PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 18409,
                    "nome": "AG�NCIA PIRACICABA/SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 18410,
                    "nome": "AG�NCIA FLORIAN�POLIS",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 18411,
                    "nome": "AG�NCIA FORTALEZA ALDEOTA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 18412,
                    "nome": "RIBEIRAO PRETO (SP)",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 18413,
                    "nome": "FUNCHAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18414,
                    "nome": "BOA VIAGEM (PE)",
                    "municipio": "RECIFE"
                },
                {
                    "id": 18415,
                    "nome": "SAVASSI (MG)",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 18416,
                    "nome": "RIO DE JANEIRO RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18417,
                    "nome": "CENTRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18418,
                    "nome": "MOEMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18419,
                    "nome": "LAPA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18420,
                    "nome": "VILA MARIANA_(SP)",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18421,
                    "nome": "MINI BRANCH COM�RCIO",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 18422,
                    "nome": "CAMPINAS (SP)",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 18423,
                    "nome": "SUMAR�",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18424,
                    "nome": "CENESP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18425,
                    "nome": "BROOKLIN",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18426,
                    "nome": "CASTELO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18427,
                    "nome": "CENTRO C�VICO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 18428,
                    "nome": "LOURDES",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 18429,
                    "nome": "S�O CAETANO",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 18430,
                    "nome": "OSASCO",
                    "municipio": "OSASCO"
                },
                {
                    "id": 18431,
                    "nome": "WTC       (SP)",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18432,
                    "nome": "RECIFE (PE)",
                    "municipio": "RECIFE"
                },
                {
                    "id": 18433,
                    "nome": "ALPHAVILLE",
                    "municipio": "BARUERI"
                },
                {
                    "id": 18434,
                    "nome": "CH�CARA FLORA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18435,
                    "nome": "SALVADOR",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 18436,
                    "nome": "BATEL - CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 18437,
                    "nome": "MANGABEIRAS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 18438,
                    "nome": "MOOCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18439,
                    "nome": "PRAIA DE BOTAFOGO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18440,
                    "nome": "INDIAN�POLIS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18441,
                    "nome": "BRASILIA (DF)",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 18442,
                    "nome": "AG�NCIA JUNDIA�",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 18443,
                    "nome": "AGENCIA ANALIA FRANCO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18444,
                    "nome": "BELO HORIZONTE (MG)",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 18445,
                    "nome": "GUARULHOS",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 18446,
                    "nome": "LAGO SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 18447,
                    "nome": "SANTANA",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 114,
            "banco": "241",
            "nome": "BANCO CLASSICO S.A.",
            "agencias": [
                {
                    "id": 15377,
                    "nome": "MATRIZ",
                    "municipio": "RIO DE JANEIRO"
                }
            ]
        },
        {
            "id": 347,
            "banco": "756",
            "nome": "BANCO COOPERATIVO SICOOB S.A. - BANCO SICOOB",
            "agencias": [
                {
                    "id": 18492,
                    "nome": "SICOOB PE",
                    "municipio": ""
                },
                {
                    "id": 18493,
                    "nome": "BANCO COOPERATIVO DO BRASIL S/A",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 18494,
                    "nome": "CENTRO DE PROCESSAMENTO DE SERVICOS   BH",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 18495,
                    "nome": "Ag�ncia 335",
                    "municipio": ""
                },
                {
                    "id": 18496,
                    "nome": "Ag�ncia 3358",
                    "municipio": ""
                },
                {
                    "id": 18497,
                    "nome": "CENTRO DE PROCESSAMENTO DE SERVI�OS -  CPS S�O PAU",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18498,
                    "nome": "429",
                    "municipio": ""
                },
                {
                    "id": 18499,
                    "nome": "4293",
                    "municipio": ""
                },
                {
                    "id": 18500,
                    "nome": "MATRIZ",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 18501,
                    "nome": "Ag�ncia 5004",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 341,
            "banco": "748",
            "nome": "BANCO COOPERATIVO SICREDI S.A.",
            "agencias": [
                {
                    "id": 18468,
                    "nome": "AG. SEDE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 18469,
                    "nome": "210",
                    "municipio": ""
                },
                {
                    "id": 18470,
                    "nome": "Ag�ncia 2101",
                    "municipio": ""
                },
                {
                    "id": 18471,
                    "nome": "220",
                    "municipio": ""
                },
                {
                    "id": 18472,
                    "nome": "2201",
                    "municipio": ""
                },
                {
                    "id": 18473,
                    "nome": "AV. LINS PETIT - RECIFE/PE",
                    "municipio": ""
                },
                {
                    "id": 18474,
                    "nome": "Ag�ncia 2205",
                    "municipio": ""
                },
                {
                    "id": 18475,
                    "nome": "Ag�ncia 22050",
                    "municipio": ""
                },
                {
                    "id": 18476,
                    "nome": "Ag�ncia 2206",
                    "municipio": ""
                },
                {
                    "id": 18477,
                    "nome": "221",
                    "municipio": ""
                },
                {
                    "id": 18478,
                    "nome": "SICREDI PERNAMBUCRED",
                    "municipio": ""
                },
                {
                    "id": 18479,
                    "nome": "Ag�ncia 2211",
                    "municipio": ""
                },
                {
                    "id": 18480,
                    "nome": "Ag�ncia 313",
                    "municipio": ""
                },
                {
                    "id": 18481,
                    "nome": "AG. CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 18482,
                    "nome": "AG. CUIABA",
                    "municipio": "CUIABA"
                },
                {
                    "id": 18483,
                    "nome": "AG. CAMPO GRANDE",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 18484,
                    "nome": "Ag�ncia 911",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 110,
            "banco": "222",
            "nome": "BANCO CRÉDIT AGRICOLE BRASIL S.A.",
            "agencias": [
                {
                    "id": 12071,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 286,
            "banco": "505",
            "nome": "BANCO CREDIT SUISSE (BRASIL) S.A.",
            "agencias": [
                {
                    "id": 18267,
                    "nome": "SAO PAULO",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 29,
            "banco": "69",
            "nome": "BANCO CREFISA S.A.",
            "agencias": [
                {
                    "id": 8314,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 191,
            "banco": "368",
            "nome": "BANCO CSF S.A.",
            "agencias": [
                {
                    "id": 18055,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 2,
            "banco": "3",
            "nome": "BANCO DA AMAZONIA S.A.",
            "agencias": [
                {
                    "id": 4180,
                    "nome": "ARIQUEMES",
                    "municipio": "ARIQUEMES"
                },
                {
                    "id": 4181,
                    "nome": "ALENQUER",
                    "municipio": "ALENQUER"
                },
                {
                    "id": 4182,
                    "nome": "TUCURUI",
                    "municipio": "TUCURUI"
                },
                {
                    "id": 4183,
                    "nome": "BOCA DO ACRE",
                    "municipio": "BOCA DO ACRE"
                },
                {
                    "id": 4184,
                    "nome": "BRAGANCA",
                    "municipio": "BRAGANCA"
                },
                {
                    "id": 4185,
                    "nome": "ITAITUBA",
                    "municipio": "ITAITUBA"
                },
                {
                    "id": 4186,
                    "nome": "CARAUARI",
                    "municipio": "CARAUARI"
                },
                {
                    "id": 4187,
                    "nome": "PARAUPEBAS",
                    "municipio": "PARAUAPEBAS"
                },
                {
                    "id": 4188,
                    "nome": "SAO FELIX DO XINGU",
                    "municipio": "SAO FELIX DO XINGU"
                },
                {
                    "id": 4189,
                    "nome": "OBIDOS",
                    "municipio": "OBIDOS"
                },
                {
                    "id": 4190,
                    "nome": "BRASILEIA",
                    "municipio": "BRASILEIA"
                },
                {
                    "id": 4191,
                    "nome": "RONDONOPOLIS",
                    "municipio": "RONDONOPOLIS"
                },
                {
                    "id": 4192,
                    "nome": "ANANINDEUA CIDADE NOVA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 4193,
                    "nome": "ARAGUAINA",
                    "municipio": "ARAGUAINA"
                },
                {
                    "id": 4194,
                    "nome": "PALMAS",
                    "municipio": "PALMAS"
                },
                {
                    "id": 4195,
                    "nome": "BELEM REDUTO",
                    "municipio": "BELEM"
                },
                {
                    "id": 4196,
                    "nome": "PACAJ�",
                    "municipio": "PACAJA"
                },
                {
                    "id": 4197,
                    "nome": "MIRANORTE",
                    "municipio": "MIRANORTE"
                },
                {
                    "id": 4198,
                    "nome": "NOVO PROGRESSO",
                    "municipio": "NOVO PROGRESSO"
                },
                {
                    "id": 4199,
                    "nome": "BURITIS",
                    "municipio": "BURITIS"
                },
                {
                    "id": 4200,
                    "nome": "XAPURI",
                    "municipio": "XAPURI"
                },
                {
                    "id": 4201,
                    "nome": "CACERES",
                    "municipio": "CACERES"
                },
                {
                    "id": 4202,
                    "nome": "REDENCAO",
                    "municipio": "REDENCAO"
                },
                {
                    "id": 4203,
                    "nome": "NOVO REPARTIMENTO",
                    "municipio": "NOVO REPARTIMENTO"
                },
                {
                    "id": 4204,
                    "nome": "CAMETA",
                    "municipio": "CAMETA"
                },
                {
                    "id": 4205,
                    "nome": "COLINAS DO TOCANTINS",
                    "municipio": "COLINAS DO TOCANTINS"
                },
                {
                    "id": 4206,
                    "nome": "ROLIM DE MOURA",
                    "municipio": "ROLIM DE MOURA"
                },
                {
                    "id": 4207,
                    "nome": "AVENIDA CEARA   RIO BRANCO",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 4208,
                    "nome": "PARA�SO DO TOCANTINS",
                    "municipio": "PARAISO DO TOCANTINS"
                },
                {
                    "id": 4209,
                    "nome": "URUARA",
                    "municipio": "URUARA"
                },
                {
                    "id": 4210,
                    "nome": "ESTREITO",
                    "municipio": "ESTREITO"
                },
                {
                    "id": 4211,
                    "nome": "AGENCIA ICOARACI",
                    "municipio": "BELEM"
                },
                {
                    "id": 4212,
                    "nome": "LUCAS DO RIO VERDE",
                    "municipio": "LUCAS DO RIO VERDE"
                },
                {
                    "id": 4213,
                    "nome": "CAPANEMA",
                    "municipio": "CAPANEMA"
                },
                {
                    "id": 4214,
                    "nome": "SANTANA",
                    "municipio": "SANTANA"
                },
                {
                    "id": 4215,
                    "nome": "SINOP",
                    "municipio": "SINOP"
                },
                {
                    "id": 4216,
                    "nome": "TAILANDIA",
                    "municipio": "TAILANDIA"
                },
                {
                    "id": 4217,
                    "nome": "AG�NCIA TUCUM�",
                    "municipio": "TUCUMA"
                },
                {
                    "id": 4218,
                    "nome": "ARAGUATINS",
                    "municipio": "ARAGUATINS"
                },
                {
                    "id": 4219,
                    "nome": "RONDON DO PARA",
                    "municipio": "RONDON DO PARA"
                },
                {
                    "id": 4220,
                    "nome": "CANA� DOS CARAJ�S",
                    "municipio": "CANAA DOS CARAJAS"
                },
                {
                    "id": 4221,
                    "nome": "CASTANHAL",
                    "municipio": "CASTANHAL"
                },
                {
                    "id": 4222,
                    "nome": "VITORIA DO MEARIM",
                    "municipio": "VITORIA DO MEARIM"
                },
                {
                    "id": 4223,
                    "nome": "XAMBIOA",
                    "municipio": "XAMBIOA"
                },
                {
                    "id": 4224,
                    "nome": "XINGUARA",
                    "municipio": "XINGUARA"
                },
                {
                    "id": 4225,
                    "nome": "DOM ELISEU",
                    "municipio": "DOM ELISEU"
                },
                {
                    "id": 4226,
                    "nome": "TEF�",
                    "municipio": "TEFE"
                },
                {
                    "id": 4227,
                    "nome": "EXTREMA",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 4228,
                    "nome": "ELDORADO DOS CARAJAS",
                    "municipio": "ELDORADO DOS CARAJAS"
                },
                {
                    "id": 4229,
                    "nome": "COARI",
                    "municipio": "COARI"
                },
                {
                    "id": 4230,
                    "nome": "MANAUS-CACHOEIRINHA",
                    "municipio": "MANAUS"
                },
                {
                    "id": 4231,
                    "nome": "GIRASS�IS - PALMAS",
                    "municipio": "PALMAS"
                },
                {
                    "id": 4232,
                    "nome": "MARABA CIDADE NOVA",
                    "municipio": "MARABA"
                },
                {
                    "id": 4233,
                    "nome": "ARAGUA�U",
                    "municipio": "ARAGUACU"
                },
                {
                    "id": 4234,
                    "nome": "JACUNDA",
                    "municipio": "JACUNDA"
                },
                {
                    "id": 4235,
                    "nome": "JARU",
                    "municipio": "JARU"
                },
                {
                    "id": 4236,
                    "nome": "PIMENTA BUENO",
                    "municipio": "PIMENTA BUENO"
                },
                {
                    "id": 4237,
                    "nome": "PINHEIRO MACHADO   PORTO VELHO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 4238,
                    "nome": "MANACAPURU",
                    "municipio": "MANACAPURU"
                },
                {
                    "id": 4239,
                    "nome": "SAO MIGUEL DO GUAPORE",
                    "municipio": "SAO MIGUEL DO GUAPORE"
                },
                {
                    "id": 4240,
                    "nome": "PLACIDO DE CASTRO",
                    "municipio": "PLACIDO DE CASTRO"
                },
                {
                    "id": 4241,
                    "nome": "CEREJEIRAS",
                    "municipio": "CEREJEIRAS"
                },
                {
                    "id": 4242,
                    "nome": "SANTANA DO ARAGUAIA",
                    "municipio": "SANTANA DO ARAGUAIA"
                },
                {
                    "id": 4243,
                    "nome": "ABAETETUBA",
                    "municipio": "ABAETETUBA"
                },
                {
                    "id": 4244,
                    "nome": "COROATA",
                    "municipio": "COROATA"
                },
                {
                    "id": 4245,
                    "nome": "CRUZEIRO DO SUL",
                    "municipio": "CRUZEIRO DO SUL"
                },
                {
                    "id": 4246,
                    "nome": "CUIABA",
                    "municipio": "CUIABA"
                },
                {
                    "id": 4247,
                    "nome": "FEIJO",
                    "municipio": "FEIJO"
                },
                {
                    "id": 4248,
                    "nome": "GUAJARA MIRIM",
                    "municipio": "GUAJARA-MIRIM"
                },
                {
                    "id": 4249,
                    "nome": "IMPERATRIZ",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 4250,
                    "nome": "ITACOATIARA",
                    "municipio": "ITACOATIARA"
                },
                {
                    "id": 4251,
                    "nome": "MACAPA",
                    "municipio": "MACAPA"
                },
                {
                    "id": 4252,
                    "nome": "MANAUS CENTRO",
                    "municipio": "MANAUS"
                },
                {
                    "id": 4253,
                    "nome": "MARABA",
                    "municipio": "MARABA"
                },
                {
                    "id": 4254,
                    "nome": "MAUES",
                    "municipio": "MAUES"
                },
                {
                    "id": 4255,
                    "nome": "MONTE ALEGRE",
                    "municipio": "MONTE ALEGRE"
                },
                {
                    "id": 4256,
                    "nome": "NATIVIDADE",
                    "municipio": "NATIVIDADE"
                },
                {
                    "id": 4257,
                    "nome": "PARINTINS",
                    "municipio": "PARINTINS"
                },
                {
                    "id": 4258,
                    "nome": "ALTAMIRA",
                    "municipio": "ALTAMIRA"
                },
                {
                    "id": 4259,
                    "nome": "PEDRO AFONSO",
                    "municipio": "PEDRO AFONSO"
                },
                {
                    "id": 4260,
                    "nome": "PORTO NACIONAL",
                    "municipio": "PORTO NACIONAL"
                },
                {
                    "id": 4261,
                    "nome": "PORTO VELHO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 4262,
                    "nome": "RIO BRANCO",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 4263,
                    "nome": "SANTAREM",
                    "municipio": "SANTAREM"
                },
                {
                    "id": 4264,
                    "nome": "SAO LUIS",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 4265,
                    "nome": "SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4266,
                    "nome": "SENA MADUREIRA",
                    "municipio": "SENA MADUREIRA"
                },
                {
                    "id": 4267,
                    "nome": "BACABAL",
                    "municipio": "BACABAL"
                },
                {
                    "id": 4268,
                    "nome": "SOURE",
                    "municipio": "SOURE"
                },
                {
                    "id": 4269,
                    "nome": "TARAUACA",
                    "municipio": "TARAUACA"
                },
                {
                    "id": 4270,
                    "nome": "TOCANTINOPOLIS",
                    "municipio": "TOCANTINOPOLIS"
                },
                {
                    "id": 4271,
                    "nome": "CAXIAS",
                    "municipio": "CAXIAS"
                },
                {
                    "id": 4272,
                    "nome": "HUMAITA",
                    "municipio": "HUMAITA"
                },
                {
                    "id": 4273,
                    "nome": "DIANOPOLIS",
                    "municipio": "DIANOPOLIS"
                },
                {
                    "id": 4274,
                    "nome": "582",
                    "municipio": ""
                },
                {
                    "id": 4275,
                    "nome": "GURUPI",
                    "municipio": "GURUPI"
                },
                {
                    "id": 4276,
                    "nome": "BALSAS",
                    "municipio": "BALSAS"
                },
                {
                    "id": 4277,
                    "nome": "MIRACEMA DO TOCANTINS",
                    "municipio": "MIRACEMA DO TOCANTINS"
                },
                {
                    "id": 4278,
                    "nome": "SANTA INES",
                    "municipio": "SANTA INES"
                },
                {
                    "id": 4279,
                    "nome": "PARAGOMINAS",
                    "municipio": "PARAGOMINAS"
                },
                {
                    "id": 4280,
                    "nome": "IGARAPE MIRI",
                    "municipio": "IGARAPE-MIRI"
                },
                {
                    "id": 4281,
                    "nome": "BARRA DO GARCAS",
                    "municipio": "BARRA DO GARCAS"
                },
                {
                    "id": 4282,
                    "nome": "CAROLINA",
                    "municipio": "CAROLINA"
                },
                {
                    "id": 4283,
                    "nome": "PINHEIRO",
                    "municipio": "PINHEIRO"
                },
                {
                    "id": 4284,
                    "nome": "BELEM CENTRO",
                    "municipio": "BELEM"
                },
                {
                    "id": 4285,
                    "nome": "BELEM PEDREIRA",
                    "municipio": "BELEM"
                },
                {
                    "id": 4286,
                    "nome": "JI PARANA",
                    "municipio": "JI-PARANA"
                },
                {
                    "id": 4287,
                    "nome": "RUROPOLIS",
                    "municipio": "RUROPOLIS"
                },
                {
                    "id": 4288,
                    "nome": "CONCEICAO DO ARAGUAIA",
                    "municipio": "CONCEICAO DO ARAGUAIA"
                },
                {
                    "id": 4289,
                    "nome": "TOME ACU",
                    "municipio": "TOME-ACU"
                },
                {
                    "id": 4290,
                    "nome": "SAO MIGUEL DO GUAMA",
                    "municipio": "SAO MIGUEL DO GUAMA"
                },
                {
                    "id": 4291,
                    "nome": "SETE DE SETEMBRO   MANAUS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 4292,
                    "nome": "ALTO PARNAIBA",
                    "municipio": "ALTO PARNAIBA"
                },
                {
                    "id": 4293,
                    "nome": "BOA VISTA",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 4294,
                    "nome": "GUARAI",
                    "municipio": "GUARAI"
                },
                {
                    "id": 4295,
                    "nome": "VILHENA",
                    "municipio": "VILHENA"
                },
                {
                    "id": 4296,
                    "nome": "CARACARAI",
                    "municipio": "CARACARAI"
                },
                {
                    "id": 4297,
                    "nome": "TANGARA DA SERRA",
                    "municipio": "TANGARA DA SERRA"
                },
                {
                    "id": 4298,
                    "nome": "CACOAL",
                    "municipio": "CACOAL"
                }
            ]
        },
        {
            "id": 40,
            "banco": "83",
            "nome": "BANCO DA CHINA BRASIL S.A.",
            "agencias": [
                {
                    "id": 8426,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 332,
            "banco": "707",
            "nome": "BANCO DAYCOVAL S.A.",
            "agencias": [
                {
                    "id": 18343,
                    "nome": "BELO HORIZONTE/MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 18344,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18345,
                    "nome": "RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18346,
                    "nome": "CRICIUMA",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 18347,
                    "nome": "JUIZ DE FORA",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 18348,
                    "nome": "CHAPEC�",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 18349,
                    "nome": "PASSO FUNDO - RS",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 18350,
                    "nome": "NOVO HAMBURGO - RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 18351,
                    "nome": "VARGINHA - MG",
                    "municipio": "VARGINHA"
                },
                {
                    "id": 18352,
                    "nome": "CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 18353,
                    "nome": "DOURADOS - MS",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 18354,
                    "nome": "RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 18355,
                    "nome": "PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 18356,
                    "nome": "LONDRINA",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 18357,
                    "nome": "MANAUS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 18358,
                    "nome": "FORTALEZA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 18359,
                    "nome": "FLORIAN�POLIS",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 18360,
                    "nome": "BARRA DA TIJUCA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18361,
                    "nome": "CAXIAS DO SUL",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 18362,
                    "nome": "BRAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18363,
                    "nome": "MACEI�",
                    "municipio": "MACEIO"
                },
                {
                    "id": 18364,
                    "nome": "BRAS�LIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 18365,
                    "nome": "VIT�RIA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 18366,
                    "nome": "CUIAB�",
                    "municipio": "CUIABA"
                },
                {
                    "id": 18367,
                    "nome": "CAMPO GRANDE",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 18368,
                    "nome": "GUARULHOS",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 18369,
                    "nome": "AG. BEL�M",
                    "municipio": "BELEM"
                },
                {
                    "id": 18370,
                    "nome": "CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 18371,
                    "nome": "ARACAJU-SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 18372,
                    "nome": "AG PRESIDENTE JUSCELINO KUBITSCHEK",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18373,
                    "nome": "NATAL",
                    "municipio": "NATAL"
                },
                {
                    "id": 18374,
                    "nome": "VOTORANTIM",
                    "municipio": "VOTORANTIM"
                },
                {
                    "id": 18375,
                    "nome": "UBERL�NDIA",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 18376,
                    "nome": "BOM RETIRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18377,
                    "nome": "GOIANIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 18378,
                    "nome": "SAO BERNARDO DO CAMPO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 18379,
                    "nome": "JO�O PESSOA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 18380,
                    "nome": "AG SAO JOSE DO RIO PRETO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 18381,
                    "nome": "CASCAVEL",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 18382,
                    "nome": "LUCAS DO RIO VERDE",
                    "municipio": "LUCAS DO RIO VERDE"
                },
                {
                    "id": 18383,
                    "nome": "TERESINA - PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 18384,
                    "nome": "S�O LUIS-MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 18385,
                    "nome": "BLUMENAU",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 18386,
                    "nome": "SALVADOR",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 18387,
                    "nome": "RIBEIR�O PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 18388,
                    "nome": "JOINVILLE",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 18389,
                    "nome": "S�O JOSE DOS CAMPOS",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 18390,
                    "nome": "PIRACICABA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 18391,
                    "nome": "S�O CARLOS",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 18392,
                    "nome": "SINOP",
                    "municipio": "SINOP"
                }
            ]
        },
        {
            "id": 147,
            "banco": "300",
            "nome": "BANCO DE LA NACION ARGENTINA",
            "agencias": [
                {
                    "id": 15421,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 285,
            "banco": "495",
            "nome": "BANCO DE LA PROVINCIA DE BUENOS AIRES",
            "agencias": [
                {
                    "id": 18266,
                    "nome": "SAO PAULO",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 330,
            "banco": "654",
            "nome": "BANCO DIGIMAIS S.A.",
            "agencias": [
                {
                    "id": 18335,
                    "nome": "SEDE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18336,
                    "nome": "AG�NCIA PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 18337,
                    "nome": "AGENCIA PAULISTA",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 171,
            "banco": "335",
            "nome": "BANCO DIGIO S.A.",
            "agencias": [
                {
                    "id": 15478,
                    "nome": "MATRIZ",
                    "municipio": "BARUERI"
                }
            ]
        },
        {
            "id": 1,
            "banco": "1",
            "nome": "BANCO DO BRASIL S.A.",
            "agencias": [
                {
                    "id": 1,
                    "nome": "ARCOVERDE (PE)",
                    "municipio": ""
                },
                {
                    "id": 2,
                    "nome": "RIO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3,
                    "nome": "EMPRESA PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 4,
                    "nome": "JACAREZINHO",
                    "municipio": "JACAREZINHO"
                },
                {
                    "id": 5,
                    "nome": "ABAETETUBA",
                    "municipio": "ABAETETUBA"
                },
                {
                    "id": 6,
                    "nome": "BAIRRO MARTINS",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 7,
                    "nome": "MUNDO NOVO-MS",
                    "municipio": "MUNDO NOVO"
                },
                {
                    "id": 8,
                    "nome": "ASA NORTE 504",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 9,
                    "nome": "ASA SUL 507",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 10,
                    "nome": "CUBATAO",
                    "municipio": "CUBATAO"
                },
                {
                    "id": 11,
                    "nome": "CARAPICUIBA",
                    "municipio": "CARAPICUIBA"
                },
                {
                    "id": 12,
                    "nome": "IPATINGA",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 13,
                    "nome": "MEIER",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 14,
                    "nome": "ACARAU",
                    "municipio": "ACARAU"
                },
                {
                    "id": 15,
                    "nome": "AFRANIO",
                    "municipio": "AFRANIO"
                },
                {
                    "id": 16,
                    "nome": "10111",
                    "municipio": ""
                },
                {
                    "id": 17,
                    "nome": "1012",
                    "municipio": ""
                },
                {
                    "id": 18,
                    "nome": "ALEXANDRIA",
                    "municipio": "ALEXANDRIA"
                },
                {
                    "id": 19,
                    "nome": "ALMEIRIM",
                    "municipio": "ALMEIRIM"
                },
                {
                    "id": 20,
                    "nome": "AMELIA RODRIGUES",
                    "municipio": "AMELIA RODRIGUES"
                },
                {
                    "id": 21,
                    "nome": "1019",
                    "municipio": ""
                },
                {
                    "id": 22,
                    "nome": "PORTO VELHO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 23,
                    "nome": "ASSARE",
                    "municipio": "ASSARE"
                },
                {
                    "id": 24,
                    "nome": "CAMPO GRANDE-RN",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 25,
                    "nome": "PRACA DO RELOGIO",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 26,
                    "nome": "BAIXO GUANDU",
                    "municipio": "BAIXO GUANDU"
                },
                {
                    "id": 27,
                    "nome": "BARBALHA",
                    "municipio": "BARBALHA"
                },
                {
                    "id": 28,
                    "nome": "BARRA DO MENDES",
                    "municipio": "BARRA DO MENDES"
                },
                {
                    "id": 29,
                    "nome": "BARREIRINHAS",
                    "municipio": "BARREIRINHAS"
                },
                {
                    "id": 30,
                    "nome": "BELEM SAO FRANCISCO",
                    "municipio": "BELEM DE SAO FRANCISCO"
                },
                {
                    "id": 31,
                    "nome": "10282",
                    "municipio": ""
                },
                {
                    "id": 32,
                    "nome": "BELMONTE",
                    "municipio": "BELMONTE"
                },
                {
                    "id": 33,
                    "nome": "CURVELO",
                    "municipio": "CURVELO"
                },
                {
                    "id": 34,
                    "nome": "BONITO-MS",
                    "municipio": "BONITO"
                },
                {
                    "id": 35,
                    "nome": "CANINDE",
                    "municipio": "CANINDE"
                },
                {
                    "id": 36,
                    "nome": "CARACARAI",
                    "municipio": "CARACARAI"
                },
                {
                    "id": 37,
                    "nome": "CARAUARI",
                    "municipio": "CARAUARI"
                },
                {
                    "id": 38,
                    "nome": "CARAUBAS",
                    "municipio": "CARAUBAS"
                },
                {
                    "id": 39,
                    "nome": "CASCAVEL",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 40,
                    "nome": "MONTES CLAROS",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 41,
                    "nome": "CAUCAIA",
                    "municipio": "CAUCAIA"
                },
                {
                    "id": 42,
                    "nome": "CEARA-MIRIM",
                    "municipio": "CEARA-MIRIM"
                },
                {
                    "id": 43,
                    "nome": "CENTRALINA",
                    "municipio": "CENTRALINA"
                },
                {
                    "id": 44,
                    "nome": "COELHO NETO",
                    "municipio": "COELHO NETO"
                },
                {
                    "id": 45,
                    "nome": "CONCEICAO ALAGOAS",
                    "municipio": "CONCEICAO DAS ALAGOAS"
                },
                {
                    "id": 46,
                    "nome": "CONCEICAO DO COITE",
                    "municipio": "CONCEICAO DO COITE"
                },
                {
                    "id": 47,
                    "nome": "CONDEUBA",
                    "municipio": "CONDEUBA"
                },
                {
                    "id": 48,
                    "nome": "1049",
                    "municipio": ""
                },
                {
                    "id": 49,
                    "nome": "PARAGUACU PAULISTA",
                    "municipio": "PARAGUACU PAULISTA"
                },
                {
                    "id": 50,
                    "nome": "CORURIPE",
                    "municipio": "CORURIPE"
                },
                {
                    "id": 51,
                    "nome": "CRISTALINA",
                    "municipio": "CRISTALINA"
                },
                {
                    "id": 52,
                    "nome": "CUPIRA",
                    "municipio": "CUPIRA"
                },
                {
                    "id": 53,
                    "nome": "CURURUPU",
                    "municipio": "CURURUPU"
                },
                {
                    "id": 54,
                    "nome": "DELMIRO GOUVEIA",
                    "municipio": "DELMIRO GOUVEIA"
                },
                {
                    "id": 55,
                    "nome": "DIONISIO CERQUEIRA",
                    "municipio": "DIONISIO CERQUEIRA"
                },
                {
                    "id": 56,
                    "nome": "DOMINGOS MARTINS",
                    "municipio": "DOMINGOS MARTINS"
                },
                {
                    "id": 57,
                    "nome": "EIRUNEPE",
                    "municipio": "EIRUNEPE"
                },
                {
                    "id": 58,
                    "nome": "ESCADA",
                    "municipio": "ESCADA"
                },
                {
                    "id": 59,
                    "nome": "EXU",
                    "municipio": "EXU"
                },
                {
                    "id": 60,
                    "nome": "CAMPO MAIOR",
                    "municipio": "CAMPO MAIOR"
                },
                {
                    "id": 61,
                    "nome": "1060",
                    "municipio": ""
                },
                {
                    "id": 62,
                    "nome": "10600",
                    "municipio": ""
                },
                {
                    "id": 63,
                    "nome": "FLORESTA-PE",
                    "municipio": "FLORESTA"
                },
                {
                    "id": 64,
                    "nome": "Ag�ncia 10610",
                    "municipio": ""
                },
                {
                    "id": 65,
                    "nome": "10618",
                    "municipio": ""
                },
                {
                    "id": 66,
                    "nome": "FORMOSA RIO PRETO",
                    "municipio": "FORMOSA DO RIO PRETO"
                },
                {
                    "id": 67,
                    "nome": "FREI PAULO",
                    "municipio": "FREI PAULO"
                },
                {
                    "id": 68,
                    "nome": "GILBUES",
                    "municipio": "GILBUES"
                },
                {
                    "id": 69,
                    "nome": "GOIANINHA",
                    "municipio": "GOIANINHA"
                },
                {
                    "id": 70,
                    "nome": "GUIMARANIA",
                    "municipio": "GUIMARANIA"
                },
                {
                    "id": 71,
                    "nome": "IBIMIRIM",
                    "municipio": "IBIMIRIM"
                },
                {
                    "id": 72,
                    "nome": "CANTAGALO-RJ",
                    "municipio": "CANTAGALO"
                },
                {
                    "id": 73,
                    "nome": "IBIRATAIA",
                    "municipio": "IBIRATAIA"
                },
                {
                    "id": 74,
                    "nome": "INHAMBUPE",
                    "municipio": "INHAMBUPE"
                },
                {
                    "id": 75,
                    "nome": "ITABAIANINHA",
                    "municipio": "ITABAIANINHA"
                },
                {
                    "id": 76,
                    "nome": "ITANHOMI",
                    "municipio": "ITANHOMI"
                },
                {
                    "id": 77,
                    "nome": "CALCADAO",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 78,
                    "nome": "ITIUBA",
                    "municipio": "ITIUBA"
                },
                {
                    "id": 79,
                    "nome": "ITUBERA",
                    "municipio": "ITUBERA"
                },
                {
                    "id": 80,
                    "nome": "JACINTO",
                    "municipio": "JACINTO"
                },
                {
                    "id": 81,
                    "nome": "JAGUAQUARA",
                    "municipio": "JAGUAQUARA"
                },
                {
                    "id": 82,
                    "nome": "JUCURUTU",
                    "municipio": "JUCURUTU"
                },
                {
                    "id": 83,
                    "nome": "LAGO DA PEDRA",
                    "municipio": "LAGO DA PEDRA"
                },
                {
                    "id": 84,
                    "nome": "LAJES",
                    "municipio": "LAJES"
                },
                {
                    "id": 85,
                    "nome": "LIVRAMENTO N.SENHORA",
                    "municipio": "LIVRAMENTO DE NOSSA SENHORA"
                },
                {
                    "id": 86,
                    "nome": "MUNDO NOVO-BA",
                    "municipio": "MUNDO NOVO"
                },
                {
                    "id": 87,
                    "nome": "LUZ",
                    "municipio": "LUZ"
                },
                {
                    "id": 88,
                    "nome": "MACAUBAS",
                    "municipio": "MACAUBAS"
                },
                {
                    "id": 89,
                    "nome": "MARA ROSA",
                    "municipio": "MARA ROSA"
                },
                {
                    "id": 90,
                    "nome": "MATA DE SAO JOAO",
                    "municipio": "MATA DE SAO JOAO"
                },
                {
                    "id": 91,
                    "nome": "VILA BELA S.TRINDADE",
                    "municipio": "VILA BELA DA SANTISSIMA TRINDADE"
                },
                {
                    "id": 92,
                    "nome": "MIGUEL CALMON",
                    "municipio": "MIGUEL CALMON"
                },
                {
                    "id": 93,
                    "nome": "MINAS NOVAS",
                    "municipio": "MINAS NOVAS"
                },
                {
                    "id": 94,
                    "nome": "MIRAI",
                    "municipio": "MIRAI"
                },
                {
                    "id": 95,
                    "nome": "MORRO DO CHAPEU",
                    "municipio": "MORRO DO CHAPEU"
                },
                {
                    "id": 96,
                    "nome": "EMPRESA JOAO PESSOA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 97,
                    "nome": "VICOSA",
                    "municipio": "VICOSA"
                },
                {
                    "id": 98,
                    "nome": "MUCUGE",
                    "municipio": "MUCUGE"
                },
                {
                    "id": 99,
                    "nome": "MUTUIPE",
                    "municipio": "MUTUIPE"
                },
                {
                    "id": 100,
                    "nome": "NOVA PETROPOLIS",
                    "municipio": "NOVA PETROPOLIS"
                },
                {
                    "id": 101,
                    "nome": "ORIXIMINA",
                    "municipio": "ORIXIMINA"
                },
                {
                    "id": 102,
                    "nome": "PACAJUS",
                    "municipio": "PACAJUS"
                },
                {
                    "id": 103,
                    "nome": "PARELHAS",
                    "municipio": "PARELHAS"
                },
                {
                    "id": 104,
                    "nome": "PARIPIRANGA",
                    "municipio": "PARIPIRANGA"
                },
                {
                    "id": 105,
                    "nome": "PARNAMIRIM",
                    "municipio": "PARNAMIRIM"
                },
                {
                    "id": 106,
                    "nome": "PAU DOS FERROS",
                    "municipio": "PAU DOS FERROS"
                },
                {
                    "id": 107,
                    "nome": "MIRASSOL",
                    "municipio": "MIRASSOL"
                },
                {
                    "id": 108,
                    "nome": "PAULISTANA",
                    "municipio": "PAULISTANA"
                },
                {
                    "id": 109,
                    "nome": "PECANHA",
                    "municipio": "PECANHA"
                },
                {
                    "id": 110,
                    "nome": "PETROLANDIA",
                    "municipio": "PETROLANDIA"
                },
                {
                    "id": 111,
                    "nome": "11120",
                    "municipio": ""
                },
                {
                    "id": 112,
                    "nome": "PINDOBACU",
                    "municipio": "PINDOBACU"
                },
                {
                    "id": 113,
                    "nome": "PIRENOPOLIS",
                    "municipio": "PIRENOPOLIS"
                },
                {
                    "id": 114,
                    "nome": "POCO VERDE",
                    "municipio": "POCO VERDE"
                },
                {
                    "id": 115,
                    "nome": "PORTO DOS GAUCHOS",
                    "municipio": "PORTO DOS GAUCHOS"
                },
                {
                    "id": 116,
                    "nome": "PORTO NACIONAL",
                    "municipio": "PORTO NACIONAL"
                },
                {
                    "id": 117,
                    "nome": "PRADO",
                    "municipio": "PRADO"
                },
                {
                    "id": 118,
                    "nome": "PRESIDENTE DUTRA",
                    "municipio": "PRESIDENTE DUTRA"
                },
                {
                    "id": 119,
                    "nome": "COLATINA",
                    "municipio": "COLATINA"
                },
                {
                    "id": 120,
                    "nome": "1120",
                    "municipio": ""
                },
                {
                    "id": 121,
                    "nome": "Ag�ncia 11200",
                    "municipio": ""
                },
                {
                    "id": 122,
                    "nome": "11207",
                    "municipio": ""
                },
                {
                    "id": 123,
                    "nome": "REDENCAO",
                    "municipio": "REDENCAO"
                },
                {
                    "id": 124,
                    "nome": "REGENERACAO",
                    "municipio": "REGENERACAO"
                },
                {
                    "id": 125,
                    "nome": "RIACHO DE SANTANA",
                    "municipio": "RIACHO DE SANTANA"
                },
                {
                    "id": 126,
                    "nome": "RUBIM",
                    "municipio": "RUBIM"
                },
                {
                    "id": 127,
                    "nome": "ESTILO GOIANIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 128,
                    "nome": "STA.MARIA BOA VISTA",
                    "municipio": "SANTA MARIA DA BOA VISTA"
                },
                {
                    "id": 129,
                    "nome": "Ag�ncia 11280",
                    "municipio": ""
                },
                {
                    "id": 130,
                    "nome": "11282",
                    "municipio": ""
                },
                {
                    "id": 131,
                    "nome": "SANTA RITA DE CASSIA",
                    "municipio": "SANTA RITA DE CASSIA"
                },
                {
                    "id": 132,
                    "nome": "SANTO ANASTACIO",
                    "municipio": "SANTO ANASTACIO"
                },
                {
                    "id": 133,
                    "nome": "SANTA LUZ",
                    "municipio": "SANTALUZ"
                },
                {
                    "id": 134,
                    "nome": "SANTO ESTEVAO",
                    "municipio": "SANTO ESTEVAO"
                },
                {
                    "id": 135,
                    "nome": "SAO BENTO",
                    "municipio": "SAO BENTO"
                },
                {
                    "id": 136,
                    "nome": "SAO FELIX ARAGUAIA",
                    "municipio": "SAO FELIX DO ARAGUAIA"
                },
                {
                    "id": 137,
                    "nome": "S.GABRIEL CACHOEIRA",
                    "municipio": "SAO GABRIEL DA CACHOEIRA"
                },
                {
                    "id": 138,
                    "nome": "SAO JOSE DA LAJE",
                    "municipio": "SAO JOSE DA LAJE"
                },
                {
                    "id": 139,
                    "nome": "SAO LOURENCO DA MATA",
                    "municipio": "SAO LOURENCO DA MATA"
                },
                {
                    "id": 140,
                    "nome": "SAO LUIS DO QUITUNDE",
                    "municipio": "SAO LUIS DO QUITUNDE"
                },
                {
                    "id": 141,
                    "nome": "CAFELANDIA",
                    "municipio": "CAFELANDIA"
                },
                {
                    "id": 142,
                    "nome": "SAO MIGUEL",
                    "municipio": "SAO MIGUEL"
                },
                {
                    "id": 143,
                    "nome": "SAO SEBASTIAO PASSE",
                    "municipio": "SAO SEBASTIAO DO PASSE"
                },
                {
                    "id": 144,
                    "nome": "SERRA BRANCA",
                    "municipio": "SERRA BRANCA"
                },
                {
                    "id": 145,
                    "nome": "SERRO",
                    "municipio": "SERRO"
                },
                {
                    "id": 146,
                    "nome": "SERTANIA",
                    "municipio": "SERTANIA"
                },
                {
                    "id": 147,
                    "nome": "Ag�ncia 11460",
                    "municipio": ""
                },
                {
                    "id": 148,
                    "nome": "SIDROLANDIA",
                    "municipio": "SIDROLANDIA"
                },
                {
                    "id": 149,
                    "nome": "SIMPLICIO MENDES",
                    "municipio": "SIMPLICIO MENDES"
                },
                {
                    "id": 150,
                    "nome": "SOLEDADE",
                    "municipio": "SOLEDADE"
                },
                {
                    "id": 151,
                    "nome": "PALMARES",
                    "municipio": "PALMARES"
                },
                {
                    "id": 152,
                    "nome": "SOLONOPOLE",
                    "municipio": "SOLONOPOLE"
                },
                {
                    "id": 153,
                    "nome": "SOURE",
                    "municipio": "SOURE"
                },
                {
                    "id": 154,
                    "nome": "TANHACU",
                    "municipio": "TANHACU"
                },
                {
                    "id": 155,
                    "nome": "TAQUARITINGA NORTE",
                    "municipio": "TAQUARITINGA DO NORTE"
                },
                {
                    "id": 156,
                    "nome": "TARUMIRIM",
                    "municipio": "TARUMIRIM"
                },
                {
                    "id": 157,
                    "nome": "TAUA",
                    "municipio": "TAUA"
                },
                {
                    "id": 158,
                    "nome": "TEIXEIRA",
                    "municipio": "TEIXEIRA"
                },
                {
                    "id": 159,
                    "nome": "TIANGUA",
                    "municipio": "TIANGUA"
                },
                {
                    "id": 160,
                    "nome": "TORIXOREU",
                    "municipio": "TORIXOREU"
                },
                {
                    "id": 161,
                    "nome": "TRES MARIAS",
                    "municipio": "TRES MARIAS"
                },
                {
                    "id": 162,
                    "nome": "TUCURUI",
                    "municipio": "TUCURUI"
                },
                {
                    "id": 163,
                    "nome": "1162",
                    "municipio": ""
                },
                {
                    "id": 164,
                    "nome": "UBATA",
                    "municipio": "UBATA"
                },
                {
                    "id": 165,
                    "nome": "UIRAUNA",
                    "municipio": "UIRAUNA"
                },
                {
                    "id": 166,
                    "nome": "URUBURETAMA",
                    "municipio": "URUBURETAMA"
                },
                {
                    "id": 167,
                    "nome": "WANDERLEY",
                    "municipio": "WANDERLEY"
                },
                {
                    "id": 168,
                    "nome": "VARZEA ALEGRE",
                    "municipio": "VARZEA ALEGRE"
                },
                {
                    "id": 169,
                    "nome": "PROPRIA",
                    "municipio": "PROPRIA"
                },
                {
                    "id": 170,
                    "nome": "XIQUE-XIQUE",
                    "municipio": "XIQUE-XIQUE"
                },
                {
                    "id": 171,
                    "nome": "MOGI-GUACU",
                    "municipio": "MOGI-GUACU"
                },
                {
                    "id": 172,
                    "nome": "CASA VERDE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 173,
                    "nome": "ALTA FLORESTA",
                    "municipio": "ALTA FLORESTA"
                },
                {
                    "id": 174,
                    "nome": "ARIQUEMES",
                    "municipio": "ARIQUEMES"
                },
                {
                    "id": 175,
                    "nome": "CACOAL",
                    "municipio": "CACOAL"
                },
                {
                    "id": 176,
                    "nome": "ORLANDIA",
                    "municipio": "ORLANDIA"
                },
                {
                    "id": 177,
                    "nome": "SINOP",
                    "municipio": "SINOP"
                },
                {
                    "id": 178,
                    "nome": "PIMENTA BUENO",
                    "municipio": "PIMENTA BUENO"
                },
                {
                    "id": 179,
                    "nome": "VILHENA",
                    "municipio": "VILHENA"
                },
                {
                    "id": 180,
                    "nome": "ICOARACI",
                    "municipio": "BELEM"
                },
                {
                    "id": 181,
                    "nome": "BAIRRO IPIRANGA",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 182,
                    "nome": "CASA NOVA",
                    "municipio": "CASA NOVA"
                },
                {
                    "id": 183,
                    "nome": "11851",
                    "municipio": ""
                },
                {
                    "id": 184,
                    "nome": "EMPRESA MARINGA",
                    "municipio": "MARINGA"
                },
                {
                    "id": 185,
                    "nome": "IGREJINHA",
                    "municipio": "IGREJINHA"
                },
                {
                    "id": 186,
                    "nome": "PARAISO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 187,
                    "nome": "NOVO HORIZONTE",
                    "municipio": "NOVO HORIZONTE"
                },
                {
                    "id": 188,
                    "nome": "AVENIDA ANGELICA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 189,
                    "nome": "EMPRESA VILA CARRAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 190,
                    "nome": "BAIRRO DO LIMAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 191,
                    "nome": "BARAO DE DUPRAT",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 192,
                    "nome": "EMPRESA BOM RETIRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 193,
                    "nome": "LIBERDADE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 194,
                    "nome": "CAMPOS ELISEOS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 195,
                    "nome": "PARI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 196,
                    "nome": "PERDIZES-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 197,
                    "nome": "TRES CORACOES",
                    "municipio": "TRES CORACOES"
                },
                {
                    "id": 198,
                    "nome": "UNIAO DOS PALMARES",
                    "municipio": "UNIAO DOS PALMARES"
                },
                {
                    "id": 199,
                    "nome": "JAGUARE-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 200,
                    "nome": "SETE DE ABRIL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 201,
                    "nome": "SACOMAN",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 202,
                    "nome": "PRACA SILVIO ROMERO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 203,
                    "nome": "AVENIDA CURSINO SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 204,
                    "nome": "VILA ALPINA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 205,
                    "nome": "VILA DIVA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 206,
                    "nome": "COSTA E SILVA",
                    "municipio": "MANAUS"
                },
                {
                    "id": 207,
                    "nome": "CURIMATA",
                    "municipio": "CURIMATA"
                },
                {
                    "id": 208,
                    "nome": "ARACATI",
                    "municipio": "ARACATI"
                },
                {
                    "id": 209,
                    "nome": "CRAVINHOS",
                    "municipio": "CRAVINHOS"
                },
                {
                    "id": 210,
                    "nome": "MARECHAL FLORIANO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 211,
                    "nome": "AV.TIRADENTES",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 212,
                    "nome": "JARDIM SATELITE",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 213,
                    "nome": "COXIPO",
                    "municipio": "CUIABA"
                },
                {
                    "id": 214,
                    "nome": "CABULA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 215,
                    "nome": "BEZERRA DE MENEZES",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 216,
                    "nome": "EDUCANDOS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 217,
                    "nome": "IGUATU",
                    "municipio": "IGUATU"
                },
                {
                    "id": 218,
                    "nome": "TUCURUVI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 219,
                    "nome": "CARIJOS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 220,
                    "nome": "EMPRESA PAMPULHA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 221,
                    "nome": "LIBERDADE",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 222,
                    "nome": "EMPRESA S.CAMPOS-SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 223,
                    "nome": "SOBRADINHO-DF",
                    "municipio": "BRASILIA (SOBRADINHO)"
                },
                {
                    "id": 224,
                    "nome": "BONFIM",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 225,
                    "nome": "CARLOS PRATES",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 226,
                    "nome": "EMPRESA SAVASSI",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 227,
                    "nome": "AQUIDAUANA",
                    "municipio": "AQUIDAUANA"
                },
                {
                    "id": 228,
                    "nome": "SETOR COMERCIAL SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 229,
                    "nome": "EMPRESA SIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 230,
                    "nome": "BAIRRO DA PEDREIRA",
                    "municipio": "BELEM"
                },
                {
                    "id": 231,
                    "nome": "EMPRESA FAROL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 232,
                    "nome": "VARADOURO",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 233,
                    "nome": "EMPRESA TAGUATINGA",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 234,
                    "nome": "CAMACARI",
                    "municipio": "CAMACARI"
                },
                {
                    "id": 235,
                    "nome": "GAMA CENTRO",
                    "municipio": "BRASILIA (GAMA)"
                },
                {
                    "id": 236,
                    "nome": "CAXIAS",
                    "municipio": "CAXIAS"
                },
                {
                    "id": 237,
                    "nome": "VILA VELHA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 238,
                    "nome": "CARIACICA",
                    "municipio": "CARIACICA"
                },
                {
                    "id": 239,
                    "nome": "EMPRESA GOIAS",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 240,
                    "nome": "BACACHERI",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 241,
                    "nome": "VISCONDE",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 242,
                    "nome": "BARAO DE SOUZA LEAO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 243,
                    "nome": "RIBEIRA",
                    "municipio": "NATAL"
                },
                {
                    "id": 244,
                    "nome": "SERRA DO RAMALHO",
                    "municipio": "SERRA DO RAMALHO"
                },
                {
                    "id": 245,
                    "nome": "AZENHA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 246,
                    "nome": "PIRAPORA",
                    "municipio": "PIRAPORA"
                },
                {
                    "id": 247,
                    "nome": "VILA ISABEL",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 248,
                    "nome": "EMPRESA R.ASSEMBLEIA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 249,
                    "nome": "CANDELARIA-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 250,
                    "nome": "EMPRESA BARRA TIJUCA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 251,
                    "nome": "BONSUCESSO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 252,
                    "nome": "CAJU",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 253,
                    "nome": "SANTA CRUZ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 254,
                    "nome": "SANTA MARIA",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 255,
                    "nome": "ALFREDO CHAVES",
                    "municipio": "ALFREDO CHAVES"
                },
                {
                    "id": 256,
                    "nome": "ALHANDRA",
                    "municipio": "ALHANDRA"
                },
                {
                    "id": 257,
                    "nome": "SAO VICENTE",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 258,
                    "nome": "ALIANCA",
                    "municipio": "ALIANCA"
                },
                {
                    "id": 259,
                    "nome": "ALMIRANTE TAMANDARE",
                    "municipio": "ALMIRANTE TAMANDARE"
                },
                {
                    "id": 260,
                    "nome": "CAPELA DO SOCORRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 261,
                    "nome": "SAO MIGUEL PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 262,
                    "nome": "SANTA RITA",
                    "municipio": "SANTA RITA"
                },
                {
                    "id": 263,
                    "nome": "AVENIDA 85",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 264,
                    "nome": "CAMPO GRANDE-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 265,
                    "nome": "COMODORO",
                    "municipio": "COMODORO"
                },
                {
                    "id": 266,
                    "nome": "ESTILO INV. BRASILIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 267,
                    "nome": "SENA MADUREIRA",
                    "municipio": "SENA MADUREIRA"
                },
                {
                    "id": 268,
                    "nome": "CAICO",
                    "municipio": "CAICO"
                },
                {
                    "id": 269,
                    "nome": "1281",
                    "municipio": ""
                },
                {
                    "id": 270,
                    "nome": "COLONIA LEOPOLDINA-AL",
                    "municipio": ""
                },
                {
                    "id": 271,
                    "nome": "GIRAU DO PONCIANO",
                    "municipio": "GIRAU DO PONCIANO"
                },
                {
                    "id": 272,
                    "nome": "RIO REAL",
                    "municipio": "RIO REAL"
                },
                {
                    "id": 273,
                    "nome": "TEIXEIRA DE FREITAS",
                    "municipio": "TEIXEIRA DE FREITAS"
                },
                {
                    "id": 274,
                    "nome": "PIRIPIRI",
                    "municipio": "PIRIPIRI"
                },
                {
                    "id": 275,
                    "nome": "UAUA",
                    "municipio": "UAUA"
                },
                {
                    "id": 276,
                    "nome": "AQUIRAZ",
                    "municipio": "AQUIRAZ"
                },
                {
                    "id": 277,
                    "nome": "CEDRO",
                    "municipio": "CEDRO"
                },
                {
                    "id": 278,
                    "nome": "MESSEJANA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 279,
                    "nome": "BOA ESPERANCA",
                    "municipio": "BOA ESPERANCA"
                },
                {
                    "id": 280,
                    "nome": "MUNIZ FREIRE",
                    "municipio": "MUNIZ FREIRE"
                },
                {
                    "id": 281,
                    "nome": "MACEIO",
                    "municipio": "MACEIO"
                },
                {
                    "id": 282,
                    "nome": "SANTAREM",
                    "municipio": "SANTAREM"
                },
                {
                    "id": 283,
                    "nome": "SANTA LEOPOLDINA",
                    "municipio": "SANTA LEOPOLDINA"
                },
                {
                    "id": 284,
                    "nome": "SERRA",
                    "municipio": "SERRA"
                },
                {
                    "id": 285,
                    "nome": "ALEXANIA",
                    "municipio": "ALEXANIA"
                },
                {
                    "id": 286,
                    "nome": "ALVORADA-TO",
                    "municipio": "ALVORADA"
                },
                {
                    "id": 287,
                    "nome": "ARAGUACU",
                    "municipio": "ARAGUACU"
                },
                {
                    "id": 288,
                    "nome": "ARAGUATINS",
                    "municipio": "ARAGUATINS"
                },
                {
                    "id": 289,
                    "nome": "COLMEIA",
                    "municipio": "COLMEIA"
                },
                {
                    "id": 290,
                    "nome": "DIANOPOLIS",
                    "municipio": "DIANOPOLIS"
                },
                {
                    "id": 291,
                    "nome": "EDEIA",
                    "municipio": "EDEIA"
                },
                {
                    "id": 292,
                    "nome": "MINACU",
                    "municipio": "MINACU"
                },
                {
                    "id": 293,
                    "nome": "RESENDE",
                    "municipio": "RESENDE"
                },
                {
                    "id": 294,
                    "nome": "ACAILANDIA",
                    "municipio": "ACAILANDIA"
                },
                {
                    "id": 295,
                    "nome": "COLINAS",
                    "municipio": "COLINAS"
                },
                {
                    "id": 296,
                    "nome": "ESPERANTINOPOLIS",
                    "municipio": "ESPERANTINOPOLIS"
                },
                {
                    "id": 297,
                    "nome": "AGUA BOA",
                    "municipio": "AGUA BOA"
                },
                {
                    "id": 298,
                    "nome": "ARENAPOLIS",
                    "municipio": "ARENAPOLIS"
                },
                {
                    "id": 299,
                    "nome": "CANARANA-MT",
                    "municipio": "CANARANA"
                },
                {
                    "id": 300,
                    "nome": "ERECHIM",
                    "municipio": "ERECHIM"
                },
                {
                    "id": 301,
                    "nome": "MIRASSOL D OESTE",
                    "municipio": "MIRASSOL D'OESTE"
                },
                {
                    "id": 302,
                    "nome": "TANGARA DA SERRA",
                    "municipio": "TANGARA DA SERRA"
                },
                {
                    "id": 303,
                    "nome": "NOVA XAVANTINA",
                    "municipio": "NOVA XAVANTINA"
                },
                {
                    "id": 304,
                    "nome": "ARAL MOREIRA",
                    "municipio": "ARAL MOREIRA"
                },
                {
                    "id": 305,
                    "nome": "ABRE CAMPO",
                    "municipio": "ABRE CAMPO"
                },
                {
                    "id": 306,
                    "nome": "ANDRELANDIA",
                    "municipio": "ANDRELANDIA"
                },
                {
                    "id": 307,
                    "nome": "BONFINOPOLIS MINAS",
                    "municipio": "BONFINOPOLIS DE MINAS"
                },
                {
                    "id": 308,
                    "nome": "TUPA",
                    "municipio": "TUPA"
                },
                {
                    "id": 309,
                    "nome": "BURITIS",
                    "municipio": "BURITIS"
                },
                {
                    "id": 310,
                    "nome": "MATO VERDE",
                    "municipio": "MATO VERDE"
                },
                {
                    "id": 311,
                    "nome": "PERDIZES-MG",
                    "municipio": "PERDIZES"
                },
                {
                    "id": 312,
                    "nome": "PRESIDENTE OLEGARIO",
                    "municipio": "PRESIDENTE OLEGARIO"
                },
                {
                    "id": 313,
                    "nome": "RIO PARDO DE MINAS",
                    "municipio": "RIO PARDO DE MINAS"
                },
                {
                    "id": 314,
                    "nome": "RIO PARANAIBA",
                    "municipio": "RIO PARANAIBA"
                },
                {
                    "id": 315,
                    "nome": "STO.ANTONIO DO MONTE",
                    "municipio": "SANTO ANTONIO DO MONTE"
                },
                {
                    "id": 316,
                    "nome": "VAZANTE",
                    "municipio": "VAZANTE"
                },
                {
                    "id": 317,
                    "nome": "MATAO",
                    "municipio": "MATAO"
                },
                {
                    "id": 318,
                    "nome": "RONDON DO PARA",
                    "municipio": "RONDON DO PARA"
                },
                {
                    "id": 319,
                    "nome": "1346",
                    "municipio": ""
                },
                {
                    "id": 320,
                    "nome": "ARAPOTI",
                    "municipio": "ARAPOTI"
                },
                {
                    "id": 321,
                    "nome": "BITURUNA",
                    "municipio": "BITURUNA"
                },
                {
                    "id": 322,
                    "nome": "JACOBINA",
                    "municipio": "JACOBINA"
                },
                {
                    "id": 323,
                    "nome": "GUARANIACU",
                    "municipio": "GUARANIACU"
                },
                {
                    "id": 324,
                    "nome": "MARILANDIA DO SUL",
                    "municipio": "MARILANDIA DO SUL"
                },
                {
                    "id": 325,
                    "nome": "PALMITAL",
                    "municipio": "PALMITAL"
                },
                {
                    "id": 326,
                    "nome": "PEROLA-PR",
                    "municipio": "PEROLA"
                },
                {
                    "id": 327,
                    "nome": "PIRAI DO SUL",
                    "municipio": "PIRAI DO SUL"
                },
                {
                    "id": 328,
                    "nome": "SAO JOAO",
                    "municipio": "SAO JOAO"
                },
                {
                    "id": 329,
                    "nome": "SAO MIGUEL DO IGUACU",
                    "municipio": "SAO MIGUEL DO IGUACU"
                },
                {
                    "id": 330,
                    "nome": "1358",
                    "municipio": ""
                },
                {
                    "id": 331,
                    "nome": "13587",
                    "municipio": ""
                },
                {
                    "id": 332,
                    "nome": "1359",
                    "municipio": ""
                },
                {
                    "id": 333,
                    "nome": "PALMEIRA DOS INDIOS",
                    "municipio": "PALMEIRA DOS INDIOS"
                },
                {
                    "id": 334,
                    "nome": "1360",
                    "municipio": ""
                },
                {
                    "id": 335,
                    "nome": "IGARASSU",
                    "municipio": "IGARASSU"
                },
                {
                    "id": 336,
                    "nome": "1362",
                    "municipio": ""
                },
                {
                    "id": 337,
                    "nome": "13625",
                    "municipio": ""
                },
                {
                    "id": 338,
                    "nome": "VICENCIA",
                    "municipio": "VICENCIA"
                },
                {
                    "id": 339,
                    "nome": "13633",
                    "municipio": ""
                },
                {
                    "id": 340,
                    "nome": "FRONTEIRAS",
                    "municipio": "FRONTEIRAS"
                },
                {
                    "id": 341,
                    "nome": "PATU",
                    "municipio": "PATU"
                },
                {
                    "id": 342,
                    "nome": "SANTO ANTONIO",
                    "municipio": "SANTO ANTONIO"
                },
                {
                    "id": 343,
                    "nome": "BOA VISTA DO BURICA",
                    "municipio": "BOA VISTA DO BURICA"
                },
                {
                    "id": 344,
                    "nome": "EMPRESA FORTALEZA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 345,
                    "nome": "JOACABA",
                    "municipio": "JOACABA"
                },
                {
                    "id": 346,
                    "nome": "CHAPADA",
                    "municipio": "CHAPADA"
                },
                {
                    "id": 347,
                    "nome": "CONSTANTINA",
                    "municipio": "CONSTANTINA"
                },
                {
                    "id": 348,
                    "nome": "MACHADINHO",
                    "municipio": "MACHADINHO"
                },
                {
                    "id": 349,
                    "nome": "MOSTARDAS",
                    "municipio": "MOSTARDAS"
                },
                {
                    "id": 350,
                    "nome": "RONDA ALTA",
                    "municipio": "RONDA ALTA"
                },
                {
                    "id": 351,
                    "nome": "SANTO CRISTO",
                    "municipio": "SANTO CRISTO"
                },
                {
                    "id": 352,
                    "nome": "SAO JOSE DO NORTE",
                    "municipio": "SAO JOSE DO NORTE"
                },
                {
                    "id": 353,
                    "nome": "SEBERI",
                    "municipio": "SEBERI"
                },
                {
                    "id": 354,
                    "nome": "SANTO ANGELO",
                    "municipio": "SANTO ANGELO"
                },
                {
                    "id": 355,
                    "nome": "TRES COROAS",
                    "municipio": "TRES COROAS"
                },
                {
                    "id": 356,
                    "nome": "COLORADO DO OESTE",
                    "municipio": "COLORADO DO OESTE"
                },
                {
                    "id": 357,
                    "nome": "ABELARDO LUZ",
                    "municipio": "ABELARDO LUZ"
                },
                {
                    "id": 358,
                    "nome": "ALFREDO WAGNER",
                    "municipio": "ALFREDO WAGNER"
                },
                {
                    "id": 359,
                    "nome": "CUNHA PORA",
                    "municipio": "CUNHA PORA"
                },
                {
                    "id": 360,
                    "nome": "DESCANSO",
                    "municipio": "DESCANSO"
                },
                {
                    "id": 361,
                    "nome": "ESTREITO",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 362,
                    "nome": "FRAIBURGO",
                    "municipio": "FRAIBURGO"
                },
                {
                    "id": 363,
                    "nome": "GUARACIABA",
                    "municipio": "GUARACIABA"
                },
                {
                    "id": 364,
                    "nome": "ITUPORANGA",
                    "municipio": "ITUPORANGA"
                },
                {
                    "id": 365,
                    "nome": "LAJEADO",
                    "municipio": "LAJEADO"
                },
                {
                    "id": 366,
                    "nome": "MASSARANDUBA",
                    "municipio": "MASSARANDUBA"
                },
                {
                    "id": 367,
                    "nome": "PALMA SOLA",
                    "municipio": "PALMA SOLA"
                },
                {
                    "id": 368,
                    "nome": "PINHALZINHO",
                    "municipio": "PINHALZINHO"
                },
                {
                    "id": 369,
                    "nome": "QUILOMBO",
                    "municipio": "QUILOMBO"
                },
                {
                    "id": 370,
                    "nome": "RIO NEGRINHO",
                    "municipio": "RIO NEGRINHO"
                },
                {
                    "id": 371,
                    "nome": "SAO CARLOS",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 372,
                    "nome": "DOIS CORREGOS",
                    "municipio": "DOIS CORREGOS"
                },
                {
                    "id": 373,
                    "nome": "MARACAI",
                    "municipio": "MARACAI"
                },
                {
                    "id": 374,
                    "nome": "SAO SIMAO-SP",
                    "municipio": "SAO SIMAO"
                },
                {
                    "id": 375,
                    "nome": "CORUMBA",
                    "municipio": "CORUMBA"
                },
                {
                    "id": 376,
                    "nome": "FOZ DO IGUACU",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 377,
                    "nome": "JARDIM DA PENHA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 378,
                    "nome": "JARU",
                    "municipio": "JARU"
                },
                {
                    "id": 379,
                    "nome": "GENERAL VALADAO",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 380,
                    "nome": "ESTILO INV ESPLANADA DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 381,
                    "nome": "OURO PRETO DO OESTE",
                    "municipio": "OURO PRETO DO OESTE"
                },
                {
                    "id": 382,
                    "nome": "PRESIDENTE MEDICI",
                    "municipio": "PRESIDENTE MEDICI"
                },
                {
                    "id": 383,
                    "nome": "ROLIM DE MOURA",
                    "municipio": "ROLIM DE MOURA"
                },
                {
                    "id": 384,
                    "nome": "MUQUI",
                    "municipio": "MUQUI"
                },
                {
                    "id": 385,
                    "nome": "IMBITUBA",
                    "municipio": "IMBITUBA"
                },
                {
                    "id": 386,
                    "nome": "NOVA RUSSAS",
                    "municipio": "NOVA RUSSAS"
                },
                {
                    "id": 387,
                    "nome": "MARILIA",
                    "municipio": "MARILIA"
                },
                {
                    "id": 388,
                    "nome": "SOMBRIO",
                    "municipio": "SOMBRIO"
                },
                {
                    "id": 389,
                    "nome": "PRAIA GRANDE",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 390,
                    "nome": "SAO JOSE DO OURO",
                    "municipio": "SAO JOSE DO OURO"
                },
                {
                    "id": 391,
                    "nome": "JOAO PAULO",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 392,
                    "nome": "ALPINOPOLIS",
                    "municipio": "ALPINOPOLIS"
                },
                {
                    "id": 393,
                    "nome": "LAGO NORTE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 394,
                    "nome": "ALTEROSA",
                    "municipio": "ALTEROSA"
                },
                {
                    "id": 395,
                    "nome": "ALTINHO",
                    "municipio": "ALTINHO"
                },
                {
                    "id": 396,
                    "nome": "ALTINOPOLIS",
                    "municipio": "ALTINOPOLIS"
                },
                {
                    "id": 397,
                    "nome": "PARANOA",
                    "municipio": "BRASILIA (PARANOA)"
                },
                {
                    "id": 398,
                    "nome": "ALTO PARANA",
                    "municipio": "ALTO PARANA"
                },
                {
                    "id": 399,
                    "nome": "ALTO PIQUIRI",
                    "municipio": "ALTO PIQUIRI"
                },
                {
                    "id": 400,
                    "nome": "AHU",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 401,
                    "nome": "ALTONIA",
                    "municipio": "ALTONIA"
                },
                {
                    "id": 402,
                    "nome": "ALTOS",
                    "municipio": "ALTOS"
                },
                {
                    "id": 403,
                    "nome": "ALVINOPOLIS-MG",
                    "municipio": "ALVINOPOLIS"
                },
                {
                    "id": 404,
                    "nome": "CANAVIEIRAS",
                    "municipio": "CANAVIEIRAS"
                },
                {
                    "id": 405,
                    "nome": "ALVORADA-RS",
                    "municipio": "ALVORADA"
                },
                {
                    "id": 406,
                    "nome": "ALVORADA DO SUL",
                    "municipio": "ALVORADA DO SUL"
                },
                {
                    "id": 407,
                    "nome": "AV.BRASILIA-CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 408,
                    "nome": "AMPERE",
                    "municipio": "AMPERE"
                },
                {
                    "id": 409,
                    "nome": "ANAGE",
                    "municipio": "ANAGE"
                },
                {
                    "id": 410,
                    "nome": "ANANINDEUA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 411,
                    "nome": "ANCHIETA-ES",
                    "municipio": "ANCHIETA"
                },
                {
                    "id": 412,
                    "nome": "ANCHIETA-SC",
                    "municipio": "ANCHIETA"
                },
                {
                    "id": 413,
                    "nome": "ALEGRETE",
                    "municipio": "ALEGRETE"
                },
                {
                    "id": 414,
                    "nome": "ANGATUBA",
                    "municipio": "ANGATUBA"
                },
                {
                    "id": 415,
                    "nome": "CAJURU",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 416,
                    "nome": "ANGICAL",
                    "municipio": "ANGICAL"
                },
                {
                    "id": 417,
                    "nome": "ANGICOS",
                    "municipio": "ANGICOS"
                },
                {
                    "id": 418,
                    "nome": "ANITA GARIBALDI",
                    "municipio": "ANITA GARIBALDI"
                },
                {
                    "id": 419,
                    "nome": "MONTE APRAZIVEL",
                    "municipio": "MONTE APRAZIVEL"
                },
                {
                    "id": 420,
                    "nome": "APARECIDA",
                    "municipio": "APARECIDA"
                },
                {
                    "id": 421,
                    "nome": "APARECIDA DE GOIANIA",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 422,
                    "nome": "TRINDADE",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 423,
                    "nome": "ARACI",
                    "municipio": "ARACI"
                },
                {
                    "id": 424,
                    "nome": "ARAIOSES",
                    "municipio": "ARAIOSES"
                },
                {
                    "id": 425,
                    "nome": "NOVA GRANADA",
                    "municipio": "NOVA GRANADA"
                },
                {
                    "id": 426,
                    "nome": "PARQUE SAO PAULO",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 427,
                    "nome": "IRAI DE MINAS",
                    "municipio": "IRAI DE MINAS"
                },
                {
                    "id": 428,
                    "nome": "ARAQUARI",
                    "municipio": "ARAQUARI"
                },
                {
                    "id": 429,
                    "nome": "Ag�ncia 1464",
                    "municipio": ""
                },
                {
                    "id": 430,
                    "nome": "ARARUNA-PR",
                    "municipio": "ARARUNA"
                },
                {
                    "id": 431,
                    "nome": "ARAUCARIA",
                    "municipio": "ARAUCARIA"
                },
                {
                    "id": 432,
                    "nome": "AREADO",
                    "municipio": "AREADO"
                },
                {
                    "id": 433,
                    "nome": "AREIA BRANCA-RN",
                    "municipio": "AREIA BRANCA"
                },
                {
                    "id": 434,
                    "nome": "JAGUARAO",
                    "municipio": "JAGUARAO"
                },
                {
                    "id": 435,
                    "nome": "ARINOS",
                    "municipio": "ARINOS"
                },
                {
                    "id": 436,
                    "nome": "ARIPUANA",
                    "municipio": "ARIPUANA"
                },
                {
                    "id": 437,
                    "nome": "RUA ARAGUAIA",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 438,
                    "nome": "ARROIO DO MEIO",
                    "municipio": "ARROIO DO MEIO"
                },
                {
                    "id": 439,
                    "nome": "ARROIO DO TIGRE",
                    "municipio": "ARROIO DO TIGRE"
                },
                {
                    "id": 440,
                    "nome": "ARTUR NOGUEIRA",
                    "municipio": "ARTUR NOGUEIRA"
                },
                {
                    "id": 441,
                    "nome": "ARUJA",
                    "municipio": "ARUJA"
                },
                {
                    "id": 442,
                    "nome": "ARVOREZINHA",
                    "municipio": "ARVOREZINHA"
                },
                {
                    "id": 443,
                    "nome": "ASCURRA",
                    "municipio": "ASCURRA"
                },
                {
                    "id": 444,
                    "nome": "AV ESTEVES RODRIGUES",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 445,
                    "nome": "PROMISSAO",
                    "municipio": "PROMISSAO"
                },
                {
                    "id": 446,
                    "nome": "AUGUSTO CORREA",
                    "municipio": "AUGUSTO CORREA"
                },
                {
                    "id": 447,
                    "nome": "AURIFLAMA",
                    "municipio": "AURIFLAMA"
                },
                {
                    "id": 448,
                    "nome": "AURORA",
                    "municipio": "AURORA"
                },
                {
                    "id": 449,
                    "nome": "SARANDI",
                    "municipio": "SARANDI"
                },
                {
                    "id": 450,
                    "nome": "DR.MARIANO DA ROCHA",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 451,
                    "nome": "BAIANOPOLIS",
                    "municipio": "BAIANOPOLIS"
                },
                {
                    "id": 452,
                    "nome": "EMPRESA CAXIAS SUL",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 453,
                    "nome": "BAIXA GRANDE",
                    "municipio": "BAIXA GRANDE"
                },
                {
                    "id": 454,
                    "nome": "BALNEARIO CAMBORIU",
                    "municipio": "BALNEARIO CAMBORIU"
                },
                {
                    "id": 455,
                    "nome": "ESTANCIA",
                    "municipio": "ESTANCIA"
                },
                {
                    "id": 456,
                    "nome": "BANANAL",
                    "municipio": "BANANAL"
                },
                {
                    "id": 457,
                    "nome": "SORRISO",
                    "municipio": "SORRISO"
                },
                {
                    "id": 458,
                    "nome": "BARBOSA FERRAZ",
                    "municipio": "BARBOSA FERRAZ"
                },
                {
                    "id": 459,
                    "nome": "AUTO SHOP.ARICANDUVA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 460,
                    "nome": "BARRA DA ESTIVA",
                    "municipio": "BARRA DA ESTIVA"
                },
                {
                    "id": 461,
                    "nome": "BARRA DO RIBEIRO",
                    "municipio": "BARRA DO RIBEIRO"
                },
                {
                    "id": 462,
                    "nome": "BARRA VELHA",
                    "municipio": "BARRA VELHA"
                },
                {
                    "id": 463,
                    "nome": "UBERABA",
                    "municipio": "UBERABA"
                },
                {
                    "id": 464,
                    "nome": "CABO FRIO",
                    "municipio": "CABO FRIO"
                },
                {
                    "id": 465,
                    "nome": "BAIRRO BRASIL",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 466,
                    "nome": "CANAPOLIS-MG",
                    "municipio": "CANAPOLIS"
                },
                {
                    "id": 467,
                    "nome": "ITAMARATY",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 468,
                    "nome": "CARDOSO DE ALMEIDA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 469,
                    "nome": "EMPRESA PALMAS",
                    "municipio": "PALMAS"
                },
                {
                    "id": 470,
                    "nome": "BORBA GATO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 471,
                    "nome": "SIA TRECHO 2",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 472,
                    "nome": "BAIRRO MALLET",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 473,
                    "nome": "CASA FORTE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 474,
                    "nome": "PATOS",
                    "municipio": "PATOS"
                },
                {
                    "id": 475,
                    "nome": "EMPRESA S.J.RIO PRET",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 476,
                    "nome": "EMPRESA MOOCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 477,
                    "nome": "SOROCABA NORTE",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 478,
                    "nome": "NOVA ODESSA",
                    "municipio": "NOVA ODESSA"
                },
                {
                    "id": 479,
                    "nome": "BARAO GERALDO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 480,
                    "nome": "PONTE DO MORUMBI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 481,
                    "nome": "QUITANDA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 482,
                    "nome": "CHAMPAGNAT",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 483,
                    "nome": "ARACUAI",
                    "municipio": "ARACUAI"
                },
                {
                    "id": 484,
                    "nome": "IMIRIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 485,
                    "nome": "BATEL",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 486,
                    "nome": "EMPRESA JARAGUA",
                    "municipio": "MACEIO"
                },
                {
                    "id": 487,
                    "nome": "CASCADURA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 488,
                    "nome": "TAILANDIA",
                    "municipio": "TAILANDIA"
                },
                {
                    "id": 489,
                    "nome": "JARDIM BELA VISTA",
                    "municipio": "OSASCO"
                },
                {
                    "id": 490,
                    "nome": "BARUERI",
                    "municipio": "BARUERI"
                },
                {
                    "id": 491,
                    "nome": "SAO GABRIEL",
                    "municipio": "SAO GABRIEL"
                },
                {
                    "id": 492,
                    "nome": "ITAQUERA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 493,
                    "nome": "ITAPUA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 494,
                    "nome": "CANDELARIA-RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 495,
                    "nome": "SEMINARIO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 496,
                    "nome": "RIBEIRAO BONITO",
                    "municipio": "RIBEIRAO BONITO"
                },
                {
                    "id": 497,
                    "nome": "JARDIM TREMEMBE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 498,
                    "nome": "VILA ESPERANCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 499,
                    "nome": "GECEX SAO PAULO III",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 500,
                    "nome": "VILA MASCOTE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 501,
                    "nome": "VILA MATILDE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 502,
                    "nome": "SAPOPEMBA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 503,
                    "nome": "BOM JESUS ITABAPOANA",
                    "municipio": "BOM JESUS DO ITABAPOANA"
                },
                {
                    "id": 504,
                    "nome": "JARDIM TRANQUILIDADE",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 505,
                    "nome": "EMPRESA SANTO ANDRE",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 506,
                    "nome": "ITUVERAVA",
                    "municipio": "ITUVERAVA"
                },
                {
                    "id": 507,
                    "nome": "GECEX CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 508,
                    "nome": "BAIRRO ASSUNCAO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 509,
                    "nome": "AVENIDA GOIAS",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 510,
                    "nome": "BENFICA-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 511,
                    "nome": "JARDIM LUZ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 512,
                    "nome": "GRAJAU",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 513,
                    "nome": "VOLUNTARIOS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 514,
                    "nome": "IRAJA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 515,
                    "nome": "ITATIAIA",
                    "municipio": "ITATIAIA"
                },
                {
                    "id": 516,
                    "nome": "JARDIM BOTANICO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 517,
                    "nome": "REALENGO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 518,
                    "nome": "AMARAL PEIXOTO",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 519,
                    "nome": "TELEPORTO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 520,
                    "nome": "PIRATININGA",
                    "municipio": "NITEROI"
                },
                {
                    "id": 521,
                    "nome": "TAQUARA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 522,
                    "nome": "ALAGOINHAS",
                    "municipio": "ALAGOINHAS"
                },
                {
                    "id": 523,
                    "nome": "QUEIMADOS",
                    "municipio": "QUEIMADOS"
                },
                {
                    "id": 524,
                    "nome": "AV.SAUL ELKIND",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 525,
                    "nome": "RETIRO",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 526,
                    "nome": "BERNARDO MONTEIRO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 527,
                    "nome": "BAIRRO DE LOURDES",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 528,
                    "nome": "CANAA",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 529,
                    "nome": "CTO.ADM.NATAL",
                    "municipio": "NATAL"
                },
                {
                    "id": 530,
                    "nome": "GUARANTA DO NORTE",
                    "municipio": "GUARANTA DO NORTE"
                },
                {
                    "id": 531,
                    "nome": "CARUARU",
                    "municipio": "CARUARU"
                },
                {
                    "id": 532,
                    "nome": "SAPEZAL",
                    "municipio": "SAPEZAL"
                },
                {
                    "id": 533,
                    "nome": "UNIV.FED.CAMPINA GDE",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 534,
                    "nome": "ARMACAO DOS BUZIOS",
                    "municipio": "ARMACAO DOS BUZIOS"
                },
                {
                    "id": 535,
                    "nome": "ESTORIL",
                    "municipio": "BAURU"
                },
                {
                    "id": 536,
                    "nome": "PEDRO AFONSO",
                    "municipio": "PEDRO AFONSO"
                },
                {
                    "id": 537,
                    "nome": "SANTANA DE PARNAIBA",
                    "municipio": "SANTANA DE PARNAIBA"
                },
                {
                    "id": 538,
                    "nome": "ESPIGAO D OESTE",
                    "municipio": "ESPIGAO D'OESTE"
                },
                {
                    "id": 539,
                    "nome": "CARIRI SHOPPING",
                    "municipio": "JUAZEIRO DO NORTE"
                },
                {
                    "id": 540,
                    "nome": "PITUACU",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 541,
                    "nome": "FLORIANOPOLIS",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 542,
                    "nome": "PIRAJUI",
                    "municipio": "PIRAJUI"
                },
                {
                    "id": 543,
                    "nome": "RUA DO LIVRAMENTO",
                    "municipio": "MACEIO"
                },
                {
                    "id": 544,
                    "nome": "PRACA CENTENARIO",
                    "municipio": "MACEIO"
                },
                {
                    "id": 545,
                    "nome": "COMERCIO",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 546,
                    "nome": "JARDINS-SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 547,
                    "nome": "CORP BANK CEARA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 548,
                    "nome": "PRACA DO CARMO",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 549,
                    "nome": "SETOR BANCARIO SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 550,
                    "nome": "S.PUBLICO GOVFEDERAL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 551,
                    "nome": "GECEX BRASILIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 552,
                    "nome": "PRACA PIO XII",
                    "municipio": "VITORIA"
                },
                {
                    "id": 553,
                    "nome": "AVENIDA GOIAS",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 554,
                    "nome": "JARACATI",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 555,
                    "nome": "EMPRESA PRACA SETE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 556,
                    "nome": "SETOR PUBLICO MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 557,
                    "nome": "GECEX OPERACOES BHZ",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 558,
                    "nome": "PRACA 1817",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 559,
                    "nome": "SETOR PUBLICO PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 560,
                    "nome": "CID.UNIVERSITARIA-PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 561,
                    "nome": "SAO JOAO DEL REI",
                    "municipio": "SAO JOAO DEL REI"
                },
                {
                    "id": 562,
                    "nome": "TAMARINEIRA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 563,
                    "nome": "EMPRESA CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 564,
                    "nome": "FLORESTA-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 565,
                    "nome": "GECEX OPERACOES CWB",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 566,
                    "nome": "SANTO AGOSTINHO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 567,
                    "nome": "PIRASSUNUNGA",
                    "municipio": "PIRASSUNUNGA"
                },
                {
                    "id": 568,
                    "nome": "VENDA NOVA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 569,
                    "nome": "ALIPIO DE MELO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 570,
                    "nome": "BARREIRO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 571,
                    "nome": "ELDORADO",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 572,
                    "nome": "PARQUE DA CRIANCA",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 573,
                    "nome": "CRUZ DAS ARMAS",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 574,
                    "nome": "EPITACIO PESSOA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 575,
                    "nome": "PICARRA",
                    "municipio": "TERESINA"
                },
                {
                    "id": 576,
                    "nome": "TIRIRICAL",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 577,
                    "nome": "SAO FRANCISCO",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 578,
                    "nome": "ITABAIANA-PB",
                    "municipio": "ITABAIANA"
                },
                {
                    "id": 579,
                    "nome": "BARAO DE GURGUEIA",
                    "municipio": "TERESINA"
                },
                {
                    "id": 580,
                    "nome": "BENEVIDES",
                    "municipio": "BENEVIDES"
                },
                {
                    "id": 581,
                    "nome": "1642",
                    "municipio": ""
                },
                {
                    "id": 582,
                    "nome": "BEZERROS",
                    "municipio": "BEZERROS"
                },
                {
                    "id": 583,
                    "nome": "16430",
                    "municipio": ""
                },
                {
                    "id": 584,
                    "nome": "16433",
                    "municipio": ""
                },
                {
                    "id": 585,
                    "nome": "BIGUACU",
                    "municipio": "BIGUACU"
                },
                {
                    "id": 586,
                    "nome": "BIRITIBA-MIRIM",
                    "municipio": "BIRITIBA-MIRIM"
                },
                {
                    "id": 587,
                    "nome": "BOCA DA MATA",
                    "municipio": "BOCA DA MATA"
                },
                {
                    "id": 588,
                    "nome": "BOITUVA",
                    "municipio": "BOITUVA"
                },
                {
                    "id": 589,
                    "nome": "OLIMPIA",
                    "municipio": "OLIMPIA"
                },
                {
                    "id": 590,
                    "nome": "BOM JARDIM-PE",
                    "municipio": "BOM JARDIM"
                },
                {
                    "id": 591,
                    "nome": "BOM JARDIM-MA",
                    "municipio": "BOM JARDIM"
                },
                {
                    "id": 592,
                    "nome": "BOM JARDIM-RJ",
                    "municipio": "BOM JARDIM"
                },
                {
                    "id": 593,
                    "nome": "BOQUEIRAO",
                    "municipio": ""
                },
                {
                    "id": 594,
                    "nome": "BORBOREMA",
                    "municipio": "BORBOREMA"
                },
                {
                    "id": 595,
                    "nome": "BORDA DA MATA",
                    "municipio": "BORDA DA MATA"
                },
                {
                    "id": 596,
                    "nome": "BOSSOROCA",
                    "municipio": "BOSSOROCA"
                },
                {
                    "id": 597,
                    "nome": "BOTELHOS",
                    "municipio": "BOTELHOS"
                },
                {
                    "id": 598,
                    "nome": "GOVERNADOR VALADARES",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 599,
                    "nome": "BOTUPORA",
                    "municipio": "BOTUPORA"
                },
                {
                    "id": 600,
                    "nome": "BRASILANDIA",
                    "municipio": "BRASILANDIA"
                },
                {
                    "id": 601,
                    "nome": "BRASILEIA",
                    "municipio": "BRASILEIA"
                },
                {
                    "id": 602,
                    "nome": "BRAZOPOLIS",
                    "municipio": "BRASOPOLIS"
                },
                {
                    "id": 603,
                    "nome": "1664",
                    "municipio": ""
                },
                {
                    "id": 604,
                    "nome": "BREJO MADRE DE DEUS",
                    "municipio": "BREJO DA MADRE DE DEUS"
                },
                {
                    "id": 605,
                    "nome": "BROTAS",
                    "municipio": "BROTAS"
                },
                {
                    "id": 606,
                    "nome": "UFRN",
                    "municipio": "NATAL"
                },
                {
                    "id": 607,
                    "nome": "BRUMADINHO",
                    "municipio": "BRUMADINHO"
                },
                {
                    "id": 608,
                    "nome": "BRAGANCA PAULISTA",
                    "municipio": "BRAGANCA PAULISTA"
                },
                {
                    "id": 609,
                    "nome": "BUENO BRANDAO",
                    "municipio": "BUENO BRANDAO"
                },
                {
                    "id": 610,
                    "nome": "BUENOPOLIS",
                    "municipio": "BUENOPOLIS"
                },
                {
                    "id": 611,
                    "nome": "1672",
                    "municipio": ""
                },
                {
                    "id": 612,
                    "nome": "SETOR PUBLICO PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 613,
                    "nome": "BURI",
                    "municipio": "BURI"
                },
                {
                    "id": 614,
                    "nome": "BURITAMA",
                    "municipio": "BURITAMA"
                },
                {
                    "id": 615,
                    "nome": "BURITI",
                    "municipio": "BURITI"
                },
                {
                    "id": 616,
                    "nome": "BURITI DOS LOPES",
                    "municipio": "BURITI DOS LOPES"
                },
                {
                    "id": 617,
                    "nome": "ALFENAS",
                    "municipio": "ALFENAS"
                },
                {
                    "id": 618,
                    "nome": "BURITIZEIRO",
                    "municipio": "BURITIZEIRO"
                },
                {
                    "id": 619,
                    "nome": "CABEDELO",
                    "municipio": "CABEDELO"
                },
                {
                    "id": 620,
                    "nome": "CABO VERDE",
                    "municipio": "CABO VERDE"
                },
                {
                    "id": 621,
                    "nome": "CACAPAVA",
                    "municipio": "CACAPAVA"
                },
                {
                    "id": 622,
                    "nome": "CACHOEIRA ALTA",
                    "municipio": "CACHOEIRA ALTA"
                },
                {
                    "id": 623,
                    "nome": "EMPRESA MARAJOARA",
                    "municipio": "BELEM"
                },
                {
                    "id": 624,
                    "nome": "CACHOEIRA DE MINAS",
                    "municipio": "CACHOEIRA DE MINAS"
                },
                {
                    "id": 625,
                    "nome": "CACHOEIRAS DE MACACU",
                    "municipio": "CACHOEIRAS DE MACACU"
                },
                {
                    "id": 626,
                    "nome": "CACHOEIRINHA-PE",
                    "municipio": "CACHOEIRINHA"
                },
                {
                    "id": 627,
                    "nome": "QUARAI",
                    "municipio": "QUARAI"
                },
                {
                    "id": 628,
                    "nome": "GECEX PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 629,
                    "nome": "CACONDE",
                    "municipio": "CACONDE"
                },
                {
                    "id": 630,
                    "nome": "CAETE",
                    "municipio": "CAETE"
                },
                {
                    "id": 631,
                    "nome": "1695",
                    "municipio": ""
                },
                {
                    "id": 632,
                    "nome": "CAFARNAUM",
                    "municipio": "CAFARNAUM"
                },
                {
                    "id": 633,
                    "nome": "CAIBATE",
                    "municipio": "CAIBATE"
                },
                {
                    "id": 634,
                    "nome": "17",
                    "municipio": ""
                },
                {
                    "id": 635,
                    "nome": "VACARIA",
                    "municipio": "VACARIA"
                },
                {
                    "id": 636,
                    "nome": "CAIEIRAS",
                    "municipio": "CAIEIRAS"
                },
                {
                    "id": 637,
                    "nome": "JARDIM DO LAGO",
                    "municipio": "CANOAS"
                },
                {
                    "id": 638,
                    "nome": "CAJURU",
                    "municipio": "CAJURU"
                },
                {
                    "id": 639,
                    "nome": "CALDAS",
                    "municipio": "CALDAS"
                },
                {
                    "id": 640,
                    "nome": "CALDAS NOVAS",
                    "municipio": "CALDAS NOVAS"
                },
                {
                    "id": 641,
                    "nome": "CAMANDUCAIA",
                    "municipio": "CAMANDUCAIA"
                },
                {
                    "id": 642,
                    "nome": "CAMBORIU",
                    "municipio": "CAMBORIU"
                },
                {
                    "id": 643,
                    "nome": "CAMBUCI",
                    "municipio": "CAMBUCI"
                },
                {
                    "id": 644,
                    "nome": "CAMBUI",
                    "municipio": "CAMBUI"
                },
                {
                    "id": 645,
                    "nome": "ITAPIRA",
                    "municipio": "ITAPIRA"
                },
                {
                    "id": 646,
                    "nome": "1710",
                    "municipio": ""
                },
                {
                    "id": 647,
                    "nome": "CAMPANHA",
                    "municipio": "CAMPANHA"
                },
                {
                    "id": 648,
                    "nome": "CAMPESTRE",
                    "municipio": "CAMPESTRE"
                },
                {
                    "id": 649,
                    "nome": "CAMPINA DA LAGOA",
                    "municipio": "CAMPINA DA LAGOA"
                },
                {
                    "id": 650,
                    "nome": "CAMPINAS DO SUL",
                    "municipio": "CAMPINAS DO SUL"
                },
                {
                    "id": 651,
                    "nome": "CAMPO BELO DO SUL",
                    "municipio": "CAMPO BELO DO SUL"
                },
                {
                    "id": 652,
                    "nome": "CAMPO ERE",
                    "municipio": "CAMPO ERE"
                },
                {
                    "id": 653,
                    "nome": "CAMPO FORMOSO",
                    "municipio": "CAMPO FORMOSO"
                },
                {
                    "id": 654,
                    "nome": "RIO CLARO",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 655,
                    "nome": "CAMPOS GERAIS",
                    "municipio": "CAMPOS GERAIS"
                },
                {
                    "id": 656,
                    "nome": "CANDEIAS-BA",
                    "municipio": "CANDEIAS"
                },
                {
                    "id": 657,
                    "nome": "CANDEIAS-MG",
                    "municipio": "CANDEIAS"
                },
                {
                    "id": 658,
                    "nome": "CANDIBA",
                    "municipio": "CANDIBA"
                },
                {
                    "id": 659,
                    "nome": "CANDIDO MOTA",
                    "municipio": "CANDIDO MOTA"
                },
                {
                    "id": 660,
                    "nome": "BOA ESPERANCA",
                    "municipio": "BOA ESPERANCA"
                },
                {
                    "id": 661,
                    "nome": "CANDIDO SALES",
                    "municipio": "CANDIDO SALES"
                },
                {
                    "id": 662,
                    "nome": "CANGUARETAMA",
                    "municipio": "CANGUARETAMA"
                },
                {
                    "id": 663,
                    "nome": "CANHOTINHO",
                    "municipio": "CANHOTINHO"
                },
                {
                    "id": 664,
                    "nome": "CANTANHEDE",
                    "municipio": "CANTANHEDE"
                },
                {
                    "id": 665,
                    "nome": "CAPANEMA-PA",
                    "municipio": "CAPANEMA"
                },
                {
                    "id": 666,
                    "nome": "1739",
                    "municipio": ""
                },
                {
                    "id": 667,
                    "nome": "Ag�ncia 17396",
                    "municipio": ""
                },
                {
                    "id": 668,
                    "nome": "BICAS",
                    "municipio": "BICAS"
                },
                {
                    "id": 669,
                    "nome": "CARAGUATATUBA",
                    "municipio": "CARAGUATATUBA"
                },
                {
                    "id": 670,
                    "nome": "CARANDAI",
                    "municipio": "CARANDAI"
                },
                {
                    "id": 671,
                    "nome": "EMPRESA BROOKLIN",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 672,
                    "nome": "CARIRIACU",
                    "municipio": "CARIRIACU"
                },
                {
                    "id": 673,
                    "nome": "SAO JOSE DOS CAMPOS",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 674,
                    "nome": "CARMO DA MATA",
                    "municipio": "CARMO DA MATA"
                },
                {
                    "id": 675,
                    "nome": "CARMO DO RIO CLARO",
                    "municipio": "CARMO DO RIO CLARO"
                },
                {
                    "id": 676,
                    "nome": "CARMOPOLIS DE MINAS",
                    "municipio": "CARMOPOLIS DE MINAS"
                },
                {
                    "id": 677,
                    "nome": "1754",
                    "municipio": ""
                },
                {
                    "id": 678,
                    "nome": "CASCA",
                    "municipio": "CASCA"
                },
                {
                    "id": 679,
                    "nome": "CASIMIRO DE ABREU",
                    "municipio": "CASIMIRO DE ABREU"
                },
                {
                    "id": 680,
                    "nome": "1758",
                    "municipio": ""
                },
                {
                    "id": 681,
                    "nome": "CATANDUVAS-PR",
                    "municipio": "CATANDUVAS"
                },
                {
                    "id": 682,
                    "nome": "CAMPO BELO-MG",
                    "municipio": "CAMPO BELO"
                },
                {
                    "id": 683,
                    "nome": "CATANDUVAS-SC",
                    "municipio": "CATANDUVAS"
                },
                {
                    "id": 684,
                    "nome": "CATENDE",
                    "municipio": "CATENDE"
                },
                {
                    "id": 685,
                    "nome": "CATU",
                    "municipio": "CATU"
                },
                {
                    "id": 686,
                    "nome": "CAXAMBU",
                    "municipio": "CAXAMBU"
                },
                {
                    "id": 687,
                    "nome": "1764",
                    "municipio": ""
                },
                {
                    "id": 688,
                    "nome": "CENTENARIO DO SUL",
                    "municipio": "CENTENARIO DO SUL"
                },
                {
                    "id": 689,
                    "nome": "CERQUEIRA CESAR",
                    "municipio": "CERQUEIRA CESAR"
                },
                {
                    "id": 690,
                    "nome": "CERQUILHO",
                    "municipio": "CERQUILHO"
                },
                {
                    "id": 691,
                    "nome": "CORP BANK SEDAN",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 692,
                    "nome": "CARATINGA",
                    "municipio": "CARATINGA"
                },
                {
                    "id": 693,
                    "nome": "CEU AZUL",
                    "municipio": "CEU AZUL"
                },
                {
                    "id": 694,
                    "nome": "CHA GRANDE",
                    "municipio": "CHA GRANDE"
                },
                {
                    "id": 695,
                    "nome": "17710",
                    "municipio": ""
                },
                {
                    "id": 696,
                    "nome": "CHAPADA GUIMARAES",
                    "municipio": "CHAPADA DOS GUIMARAES"
                },
                {
                    "id": 697,
                    "nome": "CHAPADINHA",
                    "municipio": "CHAPADINHA"
                },
                {
                    "id": 698,
                    "nome": "CICERO DANTAS",
                    "municipio": "CICERO DANTAS"
                },
                {
                    "id": 699,
                    "nome": "COARI",
                    "municipio": "COARI"
                },
                {
                    "id": 700,
                    "nome": "GECEX RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 701,
                    "nome": "COLIDER",
                    "municipio": "COLIDER"
                },
                {
                    "id": 702,
                    "nome": "VALPARAISO",
                    "municipio": "VALPARAISO"
                },
                {
                    "id": 703,
                    "nome": "COLOMBO",
                    "municipio": "COLOMBO"
                },
                {
                    "id": 704,
                    "nome": "COLORADO",
                    "municipio": "COLORADO"
                },
                {
                    "id": 705,
                    "nome": "CONCEICAO APARECIDA",
                    "municipio": "CONCEICAO DA APARECIDA"
                },
                {
                    "id": 706,
                    "nome": "CONCEICAO DO CASTELO",
                    "municipio": "CONCEICAO DO CASTELO"
                },
                {
                    "id": 707,
                    "nome": "CONCEICAO RIO VERDE",
                    "municipio": "CONCEICAO DO RIO VERDE"
                },
                {
                    "id": 708,
                    "nome": "ARACATUBA",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 709,
                    "nome": "CONCHAL",
                    "municipio": "CONCHAL"
                },
                {
                    "id": 710,
                    "nome": "CONCHAS",
                    "municipio": "CONCHAS"
                },
                {
                    "id": 711,
                    "nome": "1792",
                    "municipio": ""
                },
                {
                    "id": 712,
                    "nome": "CONGONHAS",
                    "municipio": "CONGONHAS"
                },
                {
                    "id": 713,
                    "nome": "COQUEIRAL",
                    "municipio": "COQUEIRAL"
                },
                {
                    "id": 714,
                    "nome": "CORBELIA",
                    "municipio": "CORBELIA"
                },
                {
                    "id": 715,
                    "nome": "SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 716,
                    "nome": "SANTA CRUZ DO SUL",
                    "municipio": "SANTA CRUZ DO SUL"
                },
                {
                    "id": 717,
                    "nome": "SAO PELEGRINO",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 718,
                    "nome": "RETA DA PENHA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 719,
                    "nome": "SHOPPING IGUATEMI",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 720,
                    "nome": "CEASA-CONTAGEM",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 721,
                    "nome": "MOZARLANDIA",
                    "municipio": "MOZARLANDIA"
                },
                {
                    "id": 722,
                    "nome": "SANTA HELENA",
                    "municipio": "SANTA HELENA"
                },
                {
                    "id": 723,
                    "nome": "BENTO GONCALVES",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 724,
                    "nome": "TRIANON",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 725,
                    "nome": "SHOPPING TACARUNA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 726,
                    "nome": "18147",
                    "municipio": ""
                },
                {
                    "id": 727,
                    "nome": "SANTA CRUZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 728,
                    "nome": "CAMPO BELO-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 729,
                    "nome": "ITAIM PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 730,
                    "nome": "IRATI",
                    "municipio": "IRATI"
                },
                {
                    "id": 731,
                    "nome": "PIRAPORINHA",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 732,
                    "nome": "ALPHAVILLE",
                    "municipio": "BARUERI"
                },
                {
                    "id": 733,
                    "nome": "BELFORD ROXO",
                    "municipio": "BELFORD ROXO"
                },
                {
                    "id": 734,
                    "nome": "MUDA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 735,
                    "nome": "EMPRESA RIO CENTRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 736,
                    "nome": "SAO MATEUS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 737,
                    "nome": "VILA JAGUARA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 738,
                    "nome": "BENFICA-PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 739,
                    "nome": "18333",
                    "municipio": ""
                },
                {
                    "id": 740,
                    "nome": "AVENIDA TABOAO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 741,
                    "nome": "CAXANGA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 742,
                    "nome": "18350",
                    "municipio": ""
                },
                {
                    "id": 743,
                    "nome": "EMPRESA RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 744,
                    "nome": "PRAZERES",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 745,
                    "nome": "AFOGADOS",
                    "municipio": "RECIFE"
                },
                {
                    "id": 746,
                    "nome": "1839",
                    "municipio": ""
                },
                {
                    "id": 747,
                    "nome": "CACERES",
                    "municipio": "CACERES"
                },
                {
                    "id": 748,
                    "nome": "EMPRESA INDEPENDENCI",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 749,
                    "nome": "JARDIM AMERICA-GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 750,
                    "nome": "VILA RICA",
                    "municipio": "VILA RICA"
                },
                {
                    "id": 751,
                    "nome": "AMOREIRAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 752,
                    "nome": "PONTA NEGRA",
                    "municipio": "NATAL"
                },
                {
                    "id": 753,
                    "nome": "BARAO DE ITAPURA",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 754,
                    "nome": "SAO LEOPOLDO",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 755,
                    "nome": "EMPRESA STO ANTONIO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 756,
                    "nome": "PARQUE DAS NACOES",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 757,
                    "nome": "PRES.ANTONIO CARLOS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 758,
                    "nome": "CORP BANK AMAZONAS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 759,
                    "nome": "MIMOSO DO SUL",
                    "municipio": "MIMOSO DO SUL"
                },
                {
                    "id": 760,
                    "nome": "RIO NEGRO",
                    "municipio": "MANAUS"
                },
                {
                    "id": 761,
                    "nome": "SERVIDOR CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 762,
                    "nome": "ESTILO MACEIO",
                    "municipio": "MACEIO"
                },
                {
                    "id": 763,
                    "nome": "AV.TEOTONIO SEGURADO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 764,
                    "nome": "COMENDADOR ARAUJO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 765,
                    "nome": "SAO BORJA",
                    "municipio": "SAO BORJA"
                },
                {
                    "id": 766,
                    "nome": "ESTILO MANAUS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 767,
                    "nome": "COSTA RICA",
                    "municipio": "COSTA RICA"
                },
                {
                    "id": 768,
                    "nome": "CIDADE MORENA",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 769,
                    "nome": "VILA GUILHERME",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 770,
                    "nome": "ESTILO IGUATEMI",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 771,
                    "nome": "MARECHAL DEODORO-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 772,
                    "nome": "ESTILO SAO LUIS",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 773,
                    "nome": "ESTILO INV. SAVASSI",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 774,
                    "nome": "VITORIA DA CONQUISTA",
                    "municipio": "VITORIA DA CONQUISTA"
                },
                {
                    "id": 775,
                    "nome": "BERRINI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 776,
                    "nome": "ESTILO AGRO C.GRANDE",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 777,
                    "nome": "ESTILO BELEM",
                    "municipio": "BELEM"
                },
                {
                    "id": 778,
                    "nome": "ESTILO JOAO PESSOA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 779,
                    "nome": "AVENIDA JK",
                    "municipio": "PALMAS"
                },
                {
                    "id": 780,
                    "nome": "TAGUATINGA SUL",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 781,
                    "nome": "UFSCAR",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 782,
                    "nome": "RUA URUGUAI",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 783,
                    "nome": "PEDERNEIRAS",
                    "municipio": "PEDERNEIRAS"
                },
                {
                    "id": 784,
                    "nome": "CATEDRAL CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 785,
                    "nome": "LARGE CORPORATE 1893",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 786,
                    "nome": "SETOR PUBLICO SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 787,
                    "nome": "ESCOLA PLTA.MEDICINA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 788,
                    "nome": "UNIV.FEDERAL DO RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 789,
                    "nome": "ILHEUS",
                    "municipio": "ILHEUS"
                },
                {
                    "id": 790,
                    "nome": "PATOS DE MINAS",
                    "municipio": "PATOS DE MINAS"
                },
                {
                    "id": 791,
                    "nome": "PACOVAL",
                    "municipio": "MACAPA"
                },
                {
                    "id": 792,
                    "nome": "EMPRESA SOROCABA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 793,
                    "nome": "CORP BANK INFRA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 794,
                    "nome": "CORP BANK INDUSTRIAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 795,
                    "nome": "CORP BANK AGRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 796,
                    "nome": "CORP BANK COM E SERV",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 797,
                    "nome": "CORP BANK RIB PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 798,
                    "nome": "TELES PIRES",
                    "municipio": "SORRISO"
                },
                {
                    "id": 799,
                    "nome": "CAMAQUA",
                    "municipio": "CAMAQUA"
                },
                {
                    "id": 800,
                    "nome": "1924",
                    "municipio": ""
                },
                {
                    "id": 801,
                    "nome": "Ag�ncia 19240",
                    "municipio": ""
                },
                {
                    "id": 802,
                    "nome": "CRUZ ALTA",
                    "municipio": "CRUZ ALTA"
                },
                {
                    "id": 803,
                    "nome": "PASSOS",
                    "municipio": "PASSOS"
                },
                {
                    "id": 804,
                    "nome": "1943",
                    "municipio": ""
                },
                {
                    "id": 805,
                    "nome": "DOM PEDRITO",
                    "municipio": "DOM PEDRITO"
                },
                {
                    "id": 806,
                    "nome": "AGRESTINA",
                    "municipio": "AGRESTINA"
                },
                {
                    "id": 807,
                    "nome": "1961",
                    "municipio": ""
                },
                {
                    "id": 808,
                    "nome": "ESCR.EXC.BARAO CAFE",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 809,
                    "nome": "ESTILO SALVADOR",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 810,
                    "nome": "CSA SAO PAULO II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 811,
                    "nome": "AGUA BRANCA-AL",
                    "municipio": "AGUA BRANCA"
                },
                {
                    "id": 812,
                    "nome": "CSA BELO HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 813,
                    "nome": "AGRO SORRISO",
                    "municipio": "SORRISO"
                },
                {
                    "id": 814,
                    "nome": "BARIRI",
                    "municipio": "BARIRI"
                },
                {
                    "id": 815,
                    "nome": "ITAPETININGA",
                    "municipio": "ITAPETININGA"
                },
                {
                    "id": 816,
                    "nome": "ESTILO SAENS PENA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 817,
                    "nome": "19960",
                    "municipio": ""
                },
                {
                    "id": 818,
                    "nome": "ESTILO PANTANAL",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 819,
                    "nome": "ESTILO RONDONOPOLIS",
                    "municipio": "RONDONOPOLIS"
                },
                {
                    "id": 820,
                    "nome": "ESTILO VIT.CONQUISTA",
                    "municipio": "VITORIA DA CONQUISTA"
                },
                {
                    "id": 821,
                    "nome": "MANAUS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 822,
                    "nome": "SAO LUIS",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 823,
                    "nome": "GUARABIRA",
                    "municipio": "GUARABIRA"
                },
                {
                    "id": 824,
                    "nome": "GECEX SAO PAULO II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 825,
                    "nome": "2001",
                    "municipio": ""
                },
                {
                    "id": 826,
                    "nome": "COROACI",
                    "municipio": "COROACI"
                },
                {
                    "id": 827,
                    "nome": "COROATA",
                    "municipio": "COROATA"
                },
                {
                    "id": 828,
                    "nome": "CORONEL BICACO",
                    "municipio": "CORONEL BICACO"
                },
                {
                    "id": 829,
                    "nome": "CORONEL FREITAS",
                    "municipio": "CORONEL FREITAS"
                },
                {
                    "id": 830,
                    "nome": "CORONEL VIVIDA",
                    "municipio": "CORONEL VIVIDA"
                },
                {
                    "id": 831,
                    "nome": "CORRENTINA",
                    "municipio": "CORRENTINA"
                },
                {
                    "id": 832,
                    "nome": "TUBARAO",
                    "municipio": "TUBARAO"
                },
                {
                    "id": 833,
                    "nome": "CORUMBA DE GOIAS",
                    "municipio": "CORUMBA DE GOIAS"
                },
                {
                    "id": 834,
                    "nome": "CORUPA",
                    "municipio": "CORUPA"
                },
                {
                    "id": 835,
                    "nome": "COSMOPOLIS",
                    "municipio": "COSMOPOLIS"
                },
                {
                    "id": 836,
                    "nome": "Ag�ncia 2014",
                    "municipio": ""
                },
                {
                    "id": 837,
                    "nome": "2016",
                    "municipio": ""
                },
                {
                    "id": 838,
                    "nome": "CRISTINA",
                    "municipio": "CRISTINA"
                },
                {
                    "id": 839,
                    "nome": "2018",
                    "municipio": ""
                },
                {
                    "id": 840,
                    "nome": "CRIXAS",
                    "municipio": "CRIXAS"
                },
                {
                    "id": 841,
                    "nome": "CARLOS CHAGAS",
                    "municipio": "CARLOS CHAGAS"
                },
                {
                    "id": 842,
                    "nome": "CRUZ MACHADO",
                    "municipio": "CRUZ MACHADO"
                },
                {
                    "id": 843,
                    "nome": "CRUZILIA",
                    "municipio": "CRUZILIA"
                },
                {
                    "id": 844,
                    "nome": "CUNHA",
                    "municipio": "CUNHA"
                },
                {
                    "id": 845,
                    "nome": "DIVINO",
                    "municipio": "DIVINO"
                },
                {
                    "id": 846,
                    "nome": "DIVINOLANDIA",
                    "municipio": "DIVINOLANDIA"
                },
                {
                    "id": 847,
                    "nome": "DOIS IRMAOS",
                    "municipio": "DOIS IRMAOS"
                },
                {
                    "id": 848,
                    "nome": "AVARE",
                    "municipio": "AVARE"
                },
                {
                    "id": 849,
                    "nome": "DOM FELICIANO",
                    "municipio": "DOM FELICIANO"
                },
                {
                    "id": 850,
                    "nome": "DOM PEDRO",
                    "municipio": "DOM PEDRO"
                },
                {
                    "id": 851,
                    "nome": "DOM SILVERIO",
                    "municipio": "DOM SILVERIO"
                },
                {
                    "id": 852,
                    "nome": "DUARTINA",
                    "municipio": "DUARTINA"
                },
                {
                    "id": 853,
                    "nome": "PARNAMIRIM",
                    "municipio": "PARNAMIRIM"
                },
                {
                    "id": 854,
                    "nome": "ELOI MENDES",
                    "municipio": "ELOI MENDES"
                },
                {
                    "id": 855,
                    "nome": "EMBU",
                    "municipio": "EMBU DAS ARTES"
                },
                {
                    "id": 856,
                    "nome": "2039",
                    "municipio": ""
                },
                {
                    "id": 857,
                    "nome": "20397",
                    "municipio": ""
                },
                {
                    "id": 858,
                    "nome": "ITUIUTABA",
                    "municipio": "ITUIUTABA"
                },
                {
                    "id": 859,
                    "nome": "ENTRE RIOS",
                    "municipio": "ENTRE RIOS"
                },
                {
                    "id": 860,
                    "nome": "ENTRE RIOS DE MINAS",
                    "municipio": "ENTRE RIOS DE MINAS"
                },
                {
                    "id": 861,
                    "nome": "ERVAL SECO",
                    "municipio": "ERVAL SECO"
                },
                {
                    "id": 862,
                    "nome": "ERVALIA",
                    "municipio": "ERVALIA"
                },
                {
                    "id": 863,
                    "nome": "ESMERALDAS",
                    "municipio": "ESMERALDAS"
                },
                {
                    "id": 864,
                    "nome": "ESPERA FELIZ",
                    "municipio": "ESPERA FELIZ"
                },
                {
                    "id": 865,
                    "nome": "ESPERANCA",
                    "municipio": "ESPERANCA"
                },
                {
                    "id": 866,
                    "nome": "ESPERANTINA",
                    "municipio": "ESPERANTINA"
                },
                {
                    "id": 867,
                    "nome": "ESTIVA",
                    "municipio": "ESTIVA"
                },
                {
                    "id": 868,
                    "nome": "OURO FINO",
                    "municipio": "OURO FINO"
                },
                {
                    "id": 869,
                    "nome": "ESTRELA D OESTE",
                    "municipio": "ESTRELA D'OESTE"
                },
                {
                    "id": 870,
                    "nome": "EXTREMA",
                    "municipio": "EXTREMA"
                },
                {
                    "id": 871,
                    "nome": "FARTURA",
                    "municipio": "FARTURA"
                },
                {
                    "id": 872,
                    "nome": "FAXINAL",
                    "municipio": "FAXINAL"
                },
                {
                    "id": 873,
                    "nome": "FAZENDA NOVA",
                    "municipio": "FAZENDA NOVA"
                },
                {
                    "id": 874,
                    "nome": "MAFRA",
                    "municipio": "MAFRA"
                },
                {
                    "id": 875,
                    "nome": "2062",
                    "municipio": ""
                },
                {
                    "id": 876,
                    "nome": "FILADELFIA",
                    "municipio": "FILADELFIA"
                },
                {
                    "id": 877,
                    "nome": "FIRMINOPOLIS",
                    "municipio": "FIRMINOPOLIS"
                },
                {
                    "id": 878,
                    "nome": "2067",
                    "municipio": ""
                },
                {
                    "id": 879,
                    "nome": "2069",
                    "municipio": ""
                },
                {
                    "id": 880,
                    "nome": "AGUA DOCE",
                    "municipio": "AGUA DOCE"
                },
                {
                    "id": 881,
                    "nome": "JARDIM-MS",
                    "municipio": "JARDIM"
                },
                {
                    "id": 882,
                    "nome": "FRANCO DA ROCHA",
                    "municipio": "FRANCO DA ROCHA"
                },
                {
                    "id": 883,
                    "nome": "GENERAL SALGADO",
                    "municipio": "GENERAL SALGADO"
                },
                {
                    "id": 884,
                    "nome": "TRES LAGOAS",
                    "municipio": "TRES LAGOAS"
                },
                {
                    "id": 885,
                    "nome": "GETULINA",
                    "municipio": "GETULINA"
                },
                {
                    "id": 886,
                    "nome": "2081",
                    "municipio": ""
                },
                {
                    "id": 887,
                    "nome": "GRANDES RIOS",
                    "municipio": "GRANDES RIOS"
                },
                {
                    "id": 888,
                    "nome": "GRANJA",
                    "municipio": "GRANJA"
                },
                {
                    "id": 889,
                    "nome": "GRAO MOGOL",
                    "municipio": "GRAO MOGOL"
                },
                {
                    "id": 890,
                    "nome": "GRAVATAL",
                    "municipio": "GRAVATAL"
                },
                {
                    "id": 891,
                    "nome": "SANTA TERESA",
                    "municipio": "SANTA TERESA"
                },
                {
                    "id": 892,
                    "nome": "2090",
                    "municipio": ""
                },
                {
                    "id": 893,
                    "nome": "GUARA",
                    "municipio": "GUARA"
                },
                {
                    "id": 894,
                    "nome": "GUARACIABA DO NORTE",
                    "municipio": "GUARACIABA DO NORTE"
                },
                {
                    "id": 895,
                    "nome": "GUARAI",
                    "municipio": "GUARAI"
                },
                {
                    "id": 896,
                    "nome": "20940",
                    "municipio": ""
                },
                {
                    "id": 897,
                    "nome": "GUARAMIRIM",
                    "municipio": "GUARAMIRIM"
                },
                {
                    "id": 898,
                    "nome": "GUARANESIA",
                    "municipio": "GUARANESIA"
                },
                {
                    "id": 899,
                    "nome": "GUARANI DAS MISSOES",
                    "municipio": "GUARANI DAS MISSOES"
                },
                {
                    "id": 900,
                    "nome": "GUARAREMA",
                    "municipio": "GUARAREMA"
                },
                {
                    "id": 901,
                    "nome": "EMPRESA VITORIA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 902,
                    "nome": "ARAXA",
                    "municipio": "ARAXA"
                },
                {
                    "id": 903,
                    "nome": "GUARATUBA",
                    "municipio": "GUARATUBA"
                },
                {
                    "id": 904,
                    "nome": "HERVAL D OESTE",
                    "municipio": "HERVAL D'OESTE"
                },
                {
                    "id": 905,
                    "nome": "IACU",
                    "municipio": "IACU"
                },
                {
                    "id": 906,
                    "nome": "IAPU",
                    "municipio": "IAPU"
                },
                {
                    "id": 907,
                    "nome": "2107",
                    "municipio": ""
                },
                {
                    "id": 908,
                    "nome": "MARACAJU",
                    "municipio": "MARACAJU"
                },
                {
                    "id": 909,
                    "nome": "IBIPORA",
                    "municipio": "IBIPORA"
                },
                {
                    "id": 910,
                    "nome": "IBIRACI",
                    "municipio": "IBIRACI"
                },
                {
                    "id": 911,
                    "nome": "IBIRITE",
                    "municipio": "IBIRITE"
                },
                {
                    "id": 912,
                    "nome": "2117",
                    "municipio": ""
                },
                {
                    "id": 913,
                    "nome": "ICARA",
                    "municipio": "ICARA"
                },
                {
                    "id": 914,
                    "nome": "ICARAIMA",
                    "municipio": "ICARAIMA"
                },
                {
                    "id": 915,
                    "nome": "FORMIGA",
                    "municipio": "FORMIGA"
                },
                {
                    "id": 916,
                    "nome": "IEPE",
                    "municipio": "IEPE"
                },
                {
                    "id": 917,
                    "nome": "IGACI",
                    "municipio": "IGACI"
                },
                {
                    "id": 918,
                    "nome": "IGARAPE",
                    "municipio": "IGARAPE"
                },
                {
                    "id": 919,
                    "nome": "IGARAPE-ACU",
                    "municipio": "IGARAPE-ACU"
                },
                {
                    "id": 920,
                    "nome": "VENTUROSA",
                    "municipio": "VENTUROSA"
                },
                {
                    "id": 921,
                    "nome": "Ag�ncia 21253",
                    "municipio": ""
                },
                {
                    "id": 922,
                    "nome": "2126",
                    "municipio": ""
                },
                {
                    "id": 923,
                    "nome": "PAIAGUAS",
                    "municipio": "CUIABA"
                },
                {
                    "id": 924,
                    "nome": "2129",
                    "municipio": ""
                },
                {
                    "id": 925,
                    "nome": "PEDRA AZUL",
                    "municipio": "PEDRA AZUL"
                },
                {
                    "id": 926,
                    "nome": "IMBITUVA",
                    "municipio": "IMBITUVA"
                },
                {
                    "id": 927,
                    "nome": "2133",
                    "municipio": ""
                },
                {
                    "id": 928,
                    "nome": "21334",
                    "municipio": ""
                },
                {
                    "id": 929,
                    "nome": "INDIAPORA",
                    "municipio": "INDIAPORA"
                },
                {
                    "id": 930,
                    "nome": "IPIRANGA-PR",
                    "municipio": "IPIRANGA"
                },
                {
                    "id": 931,
                    "nome": "IPOJUCA",
                    "municipio": "IPOJUCA"
                },
                {
                    "id": 932,
                    "nome": "Ag�ncia 21385",
                    "municipio": ""
                },
                {
                    "id": 933,
                    "nome": "ASSU",
                    "municipio": "ACU"
                },
                {
                    "id": 934,
                    "nome": "IRINEOPOLIS",
                    "municipio": "IRINEOPOLIS"
                },
                {
                    "id": 935,
                    "nome": "IRITUIA",
                    "municipio": "IRITUIA"
                },
                {
                    "id": 936,
                    "nome": "ITABERA",
                    "municipio": "ITABERA"
                },
                {
                    "id": 937,
                    "nome": "ITABERAI",
                    "municipio": "ITABERAI"
                },
                {
                    "id": 938,
                    "nome": "ITABIRINHA",
                    "municipio": "ITABIRINHA"
                },
                {
                    "id": 939,
                    "nome": "SHOPPING GRANDE RIO",
                    "municipio": "SAO JOAO DE MERITI"
                },
                {
                    "id": 940,
                    "nome": "ITACARAMBI",
                    "municipio": "ITACARAMBI"
                },
                {
                    "id": 941,
                    "nome": "AIMORES",
                    "municipio": "AIMORES"
                },
                {
                    "id": 942,
                    "nome": "ITAGIBA",
                    "municipio": "ITAGIBA"
                },
                {
                    "id": 943,
                    "nome": "ITAGUACU",
                    "municipio": "ITAGUACU"
                },
                {
                    "id": 944,
                    "nome": "ITAGUARA",
                    "municipio": "ITAGUARA"
                },
                {
                    "id": 945,
                    "nome": "ITAI",
                    "municipio": "ITAI"
                },
                {
                    "id": 946,
                    "nome": "ITAIBA",
                    "municipio": "ITAIBA"
                },
                {
                    "id": 947,
                    "nome": "21560",
                    "municipio": ""
                },
                {
                    "id": 948,
                    "nome": "ENTRE RIOS",
                    "municipio": "GUARAPUAVA"
                },
                {
                    "id": 949,
                    "nome": "ITAJOBI",
                    "municipio": "ITAJOBI"
                },
                {
                    "id": 950,
                    "nome": "ITAMARAJU",
                    "municipio": "ITAMARAJU"
                },
                {
                    "id": 951,
                    "nome": "LIMEIRA",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 952,
                    "nome": "ITAMARANDIBA",
                    "municipio": "ITAMARANDIBA"
                },
                {
                    "id": 953,
                    "nome": "ITAMBACURI",
                    "municipio": "ITAMBACURI"
                },
                {
                    "id": 954,
                    "nome": "ITAOBIM",
                    "municipio": "ITAOBIM"
                },
                {
                    "id": 955,
                    "nome": "ITAOCARA",
                    "municipio": "ITAOCARA"
                },
                {
                    "id": 956,
                    "nome": "ITAPACI",
                    "municipio": "ITAPACI"
                },
                {
                    "id": 957,
                    "nome": "ITAPECERICA",
                    "municipio": "ITAPECERICA"
                },
                {
                    "id": 958,
                    "nome": "ITAPECERICA DA SERRA",
                    "municipio": "ITAPECERICA DA SERRA"
                },
                {
                    "id": 959,
                    "nome": "ITAPEJARA D OESTE",
                    "municipio": "ITAPEJARA D'OESTE"
                },
                {
                    "id": 960,
                    "nome": "UNIAO DA VITORIA",
                    "municipio": "UNIAO DA VITORIA"
                },
                {
                    "id": 961,
                    "nome": "2170",
                    "municipio": ""
                },
                {
                    "id": 962,
                    "nome": "ITAPEVI",
                    "municipio": "ITAPEVI"
                },
                {
                    "id": 963,
                    "nome": "ITAPICURU",
                    "municipio": "ITAPICURU"
                },
                {
                    "id": 964,
                    "nome": "ALTA FLORESTA OESTE",
                    "municipio": "ALTA FLORESTA D'OESTE"
                },
                {
                    "id": 965,
                    "nome": "ITAPIRAPUA",
                    "municipio": "ITAPIRAPUA"
                },
                {
                    "id": 966,
                    "nome": "ITAPORA",
                    "municipio": "ITAPORA"
                },
                {
                    "id": 967,
                    "nome": "ITAPORANGA",
                    "municipio": "ITAPORANGA"
                },
                {
                    "id": 968,
                    "nome": "ITAPORANGA",
                    "municipio": "ITAPORANGA"
                },
                {
                    "id": 969,
                    "nome": "SANTA CRUZ RIO PARDO",
                    "municipio": "SANTA CRUZ DO RIO PARDO"
                },
                {
                    "id": 970,
                    "nome": "ITAQUAQUECETUBA",
                    "municipio": "ITAQUAQUECETUBA"
                },
                {
                    "id": 971,
                    "nome": "ITARANTIM",
                    "municipio": "ITARANTIM"
                },
                {
                    "id": 972,
                    "nome": "ALVORADA D OESTE",
                    "municipio": "ALVORADA D'OESTE"
                },
                {
                    "id": 973,
                    "nome": "ITIQUIRA",
                    "municipio": "ITIQUIRA"
                },
                {
                    "id": 974,
                    "nome": "IVINHEMA",
                    "municipio": "IVINHEMA"
                },
                {
                    "id": 975,
                    "nome": "IVOTI",
                    "municipio": "IVOTI"
                },
                {
                    "id": 976,
                    "nome": "BURITI ALEGRE",
                    "municipio": "BURITI ALEGRE"
                },
                {
                    "id": 977,
                    "nome": "JABOTICATUBAS",
                    "municipio": "JABOTICATUBAS"
                },
                {
                    "id": 978,
                    "nome": "JACINTO MACHADO",
                    "municipio": "JACINTO MACHADO"
                },
                {
                    "id": 979,
                    "nome": "JACUPIRANGA",
                    "municipio": "JACUPIRANGA"
                },
                {
                    "id": 980,
                    "nome": "JACUTINGA-MG",
                    "municipio": "JACUTINGA"
                },
                {
                    "id": 981,
                    "nome": "JAGUAPITA",
                    "municipio": "JAGUAPITA"
                },
                {
                    "id": 982,
                    "nome": "JAGUARARI-BA",
                    "municipio": "JAGUARARI"
                },
                {
                    "id": 983,
                    "nome": "CEREJEIRAS",
                    "municipio": "CEREJEIRAS"
                },
                {
                    "id": 984,
                    "nome": "JAGUARIAIVA",
                    "municipio": "JAGUARIAIVA"
                },
                {
                    "id": 985,
                    "nome": "JAGUARIBE",
                    "municipio": "JAGUARIBE"
                },
                {
                    "id": 986,
                    "nome": "EMPRESA NATAL",
                    "municipio": "NATAL"
                },
                {
                    "id": 987,
                    "nome": "GOIANA",
                    "municipio": "GOIANA"
                },
                {
                    "id": 988,
                    "nome": "JAGUARIUNA",
                    "municipio": "JAGUARIUNA"
                },
                {
                    "id": 989,
                    "nome": "JAGUARUANA",
                    "municipio": "JAGUARUANA"
                },
                {
                    "id": 990,
                    "nome": "JAGUARUNA",
                    "municipio": "JAGUARUNA"
                },
                {
                    "id": 991,
                    "nome": "2203",
                    "municipio": ""
                },
                {
                    "id": 992,
                    "nome": "JANDAIA",
                    "municipio": "JANDAIA"
                },
                {
                    "id": 993,
                    "nome": "JANIOPOLIS",
                    "municipio": "JANIOPOLIS"
                },
                {
                    "id": 994,
                    "nome": "JAPARATUBA",
                    "municipio": "JAPARATUBA"
                },
                {
                    "id": 995,
                    "nome": "JAPURA",
                    "municipio": "JAPURA"
                },
                {
                    "id": 996,
                    "nome": "JARDIM-CE",
                    "municipio": "JARDIM"
                },
                {
                    "id": 997,
                    "nome": "22081",
                    "municipio": ""
                },
                {
                    "id": 998,
                    "nome": "Ag�ncia 22088",
                    "municipio": ""
                },
                {
                    "id": 999,
                    "nome": "JARDIM ALEGRE",
                    "municipio": "JARDIM ALEGRE"
                },
                {
                    "id": 1000,
                    "nome": "RIO VERDE",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 1001,
                    "nome": "JARDINOPOLIS",
                    "municipio": "JARDINOPOLIS"
                },
                {
                    "id": 1002,
                    "nome": "JATAIZINHO",
                    "municipio": "JATAIZINHO"
                },
                {
                    "id": 1003,
                    "nome": "2213",
                    "municipio": ""
                },
                {
                    "id": 1004,
                    "nome": "JAURU",
                    "municipio": "JAURU"
                },
                {
                    "id": 1005,
                    "nome": "JEQUERI",
                    "municipio": "JEQUERI"
                },
                {
                    "id": 1006,
                    "nome": "JOAIMA",
                    "municipio": "JOAIMA"
                },
                {
                    "id": 1007,
                    "nome": "JOANOPOLIS",
                    "municipio": "JOANOPOLIS"
                },
                {
                    "id": 1008,
                    "nome": "JOAO ALFREDO",
                    "municipio": "JOAO ALFREDO"
                },
                {
                    "id": 1009,
                    "nome": "SAO MATEUS",
                    "municipio": "SAO MATEUS"
                },
                {
                    "id": 1010,
                    "nome": "JOAO MONLEVADE",
                    "municipio": "JOAO MONLEVADE"
                },
                {
                    "id": 1011,
                    "nome": "JOAQUIM TAVORA",
                    "municipio": "JOAQUIM TAVORA"
                },
                {
                    "id": 1012,
                    "nome": "JOSE DE FREITAS",
                    "municipio": "JOSE DE FREITAS"
                },
                {
                    "id": 1013,
                    "nome": "COSTA MARQUES",
                    "municipio": "COSTA MARQUES"
                },
                {
                    "id": 1014,
                    "nome": "JUCAS",
                    "municipio": "JUCAS"
                },
                {
                    "id": 1015,
                    "nome": "JUINA",
                    "municipio": "JUINA"
                },
                {
                    "id": 1016,
                    "nome": "2229",
                    "municipio": ""
                },
                {
                    "id": 1017,
                    "nome": "ASSIS",
                    "municipio": "ASSIS"
                },
                {
                    "id": 1018,
                    "nome": "JUSCIMEIRA",
                    "municipio": "JUSCIMEIRA"
                },
                {
                    "id": 1019,
                    "nome": "LADAINHA",
                    "municipio": "LADAINHA"
                },
                {
                    "id": 1020,
                    "nome": "LAGAMAR",
                    "municipio": "LAGAMAR"
                },
                {
                    "id": 1021,
                    "nome": "SETOR PUBLICO RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1022,
                    "nome": "LAGOA DOURADA",
                    "municipio": "LAGOA DOURADA"
                },
                {
                    "id": 1023,
                    "nome": "LAGOA FORMOSA",
                    "municipio": "LAGOA FORMOSA"
                },
                {
                    "id": 1024,
                    "nome": "2238",
                    "municipio": ""
                },
                {
                    "id": 1025,
                    "nome": "LAGOA DO ITAENGA",
                    "municipio": "LAGOA DO ITAENGA"
                },
                {
                    "id": 1026,
                    "nome": "CORNELIO PROCOPIO",
                    "municipio": "CORNELIO PROCOPIO"
                },
                {
                    "id": 1027,
                    "nome": "LAGOA DA PRATA",
                    "municipio": "LAGOA DA PRATA"
                },
                {
                    "id": 1028,
                    "nome": "LAGOA SANTA",
                    "municipio": "LAGOA SANTA"
                },
                {
                    "id": 1029,
                    "nome": "LAJEDO",
                    "municipio": "LAJEDO"
                },
                {
                    "id": 1030,
                    "nome": "LAMBARI",
                    "municipio": "LAMBARI"
                },
                {
                    "id": 1031,
                    "nome": "LARANJAL PAULISTA",
                    "municipio": "LARANJAL PAULISTA"
                },
                {
                    "id": 1032,
                    "nome": "LAURO MULLER",
                    "municipio": "LAURO MULLER"
                },
                {
                    "id": 1033,
                    "nome": "LICINIO DE ALMEIDA",
                    "municipio": "LICINIO DE ALMEIDA"
                },
                {
                    "id": 1034,
                    "nome": "SERRINHA",
                    "municipio": "SERRINHA"
                },
                {
                    "id": 1035,
                    "nome": "LIMA DUARTE",
                    "municipio": "LIMA DUARTE"
                },
                {
                    "id": 1036,
                    "nome": "LIMOEIRO DO NORTE",
                    "municipio": "LIMOEIRO DO NORTE"
                },
                {
                    "id": 1037,
                    "nome": "LOUVEIRA",
                    "municipio": "LOUVEIRA"
                },
                {
                    "id": 1038,
                    "nome": "LUIS CORREIA",
                    "municipio": "LUIS CORREIA"
                },
                {
                    "id": 1039,
                    "nome": "MACAIBA",
                    "municipio": "MACAIBA"
                },
                {
                    "id": 1040,
                    "nome": "2257",
                    "municipio": ""
                },
                {
                    "id": 1041,
                    "nome": "MAIRIPORA",
                    "municipio": "MAIRIPORA"
                },
                {
                    "id": 1042,
                    "nome": "MAJOR ISIDORO",
                    "municipio": "MAJOR ISIDORO"
                },
                {
                    "id": 1043,
                    "nome": "MALLET",
                    "municipio": "MALLET"
                },
                {
                    "id": 1044,
                    "nome": "MAMBORE",
                    "municipio": "MAMBORE"
                },
                {
                    "id": 1045,
                    "nome": "MACHADINHO D OESTE",
                    "municipio": "MACHADINHO D'OESTE"
                },
                {
                    "id": 1046,
                    "nome": "MANDIRITUBA",
                    "municipio": "MANDIRITUBA"
                },
                {
                    "id": 1047,
                    "nome": "MANGUEIRINHA",
                    "municipio": "MANGUEIRINHA"
                },
                {
                    "id": 1048,
                    "nome": "MANOEL RIBAS",
                    "municipio": "MANOEL RIBAS"
                },
                {
                    "id": 1049,
                    "nome": "BARRA",
                    "municipio": "BARRA"
                },
                {
                    "id": 1050,
                    "nome": "JATUARANA",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 1051,
                    "nome": "MARAGOGIPE",
                    "municipio": "MARAGOGIPE"
                },
                {
                    "id": 1052,
                    "nome": "MARAPANIM",
                    "municipio": "MARAPANIM"
                },
                {
                    "id": 1053,
                    "nome": "MARCO",
                    "municipio": "MARCO"
                },
                {
                    "id": 1054,
                    "nome": "Mari - PB",
                    "municipio": ""
                },
                {
                    "id": 1055,
                    "nome": "MARIALVA",
                    "municipio": "MARIALVA"
                },
                {
                    "id": 1056,
                    "nome": "MARIANA",
                    "municipio": "MARIANA"
                },
                {
                    "id": 1057,
                    "nome": "SENHOR DO BONFIM",
                    "municipio": "SENHOR DO BONFIM"
                },
                {
                    "id": 1058,
                    "nome": "MARICA",
                    "municipio": "MARICA"
                },
                {
                    "id": 1059,
                    "nome": "MARMELEIRO",
                    "municipio": "MARMELEIRO"
                },
                {
                    "id": 1060,
                    "nome": "MARTINHO CAMPOS",
                    "municipio": "MARTINHO CAMPOS"
                },
                {
                    "id": 1061,
                    "nome": "MASSAPE",
                    "municipio": "MASSAPE"
                },
                {
                    "id": 1062,
                    "nome": "MATELANDIA",
                    "municipio": "MATELANDIA"
                },
                {
                    "id": 1063,
                    "nome": "MATEUS LEME",
                    "municipio": "MATEUS LEME"
                },
                {
                    "id": 1064,
                    "nome": "MATIPO",
                    "municipio": "MATIPO"
                },
                {
                    "id": 1065,
                    "nome": "MONTEIRO",
                    "municipio": "MONTEIRO"
                },
                {
                    "id": 1066,
                    "nome": "PRESIDENTE DUTRA",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 1067,
                    "nome": "SAO MIGUEL GUAPORE",
                    "municipio": "SAO MIGUEL DO GUAPORE"
                },
                {
                    "id": 1068,
                    "nome": "MEDEIROS NETO",
                    "municipio": "MEDEIROS NETO"
                },
                {
                    "id": 1069,
                    "nome": "MELEIRO",
                    "municipio": "MELEIRO"
                },
                {
                    "id": 1070,
                    "nome": "MENDES",
                    "municipio": "MENDES"
                },
                {
                    "id": 1071,
                    "nome": "VILA ISA",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 1072,
                    "nome": "MERCES",
                    "municipio": "MERCES"
                },
                {
                    "id": 1073,
                    "nome": "MIGUEL ALVES",
                    "municipio": "MIGUEL ALVES"
                },
                {
                    "id": 1074,
                    "nome": "MIGUEL PEREIRA",
                    "municipio": "MIGUEL PEREIRA"
                },
                {
                    "id": 1075,
                    "nome": "PARNAIBA",
                    "municipio": "PARNAIBA"
                },
                {
                    "id": 1076,
                    "nome": "CAETITE",
                    "municipio": "CAETITE"
                },
                {
                    "id": 1077,
                    "nome": "2300",
                    "municipio": ""
                },
                {
                    "id": 1078,
                    "nome": "MIRACATU",
                    "municipio": "MIRACATU"
                },
                {
                    "id": 1079,
                    "nome": "MIRADOURO",
                    "municipio": "MIRADOURO"
                },
                {
                    "id": 1080,
                    "nome": "2304",
                    "municipio": ""
                },
                {
                    "id": 1081,
                    "nome": "23040",
                    "municipio": ""
                },
                {
                    "id": 1082,
                    "nome": "MIRANTE PARANAPANEMA",
                    "municipio": "MIRANTE DO PARANAPANEMA"
                },
                {
                    "id": 1083,
                    "nome": "XV DE NOVEMBRO-SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 1084,
                    "nome": "GECEX BLUMENAU",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 1085,
                    "nome": "BARREIRAS",
                    "municipio": "BARREIRAS"
                },
                {
                    "id": 1086,
                    "nome": "MOJU",
                    "municipio": "MOJU"
                },
                {
                    "id": 1087,
                    "nome": "ZE DOCA",
                    "municipio": "ZE DOCA"
                },
                {
                    "id": 1088,
                    "nome": "ITAIPU",
                    "municipio": "NITEROI"
                },
                {
                    "id": 1089,
                    "nome": "MONTE ALEGRE",
                    "municipio": "MONTE ALEGRE"
                },
                {
                    "id": 1090,
                    "nome": "MONTE ALEGRE MINAS",
                    "municipio": "MONTE ALEGRE DE MINAS"
                },
                {
                    "id": 1091,
                    "nome": "LIMOEIRO",
                    "municipio": "LIMOEIRO"
                },
                {
                    "id": 1092,
                    "nome": "MONTE AZUL PAULISTA",
                    "municipio": "MONTE AZUL PAULISTA"
                },
                {
                    "id": 1093,
                    "nome": "MONTE BELO",
                    "municipio": "MONTE BELO"
                },
                {
                    "id": 1094,
                    "nome": "MONTE MOR",
                    "municipio": "MONTE MOR"
                },
                {
                    "id": 1095,
                    "nome": "MORENO",
                    "municipio": "MORENO"
                },
                {
                    "id": 1096,
                    "nome": "MORRETES",
                    "municipio": "MORRETES"
                },
                {
                    "id": 1097,
                    "nome": "MORRO AGUDO",
                    "municipio": "MORRO AGUDO"
                },
                {
                    "id": 1098,
                    "nome": "VITORIA SANTO ANTAO",
                    "municipio": "VITORIA DE SANTO ANTAO"
                },
                {
                    "id": 1099,
                    "nome": "VILA RE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1100,
                    "nome": "MURICI",
                    "municipio": "MURICI"
                },
                {
                    "id": 1101,
                    "nome": "NAZARE DA MATA",
                    "municipio": "NAZARE DA MATA"
                },
                {
                    "id": 1102,
                    "nome": "NEOPOLIS",
                    "municipio": "NEOPOLIS"
                },
                {
                    "id": 1103,
                    "nome": "NEPOMUCENO",
                    "municipio": "NEPOMUCENO"
                },
                {
                    "id": 1104,
                    "nome": "CRUZEIRO DO SUL-AC",
                    "municipio": "CRUZEIRO DO SUL"
                },
                {
                    "id": 1105,
                    "nome": "NIOAQUE",
                    "municipio": "NIOAQUE"
                },
                {
                    "id": 1106,
                    "nome": "NIQUELANDIA",
                    "municipio": "NIQUELANDIA"
                },
                {
                    "id": 1107,
                    "nome": "NOSSA SENHORA DORES",
                    "municipio": "NOSSA SENHORA DAS DORES"
                },
                {
                    "id": 1108,
                    "nome": "NOSSA SRA.DO SOCORRO",
                    "municipio": "NOSSA SENHORA DO SOCORRO"
                },
                {
                    "id": 1109,
                    "nome": "NOVA AURORA",
                    "municipio": "NOVA AURORA"
                },
                {
                    "id": 1110,
                    "nome": "NOVA CANAA",
                    "municipio": "NOVA CANAA"
                },
                {
                    "id": 1111,
                    "nome": "NOVA CANTU",
                    "municipio": "NOVA CANTU"
                },
                {
                    "id": 1112,
                    "nome": "SANTA VITORIA PALMAR",
                    "municipio": "SANTA VITORIA DO PALMAR"
                },
                {
                    "id": 1113,
                    "nome": "NOVA LIMA",
                    "municipio": "NOVA LIMA"
                },
                {
                    "id": 1114,
                    "nome": "NOVA PALMA",
                    "municipio": "NOVA PALMA"
                },
                {
                    "id": 1115,
                    "nome": "NOVA RESENDE",
                    "municipio": "NOVA RESENDE"
                },
                {
                    "id": 1116,
                    "nome": "NOVA SERRANA",
                    "municipio": "NOVA SERRANA"
                },
                {
                    "id": 1117,
                    "nome": "NOVA TRENTO",
                    "municipio": "NOVA TRENTO"
                },
                {
                    "id": 1118,
                    "nome": "NOVA VENEZA",
                    "municipio": "NOVA VENEZA"
                },
                {
                    "id": 1119,
                    "nome": "AQUIRY",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 1120,
                    "nome": "AV.BRASIL-RIO BRANCO",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 1121,
                    "nome": "236",
                    "municipio": ""
                },
                {
                    "id": 1122,
                    "nome": "NOVO CRUZEIRO",
                    "municipio": "NOVO CRUZEIRO"
                },
                {
                    "id": 1123,
                    "nome": "2361",
                    "municipio": ""
                },
                {
                    "id": 1124,
                    "nome": "OEIRAS",
                    "municipio": "OEIRAS"
                },
                {
                    "id": 1125,
                    "nome": "DOM BOSCO",
                    "municipio": "CUIABA"
                },
                {
                    "id": 1126,
                    "nome": "OIAPOQUE",
                    "municipio": "OIAPOQUE"
                },
                {
                    "id": 1127,
                    "nome": "OLINDA",
                    "municipio": "OLINDA"
                },
                {
                    "id": 1128,
                    "nome": "OLIVEIRA BREJINHOS",
                    "municipio": "OLIVEIRA DOS BREJINHOS"
                },
                {
                    "id": 1129,
                    "nome": "OROBO",
                    "municipio": "OROBO"
                },
                {
                    "id": 1130,
                    "nome": "CRATEUS",
                    "municipio": "CRATEUS"
                },
                {
                    "id": 1131,
                    "nome": "OURICURI",
                    "municipio": "OURICURI"
                },
                {
                    "id": 1132,
                    "nome": "OURO BRANCO",
                    "municipio": "OURO BRANCO"
                },
                {
                    "id": 1133,
                    "nome": "ALENCASTRO",
                    "municipio": "CUIABA"
                },
                {
                    "id": 1134,
                    "nome": "PACATUBA",
                    "municipio": "PACATUBA"
                },
                {
                    "id": 1135,
                    "nome": "GRUPO HOSP.CONCEICAO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 1136,
                    "nome": "PADRE BERNARDO",
                    "municipio": "PADRE BERNARDO"
                },
                {
                    "id": 1137,
                    "nome": "PADRE PARAISO",
                    "municipio": "PADRE PARAISO"
                },
                {
                    "id": 1138,
                    "nome": "NAZARE",
                    "municipio": "NAZARE"
                },
                {
                    "id": 1139,
                    "nome": "PALESTINA",
                    "municipio": "PALESTINA"
                },
                {
                    "id": 1140,
                    "nome": "PALHOCA",
                    "municipio": "PALHOCA"
                },
                {
                    "id": 1141,
                    "nome": "PALMEIRA D OESTE",
                    "municipio": "PALMEIRA D'OESTE"
                },
                {
                    "id": 1142,
                    "nome": "2386",
                    "municipio": ""
                },
                {
                    "id": 1143,
                    "nome": "PANCAS",
                    "municipio": "PANCAS"
                },
                {
                    "id": 1144,
                    "nome": "2388",
                    "municipio": ""
                },
                {
                    "id": 1145,
                    "nome": "PAPANDUVA",
                    "municipio": "PAPANDUVA"
                },
                {
                    "id": 1146,
                    "nome": "SENADOR POMPEU",
                    "municipio": "SENADOR POMPEU"
                },
                {
                    "id": 1147,
                    "nome": "PARACAMBI",
                    "municipio": "PARACAMBI"
                },
                {
                    "id": 1148,
                    "nome": "PARACURU",
                    "municipio": "PARACURU"
                },
                {
                    "id": 1149,
                    "nome": "PARAIBA DO SUL",
                    "municipio": "PARAIBA DO SUL"
                },
                {
                    "id": 1150,
                    "nome": "PARAISO DO NORTE",
                    "municipio": "PARAISO DO NORTE"
                },
                {
                    "id": 1151,
                    "nome": "PARAISOPOLIS",
                    "municipio": "PARAISOPOLIS"
                },
                {
                    "id": 1152,
                    "nome": "PARAMIRIM",
                    "municipio": "PARAMIRIM"
                },
                {
                    "id": 1153,
                    "nome": "EMPRESA JUIZ DE FORA",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 1154,
                    "nome": "AMARGOSA",
                    "municipio": "AMARGOSA"
                },
                {
                    "id": 1155,
                    "nome": "CAMPOS BELOS",
                    "municipio": "CAMPOS BELOS"
                },
                {
                    "id": 1156,
                    "nome": "PARANATINGA",
                    "municipio": "PARANATINGA"
                },
                {
                    "id": 1157,
                    "nome": "PARAOPEBA",
                    "municipio": "PARAOPEBA"
                },
                {
                    "id": 1158,
                    "nome": "PARAPUA",
                    "municipio": "PARAPUA"
                },
                {
                    "id": 1159,
                    "nome": "PARATY",
                    "municipio": "PARATY"
                },
                {
                    "id": 1160,
                    "nome": "QUIXADA",
                    "municipio": "QUIXADA"
                },
                {
                    "id": 1161,
                    "nome": "PASSA TEMPO",
                    "municipio": "PASSA TEMPO"
                },
                {
                    "id": 1162,
                    "nome": "2413",
                    "municipio": ""
                },
                {
                    "id": 1163,
                    "nome": "CORP BANK SOROCABA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 1164,
                    "nome": "PAULINIA",
                    "municipio": "PAULINIA"
                },
                {
                    "id": 1165,
                    "nome": "PAULO RAMOS",
                    "municipio": "PAULO RAMOS"
                },
                {
                    "id": 1166,
                    "nome": "PEDREIRAS",
                    "municipio": "PEDREIRAS"
                },
                {
                    "id": 1167,
                    "nome": "2422",
                    "municipio": ""
                },
                {
                    "id": 1168,
                    "nome": "24225",
                    "municipio": ""
                },
                {
                    "id": 1169,
                    "nome": "PEDRA PRETA",
                    "municipio": "PEDRA PRETA"
                },
                {
                    "id": 1170,
                    "nome": "PEDRALVA",
                    "municipio": "PEDRALVA"
                },
                {
                    "id": 1171,
                    "nome": "PEDRAS DE FOGO",
                    "municipio": "PEDRAS DE FOGO"
                },
                {
                    "id": 1172,
                    "nome": "PEDREGULHO",
                    "municipio": "PEDREGULHO"
                },
                {
                    "id": 1173,
                    "nome": "PEDREIRA",
                    "municipio": "PEDREIRA"
                },
                {
                    "id": 1174,
                    "nome": "PEDRO SEGUNDO",
                    "municipio": "PEDRO II"
                },
                {
                    "id": 1175,
                    "nome": "UNIAO",
                    "municipio": "UNIAO"
                },
                {
                    "id": 1176,
                    "nome": "PEDRO GOMES",
                    "municipio": "PEDRO GOMES"
                },
                {
                    "id": 1177,
                    "nome": "PERDOES",
                    "municipio": "PERDOES"
                },
                {
                    "id": 1178,
                    "nome": "CORP BANK FARIA LIMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1179,
                    "nome": "PERUIBE",
                    "municipio": "PERUIBE"
                },
                {
                    "id": 1180,
                    "nome": "PESQUEIRA",
                    "municipio": "PESQUEIRA"
                },
                {
                    "id": 1181,
                    "nome": "AGUA PRETA",
                    "municipio": "AGUA PRETA"
                },
                {
                    "id": 1182,
                    "nome": "PICUI",
                    "municipio": "PICUI"
                },
                {
                    "id": 1183,
                    "nome": "PILAO ARCADO",
                    "municipio": "PILAO ARCADO"
                },
                {
                    "id": 1184,
                    "nome": "HIGIENOPOLIS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1185,
                    "nome": "PILAR DO SUL",
                    "municipio": "PILAR DO SUL"
                },
                {
                    "id": 1186,
                    "nome": "UNICAMP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 1187,
                    "nome": "PINDARE-MIRIM",
                    "municipio": "PINDARE MIRIM"
                },
                {
                    "id": 1188,
                    "nome": "PINHAO",
                    "municipio": "PINHAO"
                },
                {
                    "id": 1189,
                    "nome": "PINHEIROS",
                    "municipio": "PINHEIROS"
                },
                {
                    "id": 1190,
                    "nome": "PIRACAIA",
                    "municipio": "PIRACAIA"
                },
                {
                    "id": 1191,
                    "nome": "PIRANGA",
                    "municipio": "PIRANGA"
                },
                {
                    "id": 1192,
                    "nome": "PIRAPOZINHO",
                    "municipio": "PIRAPOZINHO"
                },
                {
                    "id": 1193,
                    "nome": "PINHAIS",
                    "municipio": "PINHAIS"
                },
                {
                    "id": 1194,
                    "nome": "PIRATININGA",
                    "municipio": "PIRATININGA"
                },
                {
                    "id": 1195,
                    "nome": "PIRITIBA",
                    "municipio": "PIRITIBA"
                },
                {
                    "id": 1196,
                    "nome": "SERRA TALHADA",
                    "municipio": "SERRA TALHADA"
                },
                {
                    "id": 1197,
                    "nome": "PIRPIRITUBA",
                    "municipio": "PIRPIRITUBA"
                },
                {
                    "id": 1198,
                    "nome": "PITANGUEIRAS",
                    "municipio": "PITANGUEIRAS"
                },
                {
                    "id": 1199,
                    "nome": "PLANALTINA",
                    "municipio": "PLANALTINA"
                },
                {
                    "id": 1200,
                    "nome": "PLANALTO-RS",
                    "municipio": "PLANALTO"
                },
                {
                    "id": 1201,
                    "nome": "PLANALTO-BA",
                    "municipio": "PLANALTO"
                },
                {
                    "id": 1202,
                    "nome": "POA",
                    "municipio": "POA"
                },
                {
                    "id": 1203,
                    "nome": "2467",
                    "municipio": ""
                },
                {
                    "id": 1204,
                    "nome": "POCAO DE PEDRAS",
                    "municipio": "POCAO DE PEDRAS"
                },
                {
                    "id": 1205,
                    "nome": "POCINHOS",
                    "municipio": "POCINHOS"
                },
                {
                    "id": 1206,
                    "nome": "GUIRATINGA",
                    "municipio": "GUIRATINGA"
                },
                {
                    "id": 1207,
                    "nome": "POCO FUNDO",
                    "municipio": "POCO FUNDO"
                },
                {
                    "id": 1208,
                    "nome": "2473",
                    "municipio": ""
                },
                {
                    "id": 1209,
                    "nome": "POMERODE",
                    "municipio": "POMERODE"
                },
                {
                    "id": 1210,
                    "nome": "POMPEU",
                    "municipio": "POMPEU"
                },
                {
                    "id": 1211,
                    "nome": "PONTAL",
                    "municipio": "PONTAL"
                },
                {
                    "id": 1212,
                    "nome": "PONTE SERRADA",
                    "municipio": "PONTE SERRADA"
                },
                {
                    "id": 1213,
                    "nome": "CODO",
                    "municipio": "CODO"
                },
                {
                    "id": 1214,
                    "nome": "PONTES E LACERDA",
                    "municipio": "PONTES E LACERDA"
                },
                {
                    "id": 1215,
                    "nome": "PORCIUNCULA",
                    "municipio": "PORCIUNCULA"
                },
                {
                    "id": 1216,
                    "nome": "PORTAO",
                    "municipio": "PORTAO"
                },
                {
                    "id": 1217,
                    "nome": "PORTEL",
                    "municipio": "PORTEL"
                },
                {
                    "id": 1218,
                    "nome": "PORTO SEGURO",
                    "municipio": "PORTO SEGURO"
                },
                {
                    "id": 1219,
                    "nome": "RAMOS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1220,
                    "nome": "PORTO UNIAO",
                    "municipio": "PORTO UNIAO"
                },
                {
                    "id": 1221,
                    "nome": "PORTO XAVIER",
                    "municipio": "PORTO XAVIER"
                },
                {
                    "id": 1222,
                    "nome": "POTE",
                    "municipio": "POTE"
                },
                {
                    "id": 1223,
                    "nome": "Ag�ncia 2493",
                    "municipio": ""
                },
                {
                    "id": 1224,
                    "nome": "POTIRENDABA",
                    "municipio": "POTIRENDABA"
                },
                {
                    "id": 1225,
                    "nome": "POUSO REDONDO",
                    "municipio": "POUSO REDONDO"
                },
                {
                    "id": 1226,
                    "nome": "PRESIDENTE BERNARDES",
                    "municipio": "PRESIDENTE BERNARDES"
                },
                {
                    "id": 1227,
                    "nome": "PRESIDENTE DUTRA",
                    "municipio": "PRESIDENTE DUTRA"
                },
                {
                    "id": 1228,
                    "nome": "CATAGUASES",
                    "municipio": "CATAGUASES"
                },
                {
                    "id": 1229,
                    "nome": "MONTE RORAIMA",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 1230,
                    "nome": "BRAZLANDIA",
                    "municipio": "BRASILIA (BRAZLANDIA)"
                },
                {
                    "id": 1231,
                    "nome": "PRESIDENTE GETULIO",
                    "municipio": "PRESIDENTE GETULIO"
                },
                {
                    "id": 1232,
                    "nome": "EMPRESA V.IMPERIAL",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 1233,
                    "nome": "GECEX RIBEIRAO PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 1234,
                    "nome": "PRIMEIRO DE MAIO-PR",
                    "municipio": "PRIMEIRO DE MAIO"
                },
                {
                    "id": 1235,
                    "nome": "S.JOSE QUATRO MARCOS",
                    "municipio": "SAO JOSE DOS QUATRO MARCOS"
                },
                {
                    "id": 1236,
                    "nome": "QUEDAS DO IGUACU",
                    "municipio": "QUEDAS DO IGUACU"
                },
                {
                    "id": 1237,
                    "nome": "QUEIMADAS-PB",
                    "municipio": "QUEIMADAS"
                },
                {
                    "id": 1238,
                    "nome": "LENCOIS",
                    "municipio": "LENCOIS"
                },
                {
                    "id": 1239,
                    "nome": "QUIXERE",
                    "municipio": "QUIXERE"
                },
                {
                    "id": 1240,
                    "nome": "EMPRESA S.J.CAMPOS",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 1241,
                    "nome": "REALEZA",
                    "municipio": "REALEZA"
                },
                {
                    "id": 1242,
                    "nome": "REBOUCAS",
                    "municipio": "REBOUCAS"
                },
                {
                    "id": 1243,
                    "nome": "REDENCAO",
                    "municipio": "REDENCAO"
                },
                {
                    "id": 1244,
                    "nome": "REGENTE FEIJO",
                    "municipio": "REGENTE FEIJO"
                },
                {
                    "id": 1245,
                    "nome": "PIRACURUCA",
                    "municipio": "PIRACURUCA"
                },
                {
                    "id": 1246,
                    "nome": "RESENDE COSTA",
                    "municipio": "RESENDE COSTA"
                },
                {
                    "id": 1247,
                    "nome": "RESERVA",
                    "municipio": "RESERVA"
                },
                {
                    "id": 1248,
                    "nome": "RIACHAO DO DANTAS",
                    "municipio": "RIACHAO DO DANTAS"
                },
                {
                    "id": 1249,
                    "nome": "RIACHAO DAS NEVES",
                    "municipio": "RIACHAO DAS NEVES"
                },
                {
                    "id": 1250,
                    "nome": "2527",
                    "municipio": ""
                },
                {
                    "id": 1251,
                    "nome": "RIBEIRAO",
                    "municipio": "RIBEIRAO"
                },
                {
                    "id": 1252,
                    "nome": "25292",
                    "municipio": ""
                },
                {
                    "id": 1253,
                    "nome": "BRAGANCA",
                    "municipio": "BRAGANCA"
                },
                {
                    "id": 1254,
                    "nome": "RIBEIRAO DAS NEVES",
                    "municipio": "RIBEIRAO DAS NEVES"
                },
                {
                    "id": 1255,
                    "nome": "RIBEIRO GONCALVES",
                    "municipio": "RIBEIRO GONCALVES"
                },
                {
                    "id": 1256,
                    "nome": "RINOPOLIS",
                    "municipio": "RINOPOLIS"
                },
                {
                    "id": 1257,
                    "nome": "RIO BRANCO",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 1258,
                    "nome": "RIO BRANCO DO SUL",
                    "municipio": "RIO BRANCO DO SUL"
                },
                {
                    "id": 1259,
                    "nome": "RIO CASCA",
                    "municipio": "RIO CASCA"
                },
                {
                    "id": 1260,
                    "nome": "RIO CLARO",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 1261,
                    "nome": "PICOS",
                    "municipio": "PICOS"
                },
                {
                    "id": 1262,
                    "nome": "RIO DE CONTAS",
                    "municipio": "RIO DE CONTAS"
                },
                {
                    "id": 1263,
                    "nome": "2541",
                    "municipio": ""
                },
                {
                    "id": 1264,
                    "nome": "RIO LARGO",
                    "municipio": "RIO LARGO"
                },
                {
                    "id": 1265,
                    "nome": "RIO NEGRO",
                    "municipio": "RIO NEGRO"
                },
                {
                    "id": 1266,
                    "nome": "RIO DO OESTE",
                    "municipio": "RIO DO OESTE"
                },
                {
                    "id": 1267,
                    "nome": "RIO PIRACICABA",
                    "municipio": "RIO PIRACICABA"
                },
                {
                    "id": 1268,
                    "nome": "RIO TINTO",
                    "municipio": "RIO TINTO"
                },
                {
                    "id": 1269,
                    "nome": "RODEIO",
                    "municipio": "RODEIO"
                },
                {
                    "id": 1270,
                    "nome": "LUZILANDIA",
                    "municipio": "LUZILANDIA"
                },
                {
                    "id": 1271,
                    "nome": "RONCADOR",
                    "municipio": "RONCADOR"
                },
                {
                    "id": 1272,
                    "nome": "ROQUE GONZALES",
                    "municipio": "ROQUE GONZALES"
                },
                {
                    "id": 1273,
                    "nome": "ROSARIO",
                    "municipio": "ROSARIO"
                },
                {
                    "id": 1274,
                    "nome": "SABARA",
                    "municipio": "SABARA"
                },
                {
                    "id": 1275,
                    "nome": "SABINOPOLIS",
                    "municipio": "SABINOPOLIS"
                },
                {
                    "id": 1276,
                    "nome": "2558",
                    "municipio": ""
                },
                {
                    "id": 1277,
                    "nome": "2559",
                    "municipio": ""
                },
                {
                    "id": 1278,
                    "nome": "OBIDOS",
                    "municipio": "OBIDOS"
                },
                {
                    "id": 1279,
                    "nome": "SALETE",
                    "municipio": "SALETE"
                },
                {
                    "id": 1280,
                    "nome": "2564",
                    "municipio": ""
                },
                {
                    "id": 1281,
                    "nome": "SALTO DO LONTRA",
                    "municipio": "SALTO DO LONTRA"
                },
                {
                    "id": 1282,
                    "nome": "SALVADOR DO SUL",
                    "municipio": "SALVADOR DO SUL"
                },
                {
                    "id": 1283,
                    "nome": "SANTA ADELIA",
                    "municipio": "SANTA ADELIA"
                },
                {
                    "id": 1284,
                    "nome": "TAQUARITINGA",
                    "municipio": "TAQUARITINGA"
                },
                {
                    "id": 1285,
                    "nome": "SANTA BARBARA-MG",
                    "municipio": "SANTA BARBARA"
                },
                {
                    "id": 1286,
                    "nome": "SANTA CECILIA",
                    "municipio": "SANTA CECILIA"
                },
                {
                    "id": 1287,
                    "nome": "SANTA CECILIA PAVAO",
                    "municipio": "SANTA CECILIA DO PAVAO"
                },
                {
                    "id": 1288,
                    "nome": "SANTA CRUZ CABRALIA",
                    "municipio": "SANTA CRUZ CABRALIA"
                },
                {
                    "id": 1289,
                    "nome": "SANTA CRUZ M.CASTELO",
                    "municipio": "SANTA CRUZ DO MONTE CASTELO"
                },
                {
                    "id": 1290,
                    "nome": "SETOR PUBLICO MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 1291,
                    "nome": "SANTA HELENA",
                    "municipio": "SANTA HELENA"
                },
                {
                    "id": 1292,
                    "nome": "SANTA ISABEL",
                    "municipio": "SANTA ISABEL"
                },
                {
                    "id": 1293,
                    "nome": "SANTA IZABEL OESTE",
                    "municipio": "SANTA IZABEL DO OESTE"
                },
                {
                    "id": 1294,
                    "nome": "SAARA-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1295,
                    "nome": "SANTA ISABEL DO PARA",
                    "municipio": "SANTA ISABEL DO PARA"
                },
                {
                    "id": 1296,
                    "nome": "SANTA LUZIA-MA",
                    "municipio": "SANTA LUZIA"
                },
                {
                    "id": 1297,
                    "nome": "SANTA LUZIA",
                    "municipio": "SANTA LUZIA"
                },
                {
                    "id": 1298,
                    "nome": "SANTA MARGARIDA",
                    "municipio": "SANTA MARGARIDA"
                },
                {
                    "id": 1299,
                    "nome": "STA.MARIA DE ITABIRA",
                    "municipio": "SANTA MARIA DE ITABIRA"
                },
                {
                    "id": 1300,
                    "nome": "SANTA MARIA MADALENA",
                    "municipio": "SANTA MARIA MADALENA"
                },
                {
                    "id": 1301,
                    "nome": "SANTA MARIA DO PARA",
                    "municipio": "SANTA MARIA DO PARA"
                },
                {
                    "id": 1302,
                    "nome": "SANTA RITA DE CALDAS",
                    "municipio": "SANTA RITA DE CALDAS"
                },
                {
                    "id": 1303,
                    "nome": "STA.RITA PASSA QUATR",
                    "municipio": "SANTA RITA DO PASSA QUATRO"
                },
                {
                    "id": 1304,
                    "nome": "PARANAGUA",
                    "municipio": "PARANAGUA"
                },
                {
                    "id": 1305,
                    "nome": "2590",
                    "municipio": ""
                },
                {
                    "id": 1306,
                    "nome": "EMPRESA UBERLANDIA",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 1307,
                    "nome": "JUIZ DE FORA",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 1308,
                    "nome": "SANTA VITORIA",
                    "municipio": "SANTA VITORIA"
                },
                {
                    "id": 1309,
                    "nome": "SANTANA DO ACARAU",
                    "municipio": "SANTANA DO ACARAU"
                },
                {
                    "id": 1310,
                    "nome": "SANTANA DO ARAGUAIA",
                    "municipio": "SANTANA DO ARAGUAIA"
                },
                {
                    "id": 1311,
                    "nome": "SANTANA DA VARGEM",
                    "municipio": "SANTANA DA VARGEM"
                },
                {
                    "id": 1312,
                    "nome": "CARANGOLA",
                    "municipio": "CARANGOLA"
                },
                {
                    "id": 1313,
                    "nome": "STO.AMARO IMPERATRIZ",
                    "municipio": "SANTO AMARO DA IMPERATRIZ"
                },
                {
                    "id": 1314,
                    "nome": "SANTO ANTONIO AMPARO",
                    "municipio": "SANTO ANTONIO DO AMPARO"
                },
                {
                    "id": 1315,
                    "nome": "STO.ANTONIO JACINTO",
                    "municipio": "SANTO ANTONIO DO JACINTO"
                },
                {
                    "id": 1316,
                    "nome": "SAO BENEDITO",
                    "municipio": "SAO BENEDITO"
                },
                {
                    "id": 1317,
                    "nome": "SAO BENTO",
                    "municipio": "SAO BENTO"
                },
                {
                    "id": 1318,
                    "nome": "SAO BENTO DO SAPUCAI",
                    "municipio": "SAO BENTO DO SAPUCAI"
                },
                {
                    "id": 1319,
                    "nome": "CORP BANK MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 1320,
                    "nome": "MACAPA",
                    "municipio": "MACAPA"
                },
                {
                    "id": 1321,
                    "nome": "SAO DESIDERIO",
                    "municipio": "SAO DESIDERIO"
                },
                {
                    "id": 1322,
                    "nome": "SAO DOMINGOS-SC",
                    "municipio": "SAO DOMINGOS"
                },
                {
                    "id": 1323,
                    "nome": "S.DOMINGOS MARANHAO",
                    "municipio": "SAO DOMINGOS DO MARANHAO"
                },
                {
                    "id": 1324,
                    "nome": "S.DOMINGOS DO PRATA",
                    "municipio": "SAO DOMINGOS DO PRATA"
                },
                {
                    "id": 1325,
                    "nome": "EMPRESA BOA VISTA",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 1326,
                    "nome": "VOLTA REDONDA",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 1327,
                    "nome": "SAO GABRIEL DO OESTE",
                    "municipio": "SAO GABRIEL DO OESTE"
                },
                {
                    "id": 1328,
                    "nome": "S.GONCALO DO ABAETE",
                    "municipio": "SAO GONCALO DO ABAETE"
                },
                {
                    "id": 1329,
                    "nome": "SAO GONCALO AMARANTE",
                    "municipio": "SAO GONCALO DO AMARANTE"
                },
                {
                    "id": 1330,
                    "nome": "IGAPO",
                    "municipio": "SAO GONCALO DO AMARANTE"
                },
                {
                    "id": 1331,
                    "nome": "2625",
                    "municipio": ""
                },
                {
                    "id": 1332,
                    "nome": "Ag�ncia 26255",
                    "municipio": ""
                },
                {
                    "id": 1333,
                    "nome": "SAO JOAO DA BARRA",
                    "municipio": "SAO JOAO DA BARRA"
                },
                {
                    "id": 1334,
                    "nome": "SAO JOAO BATISTA",
                    "municipio": "SAO JOAO BATISTA"
                },
                {
                    "id": 1335,
                    "nome": "TAPES",
                    "municipio": "TAPES"
                },
                {
                    "id": 1336,
                    "nome": "SAO JOAO DO IVAI",
                    "municipio": "SAO JOAO DO IVAI"
                },
                {
                    "id": 1337,
                    "nome": "SAO JOAO DA PONTE",
                    "municipio": "SAO JOAO DA PONTE"
                },
                {
                    "id": 1338,
                    "nome": "SAO JOAO DO TRIUNFO",
                    "municipio": "SAO JOAO DO TRIUNFO"
                },
                {
                    "id": 1339,
                    "nome": "ESCR.EXC.CAPITAL DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 1340,
                    "nome": "SAO JOSE",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 1341,
                    "nome": "SANTO ANDRE",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 1342,
                    "nome": "SAO JOSE DE MIPIBU",
                    "municipio": "SAO JOSE DE MIPIBU"
                },
                {
                    "id": 1343,
                    "nome": "SAO JOSE DE PIRANHAS",
                    "municipio": "SAO JOSE DE PIRANHAS"
                },
                {
                    "id": 1344,
                    "nome": "SAO JOSE DE RIBAMAR",
                    "municipio": "SAO JOSE DE RIBAMAR"
                },
                {
                    "id": 1345,
                    "nome": "SAO JOSE DA TAPERA",
                    "municipio": "SAO JOSE DA TAPERA"
                },
                {
                    "id": 1346,
                    "nome": "SAO LUIS PARAITINGA",
                    "municipio": "SAO LUIS DO PARAITINGA"
                },
                {
                    "id": 1347,
                    "nome": "SAO CRISTOVAO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1348,
                    "nome": "SAO MARTINHO",
                    "municipio": "SAO MARTINHO"
                },
                {
                    "id": 1349,
                    "nome": "SAO MATEUS MARANHAO",
                    "municipio": "SAO MATEUS DO MARANHAO"
                },
                {
                    "id": 1350,
                    "nome": "SAO MIGUEL ARCANJO",
                    "municipio": "SAO MIGUEL ARCANJO"
                },
                {
                    "id": 1351,
                    "nome": "SAO MIGUEL DO GUAMA",
                    "municipio": "SAO MIGUEL DO GUAMA"
                },
                {
                    "id": 1352,
                    "nome": "SAO PEDRO",
                    "municipio": "SAO PEDRO"
                },
                {
                    "id": 1353,
                    "nome": "SAO PEDRO DA ALDEIA",
                    "municipio": "SAO PEDRO DA ALDEIA"
                },
                {
                    "id": 1354,
                    "nome": "SAO PEDRO DO PIAUI",
                    "municipio": "SAO PEDRO DO PIAUI"
                },
                {
                    "id": 1355,
                    "nome": "LARGE CORPORATE 2659",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1356,
                    "nome": "DORES DO INDAIA",
                    "municipio": "DORES DO INDAIA"
                },
                {
                    "id": 1357,
                    "nome": "SAO RAIMUNDO NONATO",
                    "municipio": "SAO RAIMUNDO NONATO"
                },
                {
                    "id": 1358,
                    "nome": "SAO SEBASTIAO-AL",
                    "municipio": "SAO SEBASTIAO"
                },
                {
                    "id": 1359,
                    "nome": "BAIRRO NITEROI",
                    "municipio": "CANOAS"
                },
                {
                    "id": 1360,
                    "nome": "SAO SEBASTIAO GRAMA",
                    "municipio": "SAO SEBASTIAO DA GRAMA"
                },
                {
                    "id": 1361,
                    "nome": "AVENIDA DO CAFE",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 1362,
                    "nome": "SAO TIAGO",
                    "municipio": "SAO TIAGO"
                },
                {
                    "id": 1363,
                    "nome": "2669",
                    "municipio": ""
                },
                {
                    "id": 1364,
                    "nome": "Ag�ncia 26697",
                    "municipio": ""
                },
                {
                    "id": 1365,
                    "nome": "BELA VISTA-MS",
                    "municipio": "BELA VISTA"
                },
                {
                    "id": 1366,
                    "nome": "SAPEACU",
                    "municipio": "SAPEACU"
                },
                {
                    "id": 1367,
                    "nome": "SAPUCAIA DO SUL",
                    "municipio": "SAPUCAIA DO SUL"
                },
                {
                    "id": 1368,
                    "nome": "SAQUAREMA",
                    "municipio": "SAQUAREMA"
                },
                {
                    "id": 1369,
                    "nome": "SENGES",
                    "municipio": "SENGES"
                },
                {
                    "id": 1370,
                    "nome": "SENTO SE",
                    "municipio": "SENTO SE"
                },
                {
                    "id": 1371,
                    "nome": "SERAFINA CORREA",
                    "municipio": "SERAFINA CORREA"
                },
                {
                    "id": 1372,
                    "nome": "VOTUPORANGA",
                    "municipio": "VOTUPORANGA"
                },
                {
                    "id": 1373,
                    "nome": "SERRA DOURADA",
                    "municipio": "SERRA DOURADA"
                },
                {
                    "id": 1374,
                    "nome": "SERRA NEGRA",
                    "municipio": "SERRA NEGRA"
                },
                {
                    "id": 1375,
                    "nome": "GECEX CAXIAS DO SUL",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 1376,
                    "nome": "2683",
                    "municipio": ""
                },
                {
                    "id": 1377,
                    "nome": "SERTAO",
                    "municipio": "SERTAO"
                },
                {
                    "id": 1378,
                    "nome": "SETE BARRAS",
                    "municipio": "SETE BARRAS"
                },
                {
                    "id": 1379,
                    "nome": "SETE QUEDAS",
                    "municipio": "SETE QUEDAS"
                },
                {
                    "id": 1380,
                    "nome": "SIDEROPOLIS",
                    "municipio": "SIDEROPOLIS"
                },
                {
                    "id": 1381,
                    "nome": "SILVA JARDIM",
                    "municipio": "SILVA JARDIM"
                },
                {
                    "id": 1382,
                    "nome": "JABOTICABAL",
                    "municipio": "JABOTICABAL"
                },
                {
                    "id": 1383,
                    "nome": "SIMAO DIAS",
                    "municipio": "SIMAO DIAS"
                },
                {
                    "id": 1384,
                    "nome": "BENTO BRASIL",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 1385,
                    "nome": "2693",
                    "municipio": ""
                },
                {
                    "id": 1386,
                    "nome": "Ag�ncia 26930",
                    "municipio": ""
                },
                {
                    "id": 1387,
                    "nome": "BENJAMIN CONSTANT-RS",
                    "municipio": "RIO GRANDE"
                },
                {
                    "id": 1388,
                    "nome": "SOCORRO",
                    "municipio": "SOCORRO"
                },
                {
                    "id": 1389,
                    "nome": "SOLANEA",
                    "municipio": "SOLANEA"
                },
                {
                    "id": 1390,
                    "nome": "TABAPUA",
                    "municipio": "TABAPUA"
                },
                {
                    "id": 1391,
                    "nome": "TABIRA",
                    "municipio": "TABIRA"
                },
                {
                    "id": 1392,
                    "nome": "JAU",
                    "municipio": "JAU"
                },
                {
                    "id": 1393,
                    "nome": "UBA",
                    "municipio": "UBA"
                },
                {
                    "id": 1394,
                    "nome": "TABOAO DA SERRA",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 1395,
                    "nome": "TABULEIRO DO NORTE",
                    "municipio": "TABULEIRO DO NORTE"
                },
                {
                    "id": 1396,
                    "nome": "TACARATU",
                    "municipio": "TACARATU"
                },
                {
                    "id": 1397,
                    "nome": "27020",
                    "municipio": ""
                },
                {
                    "id": 1398,
                    "nome": "TAGUATINGA",
                    "municipio": "TAGUATINGA"
                },
                {
                    "id": 1399,
                    "nome": "TAIOBEIRAS",
                    "municipio": "TAIOBEIRAS"
                },
                {
                    "id": 1400,
                    "nome": "TAMBAU",
                    "municipio": "TAMBAU"
                },
                {
                    "id": 1401,
                    "nome": "ESCR.EXC.JOINVILLE",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 1402,
                    "nome": "TAPEJARA",
                    "municipio": "TAPEJARA"
                },
                {
                    "id": 1403,
                    "nome": "ITAQUI",
                    "municipio": "ITAQUI"
                },
                {
                    "id": 1404,
                    "nome": "TAPEROA",
                    "municipio": "TAPEROA"
                },
                {
                    "id": 1405,
                    "nome": "TAQUARANA",
                    "municipio": "TAQUARANA"
                },
                {
                    "id": 1406,
                    "nome": "TAQUARITUBA",
                    "municipio": "TAQUARITUBA"
                },
                {
                    "id": 1407,
                    "nome": "TARAUACA",
                    "municipio": "TARAUACA"
                },
                {
                    "id": 1408,
                    "nome": "TAVARES",
                    "municipio": "TAVARES"
                },
                {
                    "id": 1409,
                    "nome": "TEIXEIRAS",
                    "municipio": "TEIXEIRAS"
                },
                {
                    "id": 1410,
                    "nome": "TEODORO SAMPAIO-SP",
                    "municipio": "TEODORO SAMPAIO"
                },
                {
                    "id": 1411,
                    "nome": "RANCHARIA",
                    "municipio": "RANCHARIA"
                },
                {
                    "id": 1412,
                    "nome": "TERRA BOA",
                    "municipio": "TERRA BOA"
                },
                {
                    "id": 1413,
                    "nome": "TERRA ROXA",
                    "municipio": "TERRA ROXA"
                },
                {
                    "id": 1414,
                    "nome": "TIBAGI",
                    "municipio": "TIBAGI"
                },
                {
                    "id": 1415,
                    "nome": "TIJUCAS",
                    "municipio": "TIJUCAS"
                },
                {
                    "id": 1416,
                    "nome": "TIJUCAS DO SUL",
                    "municipio": "TIJUCAS DO SUL"
                },
                {
                    "id": 1417,
                    "nome": "TIMON",
                    "municipio": "TIMON"
                },
                {
                    "id": 1418,
                    "nome": "ASA NORTE 316",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 1419,
                    "nome": "TOCANTINS",
                    "municipio": "TOCANTINS"
                },
                {
                    "id": 1420,
                    "nome": "ANDRADINA",
                    "municipio": "ANDRADINA"
                },
                {
                    "id": 1421,
                    "nome": "TOUROS",
                    "municipio": "TOUROS"
                },
                {
                    "id": 1422,
                    "nome": "TRAIRI",
                    "municipio": "TRAIRI"
                },
                {
                    "id": 1423,
                    "nome": "TRAMANDAI",
                    "municipio": "TRAMANDAI"
                },
                {
                    "id": 1424,
                    "nome": "TREZE DE MAIO",
                    "municipio": "TREZE DE MAIO"
                },
                {
                    "id": 1425,
                    "nome": "TRINDADE",
                    "municipio": "TRINDADE"
                },
                {
                    "id": 1426,
                    "nome": "TRINDADE-GO",
                    "municipio": "TRINDADE"
                },
                {
                    "id": 1427,
                    "nome": "TRIUNFO-PE",
                    "municipio": "TRIUNFO"
                },
                {
                    "id": 1428,
                    "nome": "27391",
                    "municipio": ""
                },
                {
                    "id": 1429,
                    "nome": "PATROCINIO",
                    "municipio": "PATROCINIO"
                },
                {
                    "id": 1430,
                    "nome": "TRIUNFO-RS",
                    "municipio": "TRIUNFO"
                },
                {
                    "id": 1431,
                    "nome": "TUCUNDUVA",
                    "municipio": "TUCUNDUVA"
                },
                {
                    "id": 1432,
                    "nome": "TUNTUM",
                    "municipio": "TUNTUM"
                },
                {
                    "id": 1433,
                    "nome": "TUPARENDI",
                    "municipio": "TUPARENDI"
                },
                {
                    "id": 1434,
                    "nome": "TURMALINA",
                    "municipio": "TURMALINA"
                },
                {
                    "id": 1435,
                    "nome": "TUTOIA",
                    "municipio": "TUTOIA"
                },
                {
                    "id": 1436,
                    "nome": "UBAI",
                    "municipio": "UBAI"
                },
                {
                    "id": 1437,
                    "nome": "UBATUBA",
                    "municipio": "UBATUBA"
                },
                {
                    "id": 1438,
                    "nome": "AGUAI",
                    "municipio": "AGUAI"
                },
                {
                    "id": 1439,
                    "nome": "UMBAUBA",
                    "municipio": "UMBAUBA"
                },
                {
                    "id": 1440,
                    "nome": "URANDI",
                    "municipio": "URANDI"
                },
                {
                    "id": 1441,
                    "nome": "URANIA",
                    "municipio": "URANIA"
                },
                {
                    "id": 1442,
                    "nome": "URUANA",
                    "municipio": "URUANA"
                },
                {
                    "id": 1443,
                    "nome": "URUBICI",
                    "municipio": "URUBICI"
                },
                {
                    "id": 1444,
                    "nome": "EMPRESA LONDRINA",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 1445,
                    "nome": "SETOR PUBLICO RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 1446,
                    "nome": "URUPES",
                    "municipio": "URUPES"
                },
                {
                    "id": 1447,
                    "nome": "RIO DO SUL",
                    "municipio": "RIO DO SUL"
                },
                {
                    "id": 1448,
                    "nome": "UTINGA",
                    "municipio": "UTINGA"
                },
                {
                    "id": 1449,
                    "nome": "VALENCA DO PIAUI",
                    "municipio": "VALENCA DO PIAUI"
                },
                {
                    "id": 1450,
                    "nome": "VARGEM GRANDE",
                    "municipio": "VARGEM GRANDE"
                },
                {
                    "id": 1451,
                    "nome": "VARGEM GRANDE DO SUL",
                    "municipio": "VARGEM GRANDE DO SUL"
                },
                {
                    "id": 1452,
                    "nome": "VARZEA GRANDE",
                    "municipio": "VARZEA GRANDE"
                },
                {
                    "id": 1453,
                    "nome": "VARZEA DA PALMA",
                    "municipio": "VARZEA DA PALMA"
                },
                {
                    "id": 1454,
                    "nome": "VARZEA PAULISTA",
                    "municipio": "VARZEA PAULISTA"
                },
                {
                    "id": 1455,
                    "nome": "VERA CRUZ",
                    "municipio": "VERA CRUZ"
                },
                {
                    "id": 1456,
                    "nome": "GOIAS",
                    "municipio": "GOIAS"
                },
                {
                    "id": 1457,
                    "nome": "VESPASIANO",
                    "municipio": "VESPASIANO"
                },
                {
                    "id": 1458,
                    "nome": "VIANA-MA",
                    "municipio": "VIANA"
                },
                {
                    "id": 1459,
                    "nome": "VICOSA DO CEARA",
                    "municipio": "VICOSA DO CEARA"
                },
                {
                    "id": 1460,
                    "nome": "VICTOR GRAEFF",
                    "municipio": "VICTOR GRAEFF"
                },
                {
                    "id": 1461,
                    "nome": "VIDAL RAMOS",
                    "municipio": "VIDAL RAMOS"
                },
                {
                    "id": 1462,
                    "nome": "AFUBRA",
                    "municipio": "SANTA CRUZ DO SUL"
                },
                {
                    "id": 1463,
                    "nome": "VIRADOURO",
                    "municipio": "VIRADOURO"
                },
                {
                    "id": 1464,
                    "nome": "ITABAIANA-SE",
                    "municipio": "ITABAIANA"
                },
                {
                    "id": 1465,
                    "nome": "VIRGINOPOLIS",
                    "municipio": "VIRGINOPOLIS"
                },
                {
                    "id": 1466,
                    "nome": "TAQUARALTO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 1467,
                    "nome": "VITORINO FREIRE",
                    "municipio": "VITORINO FREIRE"
                },
                {
                    "id": 1468,
                    "nome": "ABOLICAO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1469,
                    "nome": "XINGUARA",
                    "municipio": "XINGUARA"
                },
                {
                    "id": 1470,
                    "nome": "JOAO LISBOA",
                    "municipio": "JOAO LISBOA"
                },
                {
                    "id": 1471,
                    "nome": "NOVA SOURE",
                    "municipio": "NOVA SOURE"
                },
                {
                    "id": 1472,
                    "nome": "LUCELIA",
                    "municipio": "LUCELIA"
                },
                {
                    "id": 1473,
                    "nome": "MONTE AZUL",
                    "municipio": "MONTE AZUL"
                },
                {
                    "id": 1474,
                    "nome": "MONTE SIAO",
                    "municipio": "MONTE SIAO"
                },
                {
                    "id": 1475,
                    "nome": "FRANCISCO MORATO",
                    "municipio": "FRANCISCO MORATO"
                },
                {
                    "id": 1476,
                    "nome": "ALDEOTA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 1477,
                    "nome": "RECREIO BANDEIRANTES",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1478,
                    "nome": "ZONA NORTE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 1479,
                    "nome": "BAIXA DOS SAPATEIROS",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 1480,
                    "nome": "EMPRESA BARRA AVENID",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 1481,
                    "nome": "RIBEIRAO PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 1482,
                    "nome": "CAPELA",
                    "municipio": "CAPELA"
                },
                {
                    "id": 1483,
                    "nome": "PARQUE TOMAS EDSON",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1484,
                    "nome": "BUTANTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1485,
                    "nome": "CASA AMARELA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 1486,
                    "nome": "28029",
                    "municipio": ""
                },
                {
                    "id": 1487,
                    "nome": "ROCKEFELLER-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 1488,
                    "nome": "CUPECE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1489,
                    "nome": "2805",
                    "municipio": ""
                },
                {
                    "id": 1490,
                    "nome": "BAIRRO PETROPOLIS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 1491,
                    "nome": "ITAIM BIBI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1492,
                    "nome": "AV.BRIG.LUIZ ANTONIO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1493,
                    "nome": "ALEGRE",
                    "municipio": "ALEGRE"
                },
                {
                    "id": 1494,
                    "nome": "LARANJEIRAS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1495,
                    "nome": "CONSELHEIRO AGUIAR",
                    "municipio": "RECIFE"
                },
                {
                    "id": 1496,
                    "nome": "MONTESE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 1497,
                    "nome": "PARTENON",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 1498,
                    "nome": "PIRITUBA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1499,
                    "nome": "PITUBA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 1500,
                    "nome": "MOINHOS DE VENTO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 1501,
                    "nome": "AVENIDA JOAO CESAR",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 1502,
                    "nome": "ITAMBE-BA",
                    "municipio": "ITAMBE"
                },
                {
                    "id": 1503,
                    "nome": "CAVALHADA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 1504,
                    "nome": "HAUER",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 1505,
                    "nome": "AV.CORIOLANO JUCA",
                    "municipio": "MACAPA"
                },
                {
                    "id": 1506,
                    "nome": "SAO BERNARDO",
                    "municipio": "SAO BERNARDO"
                },
                {
                    "id": 1507,
                    "nome": "ASTOLFO DUTRA",
                    "municipio": "ASTOLFO DUTRA"
                },
                {
                    "id": 1508,
                    "nome": "BARAUNA",
                    "municipio": "BARAUNA"
                },
                {
                    "id": 1509,
                    "nome": "CRISTAIS",
                    "municipio": "CRISTAIS"
                },
                {
                    "id": 1510,
                    "nome": "JANUARIA",
                    "municipio": "JANUARIA"
                },
                {
                    "id": 1511,
                    "nome": "CURACA",
                    "municipio": "CURACA"
                },
                {
                    "id": 1512,
                    "nome": "IBIRAIARAS",
                    "municipio": "IBIRAIARAS"
                },
                {
                    "id": 1513,
                    "nome": "ILHA SOLTEIRA",
                    "municipio": "ILHA SOLTEIRA"
                },
                {
                    "id": 1514,
                    "nome": "IPUMIRIM",
                    "municipio": "IPUMIRIM"
                },
                {
                    "id": 1515,
                    "nome": "JACUI",
                    "municipio": "JACUI"
                },
                {
                    "id": 1516,
                    "nome": "JUARA",
                    "municipio": "JUARA"
                },
                {
                    "id": 1517,
                    "nome": "MAJOR VIEIRA",
                    "municipio": "MAJOR VIEIRA"
                },
                {
                    "id": 1518,
                    "nome": "ALMENARA",
                    "municipio": "ALMENARA"
                },
                {
                    "id": 1519,
                    "nome": "NOVA BASSANO",
                    "municipio": "NOVA BASSANO"
                },
                {
                    "id": 1520,
                    "nome": "GECEX OPERACOES SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 1521,
                    "nome": "SAO PEDRO DO IVAI",
                    "municipio": "SAO PEDRO DO IVAI"
                },
                {
                    "id": 1522,
                    "nome": "BARRAS",
                    "municipio": "BARRAS"
                },
                {
                    "id": 1523,
                    "nome": "BARRO",
                    "municipio": "BARRO"
                },
                {
                    "id": 1524,
                    "nome": "BARROS CASSAL",
                    "municipio": "BARROS CASSAL"
                },
                {
                    "id": 1525,
                    "nome": "BASTOS",
                    "municipio": "BASTOS"
                },
                {
                    "id": 1526,
                    "nome": "BATAYPORA",
                    "municipio": "BATAYPORA"
                },
                {
                    "id": 1527,
                    "nome": "BAYEUX",
                    "municipio": "BAYEUX"
                },
                {
                    "id": 1528,
                    "nome": "ITABERABA",
                    "municipio": "ITABERABA"
                },
                {
                    "id": 1529,
                    "nome": "BEBERIBE",
                    "municipio": "BEBERIBE"
                },
                {
                    "id": 1530,
                    "nome": "BELA CRUZ",
                    "municipio": "BELA CRUZ"
                },
                {
                    "id": 1531,
                    "nome": "BELA VISTA DE GOIAS",
                    "municipio": "BELA VISTA DE GOIAS"
                },
                {
                    "id": 1532,
                    "nome": "2855",
                    "municipio": ""
                },
                {
                    "id": 1533,
                    "nome": "BELO CAMPO",
                    "municipio": "BELO CAMPO"
                },
                {
                    "id": 1534,
                    "nome": "EMPRESA GLICERIO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 1535,
                    "nome": "CARLOS BARBOSA",
                    "municipio": "CARLOS BARBOSA"
                },
                {
                    "id": 1536,
                    "nome": "MURIAE",
                    "municipio": "MURIAE"
                },
                {
                    "id": 1537,
                    "nome": "PONTAL RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1538,
                    "nome": "CONJUNTO NACIONAL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 1539,
                    "nome": "ACESITA",
                    "municipio": "TIMOTEO"
                },
                {
                    "id": 1540,
                    "nome": "LITORAL NORTE-BA",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 1541,
                    "nome": "CACHOEIRINHA-RS",
                    "municipio": "CACHOEIRINHA"
                },
                {
                    "id": 1542,
                    "nome": "ITOUPAVA NORTE",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 1543,
                    "nome": "BOTAFOGO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1544,
                    "nome": "EMPRESA ALECRIM",
                    "municipio": "NATAL"
                },
                {
                    "id": 1545,
                    "nome": "NOSSA SRA.DE LOURDES",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 1546,
                    "nome": "POTIGUAR",
                    "municipio": "NATAL"
                },
                {
                    "id": 1547,
                    "nome": "PARQUE IND.CUMBICA",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 1548,
                    "nome": "VILA GALVAO",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 1549,
                    "nome": "EMPRESA VALE DO ACO",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 1550,
                    "nome": "NORDESTAO",
                    "municipio": "NATAL"
                },
                {
                    "id": 1551,
                    "nome": "DISTRITO INDUSTRIAL",
                    "municipio": "MARACANAU"
                },
                {
                    "id": 1552,
                    "nome": "TIJUCA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1553,
                    "nome": "TRES VENDAS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 1554,
                    "nome": "IMPERADOR",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 1555,
                    "nome": "JARDIM BOTANICO-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 1556,
                    "nome": "CEASA-RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 1557,
                    "nome": "Ag�ncia 28890",
                    "municipio": ""
                },
                {
                    "id": 1558,
                    "nome": "COPACABANA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1559,
                    "nome": "EMPRESA AV.SAUDADE",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 1560,
                    "nome": "AV.TREZE DE MAIO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 1561,
                    "nome": "CEILANDIA NORTE",
                    "municipio": "BRASILIA (CEILANDIA)"
                },
                {
                    "id": 1562,
                    "nome": "PRESIDENTE VARGAS",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 1563,
                    "nome": "SAMAMBAIA",
                    "municipio": "BRASILIA (SAMAMBAIA)"
                },
                {
                    "id": 1564,
                    "nome": "GONZAGA",
                    "municipio": "SANTOS"
                },
                {
                    "id": 1565,
                    "nome": "RUDGE RAMOS",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 1566,
                    "nome": "VILA GERTI",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 1567,
                    "nome": "ALCANTARA",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 1568,
                    "nome": "EMPRESA LITORAL SUL",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 1569,
                    "nome": "GARCA",
                    "municipio": "GARCA"
                },
                {
                    "id": 1570,
                    "nome": "NUCLEO BANDEIRANTE",
                    "municipio": "BRASILIA (NUCLEO BANDEIRANTE)"
                },
                {
                    "id": 1571,
                    "nome": "GAMA LESTE",
                    "municipio": "BRASILIA (GAMA)"
                },
                {
                    "id": 1572,
                    "nome": "AVENIDA IMPERADOR",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 1573,
                    "nome": "SCHARLAU",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 1574,
                    "nome": "AV.DJALMA BATISTA",
                    "municipio": "MANAUS"
                },
                {
                    "id": 1575,
                    "nome": "AV.OSORIO DE PAIVA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 1576,
                    "nome": "ICARAI",
                    "municipio": "NITEROI"
                },
                {
                    "id": 1577,
                    "nome": "BARRASHOPPING",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1578,
                    "nome": "CAROLINA",
                    "municipio": "CAROLINA"
                },
                {
                    "id": 1579,
                    "nome": "VILA DA QUINTA",
                    "municipio": "RIO GRANDE"
                },
                {
                    "id": 1580,
                    "nome": "CEILANDIA CENTRO",
                    "municipio": "BRASILIA (CEILANDIA)"
                },
                {
                    "id": 1581,
                    "nome": "GUARA I",
                    "municipio": "BRASILIA (GUARA)"
                },
                {
                    "id": 1582,
                    "nome": "EMPRESA TAQUARAL",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 1583,
                    "nome": "PENHA-RIO DE JANEIRO,RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1584,
                    "nome": "VIVENDAS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 1585,
                    "nome": "AV.PONTES VIEIRA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 1586,
                    "nome": "FLORIANO PEIXOTO",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 1587,
                    "nome": "AGUA SANTA",
                    "municipio": "AGUA SANTA"
                },
                {
                    "id": 1588,
                    "nome": "PARA DE MINAS",
                    "municipio": "PARA DE MINAS"
                },
                {
                    "id": 1589,
                    "nome": "AGUA VERDE",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 1590,
                    "nome": "VILA SANTA CECILIA",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 1591,
                    "nome": "ALEM PONTE",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 1592,
                    "nome": "AVENIDA JOSE BASTOS",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 1593,
                    "nome": "ALTO DA XV",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 1594,
                    "nome": "ALTO GARCAS",
                    "municipio": "ALTO GARCAS"
                },
                {
                    "id": 1595,
                    "nome": "ANA LUCIA",
                    "municipio": "SABARA"
                },
                {
                    "id": 1596,
                    "nome": "BARAO DE MESQUITA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1597,
                    "nome": "ANTONIO DE BARROS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1598,
                    "nome": "EMPRESA GUAICURUS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 1599,
                    "nome": "EMPRESA AV.W.SOARES",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 1600,
                    "nome": "ARAPUTANGA",
                    "municipio": "ARAPUTANGA"
                },
                {
                    "id": 1601,
                    "nome": "MOGI DAS CRUZES",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 1602,
                    "nome": "AREAL",
                    "municipio": "AREAL"
                },
                {
                    "id": 1603,
                    "nome": "RUA LOBO DA COSTA",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 1604,
                    "nome": "2944",
                    "municipio": ""
                },
                {
                    "id": 1605,
                    "nome": "DOCA",
                    "municipio": "BELEM"
                },
                {
                    "id": 1606,
                    "nome": "AURELINO LEAL",
                    "municipio": "NITEROI"
                },
                {
                    "id": 1607,
                    "nome": "AUTONOMISTAS",
                    "municipio": "OSASCO"
                },
                {
                    "id": 1608,
                    "nome": "SAO CARLOS",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 1609,
                    "nome": "AV.BENTO GONCALVES",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 1610,
                    "nome": "AVENIDA BANDEIRANTES",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 1611,
                    "nome": "AV.BRASIL-CACH.SUL",
                    "municipio": "CACHOEIRA DO SUL"
                },
                {
                    "id": 1612,
                    "nome": "AREINHA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 1613,
                    "nome": "RENASCENCA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 1614,
                    "nome": "2956",
                    "municipio": ""
                },
                {
                    "id": 1615,
                    "nome": "EMPRESA PIEDADE",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 1616,
                    "nome": "CORONEL MARCONDES",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 1617,
                    "nome": "AV.CORONEL ANTONINO",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 1618,
                    "nome": "BANGU",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1619,
                    "nome": "BAIRRO DO CPA",
                    "municipio": "CUIABA"
                },
                {
                    "id": 1620,
                    "nome": "CIDADE INDUSTRIAL",
                    "municipio": "VARZEA GRANDE"
                },
                {
                    "id": 1621,
                    "nome": "CAJAZEIRAS",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 1622,
                    "nome": "EMPRESA COMERCIO",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 1623,
                    "nome": "AV.OSVALDO ARANHA",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 1624,
                    "nome": "NOSSA SENHORA LAPA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1625,
                    "nome": "JORGE AMADO",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 1626,
                    "nome": "PALACIO DOS LEOES",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 1627,
                    "nome": "AV.PRESIDENTE VARGAS",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 1628,
                    "nome": "AVENIDA RIO BRANCO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1629,
                    "nome": "EMPRESA MANOEL DIAS",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 1630,
                    "nome": "GECEX SALVADOR",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 1631,
                    "nome": "PENHA FRANCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1632,
                    "nome": "BAIRRO ANITA GARIBAL",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 1633,
                    "nome": "VILA BELMIRO",
                    "municipio": "SANTOS"
                },
                {
                    "id": 1634,
                    "nome": "BAIRRO OURO BRANCO",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 1635,
                    "nome": "SHOPPING GUARARAPES",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 1636,
                    "nome": "WASHINGTON LUIZ",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 1637,
                    "nome": "GUARAPUAVA",
                    "municipio": "GUARAPUAVA"
                },
                {
                    "id": 1638,
                    "nome": "BAIRRO RIO BRANCO",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 1639,
                    "nome": "AV.ORLANDO DOMPIERI",
                    "municipio": "FRANCA"
                },
                {
                    "id": 1640,
                    "nome": "SAO MATEUS",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 1641,
                    "nome": "AVENIDA MUTINGA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1642,
                    "nome": "LUIS E.MAGALHAES",
                    "municipio": "LUIS EDUARDO MAGALHAES"
                },
                {
                    "id": 1643,
                    "nome": "PRESIDENTE VARGAS",
                    "municipio": "BELEM"
                },
                {
                    "id": 1644,
                    "nome": "PONTA GROSSA",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 1645,
                    "nome": "EMPRESA PCA ARVORE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1646,
                    "nome": "IGUACU",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 1647,
                    "nome": "BAIRRO INDUSTRIAL",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 1648,
                    "nome": "BAIRRO JUNDIAI",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 1649,
                    "nome": "EMPRESA ROCKEFELLER",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 1650,
                    "nome": "CACHOEIRINHA-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1651,
                    "nome": "IPIRANGA-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1652,
                    "nome": "EMPRESA B.MESQUITA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1653,
                    "nome": "GUAIANASES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1654,
                    "nome": "BARRA DO RIO CERRO",
                    "municipio": "JARAGUA DO SUL"
                },
                {
                    "id": 1655,
                    "nome": "BARREIROS",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 1656,
                    "nome": "BARRO PRETO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 1657,
                    "nome": "BAURU SHOPPING",
                    "municipio": "BAURU"
                },
                {
                    "id": 1658,
                    "nome": "BENFICA-MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 1659,
                    "nome": "BOA VISTA",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 1660,
                    "nome": "BOM JARDIM DE GOIAS",
                    "municipio": "BOM JARDIM DE GOIAS"
                },
                {
                    "id": 1661,
                    "nome": "SAO MANUEL",
                    "municipio": "SAO MANUEL"
                },
                {
                    "id": 1662,
                    "nome": "BOQUEIRAO-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 1663,
                    "nome": "BOQUEIRAO-SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 1664,
                    "nome": "BOSQUE",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 1665,
                    "nome": "NAZARE",
                    "municipio": "BELEM"
                },
                {
                    "id": 1666,
                    "nome": "BROTAS",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 1667,
                    "nome": "ALFONSO BOVERO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1668,
                    "nome": "EMPRESA SAO MIGUEL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1669,
                    "nome": "PELINCA",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 1670,
                    "nome": "CACHOEIRA PAULISTA",
                    "municipio": "CACHOEIRA PAULISTA"
                },
                {
                    "id": 1671,
                    "nome": "EMPRESA BRAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1672,
                    "nome": "CAFELANDIA",
                    "municipio": "CAFELANDIA"
                },
                {
                    "id": 1673,
                    "nome": "CAJOBI",
                    "municipio": "CAJOBI"
                },
                {
                    "id": 1674,
                    "nome": "GUTIERREZ",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 1675,
                    "nome": "CAMBUI",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 1676,
                    "nome": "CAMPINAPOLIS",
                    "municipio": "CAMPINAPOLIS"
                },
                {
                    "id": 1677,
                    "nome": "CAMPO NOVO PARECIS",
                    "municipio": "CAMPO NOVO DO PARECIS"
                },
                {
                    "id": 1678,
                    "nome": "CAMPO VERDE",
                    "municipio": "CAMPO VERDE"
                },
                {
                    "id": 1679,
                    "nome": "CAMPOS ALTOS",
                    "municipio": "CAMPOS ALTOS"
                },
                {
                    "id": 1680,
                    "nome": "PORTAL DO MORUMBI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1681,
                    "nome": "RIO PARDO",
                    "municipio": "RIO PARDO"
                },
                {
                    "id": 1682,
                    "nome": "EMPRESA VISCONDE",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 1683,
                    "nome": "RUA TEODORO SAMPAIO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1684,
                    "nome": "CAPIM GROSSO",
                    "municipio": "CAPIM GROSSO"
                },
                {
                    "id": 1685,
                    "nome": "CAPOEIRAS",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 1686,
                    "nome": "CARAMBEI",
                    "municipio": "CARAMBEI"
                },
                {
                    "id": 1687,
                    "nome": "CARAPINA",
                    "municipio": "SERRA"
                },
                {
                    "id": 1688,
                    "nome": "ITAJAI",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 1689,
                    "nome": "VILA LEOPOLDINA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1690,
                    "nome": "VILA SABRINA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1691,
                    "nome": "ADRIANOPOLIS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 1692,
                    "nome": "3056",
                    "municipio": ""
                },
                {
                    "id": 1693,
                    "nome": "CAMPUS UNIVERSITARIO",
                    "municipio": "MACEIO"
                },
                {
                    "id": 1694,
                    "nome": "CORONEL NIEDERAUER",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 1695,
                    "nome": "GUARATINGUETA",
                    "municipio": "GUARATINGUETA"
                },
                {
                    "id": 1696,
                    "nome": "PRACA ABC",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 1697,
                    "nome": "EMPRESA SAO CARLOS",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 1698,
                    "nome": "CENTRO EMPRESARIAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1699,
                    "nome": "LARGE CORPORATE 3064",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1700,
                    "nome": "CHAPADAO DO SUL",
                    "municipio": "CHAPADAO DO SUL"
                },
                {
                    "id": 1701,
                    "nome": "CHARQUEADAS",
                    "municipio": "CHARQUEADAS"
                },
                {
                    "id": 1702,
                    "nome": "CIDADE NOVA-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 1703,
                    "nome": "AV.BRASIL-FRANCA",
                    "municipio": "FRANCA"
                },
                {
                    "id": 1704,
                    "nome": "LAGES",
                    "municipio": "LAGES"
                },
                {
                    "id": 1705,
                    "nome": "LARGE CORPORATE 3070",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1706,
                    "nome": "SAO CLEMENTE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1707,
                    "nome": "COCAL DO SUL",
                    "municipio": "COCAL DO SUL"
                },
                {
                    "id": 1708,
                    "nome": "BATISTA CAMPOS",
                    "municipio": "BELEM"
                },
                {
                    "id": 1709,
                    "nome": "3076",
                    "municipio": ""
                },
                {
                    "id": 1710,
                    "nome": "COQUEIROS",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 1711,
                    "nome": "CORAL",
                    "municipio": "LAGES"
                },
                {
                    "id": 1712,
                    "nome": "ESCR.EXC.C.OLIMPICA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1713,
                    "nome": "ITAJUBA",
                    "municipio": "ITAJUBA"
                },
                {
                    "id": 1714,
                    "nome": "CORP BANK JUNDIAI",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 1715,
                    "nome": "EMPRESA CPO GRANDE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1716,
                    "nome": "MORUNGABA",
                    "municipio": "MORUNGABA"
                },
                {
                    "id": 1717,
                    "nome": "PRACA SECA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1718,
                    "nome": "POCOS DE CALDAS",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 1719,
                    "nome": "DIAS DA CRUZ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1720,
                    "nome": "DIAS D AVILA",
                    "municipio": "DIAS D'AVILA"
                },
                {
                    "id": 1721,
                    "nome": "ESTILO TIJUCA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1722,
                    "nome": "HADDOCK LOBO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1723,
                    "nome": "AVENIDA DAS AMERICAS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1724,
                    "nome": "DR.MAURICIO CARDOSO",
                    "municipio": "DOUTOR MAURICIO CARDOSO"
                },
                {
                    "id": 1725,
                    "nome": "BARRETOS",
                    "municipio": "BARRETOS"
                },
                {
                    "id": 1726,
                    "nome": "MARTINOPOLIS",
                    "municipio": "MARTINOPOLIS"
                },
                {
                    "id": 1727,
                    "nome": "PRACA DO CARMO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1728,
                    "nome": "ENTRE-IJUIS",
                    "municipio": "ENTRE IJUIS"
                },
                {
                    "id": 1729,
                    "nome": "CASTANHEIRA",
                    "municipio": "BELEM"
                },
                {
                    "id": 1730,
                    "nome": "ERMELINO MATARAZZO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1731,
                    "nome": "ESPINHEIRO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 1732,
                    "nome": "CATALAO",
                    "municipio": "CATALAO"
                },
                {
                    "id": 1733,
                    "nome": "ESTACIO DE SA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1734,
                    "nome": "JARDIM GUANABARA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1735,
                    "nome": "FATIMA-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1736,
                    "nome": "SANTO ANTONIO PADUA",
                    "municipio": "SANTO ANTONIO DE PADUA"
                },
                {
                    "id": 1737,
                    "nome": "VILA XAVIER",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 1738,
                    "nome": "FORMOSO DO ARAGUAIA",
                    "municipio": "FORMOSO DO ARAGUAIA"
                },
                {
                    "id": 1739,
                    "nome": "FRAGATA",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 1740,
                    "nome": "CORP BANK SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 1741,
                    "nome": "GARCIA",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 1742,
                    "nome": "EMPRESA CAMPOS",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 1743,
                    "nome": "AV.MARIA QUITERIA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 1744,
                    "nome": "GILBERTO SALOMAO",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 1745,
                    "nome": "JATAI",
                    "municipio": "JATAI"
                },
                {
                    "id": 1746,
                    "nome": "GLORIA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 1747,
                    "nome": "EMPRESA SAO BERNARDO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 1748,
                    "nome": "LARGE CORPORATE 3132",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1749,
                    "nome": "PRACA VINTE",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 1750,
                    "nome": "SAO VITO",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 1751,
                    "nome": "AVENIDA PIRACICABA",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 1752,
                    "nome": "DELTA DO PARNAIBA",
                    "municipio": "PARNAIBA"
                },
                {
                    "id": 1753,
                    "nome": "HALFELD",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 1754,
                    "nome": "EMPRESA NOV.HAMBURGO",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 1755,
                    "nome": "HERACLITO GRACA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 1756,
                    "nome": "HIGIENOPOLIS",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 1757,
                    "nome": "HOLAMBRA",
                    "municipio": "HOLAMBRA"
                },
                {
                    "id": 1758,
                    "nome": "IBATE",
                    "municipio": "IBATE"
                },
                {
                    "id": 1759,
                    "nome": "JOSE MENINO",
                    "municipio": "SANTOS"
                },
                {
                    "id": 1760,
                    "nome": "EMPRESA PORTO SANTOS",
                    "municipio": "SANTOS"
                },
                {
                    "id": 1761,
                    "nome": "ILHOTA",
                    "municipio": "ILHOTA"
                },
                {
                    "id": 1762,
                    "nome": "CORP BANK PIRACICABA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 1763,
                    "nome": "TRES RIOS",
                    "municipio": "TRES RIOS"
                },
                {
                    "id": 1764,
                    "nome": "EMPRESA DOURADOS",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 1765,
                    "nome": "ITOUPAVA CENTRAL",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 1766,
                    "nome": "EMPRESA JOINVILLE",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 1767,
                    "nome": "IPUA",
                    "municipio": "IPUA"
                },
                {
                    "id": 1768,
                    "nome": "SHOPPING ITAIGARA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 1769,
                    "nome": "ITAIPAVA",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 1770,
                    "nome": "MANHUACU",
                    "municipio": "MANHUACU"
                },
                {
                    "id": 1771,
                    "nome": "ITAMONTE",
                    "municipio": "ITAMONTE"
                },
                {
                    "id": 1772,
                    "nome": "PORTAL",
                    "municipio": "JARAGUA DO SUL"
                },
                {
                    "id": 1773,
                    "nome": "ITAPEMA MEIA PRAIA",
                    "municipio": "ITAPEMA"
                },
                {
                    "id": 1774,
                    "nome": "BAIRRO BESSA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 1775,
                    "nome": "ITUPEVA",
                    "municipio": "ITUPEVA"
                },
                {
                    "id": 1776,
                    "nome": "JACARAIPE",
                    "municipio": "SERRA"
                },
                {
                    "id": 1777,
                    "nome": "CORP BANK RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 1778,
                    "nome": "CAMBARA",
                    "municipio": "CAMBARA"
                },
                {
                    "id": 1779,
                    "nome": "JARDIM SABARA",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 1780,
                    "nome": "CANASVIEIRAS",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 1781,
                    "nome": "EMPRESA FLORIPA",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 1782,
                    "nome": "JARDINS-BA",
                    "municipio": "ITABUNA"
                },
                {
                    "id": 1783,
                    "nome": "JOQUEI CLUBE",
                    "municipio": "TERESINA"
                },
                {
                    "id": 1784,
                    "nome": "PRACA DOS MARTIRIOS",
                    "municipio": "MACEIO"
                },
                {
                    "id": 1785,
                    "nome": "MONTENEGRO",
                    "municipio": "MONTENEGRO"
                },
                {
                    "id": 1786,
                    "nome": "LARGE CORPORATE 3180",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1787,
                    "nome": "NACOES UNIDAS",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 1788,
                    "nome": "GRUTA DE LOURDES",
                    "municipio": "MACEIO"
                },
                {
                    "id": 1789,
                    "nome": "JUVEVE",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 1790,
                    "nome": "LAGOA DA CONCEICAO",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 1791,
                    "nome": "PONTA VERDE",
                    "municipio": "MACEIO"
                },
                {
                    "id": 1792,
                    "nome": "LAGUNA CARAPA",
                    "municipio": "LAGUNA CARAPA"
                },
                {
                    "id": 1793,
                    "nome": "TEUTONIA",
                    "municipio": "TEUTONIA"
                },
                {
                    "id": 1794,
                    "nome": "LARGO DA PENHA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1795,
                    "nome": "AMERICANA",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 1796,
                    "nome": "PAISSANDU-U.RECIFE(PE)",
                    "municipio": ""
                },
                {
                    "id": 1797,
                    "nome": "MALHADO",
                    "municipio": "ILHEUS"
                },
                {
                    "id": 1798,
                    "nome": "JARDIM CAMBURI",
                    "municipio": "VITORIA"
                },
                {
                    "id": 1799,
                    "nome": "LUCAS DO RIO VERDE",
                    "municipio": "LUCAS DO RIO VERDE"
                },
                {
                    "id": 1800,
                    "nome": "AVENIDA PEDRO PINHO",
                    "municipio": "OSASCO"
                },
                {
                    "id": 1801,
                    "nome": "CACHAMBI",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1802,
                    "nome": "VARGINHA",
                    "municipio": "VARGINHA"
                },
                {
                    "id": 1803,
                    "nome": "PRESIDENTE VENCESLAU",
                    "municipio": "PRESIDENTE VENCESLAU"
                },
                {
                    "id": 1804,
                    "nome": "MAE DO RIO",
                    "municipio": "MAE DO RIO"
                },
                {
                    "id": 1805,
                    "nome": "EMPRESA MANAIRA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 1806,
                    "nome": "MANOEL HONORIO",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 1807,
                    "nome": "MARACANA",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 1808,
                    "nome": "MARATAIZES",
                    "municipio": "MARATAIZES"
                },
                {
                    "id": 1809,
                    "nome": "MARECHAL FLORIANO",
                    "municipio": "MARECHAL FLORIANO"
                },
                {
                    "id": 1810,
                    "nome": "EMPRESA M.CLAROS",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 1811,
                    "nome": "CHAPECO",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 1812,
                    "nome": "MATIAS BARBOSA",
                    "municipio": "MATIAS BARBOSA"
                },
                {
                    "id": 1813,
                    "nome": "SANTA HELENA",
                    "municipio": "SETE LAGOAS"
                },
                {
                    "id": 1814,
                    "nome": "MATOZINHOS",
                    "municipio": "MATOZINHOS"
                },
                {
                    "id": 1815,
                    "nome": "MAXI SHOPPING",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 1816,
                    "nome": "MEDICILANDIA",
                    "municipio": "MEDICILANDIA"
                },
                {
                    "id": 1817,
                    "nome": "MONSENHOR PAULO",
                    "municipio": "MONSENHOR PAULO"
                },
                {
                    "id": 1818,
                    "nome": "EMPRESA FREI SERAFIM",
                    "municipio": "TERESINA"
                },
                {
                    "id": 1819,
                    "nome": "SAO CAETANO DO SUL",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 1820,
                    "nome": "PIO X",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 1821,
                    "nome": "CORP BANK A PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1822,
                    "nome": "CORP BANK GUARULHOS",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 1823,
                    "nome": "COLOMBO-COPACABANA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1824,
                    "nome": "NOVA ERA",
                    "municipio": "NOVA ERA"
                },
                {
                    "id": 1825,
                    "nome": "EMPRESA GET.VARGAS",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 1826,
                    "nome": "NOVA MUTUM",
                    "municipio": "NOVA MUTUM"
                },
                {
                    "id": 1827,
                    "nome": "FLAMBOYANT",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 1828,
                    "nome": "RUSSAS",
                    "municipio": "RUSSAS"
                },
                {
                    "id": 1829,
                    "nome": "NOVA PORTO VELHO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 1830,
                    "nome": "SETOR PUBLICO PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 1831,
                    "nome": "EMPRESA NOVE DE JULH",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 1832,
                    "nome": "3236",
                    "municipio": ""
                },
                {
                    "id": 1833,
                    "nome": "ESTILO RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 1834,
                    "nome": "OXFORD",
                    "municipio": "SAO BENTO DO SUL"
                },
                {
                    "id": 1835,
                    "nome": "ANAPOLIS",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 1836,
                    "nome": "CENTRO HISTORICO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 1837,
                    "nome": "IMBIRIBEIRA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 1838,
                    "nome": "Ag�ncia 32425",
                    "municipio": ""
                },
                {
                    "id": 1839,
                    "nome": "3243",
                    "municipio": ""
                },
                {
                    "id": 1840,
                    "nome": "PARAISO DO SUL",
                    "municipio": "PARAISO DO SUL"
                },
                {
                    "id": 1841,
                    "nome": "PARAUAPEBAS",
                    "municipio": "PARAUAPEBAS"
                },
                {
                    "id": 1842,
                    "nome": "PAROBE",
                    "municipio": "PAROBE"
                },
                {
                    "id": 1843,
                    "nome": "PARQUE SAO VICENTE",
                    "municipio": "MAUA"
                },
                {
                    "id": 1844,
                    "nome": "3249",
                    "municipio": ""
                },
                {
                    "id": 1845,
                    "nome": "DANTAS BARRETO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 1846,
                    "nome": "SHOPPING RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 1847,
                    "nome": "EMPRESA FARRAPOS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 1848,
                    "nome": "BARAO DO RIO BRANCO",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 1849,
                    "nome": "PEIXOTO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1850,
                    "nome": "TRIBUNAIS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 1851,
                    "nome": "BALNEARIO PICARRAS",
                    "municipio": "BALNEARIO PICARRAS"
                },
                {
                    "id": 1852,
                    "nome": "PRAIA DE BOA VIAGEM",
                    "municipio": "RECIFE"
                },
                {
                    "id": 1853,
                    "nome": "PINHEIRAL",
                    "municipio": "PINHEIRAL"
                },
                {
                    "id": 1854,
                    "nome": "ITACOATIARA",
                    "municipio": "ITACOATIARA"
                },
                {
                    "id": 1855,
                    "nome": "PIRANGI",
                    "municipio": "PIRANGI"
                },
                {
                    "id": 1856,
                    "nome": "PIRAQUARA",
                    "municipio": "PIRAQUARA"
                },
                {
                    "id": 1857,
                    "nome": "SHOPPING PLANALTINA",
                    "municipio": "BRASILIA (PLANALTINA)"
                },
                {
                    "id": 1858,
                    "nome": "PLANALTO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 1859,
                    "nome": "PLANURA",
                    "municipio": "PLANURA"
                },
                {
                    "id": 1860,
                    "nome": "POJUCA",
                    "municipio": "POJUCA"
                },
                {
                    "id": 1861,
                    "nome": "SAO LOURENCO DO SUL",
                    "municipio": "SAO LOURENCO DO SUL"
                },
                {
                    "id": 1862,
                    "nome": "PONTE DA AMIZADE",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 1863,
                    "nome": "PORTO BELO",
                    "municipio": "PORTO BELO"
                },
                {
                    "id": 1864,
                    "nome": "CAPITAL ECOLOGICA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 1865,
                    "nome": "PORTO TROMBETAS",
                    "municipio": "ORIXIMINA"
                },
                {
                    "id": 1866,
                    "nome": "BAIRRO ALTO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 1867,
                    "nome": "3277",
                    "municipio": ""
                },
                {
                    "id": 1868,
                    "nome": "SANTA MARIA",
                    "municipio": "UBERABA"
                },
                {
                    "id": 1869,
                    "nome": "POMPEIA",
                    "municipio": "POMPEIA"
                },
                {
                    "id": 1870,
                    "nome": "PRACA DE FATIMA",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 1871,
                    "nome": "SHOPPING RIO VERDE",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 1872,
                    "nome": "EMPRESA RONDONOPOLIS",
                    "municipio": "RONDONOPOLIS"
                },
                {
                    "id": 1873,
                    "nome": "CANCAO",
                    "municipio": "MARINGA"
                },
                {
                    "id": 1874,
                    "nome": "PRACA DO LICEU",
                    "municipio": "TERESINA"
                },
                {
                    "id": 1875,
                    "nome": "PRACA DAS MAES",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 1876,
                    "nome": "DUQUE DE CAXIAS",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 1877,
                    "nome": "PRIMAVERA DO LESTE",
                    "municipio": "PRIMAVERA DO LESTE"
                },
                {
                    "id": 1878,
                    "nome": "PRIMAVERA",
                    "municipio": "ROSANA"
                },
                {
                    "id": 1879,
                    "nome": "SAO JOAO",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 1880,
                    "nome": "PRUDENTE DE MORAIS",
                    "municipio": "NATAL"
                },
                {
                    "id": 1881,
                    "nome": "BELVEDERE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 1882,
                    "nome": "ANCHIETA-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 1883,
                    "nome": "AV.13 DE MAIO",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 1884,
                    "nome": "PADRE EUSTAQUIO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 1885,
                    "nome": "RUBEM BRAGA",
                    "municipio": "CACHOEIRO DE ITAPEMIRIM"
                },
                {
                    "id": 1886,
                    "nome": "BELO HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 1887,
                    "nome": "ROSARIO DO SUL",
                    "municipio": "ROSARIO DO SUL"
                },
                {
                    "id": 1888,
                    "nome": "RUA MARCILIO DIAS",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 1889,
                    "nome": "MARACANAU",
                    "municipio": "MARACANAU"
                },
                {
                    "id": 1890,
                    "nome": "PRIMEIRO DE MAIO-SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 1891,
                    "nome": "CORP BANK PARANA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 1892,
                    "nome": "CORP BANK C OESTE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 1893,
                    "nome": "CORP BANK MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 1894,
                    "nome": "CORP BANK RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1895,
                    "nome": "SANTANA DO IPANEMA",
                    "municipio": "SANTANA DO IPANEMA"
                },
                {
                    "id": 1896,
                    "nome": "ESPLANADA SHOPPING",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 1897,
                    "nome": "PRACA DA BIBLIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 1898,
                    "nome": "PRESIDENTE VARGAS",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 1899,
                    "nome": "RIO DAS OSTRAS",
                    "municipio": "RIO DAS OSTRAS"
                },
                {
                    "id": 1900,
                    "nome": "RIO DOS CEDROS",
                    "municipio": "RIO DOS CEDROS"
                },
                {
                    "id": 1901,
                    "nome": "LABREA",
                    "municipio": "LABREA"
                },
                {
                    "id": 1902,
                    "nome": "RIO MARIA",
                    "municipio": "RIO MARIA"
                },
                {
                    "id": 1903,
                    "nome": "IPU",
                    "municipio": "IPU"
                },
                {
                    "id": 1904,
                    "nome": "CORP BANK AGUA BCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1905,
                    "nome": "CORP BANK BELA VISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1906,
                    "nome": "GOIABEIRAS",
                    "municipio": "CUIABA"
                },
                {
                    "id": 1907,
                    "nome": "JUVENTUS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1908,
                    "nome": "VICENTE MACHADO",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 1909,
                    "nome": "RUA GOIAS",
                    "municipio": "DIVINOPOLIS"
                },
                {
                    "id": 1910,
                    "nome": "PARINTINS",
                    "municipio": "PARINTINS"
                },
                {
                    "id": 1911,
                    "nome": "BORBOREMA",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 1912,
                    "nome": "MANGABEIRAS-AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 1913,
                    "nome": "CORP BANK LESTE SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1914,
                    "nome": "SALDANHA MARINHO",
                    "municipio": "SALDANHA MARINHO"
                },
                {
                    "id": 1915,
                    "nome": "CORP BANK JARDINS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1916,
                    "nome": "SANCLERLANDIA",
                    "municipio": "SANCLERLANDIA"
                },
                {
                    "id": 1917,
                    "nome": "SANDRA REGINA",
                    "municipio": "BARREIRAS"
                },
                {
                    "id": 1918,
                    "nome": "BATURITE",
                    "municipio": "BATURITE"
                },
                {
                    "id": 1919,
                    "nome": "SANTA CRUZ PALMEIRAS",
                    "municipio": "SANTA CRUZ DAS PALMEIRAS"
                },
                {
                    "id": 1920,
                    "nome": "SANTA JULIANA",
                    "municipio": "SANTA JULIANA"
                },
                {
                    "id": 1921,
                    "nome": "CORP BANK CENTRO SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1922,
                    "nome": "SANTA ROSA VITERBO",
                    "municipio": "SANTA ROSA DE VITERBO"
                },
                {
                    "id": 1923,
                    "nome": "SANTANA",
                    "municipio": "SANTANA"
                },
                {
                    "id": 1924,
                    "nome": "CORP BANK METROP SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1925,
                    "nome": "CORP BANK ALPHAVILLE",
                    "municipio": "BARUERI"
                },
                {
                    "id": 1926,
                    "nome": "NOVA FRIBURGO",
                    "municipio": "NOVA FRIBURGO"
                },
                {
                    "id": 1927,
                    "nome": "SAO BENEDITO",
                    "municipio": "PICOS"
                },
                {
                    "id": 1928,
                    "nome": "SAO BENEDITO",
                    "municipio": "UBERABA"
                },
                {
                    "id": 1929,
                    "nome": "LARGO DO BICAO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1930,
                    "nome": "CORP BANK ABC SUL",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 1931,
                    "nome": "CORP BANK VL PARAIBA",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 1932,
                    "nome": "CORP BANK ABC LESTE",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 1933,
                    "nome": "LAGARTO",
                    "municipio": "LAGARTO"
                },
                {
                    "id": 1934,
                    "nome": "CORP BANK N CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 1935,
                    "nome": "SAO JOSE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 1936,
                    "nome": "CORP BANK M CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 1937,
                    "nome": "SAO ROQUE DO CANAA",
                    "municipio": "SAO ROQUE DO CANAA"
                },
                {
                    "id": 1938,
                    "nome": "SAVASSI",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 1939,
                    "nome": "CORP BANK O PAULISTA",
                    "municipio": "BAURU"
                },
                {
                    "id": 1940,
                    "nome": "TUPANCIRETA",
                    "municipio": "TUPANCIRETA"
                },
                {
                    "id": 1941,
                    "nome": "CORP BANK RIB SUL",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 1942,
                    "nome": "CORP BANK RIO PRETO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 1943,
                    "nome": "SENADOR LEMOS",
                    "municipio": "BELEM"
                },
                {
                    "id": 1944,
                    "nome": "ESCR.EXC.CANDANGOS",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 1945,
                    "nome": "SERRA DOS CARAJAS",
                    "municipio": "PARAUAPEBAS"
                },
                {
                    "id": 1946,
                    "nome": "SERRANA",
                    "municipio": "SERRANA"
                },
                {
                    "id": 1947,
                    "nome": "PARQUE 10",
                    "municipio": "MANAUS"
                },
                {
                    "id": 1948,
                    "nome": "ARROIO GRANDE",
                    "municipio": "ARROIO GRANDE"
                },
                {
                    "id": 1949,
                    "nome": "SUDOESTE 105",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 1950,
                    "nome": "CORP BANK DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 1951,
                    "nome": "EMPRESA LIMEIRA",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 1952,
                    "nome": "PAULISTA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 1953,
                    "nome": "SHOPPING BARRA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 1954,
                    "nome": "CORP BANK GOIAS",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 1955,
                    "nome": "SANTA ROSA",
                    "municipio": "SANTA ROSA"
                },
                {
                    "id": 1956,
                    "nome": "SANTA FELICIDADE",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 1957,
                    "nome": "STA.TEREZINHA ITAIPU",
                    "municipio": "SANTA TEREZINHA DE ITAIPU"
                },
                {
                    "id": 1958,
                    "nome": "CORP BANK TIRADENTES",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 1959,
                    "nome": "TABULEIRO DO MARTINS",
                    "municipio": "MACEIO"
                },
                {
                    "id": 1960,
                    "nome": "CORP BANK VILA RICA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 1961,
                    "nome": "TAMBAU",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 1962,
                    "nome": "TAPIRATIBA",
                    "municipio": "TAPIRATIBA"
                },
                {
                    "id": 1963,
                    "nome": "CORP BANK V DE MINAS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 1964,
                    "nome": "CORP BANK PARA",
                    "municipio": "BELEM"
                },
                {
                    "id": 1965,
                    "nome": "BAGE",
                    "municipio": "BAGE"
                },
                {
                    "id": 1966,
                    "nome": "JUNDIAI",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 1967,
                    "nome": "LARGE CORPORATE 3400",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1968,
                    "nome": "CORP BANK OESTE PR",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 1969,
                    "nome": "TRES CACHOEIRAS",
                    "municipio": "TRES CACHOEIRAS"
                },
                {
                    "id": 1970,
                    "nome": "CORP BANK CTBA NORTE",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 1971,
                    "nome": "EMPRESA ARARAQUARA",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 1972,
                    "nome": "CORP BANK CTBA SUL",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 1973,
                    "nome": "CORP BANK NORTE PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 1974,
                    "nome": "UCHOA",
                    "municipio": "UCHOA"
                },
                {
                    "id": 1975,
                    "nome": "CORP BANK NOROESTE",
                    "municipio": "MARINGA"
                },
                {
                    "id": 1976,
                    "nome": "ARARAS",
                    "municipio": "ARARAS"
                },
                {
                    "id": 1977,
                    "nome": "URUARA",
                    "municipio": "URUARA"
                },
                {
                    "id": 1978,
                    "nome": "VALPARAISO DE GOIAS",
                    "municipio": "VALPARAISO DE GOIAS"
                },
                {
                    "id": 1979,
                    "nome": "CORP BANK S GAUCHA",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 1980,
                    "nome": "BRASILIA SHOPPING",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 1981,
                    "nome": "CORP BANK V SINOS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 1982,
                    "nome": "CORP BANK POA NORTE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 1983,
                    "nome": "VICENTINOPOLIS",
                    "municipio": "VICENTINOPOLIS"
                },
                {
                    "id": 1984,
                    "nome": "CORP BANK POA SUL",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 1985,
                    "nome": "GUAIBA",
                    "municipio": "GUAIBA"
                },
                {
                    "id": 1986,
                    "nome": "CORP BANK V ITAJAI",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 1987,
                    "nome": "VILA BRASILIA",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 1988,
                    "nome": "CORP BANK SUL SC",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 1989,
                    "nome": "ARTUR ALVIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 1990,
                    "nome": "CORP BANK FLORIANOP",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 1991,
                    "nome": "PARQUE DOS IPES",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 1992,
                    "nome": "CORP BANK NORTE SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 1993,
                    "nome": "CORP BANK BAHIA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 1994,
                    "nome": "CANOINHAS",
                    "municipio": "CANOINHAS"
                },
                {
                    "id": 1995,
                    "nome": "ESCR.EXC.APOTEOSE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 1996,
                    "nome": "CORP BANK ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 1997,
                    "nome": "CORP BANK PERNAMBUCO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 1998,
                    "nome": "VILA PIRES",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 1999,
                    "nome": "CORP BANK FLUMINENSE",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 2000,
                    "nome": "DIAMANTINA",
                    "municipio": "DIAMANTINA"
                },
                {
                    "id": 2001,
                    "nome": "VISCONDE DE PIRAJA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2002,
                    "nome": "XEREM",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 2003,
                    "nome": "BARRA AVENIDA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 2004,
                    "nome": "VASCO DA GAMA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 2005,
                    "nome": "LAGUNA",
                    "municipio": "LAGUNA"
                },
                {
                    "id": 2006,
                    "nome": "CORP BANK GUANABARA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2007,
                    "nome": "UFBA-ONDINA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 2008,
                    "nome": "3458",
                    "municipio": ""
                },
                {
                    "id": 2009,
                    "nome": "GRACA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 2010,
                    "nome": "CIDADE ALTA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 2011,
                    "nome": "IMBUI",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 2012,
                    "nome": "PORTO SECO PIRAJA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 2013,
                    "nome": "PRAIA DE IRACEMA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2014,
                    "nome": "FRANCISCO SA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2015,
                    "nome": "PENAPOLIS",
                    "municipio": "PENAPOLIS"
                },
                {
                    "id": 2016,
                    "nome": "S.JOSE VALE R.PRETO",
                    "municipio": "SAO JOSE DO VALE DO RIO PRETO"
                },
                {
                    "id": 2017,
                    "nome": "PARANGABA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2018,
                    "nome": "PAPICU",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2019,
                    "nome": "SEIS BOCAS",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2020,
                    "nome": "3475",
                    "municipio": ""
                },
                {
                    "id": 2021,
                    "nome": "3477",
                    "municipio": ""
                },
                {
                    "id": 2022,
                    "nome": "EMPRESA SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2023,
                    "nome": "COMPENSA",
                    "municipio": "MANAUS"
                },
                {
                    "id": 2024,
                    "nome": "BIRIGUI",
                    "municipio": "BIRIGUI"
                },
                {
                    "id": 2025,
                    "nome": "JUCUTUQUARA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 2026,
                    "nome": "AV.CASTELO BRANCO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 2027,
                    "nome": "EMPRESA GOIANIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 2028,
                    "nome": "SANTA GENOVEVA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 2029,
                    "nome": "SETOR PEDRO LUDOVICO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 2030,
                    "nome": "ROLANDIA",
                    "municipio": "ROLANDIA"
                },
                {
                    "id": 2031,
                    "nome": "CIDADE JARDIM",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2032,
                    "nome": "SHOPPING DEL REY",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2033,
                    "nome": "NOVA SUICA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2034,
                    "nome": "CENTRO CULTURAL",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2035,
                    "nome": "EMPRESA CONTORNO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2036,
                    "nome": "JARDIM DOS ESTADOS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 2037,
                    "nome": "JULIO DE CASTILHOS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 2038,
                    "nome": "AV.RUBENS MENDONCA",
                    "municipio": "CUIABA"
                },
                {
                    "id": 2039,
                    "nome": "SANTANA LIVRAMENTO",
                    "municipio": "SANTANA DO LIVRAMENTO"
                },
                {
                    "id": 2040,
                    "nome": "MORRINHOS",
                    "municipio": "MORRINHOS"
                },
                {
                    "id": 2041,
                    "nome": "BARCARENA",
                    "municipio": "BARCARENA"
                },
                {
                    "id": 2042,
                    "nome": "MANGABEIRA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 2043,
                    "nome": "TORRE",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 2044,
                    "nome": "ABREU E LIMA",
                    "municipio": "ABREU E LIMA"
                },
                {
                    "id": 2045,
                    "nome": "CAMARAGIBE",
                    "municipio": "CAMARAGIBE"
                },
                {
                    "id": 2046,
                    "nome": "3505",
                    "municipio": ""
                },
                {
                    "id": 2047,
                    "nome": "PRACA DO MARQUES",
                    "municipio": "TERESINA"
                },
                {
                    "id": 2048,
                    "nome": "SAO CRISTOVAO",
                    "municipio": "TERESINA"
                },
                {
                    "id": 2049,
                    "nome": "MIGRANTE",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 2050,
                    "nome": "AV.BANDEIRANTES",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 2051,
                    "nome": "BATATAIS",
                    "municipio": "BATATAIS"
                },
                {
                    "id": 2052,
                    "nome": "CIDADE VERDE-PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 2053,
                    "nome": "EMPRESA ALDEOTA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2054,
                    "nome": "FREGUESIA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2055,
                    "nome": "EMPRESA R.PASSAGEM",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2056,
                    "nome": "MARINGA",
                    "municipio": "MARINGA"
                },
                {
                    "id": 2057,
                    "nome": "PEDRO LESSA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2058,
                    "nome": "3521",
                    "municipio": ""
                },
                {
                    "id": 2059,
                    "nome": "MADUREIRA CENTRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2060,
                    "nome": "TIROL",
                    "municipio": "NATAL"
                },
                {
                    "id": 2061,
                    "nome": "ALBERTO MARANHAO",
                    "municipio": "MOSSORO"
                },
                {
                    "id": 2062,
                    "nome": "CHACARA DAS PEDRAS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 2063,
                    "nome": "AVENIDA JULIO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 2064,
                    "nome": "SANTIAGO",
                    "municipio": "SANTIAGO"
                },
                {
                    "id": 2065,
                    "nome": "BAIRRO BOQUEIRAO",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 2066,
                    "nome": "CENTRO INDUSTRIAL",
                    "municipio": "CACHOEIRINHA"
                },
                {
                    "id": 2067,
                    "nome": "MENINO DEUS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 2068,
                    "nome": "IRIRIU",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 2069,
                    "nome": "ITU",
                    "municipio": "ITU"
                },
                {
                    "id": 2070,
                    "nome": "MARGEM ESQUERDA",
                    "municipio": "TUBARAO"
                },
                {
                    "id": 2071,
                    "nome": "BAIRRO SAO CRISTOVAO",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 2072,
                    "nome": "AUGUSTO FRANCO",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 2073,
                    "nome": "FRANCISCO PORTO",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 2074,
                    "nome": "ACLIMACAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2075,
                    "nome": "APUCARANA",
                    "municipio": "APUCARANA"
                },
                {
                    "id": 2076,
                    "nome": "SETOR PUBLICO AC",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 2077,
                    "nome": "UNIMART SHOPPING",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 2078,
                    "nome": "INDEPENDENCIA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 2079,
                    "nome": "SETOR PUBLICO AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 2080,
                    "nome": "CANGAIBA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2081,
                    "nome": "BOM RETIRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2082,
                    "nome": "ALEM PARAIBA",
                    "municipio": "ALEM PARAIBA"
                },
                {
                    "id": 2083,
                    "nome": "INTERLAGOS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2084,
                    "nome": "SETOR PUBLICO AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 2085,
                    "nome": "JANDIRA",
                    "municipio": "JANDIRA"
                },
                {
                    "id": 2086,
                    "nome": "JABAQUARA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2087,
                    "nome": "VILA OLIVEIRA",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 2088,
                    "nome": "AUGUSTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2089,
                    "nome": "IPIAU",
                    "municipio": "IPIAU"
                },
                {
                    "id": 2090,
                    "nome": "PARQUE DA UVA",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 2091,
                    "nome": "JACANA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2092,
                    "nome": "SAO JUDAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2093,
                    "nome": "SETOR PUBLICO AP",
                    "municipio": "MACAPA"
                },
                {
                    "id": 2094,
                    "nome": "RUA MARIA MARCOLINA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2095,
                    "nome": "CARAZINHO",
                    "municipio": "CARAZINHO"
                },
                {
                    "id": 2096,
                    "nome": "SETOR PUBLICO SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 2097,
                    "nome": "VARGEM GDE.PAULISTA",
                    "municipio": "VARGEM GRANDE PAULISTA"
                },
                {
                    "id": 2098,
                    "nome": "VILA ARENS",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 2099,
                    "nome": "EUSEBIO",
                    "municipio": "EUSEBIO"
                },
                {
                    "id": 2100,
                    "nome": "ARAPONGAS",
                    "municipio": "ARAPONGAS"
                },
                {
                    "id": 2101,
                    "nome": "3590",
                    "municipio": ""
                },
                {
                    "id": 2102,
                    "nome": "CONGRESSO NACIONAL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2103,
                    "nome": "3597",
                    "municipio": ""
                },
                {
                    "id": 2104,
                    "nome": "EMPRESA NORTE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2105,
                    "nome": "MOSSORO",
                    "municipio": "MOSSORO"
                },
                {
                    "id": 2106,
                    "nome": "MANDAGUARI",
                    "municipio": "MANDAGUARI"
                },
                {
                    "id": 2107,
                    "nome": "Q.G.DO EXERCITO-BSB",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2108,
                    "nome": "UNIV.DE BRASILIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2109,
                    "nome": "3605",
                    "municipio": ""
                },
                {
                    "id": 2110,
                    "nome": "PRES.DA REPUBLICA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2111,
                    "nome": "UNIV.FEDERAL DE GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 2112,
                    "nome": "AVENIDA AFONSO PENA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2113,
                    "nome": "SAUDE-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2114,
                    "nome": "CURRAIS NOVOS",
                    "municipio": "CURRAIS NOVOS"
                },
                {
                    "id": 2115,
                    "nome": "UNIV.FEDERAL DE MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2116,
                    "nome": "SETOR PUBLICO SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 2117,
                    "nome": "3612",
                    "municipio": ""
                },
                {
                    "id": 2118,
                    "nome": "CID.UNIVERSITARIA-PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 2119,
                    "nome": "36137",
                    "municipio": ""
                },
                {
                    "id": 2120,
                    "nome": "36147",
                    "municipio": ""
                },
                {
                    "id": 2121,
                    "nome": "SETOR PUBLICO TO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 2122,
                    "nome": "FELIPE SCHMIDT",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 2123,
                    "nome": "PALMEIRA DAS MISSOES",
                    "municipio": "PALMEIRA DAS MISSOES"
                },
                {
                    "id": 2124,
                    "nome": "ALVORADA DO NORTE",
                    "municipio": "ALVORADA DO NORTE"
                },
                {
                    "id": 2125,
                    "nome": "STA.TEREZINHA GOIAS",
                    "municipio": "SANTA TEREZINHA DE GOIAS"
                },
                {
                    "id": 2126,
                    "nome": "VIANOPOLIS",
                    "municipio": "VIANOPOLIS"
                },
                {
                    "id": 2127,
                    "nome": "LORETO",
                    "municipio": "LORETO"
                },
                {
                    "id": 2128,
                    "nome": "PORTO FRANCO",
                    "municipio": "PORTO FRANCO"
                },
                {
                    "id": 2129,
                    "nome": "SAO RAIM.MANGABEIRAS",
                    "municipio": "SAO RAIMUNDO DAS MANGABEIRAS"
                },
                {
                    "id": 2130,
                    "nome": "TASSO FRAGOSO",
                    "municipio": "TASSO FRAGOSO"
                },
                {
                    "id": 2131,
                    "nome": "SAO JOSE RIO CLARO",
                    "municipio": "SAO JOSE DO RIO CLARO"
                },
                {
                    "id": 2132,
                    "nome": "VIGIA",
                    "municipio": "VIGIA"
                },
                {
                    "id": 2133,
                    "nome": "LAGOA VERMELHA",
                    "municipio": "LAGOA VERMELHA"
                },
                {
                    "id": 2134,
                    "nome": "ITAUEIRA",
                    "municipio": "ITAUEIRA"
                },
                {
                    "id": 2135,
                    "nome": "VERA CRUZ DO OESTE",
                    "municipio": "VERA CRUZ DO OESTE"
                },
                {
                    "id": 2136,
                    "nome": "AGROLANDIA",
                    "municipio": "AGROLANDIA"
                },
                {
                    "id": 2137,
                    "nome": "ANTONIO CARLOS-SC",
                    "municipio": "ANTONIO CARLOS"
                },
                {
                    "id": 2138,
                    "nome": "ITA",
                    "municipio": "ITA"
                },
                {
                    "id": 2139,
                    "nome": "APIAI",
                    "municipio": "APIAI"
                },
                {
                    "id": 2140,
                    "nome": "LAVRAS",
                    "municipio": "LAVRAS"
                },
                {
                    "id": 2141,
                    "nome": "INDIARA",
                    "municipio": "INDIARA"
                },
                {
                    "id": 2142,
                    "nome": "SAO SIMAO-GO",
                    "municipio": "SAO SIMAO"
                },
                {
                    "id": 2143,
                    "nome": "BURITICUPU",
                    "municipio": "BURITICUPU"
                },
                {
                    "id": 2144,
                    "nome": "NOVA SUICA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 2145,
                    "nome": "EMPRESA COHAMA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 2146,
                    "nome": "CORONEL FABRICIANO",
                    "municipio": "CORONEL FABRICIANO"
                },
                {
                    "id": 2147,
                    "nome": "COHAB ANIL",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 2148,
                    "nome": "UNIV.FEDERAL DO RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2149,
                    "nome": "BENFICA-CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2150,
                    "nome": "BARAO DE ARACATI",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2151,
                    "nome": "AVENIDA T-7",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 2152,
                    "nome": "CIDADE JARDIM",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 2153,
                    "nome": "INDEPENDENCIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 2154,
                    "nome": "MONTE CARMELO",
                    "municipio": "MONTE CARMELO"
                },
                {
                    "id": 2155,
                    "nome": "CAPAO DA CANOA",
                    "municipio": "CAPAO DA CANOA"
                },
                {
                    "id": 2156,
                    "nome": "CEASA-CARIACICA",
                    "municipio": "CARIACICA"
                },
                {
                    "id": 2157,
                    "nome": "XAXIM-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 2158,
                    "nome": "CEASA-RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2159,
                    "nome": "SETOR PUBLICO ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 2160,
                    "nome": "CHARQUEADA",
                    "municipio": "CHARQUEADA"
                },
                {
                    "id": 2161,
                    "nome": "FARRAPOS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 2162,
                    "nome": "DOVERLANDIA",
                    "municipio": "DOVERLANDIA"
                },
                {
                    "id": 2163,
                    "nome": "FORQUILHINHA",
                    "municipio": "FORQUILHINHA"
                },
                {
                    "id": 2164,
                    "nome": "FRIFORT",
                    "municipio": "CAUCAIA"
                },
                {
                    "id": 2165,
                    "nome": "GAROPABA",
                    "municipio": "GAROPABA"
                },
                {
                    "id": 2166,
                    "nome": "ITAGUARU",
                    "municipio": "ITAGUARU"
                },
                {
                    "id": 2167,
                    "nome": "ITALVA",
                    "municipio": "ITALVA"
                },
                {
                    "id": 2168,
                    "nome": "JAGUARE-ES",
                    "municipio": "JAGUARE"
                },
                {
                    "id": 2169,
                    "nome": "GUADALUPE",
                    "municipio": "GUADALUPE"
                },
                {
                    "id": 2170,
                    "nome": "POUSO ALEGRE",
                    "municipio": "POUSO ALEGRE"
                },
                {
                    "id": 2171,
                    "nome": "JOAO NEIVA",
                    "municipio": "JOAO NEIVA"
                },
                {
                    "id": 2172,
                    "nome": "JOVIANIA",
                    "municipio": "JOVIANIA"
                },
                {
                    "id": 2173,
                    "nome": "MACAUBAL",
                    "municipio": "MACAUBAL"
                },
                {
                    "id": 2174,
                    "nome": "NEROPOLIS",
                    "municipio": "NEROPOLIS"
                },
                {
                    "id": 2175,
                    "nome": "PANTANO GRANDE",
                    "municipio": "PANTANO GRANDE"
                },
                {
                    "id": 2176,
                    "nome": "PRESIDENTE KENNEDY",
                    "municipio": "PRESIDENTE KENNEDY"
                },
                {
                    "id": 2177,
                    "nome": "PRACA CIVICA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 2178,
                    "nome": "STO.ANTONIO PATRULHA",
                    "municipio": "SANTO ANTONIO DA PATRULHA"
                },
                {
                    "id": 2179,
                    "nome": "SANTA MARIA JETIBA",
                    "municipio": "SANTA MARIA DE JETIBA"
                },
                {
                    "id": 2180,
                    "nome": "SAO JOSE DE UBA",
                    "municipio": "SAO JOSE DE UBA"
                },
                {
                    "id": 2181,
                    "nome": "SAO LUDGERO",
                    "municipio": "SAO LUDGERO"
                },
                {
                    "id": 2182,
                    "nome": "TROMBUDO CENTRAL",
                    "municipio": "TROMBUDO CENTRAL"
                },
                {
                    "id": 2183,
                    "nome": "VARGEM ALTA",
                    "municipio": "VARGEM ALTA"
                },
                {
                    "id": 2184,
                    "nome": "VENDA NOVA IMIGRANTE",
                    "municipio": "VENDA NOVA DO IMIGRANTE"
                },
                {
                    "id": 2185,
                    "nome": "VISTA ALEGRE DO ALTO",
                    "municipio": "VISTA ALEGRE DO ALTO"
                },
                {
                    "id": 2186,
                    "nome": "JAGUARARI-RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 2187,
                    "nome": "AV.DOMINGOS FERREIRA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 2188,
                    "nome": "36994",
                    "municipio": ""
                },
                {
                    "id": 2189,
                    "nome": "EMPRESA BAURU",
                    "municipio": "BAURU"
                },
                {
                    "id": 2190,
                    "nome": "GUACUI",
                    "municipio": "GUACUI"
                },
                {
                    "id": 2191,
                    "nome": "ARATIBA",
                    "municipio": "ARATIBA"
                },
                {
                    "id": 2192,
                    "nome": "AUGUSTO PESTANA",
                    "municipio": "AUGUSTO PESTANA"
                },
                {
                    "id": 2193,
                    "nome": "UNIV.FEDERAL DO PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 2194,
                    "nome": "BAIAO",
                    "municipio": "BAIAO"
                },
                {
                    "id": 2195,
                    "nome": "BOM JESUS TOCANTINS",
                    "municipio": "BOM JESUS DO TOCANTINS"
                },
                {
                    "id": 2196,
                    "nome": "BOM PRINCIPIO",
                    "municipio": "BOM PRINCIPIO"
                },
                {
                    "id": 2197,
                    "nome": "IJUI",
                    "municipio": "IJUI"
                },
                {
                    "id": 2198,
                    "nome": "CAMPINORTE",
                    "municipio": "CAMPINORTE"
                },
                {
                    "id": 2199,
                    "nome": "CANDIDO GODOI",
                    "municipio": "CANDIDO GODOI"
                },
                {
                    "id": 2200,
                    "nome": "CARMO",
                    "municipio": "CARMO"
                },
                {
                    "id": 2201,
                    "nome": "CAVALCANTE",
                    "municipio": "CAVALCANTE"
                },
                {
                    "id": 2202,
                    "nome": "CIPO",
                    "municipio": "CIPO"
                },
                {
                    "id": 2203,
                    "nome": "CONDOR",
                    "municipio": "CONDOR"
                },
                {
                    "id": 2204,
                    "nome": "DIVINOPOLIS",
                    "municipio": "DIVINOPOLIS"
                },
                {
                    "id": 2205,
                    "nome": "TEOTONIO VILELA",
                    "municipio": "TEOTONIO VILELA"
                },
                {
                    "id": 2206,
                    "nome": "DOURADINA",
                    "municipio": "DOURADINA"
                },
                {
                    "id": 2207,
                    "nome": "FONTOURA XAVIER",
                    "municipio": "FONTOURA XAVIER"
                },
                {
                    "id": 2208,
                    "nome": "FORTALEZA DOS VALOS",
                    "municipio": "FORTALEZA DOS VALOS"
                },
                {
                    "id": 2209,
                    "nome": "HIDROLANDIA",
                    "municipio": "HIDROLANDIA"
                },
                {
                    "id": 2210,
                    "nome": "IBATIBA",
                    "municipio": "IBATIBA"
                },
                {
                    "id": 2211,
                    "nome": "DRACENA",
                    "municipio": "DRACENA"
                },
                {
                    "id": 2212,
                    "nome": "IBIACA",
                    "municipio": "IBIACA"
                },
                {
                    "id": 2213,
                    "nome": "INDEPENDENCIA",
                    "municipio": "INDEPENDENCIA"
                },
                {
                    "id": 2214,
                    "nome": "INDIANOPOLIS",
                    "municipio": "INDIANOPOLIS"
                },
                {
                    "id": 2215,
                    "nome": "IPORA DO OESTE",
                    "municipio": "IPORA DO OESTE"
                },
                {
                    "id": 2216,
                    "nome": "JURUTI",
                    "municipio": "JURUTI"
                },
                {
                    "id": 2217,
                    "nome": "ITAPIPOCA",
                    "municipio": "ITAPIPOCA"
                },
                {
                    "id": 2218,
                    "nome": "MAURILANDIA",
                    "municipio": "MAURILANDIA"
                },
                {
                    "id": 2219,
                    "nome": "MISSAL",
                    "municipio": "MISSAL"
                },
                {
                    "id": 2220,
                    "nome": "PALMITINHO",
                    "municipio": "PALMITINHO"
                },
                {
                    "id": 2221,
                    "nome": "CACADOR",
                    "municipio": "CACADOR"
                },
                {
                    "id": 2222,
                    "nome": "PEJUCARA",
                    "municipio": "PEJUCARA"
                },
                {
                    "id": 2223,
                    "nome": "POSTO DA MATA",
                    "municipio": "NOVA VICOSA"
                },
                {
                    "id": 2224,
                    "nome": "ITUMBIARA",
                    "municipio": "ITUMBIARA"
                },
                {
                    "id": 2225,
                    "nome": "SALTO DO JACUI",
                    "municipio": "SALTO DO JACUI"
                },
                {
                    "id": 2226,
                    "nome": "SAO VICENTE DO SUL",
                    "municipio": "SAO VICENTE DO SUL"
                },
                {
                    "id": 2227,
                    "nome": "SERTANEJA",
                    "municipio": "SERTANEJA"
                },
                {
                    "id": 2228,
                    "nome": "FORMOSA",
                    "municipio": "FORMOSA"
                },
                {
                    "id": 2229,
                    "nome": "VILA VALERIO",
                    "municipio": "VILA VALERIO"
                },
                {
                    "id": 2230,
                    "nome": "XAMBIOA",
                    "municipio": "XAMBIOA"
                },
                {
                    "id": 2231,
                    "nome": "RIO DO CAMPO",
                    "municipio": "RIO DO CAMPO"
                },
                {
                    "id": 2232,
                    "nome": "MONTIVIDIU",
                    "municipio": "MONTIVIDIU"
                },
                {
                    "id": 2233,
                    "nome": "CHAPADAO DO CEU",
                    "municipio": "CHAPADAO DO CEU"
                },
                {
                    "id": 2234,
                    "nome": "AV.CAP.MOR.GOUVEIA",
                    "municipio": "NATAL"
                },
                {
                    "id": 2235,
                    "nome": "RAUL SOARES",
                    "municipio": "RAUL SOARES"
                },
                {
                    "id": 2236,
                    "nome": "PANORAMA",
                    "municipio": "PANORAMA"
                },
                {
                    "id": 2237,
                    "nome": "SAO JOAO DA BALIZA",
                    "municipio": "SAO JOAO DA BALIZA"
                },
                {
                    "id": 2238,
                    "nome": "TUPASSI",
                    "municipio": "TUPASSI"
                },
                {
                    "id": 2239,
                    "nome": "JURANDA",
                    "municipio": "JURANDA"
                },
                {
                    "id": 2240,
                    "nome": "MOREIRA CESAR",
                    "municipio": "NITEROI"
                },
                {
                    "id": 2241,
                    "nome": "BOA ESPERANCA",
                    "municipio": "BOA ESPERANCA"
                },
                {
                    "id": 2242,
                    "nome": "OURINHOS",
                    "municipio": "OURINHOS"
                },
                {
                    "id": 2243,
                    "nome": "BAIRRO PRAIA CANTO",
                    "municipio": "VITORIA"
                },
                {
                    "id": 2244,
                    "nome": "SETOR PUBLICO PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 2245,
                    "nome": "PINHEIRINHO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 2246,
                    "nome": "SETOR PUBLICO PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 2247,
                    "nome": "SETOR PUBLICO RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 2248,
                    "nome": "AVENIDA CALAMA",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 2249,
                    "nome": "SETOR PUBLICO RR",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 2250,
                    "nome": "SETOR PUBLICO RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 2251,
                    "nome": "JOINVILLE",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 2252,
                    "nome": "PARACATU",
                    "municipio": "PARACATU"
                },
                {
                    "id": 2253,
                    "nome": "TANGUA",
                    "municipio": "TANGUA"
                },
                {
                    "id": 2254,
                    "nome": "3802",
                    "municipio": ""
                },
                {
                    "id": 2255,
                    "nome": "BOM JESUS DA PENHA",
                    "municipio": "BOM JESUS DA PENHA"
                },
                {
                    "id": 2256,
                    "nome": "PIRACEMA",
                    "municipio": "PIRACEMA"
                },
                {
                    "id": 2257,
                    "nome": "MORADA NOVA DE MINAS",
                    "municipio": "MORADA NOVA DE MINAS"
                },
                {
                    "id": 2258,
                    "nome": "PARANAVAI",
                    "municipio": "PARANAVAI"
                },
                {
                    "id": 2259,
                    "nome": "SAO GERALDO ARAGUAIA",
                    "municipio": "SAO GERALDO DO ARAGUAIA"
                },
                {
                    "id": 2260,
                    "nome": "ALAGOA NOVA",
                    "municipio": "ALAGOA NOVA"
                },
                {
                    "id": 2261,
                    "nome": "3815",
                    "municipio": ""
                },
                {
                    "id": 2262,
                    "nome": "AGUAS DE LINDOIA",
                    "municipio": "AGUAS DE LINDOIA"
                },
                {
                    "id": 2263,
                    "nome": "AUREA",
                    "municipio": "AUREA"
                },
                {
                    "id": 2264,
                    "nome": "SENADOR FIRMINO",
                    "municipio": "SENADOR FIRMINO"
                },
                {
                    "id": 2265,
                    "nome": "ARAUJOS",
                    "municipio": "ARAUJOS"
                },
                {
                    "id": 2266,
                    "nome": "CAMPOS ELISEOS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2267,
                    "nome": "SETOR PUBLICO BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 2268,
                    "nome": "SETOR PUBLICO MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 2269,
                    "nome": "RIO DO ANTONIO",
                    "municipio": "RIO DO ANTONIO"
                },
                {
                    "id": 2270,
                    "nome": "MANGARATIBA",
                    "municipio": "MANGARATIBA"
                },
                {
                    "id": 2271,
                    "nome": "CONDE",
                    "municipio": "CONDE"
                },
                {
                    "id": 2272,
                    "nome": "ACAJUTIBA",
                    "municipio": "ACAJUTIBA"
                },
                {
                    "id": 2273,
                    "nome": "ARRAIAL DO CABO",
                    "municipio": "ARRAIAL DO CABO"
                },
                {
                    "id": 2274,
                    "nome": "MOOCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2275,
                    "nome": "LAPAO",
                    "municipio": "LAPAO"
                },
                {
                    "id": 2276,
                    "nome": "CONCEICAO DE MACABU",
                    "municipio": "CONCEICAO DE MACABU"
                },
                {
                    "id": 2277,
                    "nome": "QUISSAMA",
                    "municipio": "QUISSAMA"
                },
                {
                    "id": 2278,
                    "nome": "SETOR PUBLICO MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 2279,
                    "nome": "QUATRO BARRAS",
                    "municipio": "QUATRO BARRAS"
                },
                {
                    "id": 2280,
                    "nome": "PARQUE DA FONTE",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 2281,
                    "nome": "PINHEIROS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2282,
                    "nome": "MATINHOS",
                    "municipio": "MATINHOS"
                },
                {
                    "id": 2283,
                    "nome": "BURITIZAL",
                    "municipio": "MACAPA"
                },
                {
                    "id": 2284,
                    "nome": "CORP BANK MARILIA",
                    "municipio": "MARILIA"
                },
                {
                    "id": 2285,
                    "nome": "CAMARA CASCUDO",
                    "municipio": "NATAL"
                },
                {
                    "id": 2286,
                    "nome": "SUMIDOURO",
                    "municipio": "SUMIDOURO"
                },
                {
                    "id": 2287,
                    "nome": "Ag�ncia 3855",
                    "municipio": ""
                },
                {
                    "id": 2288,
                    "nome": "PRINCESA DO SUL",
                    "municipio": "VARGINHA"
                },
                {
                    "id": 2289,
                    "nome": "GOITACAZES",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2290,
                    "nome": "ESTILO J.KUBITSCHEK",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2291,
                    "nome": "EMPRESA SANTANA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2292,
                    "nome": "EMPRESA BELEM",
                    "municipio": "BELEM"
                },
                {
                    "id": 2293,
                    "nome": "MADRE DE DEUS",
                    "municipio": "MADRE DE DEUS"
                },
                {
                    "id": 2294,
                    "nome": "INACIOLANDIA",
                    "municipio": "INACIOLANDIA"
                },
                {
                    "id": 2295,
                    "nome": "TERRA NOVA DO NORTE",
                    "municipio": "TERRA NOVA DO NORTE"
                },
                {
                    "id": 2296,
                    "nome": "IGARA",
                    "municipio": "CANOAS"
                },
                {
                    "id": 2297,
                    "nome": "SANTO AMARO PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2298,
                    "nome": "BAIRRO SAO JOAO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 2299,
                    "nome": "S.FRANC.ITABAPOANA",
                    "municipio": "SAO FRANCISCO DE ITABAPOANA"
                },
                {
                    "id": 2300,
                    "nome": "ICAPUI",
                    "municipio": "ICAPUI"
                },
                {
                    "id": 2301,
                    "nome": "ASSAI",
                    "municipio": "ASSAI"
                },
                {
                    "id": 2302,
                    "nome": "ITAREMA",
                    "municipio": "ITAREMA"
                },
                {
                    "id": 2303,
                    "nome": "NOVA ABRANTES",
                    "municipio": "CAMACARI"
                },
                {
                    "id": 2304,
                    "nome": "SHOPPING BOULEVARD",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 2305,
                    "nome": "CONJUNTO CEARA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2306,
                    "nome": "VILA NOVA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 2307,
                    "nome": "JEQUITINHONHA",
                    "municipio": "JEQUITINHONHA"
                },
                {
                    "id": 2308,
                    "nome": "CARAPEBUS",
                    "municipio": "CARAPEBUS"
                },
                {
                    "id": 2309,
                    "nome": "COM.LEVY GASPARIAN",
                    "municipio": "COMENDADOR LEVY GASPARIAN"
                },
                {
                    "id": 2310,
                    "nome": "BATALHA",
                    "municipio": "BATALHA"
                },
                {
                    "id": 2311,
                    "nome": "AVENIDA BANDEIRANTES",
                    "municipio": "BETIM"
                },
                {
                    "id": 2312,
                    "nome": "NOVO PROGRESSO",
                    "municipio": "NOVO PROGRESSO"
                },
                {
                    "id": 2313,
                    "nome": "CAMOCIM",
                    "municipio": "CAMOCIM"
                },
                {
                    "id": 2314,
                    "nome": "GUAJARA-MIRIM",
                    "municipio": "GUAJARA-MIRIM"
                },
                {
                    "id": 2315,
                    "nome": "DOURADOS",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 2316,
                    "nome": "ITARUMA",
                    "municipio": "ITARUMA"
                },
                {
                    "id": 2317,
                    "nome": "MATRINCHA",
                    "municipio": "MATRINCHA"
                },
                {
                    "id": 2318,
                    "nome": "LAGOA GRANDE",
                    "municipio": "LAGOA GRANDE"
                },
                {
                    "id": 2319,
                    "nome": "39187",
                    "municipio": ""
                },
                {
                    "id": 2320,
                    "nome": "FORQUILHA",
                    "municipio": "FORQUILHA"
                },
                {
                    "id": 2321,
                    "nome": "CINELANDIA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2322,
                    "nome": "VERA CRUZ",
                    "municipio": "VERA CRUZ"
                },
                {
                    "id": 2323,
                    "nome": "3924",
                    "municipio": ""
                },
                {
                    "id": 2324,
                    "nome": "ANAURILANDIA",
                    "municipio": "ANAURILANDIA"
                },
                {
                    "id": 2325,
                    "nome": "BANDEIRANTES",
                    "municipio": "BANDEIRANTES"
                },
                {
                    "id": 2326,
                    "nome": "BOCAIUVA",
                    "municipio": "BOCAIUVA"
                },
                {
                    "id": 2327,
                    "nome": "MATUPA",
                    "municipio": "MATUPA"
                },
                {
                    "id": 2328,
                    "nome": "ITAQUIRAI",
                    "municipio": "ITAQUIRAI"
                },
                {
                    "id": 2329,
                    "nome": "SONORA",
                    "municipio": "SONORA"
                },
                {
                    "id": 2330,
                    "nome": "SAO GONCALO",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 2331,
                    "nome": "CRISTO REI",
                    "municipio": "VARZEA GRANDE"
                },
                {
                    "id": 2332,
                    "nome": "POUSO NOVO",
                    "municipio": "POUSO NOVO"
                },
                {
                    "id": 2333,
                    "nome": "QUERENCIA",
                    "municipio": "QUERENCIA"
                },
                {
                    "id": 2334,
                    "nome": "STO.ANTONIO LEVERGER",
                    "municipio": "SANTO ANTONIO DO LEVERGER"
                },
                {
                    "id": 2335,
                    "nome": "BRASNORTE",
                    "municipio": "BRASNORTE"
                },
                {
                    "id": 2336,
                    "nome": "MACUCO",
                    "municipio": "MACUCO"
                },
                {
                    "id": 2337,
                    "nome": "QUATRO PONTES",
                    "municipio": "QUATRO PONTES"
                },
                {
                    "id": 2338,
                    "nome": "3949",
                    "municipio": ""
                },
                {
                    "id": 2339,
                    "nome": "SETE LAGOAS",
                    "municipio": "SETE LAGOAS"
                },
                {
                    "id": 2340,
                    "nome": "NOVA ALVORADA DO SUL",
                    "municipio": "NOVA ALVORADA DO SUL"
                },
                {
                    "id": 2341,
                    "nome": "SALINOPOLIS",
                    "municipio": "SALINOPOLIS"
                },
                {
                    "id": 2342,
                    "nome": "EPITACIOLANDIA",
                    "municipio": "EPITACIOLANDIA"
                },
                {
                    "id": 2343,
                    "nome": "CAPELINHA",
                    "municipio": "CAPELINHA"
                },
                {
                    "id": 2344,
                    "nome": "BOSQUE DOS PIONEIROS",
                    "municipio": "PALMAS"
                },
                {
                    "id": 2345,
                    "nome": "RIQUEZA",
                    "municipio": "RIQUEZA"
                },
                {
                    "id": 2346,
                    "nome": "GUANHAES",
                    "municipio": "GUANHAES"
                },
                {
                    "id": 2347,
                    "nome": "BERTIOGA",
                    "municipio": "BERTIOGA"
                },
                {
                    "id": 2348,
                    "nome": "ANANAS",
                    "municipio": "ANANAS"
                },
                {
                    "id": 2349,
                    "nome": "AUGUSTINOPOLIS",
                    "municipio": "AUGUSTINOPOLIS"
                },
                {
                    "id": 2350,
                    "nome": "TUPACIGUARA",
                    "municipio": "TUPACIGUARA"
                },
                {
                    "id": 2351,
                    "nome": "SILVANOPOLIS",
                    "municipio": "SILVANOPOLIS"
                },
                {
                    "id": 2352,
                    "nome": "LAGOA DA CONFUSAO",
                    "municipio": "LAGOA DA CONFUSAO"
                },
                {
                    "id": 2353,
                    "nome": "PEROLA-SP",
                    "municipio": "SANTA BARBARA D'OESTE"
                },
                {
                    "id": 2354,
                    "nome": "AMAPA",
                    "municipio": "AMAPA"
                },
                {
                    "id": 2355,
                    "nome": "IPUIUNA",
                    "municipio": "IPUIUNA"
                },
                {
                    "id": 2356,
                    "nome": "Ag�ncia 3987",
                    "municipio": ""
                },
                {
                    "id": 2357,
                    "nome": "CONFRESA",
                    "municipio": "CONFRESA"
                },
                {
                    "id": 2358,
                    "nome": "MACHADO",
                    "municipio": "MACHADO"
                },
                {
                    "id": 2359,
                    "nome": "PORTO GRANDE",
                    "municipio": "PORTO GRANDE"
                },
                {
                    "id": 2360,
                    "nome": "VILA VALQUEIRE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2361,
                    "nome": "MUCAJAI",
                    "municipio": "MUCAJAI"
                },
                {
                    "id": 2362,
                    "nome": "RORAINOPOLIS",
                    "municipio": "RORAINOPOLIS"
                },
                {
                    "id": 2363,
                    "nome": "ESTRELA VELHA",
                    "municipio": "ESTRELA VELHA"
                },
                {
                    "id": 2364,
                    "nome": "ALTO PARAISO",
                    "municipio": "ALTO PARAISO"
                },
                {
                    "id": 2365,
                    "nome": "SANTOS",
                    "municipio": "SANTOS"
                },
                {
                    "id": 2366,
                    "nome": "SAO FELIX",
                    "municipio": "SAO FELIX"
                },
                {
                    "id": 2367,
                    "nome": "URAI",
                    "municipio": "URAI"
                },
                {
                    "id": 2368,
                    "nome": "MINISTRO ANDREAZZA",
                    "municipio": "MINISTRO ANDREAZZA"
                },
                {
                    "id": 2369,
                    "nome": "MIRANTE DA SERRA",
                    "municipio": "MIRANTE DA SERRA"
                },
                {
                    "id": 2370,
                    "nome": "MONTE NEGRO",
                    "municipio": "MONTE NEGRO"
                },
                {
                    "id": 2371,
                    "nome": "NOVA BRASIL.D OESTE",
                    "municipio": "NOVA BRASILANDIA D'OESTE"
                },
                {
                    "id": 2372,
                    "nome": "NOVA MAMORE",
                    "municipio": "NOVA MAMORE"
                },
                {
                    "id": 2373,
                    "nome": "URUPA",
                    "municipio": "URUPA"
                },
                {
                    "id": 2374,
                    "nome": "TAPURAH",
                    "municipio": "TAPURAH"
                },
                {
                    "id": 2375,
                    "nome": "BRUSQUE",
                    "municipio": "BRUSQUE"
                },
                {
                    "id": 2376,
                    "nome": "4012",
                    "municipio": ""
                },
                {
                    "id": 2377,
                    "nome": "40126",
                    "municipio": ""
                },
                {
                    "id": 2378,
                    "nome": "CASTELO BRANCO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 2379,
                    "nome": "JARDIM URANO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 2380,
                    "nome": "FERNANDOPOLIS",
                    "municipio": "FERNANDOPOLIS"
                },
                {
                    "id": 2381,
                    "nome": "MANAIRA SHOPPING",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 2382,
                    "nome": "MARAGOGI",
                    "municipio": "MARAGOGI"
                },
                {
                    "id": 2383,
                    "nome": "COIMBRA",
                    "municipio": "COIMBRA"
                },
                {
                    "id": 2384,
                    "nome": "PLACIDO DE CASTRO",
                    "municipio": "PLACIDO DE CASTRO"
                },
                {
                    "id": 2385,
                    "nome": "SENADOR GUIOMARD",
                    "municipio": "SENADOR GUIOMARD"
                },
                {
                    "id": 2386,
                    "nome": "IGUARACU",
                    "municipio": "IGUARACU"
                },
                {
                    "id": 2387,
                    "nome": "AVENIDA SAUDADE",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 2388,
                    "nome": "ENTRE RIOS DO OESTE",
                    "municipio": "ENTRE RIOS DO OESTE"
                },
                {
                    "id": 2389,
                    "nome": "VIDEIRA",
                    "municipio": "VIDEIRA"
                },
                {
                    "id": 2390,
                    "nome": "4031",
                    "municipio": ""
                },
                {
                    "id": 2391,
                    "nome": "ARCEBURGO",
                    "municipio": "ARCEBURGO"
                },
                {
                    "id": 2392,
                    "nome": "RIO PRETO",
                    "municipio": "RIO PRETO"
                },
                {
                    "id": 2393,
                    "nome": "PRAIA DA COSTA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 2394,
                    "nome": "PROENCA",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 2395,
                    "nome": "VALENCA",
                    "municipio": "VALENCA"
                },
                {
                    "id": 2396,
                    "nome": "CARMINDO DE CAMPOS",
                    "municipio": "CUIABA"
                },
                {
                    "id": 2397,
                    "nome": "CORP BANK SANTA CRUZ",
                    "municipio": "SANTA CRUZ DO SUL"
                },
                {
                    "id": 2398,
                    "nome": "MORTUGABA",
                    "municipio": "MORTUGABA"
                },
                {
                    "id": 2399,
                    "nome": "JARAGUA DO SUL",
                    "municipio": "JARAGUA DO SUL"
                },
                {
                    "id": 2400,
                    "nome": "ESTILO CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 2401,
                    "nome": "REPUBLICA DO LIBANO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 2402,
                    "nome": "PETROBRAS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2403,
                    "nome": "CAMPO MOURAO",
                    "municipio": "CAMPO MOURAO"
                },
                {
                    "id": 2404,
                    "nome": "BERILO",
                    "municipio": "BERILO"
                },
                {
                    "id": 2405,
                    "nome": "HELIODORA",
                    "municipio": "HELIODORA"
                },
                {
                    "id": 2406,
                    "nome": "AV.MARECHAL TITO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2407,
                    "nome": "LIBERDADE",
                    "municipio": "LIBERDADE"
                },
                {
                    "id": 2408,
                    "nome": "MOEDA",
                    "municipio": "MOEDA"
                },
                {
                    "id": 2409,
                    "nome": "CRICIUMA",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 2410,
                    "nome": "RIACHINHO",
                    "municipio": "RIACHINHO"
                },
                {
                    "id": 2411,
                    "nome": "CORP BANK OESTE SC",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 2412,
                    "nome": "PEDRA DE ITAUNA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2413,
                    "nome": "BAIRRO SAO CRISTOVAO",
                    "municipio": "CABO FRIO"
                },
                {
                    "id": 2414,
                    "nome": "SAO CAITANO",
                    "municipio": "SAO CAITANO"
                },
                {
                    "id": 2415,
                    "nome": "40762",
                    "municipio": ""
                },
                {
                    "id": 2416,
                    "nome": "4077",
                    "municipio": ""
                },
                {
                    "id": 2417,
                    "nome": "S.SEBASTIAO PARAISO",
                    "municipio": "SAO SEBASTIAO DO PARAISO"
                },
                {
                    "id": 2418,
                    "nome": "ALTO DO IPIRANGA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2419,
                    "nome": "DOIS LAJEADOS",
                    "municipio": "DOIS LAJEADOS"
                },
                {
                    "id": 2420,
                    "nome": "Ag�ncia 4087",
                    "municipio": ""
                },
                {
                    "id": 2421,
                    "nome": "NOVA PRATA",
                    "municipio": "NOVA PRATA"
                },
                {
                    "id": 2422,
                    "nome": "CORP BANK BENTO GONC",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 2423,
                    "nome": "IARAS",
                    "municipio": "IARAS"
                },
                {
                    "id": 2424,
                    "nome": "SAUDE-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2425,
                    "nome": "CANDOI",
                    "municipio": "CANDOI"
                },
                {
                    "id": 2426,
                    "nome": "NOVA MONTE VERDE",
                    "municipio": "NOVA MONTE VERDE"
                },
                {
                    "id": 2427,
                    "nome": "FEIRA DE SANTANA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 2428,
                    "nome": "CONCORDIA",
                    "municipio": "CONCORDIA"
                },
                {
                    "id": 2429,
                    "nome": "TABAPORA",
                    "municipio": "TABAPORA"
                },
                {
                    "id": 2430,
                    "nome": "ITACARE",
                    "municipio": "ITACARE"
                },
                {
                    "id": 2431,
                    "nome": "LARANJAL DO JARI",
                    "municipio": "LARANJAL DO JARI"
                },
                {
                    "id": 2432,
                    "nome": "JALES",
                    "municipio": "JALES"
                },
                {
                    "id": 2433,
                    "nome": "NOVA UBIRATA",
                    "municipio": "NOVA UBIRATA"
                },
                {
                    "id": 2434,
                    "nome": "CAPIVARI DO SUL",
                    "municipio": "CAPIVARI DO SUL"
                },
                {
                    "id": 2435,
                    "nome": "S.DOMINGOS ARAGUAIA",
                    "municipio": "SAO DOMINGOS DO ARAGUAIA"
                },
                {
                    "id": 2436,
                    "nome": "CAVALEIRO",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 2437,
                    "nome": "BUIQUE",
                    "municipio": "BUIQUE"
                },
                {
                    "id": 2438,
                    "nome": "MANHUMIRIM",
                    "municipio": "MANHUMIRIM"
                },
                {
                    "id": 2439,
                    "nome": "CORP BANK C GERAIS",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 2440,
                    "nome": "S.FRANCISCO GUAPORE",
                    "municipio": "SAO FRANCISCO DO GUAPORE"
                },
                {
                    "id": 2441,
                    "nome": "MOCOCA",
                    "municipio": "MOCOCA"
                },
                {
                    "id": 2442,
                    "nome": "MARITUBA",
                    "municipio": "MARITUBA"
                },
                {
                    "id": 2443,
                    "nome": "PONTAL DO PARANA",
                    "municipio": "PONTAL DO PARANA"
                },
                {
                    "id": 2444,
                    "nome": "ITAUBA",
                    "municipio": "ITAUBA"
                },
                {
                    "id": 2445,
                    "nome": "BRASIL NOVO",
                    "municipio": "BRASIL NOVO"
                },
                {
                    "id": 2446,
                    "nome": "CRUZ DAS ALMAS",
                    "municipio": "CRUZ DAS ALMAS"
                },
                {
                    "id": 2447,
                    "nome": "BANABUIU",
                    "municipio": "BANABUIU"
                },
                {
                    "id": 2448,
                    "nome": "EMPRESA BUENO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 2449,
                    "nome": "ATIBAIA",
                    "municipio": "ATIBAIA"
                },
                {
                    "id": 2450,
                    "nome": "CANAA DOS CARAJAS",
                    "municipio": "CANAA DOS CARAJAS"
                },
                {
                    "id": 2451,
                    "nome": "ACRELANDIA",
                    "municipio": "ACRELANDIA"
                },
                {
                    "id": 2452,
                    "nome": "AMONTADA",
                    "municipio": "AMONTADA"
                },
                {
                    "id": 2453,
                    "nome": "TAQUARA",
                    "municipio": "TAQUARA"
                },
                {
                    "id": 2454,
                    "nome": "PORTO DE MOZ",
                    "municipio": "PORTO DE MOZ"
                },
                {
                    "id": 2455,
                    "nome": "GOIANESIA DO PARA",
                    "municipio": "GOIANESIA DO PARA"
                },
                {
                    "id": 2456,
                    "nome": "AVENIDA JOAO NAVES",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 2457,
                    "nome": "ITAPETINGA",
                    "municipio": "ITAPETINGA"
                },
                {
                    "id": 2458,
                    "nome": "CASA BRANCA",
                    "municipio": "CASA BRANCA"
                },
                {
                    "id": 2459,
                    "nome": "IGARAPAVA",
                    "municipio": "IGARAPAVA"
                },
                {
                    "id": 2460,
                    "nome": "4196",
                    "municipio": ""
                },
                {
                    "id": 2461,
                    "nome": "CACHOEIRA DO SUL",
                    "municipio": "CACHOEIRA DO SUL"
                },
                {
                    "id": 2462,
                    "nome": "ITARARE",
                    "municipio": "ITARARE"
                },
                {
                    "id": 2463,
                    "nome": "SETOR PUBLICO DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2464,
                    "nome": "CORP BANK TRIANGULO",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 2465,
                    "nome": "S.PUBLICO SP NOROEST",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 2466,
                    "nome": "CORP BANK MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 2467,
                    "nome": "PRIVATE SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2468,
                    "nome": "BAIRRO LAGOA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2469,
                    "nome": "TRES PONTAS",
                    "municipio": "TRES PONTAS"
                },
                {
                    "id": 2470,
                    "nome": "LARANJEIRAS",
                    "municipio": "SERRA"
                },
                {
                    "id": 2471,
                    "nome": "EMPRESA CAMPO GRANDE",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 2472,
                    "nome": "M BOI MIRIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2473,
                    "nome": "JAIBA",
                    "municipio": "JAIBA"
                },
                {
                    "id": 2474,
                    "nome": "CIDADE NOVA-AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 2475,
                    "nome": "STUDIO 5",
                    "municipio": "MANAUS"
                },
                {
                    "id": 2476,
                    "nome": "FRUTAL",
                    "municipio": "FRUTAL"
                },
                {
                    "id": 2477,
                    "nome": "PIONEIRA",
                    "municipio": "MARABA"
                },
                {
                    "id": 2478,
                    "nome": "CHESF",
                    "municipio": "PAULO AFONSO"
                },
                {
                    "id": 2479,
                    "nome": "GOMES CARDIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2480,
                    "nome": "NAVEGANTES",
                    "municipio": "NAVEGANTES"
                },
                {
                    "id": 2481,
                    "nome": "ENCANTADO",
                    "municipio": "ENCANTADO"
                },
                {
                    "id": 2482,
                    "nome": "BARREIRINHAS",
                    "municipio": "BARREIRAS"
                },
                {
                    "id": 2483,
                    "nome": "ITAPARICA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 2484,
                    "nome": "CIDADE NOVA-PA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 2485,
                    "nome": "PRACA MANOEL ANDRE",
                    "municipio": "ARAPIRACA"
                },
                {
                    "id": 2486,
                    "nome": "4235",
                    "municipio": ""
                },
                {
                    "id": 2487,
                    "nome": "42358",
                    "municipio": ""
                },
                {
                    "id": 2488,
                    "nome": "PALACIO DAS ARTES",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2489,
                    "nome": "ENCRUZILHADA DO SUL",
                    "municipio": "ENCRUZILHADA DO SUL"
                },
                {
                    "id": 2490,
                    "nome": "ESTILO COPACABANA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2491,
                    "nome": "ESCR.EXC.MARACANA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2492,
                    "nome": "TAPAJOS",
                    "municipio": "SANTAREM"
                },
                {
                    "id": 2493,
                    "nome": "CORP BANK ALTO OESTE",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 2494,
                    "nome": "EMPRESA RIO POTI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 2495,
                    "nome": "ITAUNA",
                    "municipio": "ITAUNA"
                },
                {
                    "id": 2496,
                    "nome": "GUILHERME FERREIRA",
                    "municipio": "UBERABA"
                },
                {
                    "id": 2497,
                    "nome": "AVENIDA SETE",
                    "municipio": "ERECHIM"
                },
                {
                    "id": 2498,
                    "nome": "PIRACICAMIRIM",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 2499,
                    "nome": "ALVINOPOLIS-SP",
                    "municipio": "ATIBAIA"
                },
                {
                    "id": 2500,
                    "nome": "CAJAMAR",
                    "municipio": "CAJAMAR"
                },
                {
                    "id": 2501,
                    "nome": "STO.ANTONIO PLATINA",
                    "municipio": "SANTO ANTONIO DA PLATINA"
                },
                {
                    "id": 2502,
                    "nome": "JARDIM LONDRES",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 2503,
                    "nome": "ASA BRANCA",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 2504,
                    "nome": "4264",
                    "municipio": ""
                },
                {
                    "id": 2505,
                    "nome": "ESTILO SBS",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2506,
                    "nome": "AV.BRASIL-JI-PARANA",
                    "municipio": "JI-PARANA"
                },
                {
                    "id": 2507,
                    "nome": "PIABETA",
                    "municipio": "MAGE"
                },
                {
                    "id": 2508,
                    "nome": "SAO BERNARDO CAMPO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 2509,
                    "nome": "EMPRESA SINOP",
                    "municipio": "SINOP"
                },
                {
                    "id": 2510,
                    "nome": "PRACA PEDRO SANCHES",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 2511,
                    "nome": "DOM JOSE",
                    "municipio": "SOBRAL"
                },
                {
                    "id": 2512,
                    "nome": "4274",
                    "municipio": ""
                },
                {
                    "id": 2513,
                    "nome": "EMPRESA BANDEIRANTE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2514,
                    "nome": "IBITURUNA",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 2515,
                    "nome": "SIMOES FILHO",
                    "municipio": "SIMOES FILHO"
                },
                {
                    "id": 2516,
                    "nome": "RIO VERMELHO",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 2517,
                    "nome": "VICOSA",
                    "municipio": "VICOSA"
                },
                {
                    "id": 2518,
                    "nome": "BAIRRO BETANIA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2519,
                    "nome": "BAIRRO ITAPOA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2520,
                    "nome": "SAO SILVESTRE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2521,
                    "nome": "BURITIS",
                    "municipio": "BURITIS"
                },
                {
                    "id": 2522,
                    "nome": "SERRARIA",
                    "municipio": "MACEIO"
                },
                {
                    "id": 2523,
                    "nome": "BANDEIRANTES",
                    "municipio": "BANDEIRANTES"
                },
                {
                    "id": 2524,
                    "nome": "JARDIM AMERICA-ES",
                    "municipio": "CARIACICA"
                },
                {
                    "id": 2525,
                    "nome": "EMPRESA PORTO",
                    "municipio": "VITORIA"
                },
                {
                    "id": 2526,
                    "nome": "EMPRESA MONTESE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2527,
                    "nome": "ESTILO BARRA TIJUCA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2528,
                    "nome": "SAO JOAO",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 2529,
                    "nome": "ALTO MARACANA",
                    "municipio": "COLOMBO"
                },
                {
                    "id": 2530,
                    "nome": "AV.RAGUEB CHOHFI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2531,
                    "nome": "IPAMERI",
                    "municipio": "IPAMERI"
                },
                {
                    "id": 2532,
                    "nome": "ESTRELA",
                    "municipio": "ESTRELA"
                },
                {
                    "id": 2533,
                    "nome": "CAMPO LIMPO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2534,
                    "nome": "CABREUVA",
                    "municipio": "CABREUVA"
                },
                {
                    "id": 2535,
                    "nome": "D AVO SAO MIGUEL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2536,
                    "nome": "PRACA DO PATRIARCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2537,
                    "nome": "AV.PEDROSO DE MORAIS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2538,
                    "nome": "EMPRESA CENTRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2539,
                    "nome": "BELMIRA MARIN",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2540,
                    "nome": "GUAPORE",
                    "municipio": "GUAPORE"
                },
                {
                    "id": 2541,
                    "nome": "PEDRINHAS PAULISTA",
                    "municipio": "PEDRINHAS PAULISTA"
                },
                {
                    "id": 2542,
                    "nome": "AVENIDA CAMPANELLA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2543,
                    "nome": "SIQUEIRA CAMPOS",
                    "municipio": "SIQUEIRA CAMPOS"
                },
                {
                    "id": 2544,
                    "nome": "FAZENDA RIO GRANDE",
                    "municipio": "FAZENDA RIO GRANDE"
                },
                {
                    "id": 2545,
                    "nome": "NEGREIROS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2546,
                    "nome": "GUARARAPES",
                    "municipio": "GUARARAPES"
                },
                {
                    "id": 2547,
                    "nome": "NOVA IMPERATRIZ",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 2548,
                    "nome": "CALHAU",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 2549,
                    "nome": "ESCR.EXC.JUIZ FORA",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 2550,
                    "nome": "EMPRESA PERDIZES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2551,
                    "nome": "JUAZEIRO DO NORTE",
                    "municipio": "JUAZEIRO DO NORTE"
                },
                {
                    "id": 2552,
                    "nome": "ESTILO CATETE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2553,
                    "nome": "PRIVATE RIO JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2554,
                    "nome": "AV.WEIMAR TORRES",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 2555,
                    "nome": "VILA BRANCA",
                    "municipio": "GRAVATAI"
                },
                {
                    "id": 2556,
                    "nome": "MANTENA",
                    "municipio": "MANTENA"
                },
                {
                    "id": 2557,
                    "nome": "LAURO DE FREITAS",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 2558,
                    "nome": "EST.INV.LEBLON",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2559,
                    "nome": "Ag�ncia 4345",
                    "municipio": ""
                },
                {
                    "id": 2560,
                    "nome": "RIACHO FUNDO",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2561,
                    "nome": "ESCR.EXC.RIB.PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 2562,
                    "nome": "LAGO AZUL",
                    "municipio": "ARAGUAINA"
                },
                {
                    "id": 2563,
                    "nome": "ESTILO INV. CARIOCA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2564,
                    "nome": "PRACA MAUA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2565,
                    "nome": "JARDIM ALVORADA",
                    "municipio": "TRES LAGOAS"
                },
                {
                    "id": 2566,
                    "nome": "VALENTIM GENTIL",
                    "municipio": "VALENTIM GENTIL"
                },
                {
                    "id": 2567,
                    "nome": "4357",
                    "municipio": ""
                },
                {
                    "id": 2568,
                    "nome": "TUPI PAULISTA",
                    "municipio": "TUPI PAULISTA"
                },
                {
                    "id": 2569,
                    "nome": "CORP BANK ROTA SOL",
                    "municipio": "NATAL"
                },
                {
                    "id": 2570,
                    "nome": "CORP BANK PARAIBA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 2571,
                    "nome": "Ag�ncia 4364",
                    "municipio": ""
                },
                {
                    "id": 2572,
                    "nome": "SAO LUIZ GONZAGA",
                    "municipio": "SAO LUIZ GONZAGA"
                },
                {
                    "id": 2573,
                    "nome": "Ag�ncia 4370",
                    "municipio": ""
                },
                {
                    "id": 2574,
                    "nome": "CAMPO ALEGRE GOIAS",
                    "municipio": "CAMPO ALEGRE DE GOIAS"
                },
                {
                    "id": 2575,
                    "nome": "FRANCISCO SA",
                    "municipio": "FRANCISCO SA"
                },
                {
                    "id": 2576,
                    "nome": "GAMELEIRA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2577,
                    "nome": "ESTILO VILA MARIANA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2578,
                    "nome": "CAMPO LIMPO PAULISTA",
                    "municipio": "CAMPO LIMPO PAULISTA"
                },
                {
                    "id": 2579,
                    "nome": "OSVALDO CRUZ",
                    "municipio": "OSVALDO CRUZ"
                },
                {
                    "id": 2580,
                    "nome": "DAVID CANABARRO",
                    "municipio": "DAVID CANABARRO"
                },
                {
                    "id": 2581,
                    "nome": "ESTILO RIB.PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 2582,
                    "nome": "SUL DA ILHA",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 2583,
                    "nome": "AV.FELICIANO SODRE",
                    "municipio": "TERESOPOLIS"
                },
                {
                    "id": 2584,
                    "nome": "TERESINA",
                    "municipio": "TERESINA"
                },
                {
                    "id": 2585,
                    "nome": "PEREIRA BARRETO",
                    "municipio": "PEREIRA BARRETO"
                },
                {
                    "id": 2586,
                    "nome": "ESTILO FARIA LIMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2587,
                    "nome": "ELDORADO DO SUL",
                    "municipio": "ELDORADO DO SUL"
                },
                {
                    "id": 2588,
                    "nome": "AV.SILVIANO BRANDAO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2589,
                    "nome": "CEASA-TERESINA",
                    "municipio": "TERESINA"
                },
                {
                    "id": 2590,
                    "nome": "CORUMBAIBA",
                    "municipio": "CORUMBAIBA"
                },
                {
                    "id": 2591,
                    "nome": "RIACHAO",
                    "municipio": "RIACHAO"
                },
                {
                    "id": 2592,
                    "nome": "DOM ELISEU",
                    "municipio": "DOM ELISEU"
                },
                {
                    "id": 2593,
                    "nome": "PORECATU",
                    "municipio": "PORECATU"
                },
                {
                    "id": 2594,
                    "nome": "JACUNDA",
                    "municipio": "JACUNDA"
                },
                {
                    "id": 2595,
                    "nome": "SAO FELIX DO XINGU",
                    "municipio": "SAO FELIX DO XINGU"
                },
                {
                    "id": 2596,
                    "nome": "IGARAPE-MIRI",
                    "municipio": "IGARAPE-MIRI"
                },
                {
                    "id": 2597,
                    "nome": "ESTILO RIO CENTRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2598,
                    "nome": "SAO SEBASTIAO-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2599,
                    "nome": "SERRA DO SALITRE",
                    "municipio": "SERRA DO SALITRE"
                },
                {
                    "id": 2600,
                    "nome": "LUZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2601,
                    "nome": "BARROSO",
                    "municipio": "BARROSO"
                },
                {
                    "id": 2602,
                    "nome": "BRASILANDIA DE MINAS",
                    "municipio": "BRASILANDIA DE MINAS"
                },
                {
                    "id": 2603,
                    "nome": "SAO JOSE AUSENTES",
                    "municipio": "SAO JOSE DOS AUSENTES"
                },
                {
                    "id": 2604,
                    "nome": "EMPRESA V. REDONDA",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 2605,
                    "nome": "OFFICE PARK",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 2606,
                    "nome": "OLIVEIRA",
                    "municipio": "OLIVEIRA"
                },
                {
                    "id": 2607,
                    "nome": "SAO JOSE DA BARRA",
                    "municipio": "SAO JOSE DA BARRA"
                },
                {
                    "id": 2608,
                    "nome": "JARDIM FELICIDADE",
                    "municipio": "MACAPA"
                },
                {
                    "id": 2609,
                    "nome": "EMPRESA ITAQUERA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2610,
                    "nome": "CAMPUS DO PICI",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2611,
                    "nome": "GETULIO VARGAS",
                    "municipio": "GETULIO VARGAS"
                },
                {
                    "id": 2612,
                    "nome": "ESTILO CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 2613,
                    "nome": "UFMA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 2614,
                    "nome": "ESCR.EXC.CUIABA",
                    "municipio": "CUIABA"
                },
                {
                    "id": 2615,
                    "nome": "ITAJUIPE",
                    "municipio": "ITAJUIPE"
                },
                {
                    "id": 2616,
                    "nome": "PRACA SAO FRANCISCO",
                    "municipio": "MARABA"
                },
                {
                    "id": 2617,
                    "nome": "ALMIRANTE BARROSO",
                    "municipio": "BELEM"
                },
                {
                    "id": 2618,
                    "nome": "ESCR.EXC.J.PESSOA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 2619,
                    "nome": "TIMBAUBA",
                    "municipio": "TIMBAUBA"
                },
                {
                    "id": 2620,
                    "nome": "4460",
                    "municipio": ""
                },
                {
                    "id": 2621,
                    "nome": "TUPY",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 2622,
                    "nome": "CAPAO DO LEAO",
                    "municipio": "CAPAO DO LEAO"
                },
                {
                    "id": 2623,
                    "nome": "ESTRELA DO SUL",
                    "municipio": "ESTRELA DO SUL"
                },
                {
                    "id": 2624,
                    "nome": "ESTILO IPANEMA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2625,
                    "nome": "JARDIM OCEANICO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2626,
                    "nome": "CORP BANK JUIZ FORA",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 2627,
                    "nome": "MIRANDOPOLIS",
                    "municipio": "MIRANDOPOLIS"
                },
                {
                    "id": 2628,
                    "nome": "BAIRRO ELDORADO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 2629,
                    "nome": "AGUAS DE SAO PEDRO",
                    "municipio": "AGUAS DE SAO PEDRO"
                },
                {
                    "id": 2630,
                    "nome": "S.PAULO DAS MISSOES",
                    "municipio": "SAO PAULO DAS MISSOES"
                },
                {
                    "id": 2631,
                    "nome": "SAO GONCALO AMARANTE",
                    "municipio": "SAO GONCALO DO AMARANTE"
                },
                {
                    "id": 2632,
                    "nome": "BARAO DE COCAIS",
                    "municipio": "BARAO DE COCAIS"
                },
                {
                    "id": 2633,
                    "nome": "CRUZEIRO-SP",
                    "municipio": "CRUZEIRO"
                },
                {
                    "id": 2634,
                    "nome": "ITABELA",
                    "municipio": "ITABELA"
                },
                {
                    "id": 2635,
                    "nome": "CONCEICAO DO JACUIPE",
                    "municipio": "CONCEICAO DO JACUIPE"
                },
                {
                    "id": 2636,
                    "nome": "TUCANO",
                    "municipio": "TUCANO"
                },
                {
                    "id": 2637,
                    "nome": "MONTE SANTO",
                    "municipio": "MONTE SANTO"
                },
                {
                    "id": 2638,
                    "nome": "PRIVATE B.HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2639,
                    "nome": "URUGUAIANA",
                    "municipio": "URUGUAIANA"
                },
                {
                    "id": 2640,
                    "nome": "EMPRESA PORTAO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 2641,
                    "nome": "SOORETAMA",
                    "municipio": "SOORETAMA"
                },
                {
                    "id": 2642,
                    "nome": "ITARANA",
                    "municipio": "ITARANA"
                },
                {
                    "id": 2643,
                    "nome": "NOVA SANTA ROSA",
                    "municipio": "NOVA SANTA ROSA"
                },
                {
                    "id": 2644,
                    "nome": "FORMOSA DO OESTE",
                    "municipio": "FORMOSA DO OESTE"
                },
                {
                    "id": 2645,
                    "nome": "NHANDEARA",
                    "municipio": "NHANDEARA"
                },
                {
                    "id": 2646,
                    "nome": "NOVA HARTZ",
                    "municipio": "NOVA HARTZ"
                },
                {
                    "id": 2647,
                    "nome": "CARMOPOLIS",
                    "municipio": "CARMOPOLIS"
                },
                {
                    "id": 2648,
                    "nome": "ALTO TAQUARI",
                    "municipio": "ALTO TAQUARI"
                },
                {
                    "id": 2649,
                    "nome": "EMPRESA CENTRAL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2650,
                    "nome": "BARRINHA",
                    "municipio": "BARRINHA"
                },
                {
                    "id": 2651,
                    "nome": "GUAPIACU",
                    "municipio": "GUAPIACU"
                },
                {
                    "id": 2652,
                    "nome": "SANTO ANTONIO POSSE",
                    "municipio": "SANTO ANTONIO DE POSSE"
                },
                {
                    "id": 2653,
                    "nome": "RIO DAS FLORES",
                    "municipio": "RIO DAS FLORES"
                },
                {
                    "id": 2654,
                    "nome": "ITUPIRANGA",
                    "municipio": "ITUPIRANGA"
                },
                {
                    "id": 2655,
                    "nome": "IPUPIARA",
                    "municipio": "IPUPIARA"
                },
                {
                    "id": 2656,
                    "nome": "SAO FIDELIS",
                    "municipio": "SAO FIDELIS"
                },
                {
                    "id": 2657,
                    "nome": "ESCR.EXC.DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2658,
                    "nome": "RUA SAO JOSE",
                    "municipio": "MACAPA"
                },
                {
                    "id": 2659,
                    "nome": "NOVO REPARTIMENTO",
                    "municipio": "NOVO REPARTIMENTO"
                },
                {
                    "id": 2660,
                    "nome": "TUCUMA",
                    "municipio": "TUCUMA"
                },
                {
                    "id": 2661,
                    "nome": "SACRAMENTO",
                    "municipio": "SACRAMENTO"
                },
                {
                    "id": 2662,
                    "nome": "HORIZONTE",
                    "municipio": "HORIZONTE"
                },
                {
                    "id": 2663,
                    "nome": "ICONHA",
                    "municipio": "ICONHA"
                },
                {
                    "id": 2664,
                    "nome": "COBILANDIA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 2665,
                    "nome": "AMPARO",
                    "municipio": "AMPARO"
                },
                {
                    "id": 2666,
                    "nome": "MIRANORTE",
                    "municipio": "MIRANORTE"
                },
                {
                    "id": 2667,
                    "nome": "AMERICO BRASILIENSE",
                    "municipio": "AMERICO BRASILIENSE"
                },
                {
                    "id": 2668,
                    "nome": "PINHALZINHO",
                    "municipio": "PINHALZINHO"
                },
                {
                    "id": 2669,
                    "nome": "IRACEMAPOLIS",
                    "municipio": "IRACEMAPOLIS"
                },
                {
                    "id": 2670,
                    "nome": "SANTA GERTRUDES",
                    "municipio": "SANTA GERTRUDES"
                },
                {
                    "id": 2671,
                    "nome": "IPERO",
                    "municipio": "IPERO"
                },
                {
                    "id": 2672,
                    "nome": "TRES PASSOS",
                    "municipio": "TRES PASSOS"
                },
                {
                    "id": 2673,
                    "nome": "SAUDE-BA",
                    "municipio": "SAUDE"
                },
                {
                    "id": 2674,
                    "nome": "NOVA CRIXAS",
                    "municipio": "NOVA CRIXAS"
                },
                {
                    "id": 2675,
                    "nome": "JK",
                    "municipio": "JATAI"
                },
                {
                    "id": 2676,
                    "nome": "PRES.FIGUEIREDO",
                    "municipio": "PRESIDENTE FIGUEIREDO"
                },
                {
                    "id": 2677,
                    "nome": "SANTANA",
                    "municipio": "SANTANA"
                },
                {
                    "id": 2678,
                    "nome": "CERES",
                    "municipio": "CERES"
                },
                {
                    "id": 2679,
                    "nome": "SERRANOPOLIS",
                    "municipio": "SERRANOPOLIS"
                },
                {
                    "id": 2680,
                    "nome": "BONFIM",
                    "municipio": "BONFIM"
                },
                {
                    "id": 2681,
                    "nome": "GUARANI",
                    "municipio": "GUARANI"
                },
                {
                    "id": 2682,
                    "nome": "JUATUBA",
                    "municipio": "JUATUBA"
                },
                {
                    "id": 2683,
                    "nome": "EMBU-GUACU",
                    "municipio": "EMBU-GUACU"
                },
                {
                    "id": 2684,
                    "nome": "GUARIBA",
                    "municipio": "GUARIBA"
                },
                {
                    "id": 2685,
                    "nome": "IACANGA",
                    "municipio": "IACANGA"
                },
                {
                    "id": 2686,
                    "nome": "IPEUNA",
                    "municipio": "IPEUNA"
                },
                {
                    "id": 2687,
                    "nome": "JARINU",
                    "municipio": "JARINU"
                },
                {
                    "id": 2688,
                    "nome": "NUPORANGA",
                    "municipio": "NUPORANGA"
                },
                {
                    "id": 2689,
                    "nome": "STA.BARBARA D OESTE",
                    "municipio": "SANTA BARBARA D'OESTE"
                },
                {
                    "id": 2690,
                    "nome": "AGUAS LINDAS GOIAS",
                    "municipio": "AGUAS LINDAS DE GOIAS"
                },
                {
                    "id": 2691,
                    "nome": "ASA SUL 516",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2692,
                    "nome": "EMPRESA CUIABA",
                    "municipio": "CUIABA"
                },
                {
                    "id": 2693,
                    "nome": "ANGRA DOS REIS",
                    "municipio": "ANGRA DOS REIS"
                },
                {
                    "id": 2694,
                    "nome": "4600",
                    "municipio": ""
                },
                {
                    "id": 2695,
                    "nome": "XAVANTINA",
                    "municipio": "XAVANTINA"
                },
                {
                    "id": 2696,
                    "nome": "FAXINAL DOS GUEDES",
                    "municipio": "FAXINAL DOS GUEDES"
                },
                {
                    "id": 2697,
                    "nome": "ESCR.EXC.VITORIA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 2698,
                    "nome": "PRIVATE PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 2699,
                    "nome": "JIJOCA JERICOACOARA",
                    "municipio": "JIJOCA DE JERICOACOARA"
                },
                {
                    "id": 2700,
                    "nome": "ESCR.EXC.SALVADOR",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 2701,
                    "nome": "PALMEIROPOLIS",
                    "municipio": "PALMEIROPOLIS"
                },
                {
                    "id": 2702,
                    "nome": "OUROESTE",
                    "municipio": "OUROESTE"
                },
                {
                    "id": 2703,
                    "nome": "MACATUBA",
                    "municipio": "MACATUBA"
                },
                {
                    "id": 2704,
                    "nome": "INGLESES",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 2705,
                    "nome": "HOSPITAL DE CLINICAS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 2706,
                    "nome": "SANTOS DUMONT-MG",
                    "municipio": "SANTOS DUMONT"
                },
                {
                    "id": 2707,
                    "nome": "GECEX RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 2708,
                    "nome": "CIDADE NOVA-BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 2709,
                    "nome": "Ag�ncia 4623",
                    "municipio": ""
                },
                {
                    "id": 2710,
                    "nome": "BELO ORIENTE",
                    "municipio": "BELO ORIENTE"
                },
                {
                    "id": 2711,
                    "nome": "CONCEICAO DA BARRA",
                    "municipio": "CONCEICAO DA BARRA"
                },
                {
                    "id": 2712,
                    "nome": "ESCR.EXC.FORTALEZA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2713,
                    "nome": "VIANA",
                    "municipio": "VIANA"
                },
                {
                    "id": 2714,
                    "nome": "MUQUICABA",
                    "municipio": "GUARAPARI"
                },
                {
                    "id": 2715,
                    "nome": "PIRES DO RIO",
                    "municipio": "PIRES DO RIO"
                },
                {
                    "id": 2716,
                    "nome": "PRAIA GRANDE",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 2717,
                    "nome": "TREZE TILIAS",
                    "municipio": "TREZE TILIAS"
                },
                {
                    "id": 2718,
                    "nome": "BRODOWSKI",
                    "municipio": "BRODOWSKI"
                },
                {
                    "id": 2719,
                    "nome": "BERNARDINO DE CAMPOS",
                    "municipio": "BERNARDINO DE CAMPOS"
                },
                {
                    "id": 2720,
                    "nome": "ESCR.EXC.JAMPA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 2721,
                    "nome": "TORITAMA",
                    "municipio": "TORITAMA"
                },
                {
                    "id": 2722,
                    "nome": "MARIPA",
                    "municipio": "MARIPA"
                },
                {
                    "id": 2723,
                    "nome": "BOM SUCESSO",
                    "municipio": "BOM SUCESSO"
                },
                {
                    "id": 2724,
                    "nome": "SANTO INACIO",
                    "municipio": "SANTO INACIO"
                },
                {
                    "id": 2725,
                    "nome": "CHERVESON",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 2726,
                    "nome": "VARRE-SAI",
                    "municipio": "VARRE-SAI"
                },
                {
                    "id": 2727,
                    "nome": "ENG.PAULO DE FRONTIN",
                    "municipio": "ENGENHEIRO PAULO DE FRONTIN"
                },
                {
                    "id": 2728,
                    "nome": "GARUVA",
                    "municipio": "GARUVA"
                },
                {
                    "id": 2729,
                    "nome": "GARIBALDI",
                    "municipio": "GARIBALDI"
                },
                {
                    "id": 2730,
                    "nome": "LUIS ANTONIO",
                    "municipio": "LUIS ANTONIO"
                },
                {
                    "id": 2731,
                    "nome": "ESCR.EXC.SJR.PRETO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 2732,
                    "nome": "SAO MIGUEL MISSOES",
                    "municipio": "SAO MIGUEL DAS MISSOES"
                },
                {
                    "id": 2733,
                    "nome": "MONGAGUA",
                    "municipio": "MONGAGUA"
                },
                {
                    "id": 2734,
                    "nome": "IGUAPE",
                    "municipio": "IGUAPE"
                },
                {
                    "id": 2735,
                    "nome": "SAO FRANCISCO DO SUL",
                    "municipio": "SAO FRANCISCO DO SUL"
                },
                {
                    "id": 2736,
                    "nome": "QUATIS",
                    "municipio": "QUATIS"
                },
                {
                    "id": 2737,
                    "nome": "DUAS BARRAS",
                    "municipio": "DUAS BARRAS"
                },
                {
                    "id": 2738,
                    "nome": "MAJOR GOTE",
                    "municipio": "PATOS DE MINAS"
                },
                {
                    "id": 2739,
                    "nome": "ITAPOLIS",
                    "municipio": "ITAPOLIS"
                },
                {
                    "id": 2740,
                    "nome": "ARRAIAL D AJUDA",
                    "municipio": "PORTO SEGURO"
                },
                {
                    "id": 2741,
                    "nome": "CAJATI",
                    "municipio": "CAJATI"
                },
                {
                    "id": 2742,
                    "nome": "MARILANDIA",
                    "municipio": "MARILANDIA"
                },
                {
                    "id": 2743,
                    "nome": "SENADOR CANEDO",
                    "municipio": "SENADOR CANEDO"
                },
                {
                    "id": 2744,
                    "nome": "RESPLENDOR",
                    "municipio": "RESPLENDOR"
                },
                {
                    "id": 2745,
                    "nome": "PATY DO ALFERES",
                    "municipio": "PATY DO ALFERES"
                },
                {
                    "id": 2746,
                    "nome": "ESTILO BOTAFOGO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2747,
                    "nome": "UNIV.FED.RURAL DO RJ",
                    "municipio": "SEROPEDICA"
                },
                {
                    "id": 2748,
                    "nome": "EMPRESA MOSSORO",
                    "municipio": "MOSSORO"
                },
                {
                    "id": 2749,
                    "nome": "MESQUITA-RJ",
                    "municipio": "MESQUITA"
                },
                {
                    "id": 2750,
                    "nome": "BARRA MANSA",
                    "municipio": "BARRA MANSA"
                },
                {
                    "id": 2751,
                    "nome": "ESTILO NITEROI",
                    "municipio": "NITEROI"
                },
                {
                    "id": 2752,
                    "nome": "CAVALEIROS",
                    "municipio": "MACAE"
                },
                {
                    "id": 2753,
                    "nome": "EMPRESA CASCAVEL",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 2754,
                    "nome": "ILHABELA",
                    "municipio": "ILHABELA"
                },
                {
                    "id": 2755,
                    "nome": "RIO GRANDE DA SERRA",
                    "municipio": "RIO GRANDE DA SERRA"
                },
                {
                    "id": 2756,
                    "nome": "ESTILO CUIABA",
                    "municipio": "CUIABA"
                },
                {
                    "id": 2757,
                    "nome": "Ag�ncia 4699",
                    "municipio": ""
                },
                {
                    "id": 2758,
                    "nome": "ABATIA",
                    "municipio": "ABATIA"
                },
                {
                    "id": 2759,
                    "nome": "ADAMANTINA",
                    "municipio": "ADAMANTINA"
                },
                {
                    "id": 2760,
                    "nome": "GERENCIAL CARTOES",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2761,
                    "nome": "ESCR.EXC.SJ.CAMPOS",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 2762,
                    "nome": "BAIRRO SERRARIA",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 2763,
                    "nome": "BAIRRO DOS PIMENTAS",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 2764,
                    "nome": "AVENIDA PRES.MEDICI",
                    "municipio": "OSASCO"
                },
                {
                    "id": 2765,
                    "nome": "LEOPOLDINA",
                    "municipio": "LEOPOLDINA"
                },
                {
                    "id": 2766,
                    "nome": "TERESINA SHOPPING",
                    "municipio": "TERESINA"
                },
                {
                    "id": 2767,
                    "nome": "4712",
                    "municipio": ""
                },
                {
                    "id": 2768,
                    "nome": "BORBA",
                    "municipio": "BORBA"
                },
                {
                    "id": 2769,
                    "nome": "ANTONINA",
                    "municipio": "ANTONINA"
                },
                {
                    "id": 2770,
                    "nome": "EMPRESA ABOLICAO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2771,
                    "nome": "ESTILO SAO JOAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2772,
                    "nome": "ESTILO VITORIA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 2773,
                    "nome": "CAP.LEONIDAS MARQUES",
                    "municipio": "CAPITAO LEONIDAS MARQUES"
                },
                {
                    "id": 2774,
                    "nome": "ESTILO AV.PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2775,
                    "nome": "OURO PRETO",
                    "municipio": "OURO PRETO"
                },
                {
                    "id": 2776,
                    "nome": "ESTILO FORTALEZA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2777,
                    "nome": "AGUAS CLARAS",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2778,
                    "nome": "ESTILO B.HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2779,
                    "nome": "ESTILO PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 2780,
                    "nome": "CARLOPOLIS",
                    "municipio": "CARLOPOLIS"
                },
                {
                    "id": 2781,
                    "nome": "ESPIRITO STO.PINHAL",
                    "municipio": "ESPIRITO SANTO DO PINHAL"
                },
                {
                    "id": 2782,
                    "nome": "CERRO AZUL",
                    "municipio": "CERRO AZUL"
                },
                {
                    "id": 2783,
                    "nome": "IRETAMA",
                    "municipio": "IRETAMA"
                },
                {
                    "id": 2784,
                    "nome": "IVAI",
                    "municipio": "IVAI"
                },
                {
                    "id": 2785,
                    "nome": "CSA SAO PAULO I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2786,
                    "nome": "NOVA LARANJEIRAS",
                    "municipio": "NOVA LARANJEIRAS"
                },
                {
                    "id": 2787,
                    "nome": "GUAIRA",
                    "municipio": "GUAIRA"
                },
                {
                    "id": 2788,
                    "nome": "SHOPPING CAMPO LIMPO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2789,
                    "nome": "GECEX MANAUS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 2790,
                    "nome": "GECEX BELEM",
                    "municipio": "BELEM"
                },
                {
                    "id": 2791,
                    "nome": "ASTORGA",
                    "municipio": "ASTORGA"
                },
                {
                    "id": 2792,
                    "nome": "GECEX FORTALEZA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2793,
                    "nome": "GECEX VITORIA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 2794,
                    "nome": "ESTILO FEIRA SANTANA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 2795,
                    "nome": "ESTILO JUIZ DE FORA",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 2796,
                    "nome": "EMPRESA NITEROI",
                    "municipio": "NITEROI"
                },
                {
                    "id": 2797,
                    "nome": "ESTILO MARINGA",
                    "municipio": "MARINGA"
                },
                {
                    "id": 2798,
                    "nome": "MACAU",
                    "municipio": "MACAU"
                },
                {
                    "id": 2799,
                    "nome": "EMPRESA GUARULHOS",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 2800,
                    "nome": "ESTILO BLUMENAU",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 2801,
                    "nome": "ESTILO P.XV NOVEMBRO",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 2802,
                    "nome": "ESTILO JOINVILLE",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 2803,
                    "nome": "ESTILO ARACAJU",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 2804,
                    "nome": "ESTILO BAURU",
                    "municipio": "BAURU"
                },
                {
                    "id": 2805,
                    "nome": "NAO CORRENTISTAS",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2806,
                    "nome": "ESTILO JUNDIAI",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 2807,
                    "nome": "ESTILO PIRACICABA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 2808,
                    "nome": "LINHARES",
                    "municipio": "LINHARES"
                },
                {
                    "id": 2809,
                    "nome": "ESTILO SAO CARLOS",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 2810,
                    "nome": "CSA CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 2811,
                    "nome": "ESTILO FLORIANOPOLIS",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 2812,
                    "nome": "TOMAZINA",
                    "municipio": "TOMAZINA"
                },
                {
                    "id": 2813,
                    "nome": "RIO AZUL",
                    "municipio": "RIO AZUL"
                },
                {
                    "id": 2814,
                    "nome": "VERE",
                    "municipio": "VERE"
                },
                {
                    "id": 2815,
                    "nome": "CANOAS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 2816,
                    "nome": "GECEX BELO HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2817,
                    "nome": "GECEX CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 2818,
                    "nome": "GECEX SAO PAULO I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2819,
                    "nome": "AFONSO PENA",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 2820,
                    "nome": "NANUQUE",
                    "municipio": "NANUQUE"
                },
                {
                    "id": 2821,
                    "nome": "MARANGUAPE",
                    "municipio": "MARANGUAPE"
                },
                {
                    "id": 2822,
                    "nome": "ESTREITO",
                    "municipio": "ESTREITO"
                },
                {
                    "id": 2823,
                    "nome": "VERA",
                    "municipio": "VERA"
                },
                {
                    "id": 2824,
                    "nome": "RIBAS DO RIO PARDO",
                    "municipio": "RIBAS DO RIO PARDO"
                },
                {
                    "id": 2825,
                    "nome": "ESTILO TIRADENTES",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 2826,
                    "nome": "ESTILO AV.A.PAIVA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2827,
                    "nome": "CORINTO",
                    "municipio": "CORINTO"
                },
                {
                    "id": 2828,
                    "nome": "SAO GOTARDO",
                    "municipio": "SAO GOTARDO"
                },
                {
                    "id": 2829,
                    "nome": "PARANAIBA",
                    "municipio": "PARANAIBA"
                },
                {
                    "id": 2830,
                    "nome": "ESTILO NATAL",
                    "municipio": "NATAL"
                },
                {
                    "id": 2831,
                    "nome": "ESTILO MOINHOS VENTO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 2832,
                    "nome": "ESTILO ALTO PINHEIRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2833,
                    "nome": "CASTRO",
                    "municipio": "CASTRO"
                },
                {
                    "id": 2834,
                    "nome": "ESTILO CID SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2835,
                    "nome": "ESTILO SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2836,
                    "nome": "ESTILO PERDIZES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2837,
                    "nome": "ESTILO PACAEMBU",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2838,
                    "nome": "ESTILO MOEMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2839,
                    "nome": "ESTILO SANTANA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2840,
                    "nome": "ESTILO ALTO B VISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2841,
                    "nome": "ESTILO SANTOS",
                    "municipio": "SANTOS"
                },
                {
                    "id": 2842,
                    "nome": "ESTILO S.JOSE CAMPOS",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 2843,
                    "nome": "ESTILO ANALIA FRANCO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2844,
                    "nome": "FARROUPILHA",
                    "municipio": "FARROUPILHA"
                },
                {
                    "id": 2845,
                    "nome": "VIA SHOPPING",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2846,
                    "nome": "NOVO GAMA",
                    "municipio": "NOVO GAMA"
                },
                {
                    "id": 2847,
                    "nome": "MAIOBAO",
                    "municipio": "PACO DO LUMIAR"
                },
                {
                    "id": 2848,
                    "nome": "ESTILO S.BERN.CAMPO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 2849,
                    "nome": "RIO POMBA",
                    "municipio": "RIO POMBA"
                },
                {
                    "id": 2850,
                    "nome": "ESTILO BAIRRO GRACA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 2851,
                    "nome": "AV.PRESIDENTE WILSON",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 2852,
                    "nome": "PEDRA BRANCA AMAPARI",
                    "municipio": "PEDRA BRANCA DO AMAPARI"
                },
                {
                    "id": 2853,
                    "nome": "SAO SEPE",
                    "municipio": "SAO SEPE"
                },
                {
                    "id": 2854,
                    "nome": "ESTILO COMERCIO",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 2855,
                    "nome": "ESTILO LAGO SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2856,
                    "nome": "ESTILO P.REPUBLICA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2857,
                    "nome": "ESTILO MONUMENTAL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2858,
                    "nome": "ESTILO ALVORADA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2859,
                    "nome": "ESTILO B.DE LOURDES",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2860,
                    "nome": "ESTILO MINASCENTRO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 2861,
                    "nome": "ESTILO UBERLANDIA",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 2862,
                    "nome": "STA.MARIA DO SUACUI",
                    "municipio": "SANTA MARIA DO SUACUI"
                },
                {
                    "id": 2863,
                    "nome": "ESTILO MARCO ZERO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 2864,
                    "nome": "ESTILO LONDRINA",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 2865,
                    "nome": "ESTILO PETROBRAS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2866,
                    "nome": "ESTILO CAMBUI",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 2867,
                    "nome": "ESTILO GUARULHOS",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 2868,
                    "nome": "ESTILO SANTO ANDRE",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 2869,
                    "nome": "ESTILO S.J.RIO PRETO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 2870,
                    "nome": "ESTILO SOROCABA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 2871,
                    "nome": "ESTILO CARLOS GOMES",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 2872,
                    "nome": "PENEDO",
                    "municipio": "PENEDO"
                },
                {
                    "id": 2873,
                    "nome": "SOLEDADE",
                    "municipio": "SOLEDADE"
                },
                {
                    "id": 2874,
                    "nome": "GOIATUBA",
                    "municipio": "GOIATUBA"
                },
                {
                    "id": 2875,
                    "nome": "REGISTRO",
                    "municipio": "REGISTRO"
                },
                {
                    "id": 2876,
                    "nome": "ESCR.INTEGRACAO VAR",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2877,
                    "nome": "JACAREPAGUA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2878,
                    "nome": "SAO FRANCISCO",
                    "municipio": "SAO FRANCISCO"
                },
                {
                    "id": 2879,
                    "nome": "PATO BRANCO",
                    "municipio": "PATO BRANCO"
                },
                {
                    "id": 2880,
                    "nome": "INHUMAS",
                    "municipio": "INHUMAS"
                },
                {
                    "id": 2881,
                    "nome": "VICENTE DE CARVALHO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2882,
                    "nome": "PACAEMBU",
                    "municipio": "PACAEMBU"
                },
                {
                    "id": 2883,
                    "nome": "ESTILO AV.AMERICAS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2884,
                    "nome": "BREJETUBA",
                    "municipio": "BREJETUBA"
                },
                {
                    "id": 2885,
                    "nome": "MEDINA",
                    "municipio": "MEDINA"
                },
                {
                    "id": 2886,
                    "nome": "SIMONESIA",
                    "municipio": "SIMONESIA"
                },
                {
                    "id": 2887,
                    "nome": "NOVA CANAA DO NORTE",
                    "municipio": "NOVA CANAA DO NORTE"
                },
                {
                    "id": 2888,
                    "nome": "ESCR.EXC.MARAJOARA",
                    "municipio": "BELEM"
                },
                {
                    "id": 2889,
                    "nome": "4997",
                    "municipio": ""
                },
                {
                    "id": 2890,
                    "nome": "4998",
                    "municipio": ""
                },
                {
                    "id": 2891,
                    "nome": "CAMPOS GOYTACAZES",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 2892,
                    "nome": "CATANDUVA",
                    "municipio": "CATANDUVA"
                },
                {
                    "id": 2893,
                    "nome": "SAO JERONIMO",
                    "municipio": "SAO JERONIMO"
                },
                {
                    "id": 2894,
                    "nome": "SARANDI",
                    "municipio": "SARANDI"
                },
                {
                    "id": 2895,
                    "nome": "ESTILO RIO BRANCO",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 2896,
                    "nome": "ESTILO IMPERATRIZ",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 2897,
                    "nome": "ESTILO MONTES CLAROS",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 2898,
                    "nome": "CARMO DO PARANAIBA",
                    "municipio": "CARMO DO PARANAIBA"
                },
                {
                    "id": 2899,
                    "nome": "ESTILO C.GRANDE",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 2900,
                    "nome": "ESTILO TERESINA",
                    "municipio": "TERESINA"
                },
                {
                    "id": 2901,
                    "nome": "ESTILO CASCAVEL",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 2902,
                    "nome": "ESTILO PONTA GROSSA",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 2903,
                    "nome": "EMPRESA CONTAGEM",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 2904,
                    "nome": "ESTILO C.GOYTACAZES",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 2905,
                    "nome": "CONSELHEIRO LAFAIETE",
                    "municipio": "CONSELHEIRO LAFAIETE"
                },
                {
                    "id": 2906,
                    "nome": "ESTILO PORTO VELHO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 2907,
                    "nome": "ESTILO BOA VISTA",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 2908,
                    "nome": "IBITINGA",
                    "municipio": "IBITINGA"
                },
                {
                    "id": 2909,
                    "nome": "ESTILO PELOTAS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 2910,
                    "nome": "ESTILO SANTA MARIA",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 2911,
                    "nome": "ESTILO BALN.CAMBORIU",
                    "municipio": "BALNEARIO CAMBORIU"
                },
                {
                    "id": 2912,
                    "nome": "ESTILO AMERICANA",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 2913,
                    "nome": "INHAPIM",
                    "municipio": "INHAPIM"
                },
                {
                    "id": 2914,
                    "nome": "ESTILO INDAIATUBA",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 2915,
                    "nome": "ESTILO PALMAS",
                    "municipio": "PALMAS"
                },
                {
                    "id": 2916,
                    "nome": "PAULO DE FARIA",
                    "municipio": "PAULO DE FARIA"
                },
                {
                    "id": 2917,
                    "nome": "UNAI",
                    "municipio": "UNAI"
                },
                {
                    "id": 2918,
                    "nome": "ESTILO VILA VELHA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 2919,
                    "nome": "EMPRESA PORTO VELHO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 2920,
                    "nome": "ESTILO UBERABA",
                    "municipio": "UBERABA"
                },
                {
                    "id": 2921,
                    "nome": "ESTILO PETROPOLIS",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 2922,
                    "nome": "ESTILO CANOAS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 2923,
                    "nome": "NOVA ESPERANCA",
                    "municipio": "NOVA ESPERANCA"
                },
                {
                    "id": 2924,
                    "nome": "ESC MUNICIPIOS RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2925,
                    "nome": "ESTILO VIEIRALVES",
                    "municipio": "MANAUS"
                },
                {
                    "id": 2926,
                    "nome": "ESTILO PITUBA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 2927,
                    "nome": "MACAE",
                    "municipio": "MACAE"
                },
                {
                    "id": 2928,
                    "nome": "ITAPEVA",
                    "municipio": "ITAPEVA"
                },
                {
                    "id": 2929,
                    "nome": "ESTILO MEIRELES",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2930,
                    "nome": "CORP BANK SERV FINAN",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 2931,
                    "nome": "TATUI",
                    "municipio": "TATUI"
                },
                {
                    "id": 2932,
                    "nome": "ESTILO ALDEOTA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 2933,
                    "nome": "CORP BANK FOZ SF",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 2934,
                    "nome": "CORP BANK RIB NORTE",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 2935,
                    "nome": "ESTILO ASA NORTE 316",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2936,
                    "nome": "CORP BANK CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 2937,
                    "nome": "CORP BANK GOIANIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 2938,
                    "nome": "CORP BANK CO MG",
                    "municipio": "DIVINOPOLIS"
                },
                {
                    "id": 2939,
                    "nome": "ALTO ARAGUAIA",
                    "municipio": "ALTO ARAGUAIA"
                },
                {
                    "id": 2940,
                    "nome": "CORP BANK D PARNAIBA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 2941,
                    "nome": "CORP BANK PASSO FDO",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 2942,
                    "nome": "ESTILO SUDOESTE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2943,
                    "nome": "PORANGATU",
                    "municipio": "PORANGATU"
                },
                {
                    "id": 2944,
                    "nome": "PORTO FERREIRA",
                    "municipio": "PORTO FERREIRA"
                },
                {
                    "id": 2945,
                    "nome": "PALMEIRAS DE GOIAS",
                    "municipio": "PALMEIRAS DE GOIAS"
                },
                {
                    "id": 2946,
                    "nome": "CRUZEIRO DO OESTE",
                    "municipio": "CRUZEIRO DO OESTE"
                },
                {
                    "id": 2947,
                    "nome": "CURITIBANOS",
                    "municipio": "CURITIBANOS"
                },
                {
                    "id": 2948,
                    "nome": "ITAPEMIRIM",
                    "municipio": "ITAPEMIRIM"
                },
                {
                    "id": 2949,
                    "nome": "SAO JOAO DO PIAUI",
                    "municipio": "SAO JOAO DO PIAUI"
                },
                {
                    "id": 2950,
                    "nome": "ESTILO PARQUE CIDADE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2951,
                    "nome": "ESTILO ASA SUL 504",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2952,
                    "nome": "ESTILO BACEN DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 2953,
                    "nome": "EMPRESA CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 2954,
                    "nome": "LOANDA",
                    "municipio": "LOANDA"
                },
                {
                    "id": 2955,
                    "nome": "CENTRAL-SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 2956,
                    "nome": "CENTENARIO",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 2957,
                    "nome": "POMBAL",
                    "municipio": "POMBAL"
                },
                {
                    "id": 2958,
                    "nome": "IMARUI",
                    "municipio": "IMARUI"
                },
                {
                    "id": 2959,
                    "nome": "CALCADAO LAGES",
                    "municipio": "LAGES"
                },
                {
                    "id": 2960,
                    "nome": "BAMBUI",
                    "municipio": "BAMBUI"
                },
                {
                    "id": 2961,
                    "nome": "SAO ROQUE",
                    "municipio": "SAO ROQUE"
                },
                {
                    "id": 2962,
                    "nome": "BAIRRO SANTA RITA",
                    "municipio": "BRUSQUE"
                },
                {
                    "id": 2963,
                    "nome": "ARAGUA DO SUL - SC",
                    "municipio": ""
                },
                {
                    "id": 2964,
                    "nome": "ESPINOSA",
                    "municipio": "ESPINOSA"
                },
                {
                    "id": 2965,
                    "nome": "IPANEMA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 2966,
                    "nome": "PRACA XV DE NOVEMBRO",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 2967,
                    "nome": "BOM JARDIM DA SERRA",
                    "municipio": "BOM JARDIM DA SERRA"
                },
                {
                    "id": 2968,
                    "nome": "QUIRINOPOLIS",
                    "municipio": "QUIRINOPOLIS"
                },
                {
                    "id": 2969,
                    "nome": "BANANEIRAS",
                    "municipio": "BANANEIRAS"
                },
                {
                    "id": 2970,
                    "nome": "ATLANTICO SUL",
                    "municipio": "BALNEARIO CAMBORIU"
                },
                {
                    "id": 2971,
                    "nome": "SAUDADES",
                    "municipio": "SAUDADES"
                },
                {
                    "id": 2972,
                    "nome": "BACABAL",
                    "municipio": "BACABAL"
                },
                {
                    "id": 2973,
                    "nome": "SAO JOSE DO CERRITO",
                    "municipio": "SAO JOSE DO CERRITO"
                },
                {
                    "id": 2974,
                    "nome": "JABORA",
                    "municipio": "JABORA"
                },
                {
                    "id": 2975,
                    "nome": "URUACU",
                    "municipio": "URUACU"
                },
                {
                    "id": 2976,
                    "nome": "ANGELINA",
                    "municipio": "ANGELINA"
                },
                {
                    "id": 2977,
                    "nome": "FRANCA",
                    "municipio": "FRANCA"
                },
                {
                    "id": 2978,
                    "nome": "S.LUIS MONTES BELOS",
                    "municipio": "SAO LUIS DE MONTES BELOS"
                },
                {
                    "id": 2979,
                    "nome": "CAXAMBU DO SUL",
                    "municipio": "CAXAMBU DO SUL"
                },
                {
                    "id": 2980,
                    "nome": "IMBUIA",
                    "municipio": "IMBUIA"
                },
                {
                    "id": 2981,
                    "nome": "PETROLANDIA",
                    "municipio": "PETROLANDIA"
                },
                {
                    "id": 2982,
                    "nome": "GARUVA",
                    "municipio": ""
                },
                {
                    "id": 2983,
                    "nome": "CASCAVEL",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 2984,
                    "nome": "ATALANTA",
                    "municipio": "ATALANTA"
                },
                {
                    "id": 2985,
                    "nome": "PAULO LOPES",
                    "municipio": "PAULO LOPES"
                },
                {
                    "id": 2986,
                    "nome": "UBAJARA",
                    "municipio": "UBAJARA"
                },
                {
                    "id": 2987,
                    "nome": "ARROIO TRINTA",
                    "municipio": "ARROIO TRINTA"
                },
                {
                    "id": 2988,
                    "nome": "CORACAO DE JESUS",
                    "municipio": "CORACAO DE JESUS"
                },
                {
                    "id": 2989,
                    "nome": "LEOBERTO LEAL",
                    "municipio": "LEOBERTO LEAL"
                },
                {
                    "id": 2990,
                    "nome": "PERITIBA",
                    "municipio": "PERITIBA"
                },
                {
                    "id": 2991,
                    "nome": "RANCHO QUEIMADO",
                    "municipio": "RANCHO QUEIMADO"
                },
                {
                    "id": 2992,
                    "nome": "QUIXERAMOBIM",
                    "municipio": "QUIXERAMOBIM"
                },
                {
                    "id": 2993,
                    "nome": "PALHOCA CENTRO",
                    "municipio": "PALHOCA"
                },
                {
                    "id": 2994,
                    "nome": "SAO JOAO DO SUL",
                    "municipio": "SAO JOAO DO SUL"
                },
                {
                    "id": 2995,
                    "nome": "SAO BENTO DO UNA",
                    "municipio": "SAO BENTO DO UNA"
                },
                {
                    "id": 2996,
                    "nome": "5371",
                    "municipio": ""
                },
                {
                    "id": 2997,
                    "nome": "MODELO",
                    "municipio": "MODELO"
                },
                {
                    "id": 2998,
                    "nome": "COROMANDEL",
                    "municipio": "COROMANDEL"
                },
                {
                    "id": 2999,
                    "nome": "LUIZ ALVES",
                    "municipio": "LUIZ ALVES"
                },
                {
                    "id": 3000,
                    "nome": "NOVA ERECHIM",
                    "municipio": "NOVA ERECHIM"
                },
                {
                    "id": 3001,
                    "nome": "BEBEDOURO",
                    "municipio": "BEBEDOURO"
                },
                {
                    "id": 3002,
                    "nome": "ARARANGUA",
                    "municipio": "ARARANGUA"
                },
                {
                    "id": 3003,
                    "nome": "LONTRAS",
                    "municipio": "LONTRAS"
                },
                {
                    "id": 3004,
                    "nome": "LAURENTINO",
                    "municipio": "LAURENTINO"
                },
                {
                    "id": 3005,
                    "nome": "ARRAIAS",
                    "municipio": "ARRAIAS"
                },
                {
                    "id": 3006,
                    "nome": "GALVAO",
                    "municipio": "GALVAO"
                },
                {
                    "id": 3007,
                    "nome": "AURORA",
                    "municipio": "AURORA"
                },
                {
                    "id": 3008,
                    "nome": "ARAPIRACA",
                    "municipio": "ARAPIRACA"
                },
                {
                    "id": 3009,
                    "nome": "EMPRESA SAO JOSE",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 3010,
                    "nome": "GUIA LOPES DA LAGUNA",
                    "municipio": "GUIA LOPES DA LAGUNA"
                },
                {
                    "id": 3011,
                    "nome": "TUNAPOLIS",
                    "municipio": "TUNAPOLIS"
                },
                {
                    "id": 3012,
                    "nome": "ITAPOA",
                    "municipio": "ITAPOA"
                },
                {
                    "id": 3013,
                    "nome": "PIRACANJUBA",
                    "municipio": "PIRACANJUBA"
                },
                {
                    "id": 3014,
                    "nome": "VILA NOVA",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 3015,
                    "nome": "VALENCA",
                    "municipio": "VALENCA"
                },
                {
                    "id": 3016,
                    "nome": "BELA VISTA",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 3017,
                    "nome": "CAPIVARI DE BAIXO",
                    "municipio": "CAPIVARI DE BAIXO"
                },
                {
                    "id": 3018,
                    "nome": "CAIAPONIA",
                    "municipio": "CAIAPONIA"
                },
                {
                    "id": 3019,
                    "nome": "ICO",
                    "municipio": "ICO"
                },
                {
                    "id": 3020,
                    "nome": "IRECE",
                    "municipio": "IRECE"
                },
                {
                    "id": 3021,
                    "nome": "ILHA DO GOVERNADOR",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3022,
                    "nome": "550",
                    "municipio": ""
                },
                {
                    "id": 3023,
                    "nome": "RONDONOPOLIS",
                    "municipio": "RONDONOPOLIS"
                },
                {
                    "id": 3024,
                    "nome": "COXIM",
                    "municipio": "COXIM"
                },
                {
                    "id": 3025,
                    "nome": "POXOREU",
                    "municipio": "POXOREU"
                },
                {
                    "id": 3026,
                    "nome": "EMPRESA IMPERATRIZ",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 3027,
                    "nome": "ALENQUER",
                    "municipio": "ALENQUER"
                },
                {
                    "id": 3028,
                    "nome": "UNESP BOTUCATU",
                    "municipio": "BOTUCATU"
                },
                {
                    "id": 3029,
                    "nome": "POCOES",
                    "municipio": "POCOES"
                },
                {
                    "id": 3030,
                    "nome": "ESTILO ASA SUL 514",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 3031,
                    "nome": "AVENIDA VP 8",
                    "municipio": "MARABA"
                },
                {
                    "id": 3032,
                    "nome": "ANICUNS",
                    "municipio": "ANICUNS"
                },
                {
                    "id": 3033,
                    "nome": "BREVES",
                    "municipio": "BREVES"
                },
                {
                    "id": 3034,
                    "nome": "ITAPURANGA",
                    "municipio": "ITAPURANGA"
                },
                {
                    "id": 3035,
                    "nome": "PIRACICABA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 3036,
                    "nome": "SAO JOAO NEPOMUCENO",
                    "municipio": "SAO JOAO NEPOMUCENO"
                },
                {
                    "id": 3037,
                    "nome": "CRISTINO CASTRO (PI)",
                    "municipio": ""
                },
                {
                    "id": 3038,
                    "nome": "DIRCEU ARCOVERDE",
                    "municipio": "TERESINA"
                },
                {
                    "id": 3039,
                    "nome": "13 DE MAIO",
                    "municipio": "TERESINA"
                },
                {
                    "id": 3040,
                    "nome": "SAO FRANCISCO ASSIS",
                    "municipio": "SAO FRANCISCO DE ASSIS"
                },
                {
                    "id": 3041,
                    "nome": "EST.INV.ESP.SANTO",
                    "municipio": "VITORIA"
                },
                {
                    "id": 3042,
                    "nome": "ITAPECURU-MIRIM",
                    "municipio": "ITAPECURU MIRIM"
                },
                {
                    "id": 3043,
                    "nome": "SANTO ANTONIO JESUS",
                    "municipio": "SANTO ANTONIO DE JESUS"
                },
                {
                    "id": 3044,
                    "nome": "MARABA",
                    "municipio": "MARABA"
                },
                {
                    "id": 3045,
                    "nome": "ESMERALDA",
                    "municipio": "ESMERALDA"
                },
                {
                    "id": 3046,
                    "nome": "CAMPUS UNIVERSITARIO",
                    "municipio": "SAO CRISTOVAO"
                },
                {
                    "id": 3047,
                    "nome": "VILA DIRCE",
                    "municipio": "CARAPICUIBA"
                },
                {
                    "id": 3048,
                    "nome": "PINHEIRO",
                    "municipio": "PINHEIRO"
                },
                {
                    "id": 3049,
                    "nome": "SAO JOAO EVANGELISTA",
                    "municipio": "SAO JOAO EVANGELISTA"
                },
                {
                    "id": 3050,
                    "nome": "ALTAMIRA",
                    "municipio": "ALTAMIRA"
                },
                {
                    "id": 3051,
                    "nome": "ESTILO CAXIAS DO SUL",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 3052,
                    "nome": "CIDADE OPERARIA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 3053,
                    "nome": "VITORIA DO MEARIM",
                    "municipio": "VITORIA DO MEARIM"
                },
                {
                    "id": 3054,
                    "nome": "PRACA TIRADENTES-MG",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 3055,
                    "nome": "GRAJAU",
                    "municipio": "GRAJAU"
                },
                {
                    "id": 3056,
                    "nome": "BAIRRO OURO PRETO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3057,
                    "nome": "RUA GAL.GLICERIO",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 3058,
                    "nome": "SANTA MARIA VITORIA",
                    "municipio": "SANTA MARIA DA VITORIA"
                },
                {
                    "id": 3059,
                    "nome": "MATATU-BROTAS",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 3060,
                    "nome": "SAO JOSE RIO PRETO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 3061,
                    "nome": "AFOGADOS INGAZEIRA",
                    "municipio": "AFOGADOS DA INGAZEIRA"
                },
                {
                    "id": 3062,
                    "nome": "5700",
                    "municipio": ""
                },
                {
                    "id": 3063,
                    "nome": "ESTILO GOIAS",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 3064,
                    "nome": "VILA MIRIM",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 3065,
                    "nome": "BARRA DO GARCAS",
                    "municipio": "BARRA DO GARCAS"
                },
                {
                    "id": 3066,
                    "nome": "ESCR.EXC.P.MARAVILHA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3067,
                    "nome": "GOIANDIRA",
                    "municipio": "GOIANDIRA"
                },
                {
                    "id": 3068,
                    "nome": "AV.BRIG.LIMA E SILVA",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 3069,
                    "nome": "AV.PRESIDENTE VARGAS",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 3070,
                    "nome": "ESCR.EXC.ARCOS LAPA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3071,
                    "nome": "AMARANTE DO MARANHAO",
                    "municipio": "AMARANTE DO MARANHAO"
                },
                {
                    "id": 3072,
                    "nome": "LENCOIS PAULISTA",
                    "municipio": "LENCOIS PAULISTA"
                },
                {
                    "id": 3073,
                    "nome": "GOV.NUNES FREIRE",
                    "municipio": "GOVERNADOR NUNES FREIRE"
                },
                {
                    "id": 3074,
                    "nome": "FORTALEZA NOGUEIRAS",
                    "municipio": "FORTALEZA DOS NOGUEIRAS"
                },
                {
                    "id": 3075,
                    "nome": "SALVADOR SHOPPING",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 3076,
                    "nome": "ESC MUNICIPIOS PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 3077,
                    "nome": "PINDAMONHANGABA",
                    "municipio": "PINDAMONHANGABA"
                },
                {
                    "id": 3078,
                    "nome": "5740",
                    "municipio": ""
                },
                {
                    "id": 3079,
                    "nome": "57400",
                    "municipio": ""
                },
                {
                    "id": 3080,
                    "nome": "SHOPPING DIFUSORA",
                    "municipio": "CARUARU"
                },
                {
                    "id": 3081,
                    "nome": "EMPRESA ASSIS BRASIL",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 3082,
                    "nome": "GUARAJUBA",
                    "municipio": "CAMACARI"
                },
                {
                    "id": 3083,
                    "nome": "RIO SAO FRANCISCO",
                    "municipio": "JUAZEIRO"
                },
                {
                    "id": 3084,
                    "nome": "GRAMADO",
                    "municipio": "GRAMADO"
                },
                {
                    "id": 3085,
                    "nome": "EMPRESA SAO LUIS MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 3086,
                    "nome": "ESTILO SAO MATEUS",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 3087,
                    "nome": "ESTILO NAZARE",
                    "municipio": "BELEM"
                },
                {
                    "id": 3088,
                    "nome": "ESTILO ILHA DO LEITE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 3089,
                    "nome": "ESTILO MADRE LEONIA",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 3090,
                    "nome": "ESTILO AVENIDA CHILE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3091,
                    "nome": "EMPRESA PENHA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3092,
                    "nome": "ESTILO AV.RIO BRANCO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3093,
                    "nome": "ESTILO MARIZ BARROS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3094,
                    "nome": "ESTILO PALAC.FAZENDA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3095,
                    "nome": "ESC MUN PR CENTRO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 3096,
                    "nome": "ESTILO INV. RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3097,
                    "nome": "ESTILO ZONA SUL",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3098,
                    "nome": "ESTILO POTIGUAR",
                    "municipio": "NATAL"
                },
                {
                    "id": 3099,
                    "nome": "TEFE",
                    "municipio": "TEFE"
                },
                {
                    "id": 3100,
                    "nome": "ESTILO C.HISTORICO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 3101,
                    "nome": "ESTILO GARCIA",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 3102,
                    "nome": "ESTILO NORTE SUL",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 3103,
                    "nome": "ESTILO PORTO SANTOS",
                    "municipio": "SANTOS"
                },
                {
                    "id": 3104,
                    "nome": "AV.OLIVIA FLORES",
                    "municipio": "VITORIA DA CONQUISTA"
                },
                {
                    "id": 3105,
                    "nome": "AVENIDA CHICO MENDES",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 3106,
                    "nome": "MOGI-MIRIM",
                    "municipio": "MOGI-MIRIM"
                },
                {
                    "id": 3107,
                    "nome": "MECEJANA",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 3108,
                    "nome": "ALVORADA-MT",
                    "municipio": "PRIMAVERA DO LESTE"
                },
                {
                    "id": 3109,
                    "nome": "ANIL",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 3110,
                    "nome": "JAPIIM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 3111,
                    "nome": "AV.DANIEL LA TOUCHE",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 3112,
                    "nome": "LUIZOTE DE FREITAS",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 3113,
                    "nome": "ESCR.EXC.CPO.GRANDE",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 3114,
                    "nome": "CARUTAPERA",
                    "municipio": "CARUTAPERA"
                },
                {
                    "id": 3115,
                    "nome": "EMPRESA NOVA IGUACU",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 3116,
                    "nome": "MORENINHAS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 3117,
                    "nome": "LINS",
                    "municipio": "LINS"
                },
                {
                    "id": 3118,
                    "nome": "MOREIRA SALES",
                    "municipio": "MOREIRA SALES"
                },
                {
                    "id": 3119,
                    "nome": "ESTILO AV.A.HADDAD",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 3120,
                    "nome": "ESTILO VALE PARAIBA",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 3121,
                    "nome": "ESTILO E.P.MEDICINA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3122,
                    "nome": "ESTILO AV.BRASIL-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3123,
                    "nome": "ESTILO BOM RETIRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3124,
                    "nome": "EMPRESA PANTANAL",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 3125,
                    "nome": "ESCR.EXC.BELEM",
                    "municipio": "BELEM"
                },
                {
                    "id": 3126,
                    "nome": "ESTILO NACOES UNIDAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3127,
                    "nome": "ORIZONA",
                    "municipio": "ORIZONA"
                },
                {
                    "id": 3128,
                    "nome": "ESTILO SANTO AMARO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3129,
                    "nome": "ESTILO VILA CARRAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3130,
                    "nome": "ESTILO REBOUCAS-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3131,
                    "nome": "5815",
                    "municipio": ""
                },
                {
                    "id": 3132,
                    "nome": "5816",
                    "municipio": ""
                },
                {
                    "id": 3133,
                    "nome": "ESTILO P.MORAIS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3134,
                    "nome": "SURUBIM",
                    "municipio": "SURUBIM"
                },
                {
                    "id": 3135,
                    "nome": "ESTILO CENTRO CIVICO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 3136,
                    "nome": "ESTILO OLHO D AGUA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 3137,
                    "nome": "RUA DO FICO",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 3138,
                    "nome": "5827",
                    "municipio": ""
                },
                {
                    "id": 3139,
                    "nome": "TATUAPE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3140,
                    "nome": "VILA MARIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3141,
                    "nome": "VOTUPORANGA NORTE",
                    "municipio": "VOTUPORANGA"
                },
                {
                    "id": 3142,
                    "nome": "ESC MUNICIPIOS BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 3143,
                    "nome": "ESCR.EXC.RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 3144,
                    "nome": "CATOLE DO ROCHA",
                    "municipio": "CATOLE DO ROCHA"
                },
                {
                    "id": 3145,
                    "nome": "EMPRESA VERGUEIRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3146,
                    "nome": "ESC MUNICIPIOS RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 3147,
                    "nome": "XANXERE",
                    "municipio": "XANXERE"
                },
                {
                    "id": 3148,
                    "nome": "ESC MUNICIPIOS SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 3149,
                    "nome": "TOLEDO",
                    "municipio": "TOLEDO"
                },
                {
                    "id": 3150,
                    "nome": "RUA MARIZ E BARROS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3151,
                    "nome": "EMPRESA TRIANGULO",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 3152,
                    "nome": "BAIRRO INDUSTRIAL",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 3153,
                    "nome": "BOM DESPACHO",
                    "municipio": "BOM DESPACHO"
                },
                {
                    "id": 3154,
                    "nome": "ESC MUNICIPIOS SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3155,
                    "nome": "AVENIDA AMAZONAS",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 3156,
                    "nome": "EMPRESA ANAPOLIS",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 3157,
                    "nome": "RUA SAMPAIO",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 3158,
                    "nome": "AV.BRASILIA-ST.LUZIA",
                    "municipio": "SANTA LUZIA"
                },
                {
                    "id": 3159,
                    "nome": "BOM JESUS",
                    "municipio": "BOM JESUS"
                },
                {
                    "id": 3160,
                    "nome": "5892",
                    "municipio": ""
                },
                {
                    "id": 3161,
                    "nome": "TURU",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 3162,
                    "nome": "5898",
                    "municipio": ""
                },
                {
                    "id": 3163,
                    "nome": "SANTO AMARO",
                    "municipio": "SANTO AMARO"
                },
                {
                    "id": 3164,
                    "nome": "BREJO",
                    "municipio": "BREJO"
                },
                {
                    "id": 3165,
                    "nome": "SUDOESTE",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 3166,
                    "nome": "S.PUBLICO SP SUDESTE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3167,
                    "nome": "NOVA BALSAS",
                    "municipio": "BALSAS"
                },
                {
                    "id": 3168,
                    "nome": "CONCEICAO M.DENTRO",
                    "municipio": "CONCEICAO DO MATO DENTRO"
                },
                {
                    "id": 3169,
                    "nome": "RUA SENA MADUREIRA",
                    "municipio": "BARBACENA"
                },
                {
                    "id": 3170,
                    "nome": "CLAUDIA",
                    "municipio": "CLAUDIA"
                },
                {
                    "id": 3171,
                    "nome": "PEIXOTO DE AZEVEDO",
                    "municipio": "PEIXOTO DE AZEVEDO"
                },
                {
                    "id": 3172,
                    "nome": "VILA MILITAR",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3173,
                    "nome": "CAPIM DOURADO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 3174,
                    "nome": "ESC MUN SP NOROESTE  SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 3175,
                    "nome": "B.JORGE TEIXEIRA",
                    "municipio": "MANAUS"
                },
                {
                    "id": 3176,
                    "nome": "EMPRESA AMAZONAS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 3177,
                    "nome": "ESTILO MACAPA",
                    "municipio": "MACAPA"
                },
                {
                    "id": 3178,
                    "nome": "IRARA",
                    "municipio": "IRARA"
                },
                {
                    "id": 3179,
                    "nome": "ESCR.EXC.SAO LUIS",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 3180,
                    "nome": "HOSP.SERV.ESTAD.SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3181,
                    "nome": "REMANSO",
                    "municipio": "REMANSO"
                },
                {
                    "id": 3182,
                    "nome": "PALACIO DA JUSTICA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3183,
                    "nome": "RUY BARBOSA",
                    "municipio": "RUY BARBOSA"
                },
                {
                    "id": 3184,
                    "nome": "ESCR.EXC.LUZ SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3185,
                    "nome": "URUCUI",
                    "municipio": "URUCUI"
                },
                {
                    "id": 3186,
                    "nome": "Ag�ncia 5969",
                    "municipio": ""
                },
                {
                    "id": 3187,
                    "nome": "ZONA SUL-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3188,
                    "nome": "TRT-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 3189,
                    "nome": "ESTILO PQ.DAS ROSAS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3190,
                    "nome": "ESTILO R.ASSEMBLEIA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3191,
                    "nome": "ESCR.EXC.ARPOADOR",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3192,
                    "nome": "ESTILO SEN.FEDERAL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 3193,
                    "nome": "LEBLON",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3194,
                    "nome": "IPIRANGA DO NORTE",
                    "municipio": "IPIRANGA DO NORTE"
                },
                {
                    "id": 3195,
                    "nome": "NOVO SAO JOAQUIM",
                    "municipio": "NOVO SAO JOAQUIM"
                },
                {
                    "id": 3196,
                    "nome": "GAUCHA DO NORTE",
                    "municipio": "GAUCHA DO NORTE"
                },
                {
                    "id": 3197,
                    "nome": "COROA DO MEIO",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 3198,
                    "nome": "SAO MIGUEL DO OESTE",
                    "municipio": "SAO MIGUEL D'OESTE"
                },
                {
                    "id": 3199,
                    "nome": "ESCR.EXC.CAXIAS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 3200,
                    "nome": "MALACACHETA",
                    "municipio": "MALACACHETA"
                },
                {
                    "id": 3201,
                    "nome": "SALVADOR",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 3202,
                    "nome": "JEQUIE",
                    "municipio": "JEQUIE"
                },
                {
                    "id": 3203,
                    "nome": "ARARIPINA",
                    "municipio": "ARARIPINA"
                },
                {
                    "id": 3204,
                    "nome": "COARACI",
                    "municipio": "COARACI"
                },
                {
                    "id": 3205,
                    "nome": "IBAITI",
                    "municipio": "IBAITI"
                },
                {
                    "id": 3206,
                    "nome": "SAO JOAO DOS PATOS",
                    "municipio": "SAO JOAO DOS PATOS"
                },
                {
                    "id": 3207,
                    "nome": "VERANOPOLIS",
                    "municipio": "VERANOPOLIS"
                },
                {
                    "id": 3208,
                    "nome": "CABROBO",
                    "municipio": "CABROBO"
                },
                {
                    "id": 3209,
                    "nome": "POSSE",
                    "municipio": "POSSE"
                },
                {
                    "id": 3210,
                    "nome": "CONSELHEIRO PENA",
                    "municipio": "CONSELHEIRO PENA"
                },
                {
                    "id": 3211,
                    "nome": "608",
                    "municipio": ""
                },
                {
                    "id": 3212,
                    "nome": "CORRENTE",
                    "municipio": "CORRENTE"
                },
                {
                    "id": 3213,
                    "nome": "TEOFILO OTONI",
                    "municipio": "TEOFILO OTONI"
                },
                {
                    "id": 3214,
                    "nome": "ESPLANADA",
                    "municipio": "ESPLANADA"
                },
                {
                    "id": 3215,
                    "nome": "ESTANCIA VELHA",
                    "municipio": "ESTANCIA VELHA"
                },
                {
                    "id": 3216,
                    "nome": "NOSSA SENHORA GLORIA",
                    "municipio": "NOSSA SENHORA DA GLORIA"
                },
                {
                    "id": 3217,
                    "nome": "SANTA INES",
                    "municipio": "SANTA INES"
                },
                {
                    "id": 3218,
                    "nome": "NOVA CRUZ",
                    "municipio": "NOVA CRUZ"
                },
                {
                    "id": 3219,
                    "nome": "PALMAS",
                    "municipio": "PALMAS"
                },
                {
                    "id": 3220,
                    "nome": "FRANCISCO BELTRAO",
                    "municipio": "FRANCISCO BELTRAO"
                },
                {
                    "id": 3221,
                    "nome": "CANGUCU",
                    "municipio": "CANGUCU"
                },
                {
                    "id": 3222,
                    "nome": "CIANORTE",
                    "municipio": "CIANORTE"
                },
                {
                    "id": 3223,
                    "nome": "JULIO DE CASTILHOS",
                    "municipio": "JULIO DE CASTILHOS"
                },
                {
                    "id": 3224,
                    "nome": "BARBACENA",
                    "municipio": "BARBACENA"
                },
                {
                    "id": 3225,
                    "nome": "NOVA LONDRINA",
                    "municipio": "NOVA LONDRINA"
                },
                {
                    "id": 3226,
                    "nome": "PAULO AFONSO",
                    "municipio": "PAULO AFONSO"
                },
                {
                    "id": 3227,
                    "nome": "TANABI",
                    "municipio": "TANABI"
                },
                {
                    "id": 3228,
                    "nome": "MIRANDA",
                    "municipio": "MIRANDA"
                },
                {
                    "id": 3229,
                    "nome": "CASSIA",
                    "municipio": "CASSIA"
                },
                {
                    "id": 3230,
                    "nome": "SAPE",
                    "municipio": "SAPE"
                },
                {
                    "id": 3231,
                    "nome": "CANDELARIA-RS",
                    "municipio": "CANDELARIA"
                },
                {
                    "id": 3232,
                    "nome": "RIO BONITO",
                    "municipio": "RIO BONITO"
                },
                {
                    "id": 3233,
                    "nome": "VIAMAO",
                    "municipio": "VIAMAO"
                },
                {
                    "id": 3234,
                    "nome": "TIMBO",
                    "municipio": "TIMBO"
                },
                {
                    "id": 3235,
                    "nome": "EMPRESA CAMP.GRANDE",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 3236,
                    "nome": "LAPA",
                    "municipio": "LAPA"
                },
                {
                    "id": 3237,
                    "nome": "AGUDOS",
                    "municipio": "AGUDOS"
                },
                {
                    "id": 3238,
                    "nome": "IPORA",
                    "municipio": "IPORA"
                },
                {
                    "id": 3239,
                    "nome": "IVAIPORA",
                    "municipio": "IVAIPORA"
                },
                {
                    "id": 3240,
                    "nome": "PIANCO",
                    "municipio": "PIANCO"
                },
                {
                    "id": 3241,
                    "nome": "CAMBUCI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3242,
                    "nome": "GUARULHOS",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 3243,
                    "nome": "OSASCO",
                    "municipio": "OSASCO"
                },
                {
                    "id": 3244,
                    "nome": "ARAGUAINA",
                    "municipio": "ARAGUAINA"
                },
                {
                    "id": 3245,
                    "nome": "JUSSARA",
                    "municipio": "JUSSARA"
                },
                {
                    "id": 3246,
                    "nome": "GUAXUPE",
                    "municipio": "GUAXUPE"
                },
                {
                    "id": 3247,
                    "nome": "BREJO SANTO",
                    "municipio": "BREJO SANTO"
                },
                {
                    "id": 3248,
                    "nome": "GUAIRA",
                    "municipio": "GUAIRA"
                },
                {
                    "id": 3249,
                    "nome": "JARAGUA",
                    "municipio": "JARAGUA"
                },
                {
                    "id": 3250,
                    "nome": "TAMOIOS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3251,
                    "nome": "CAPINZAL",
                    "municipio": "CAPINZAL"
                },
                {
                    "id": 3252,
                    "nome": "UMUARAMA",
                    "municipio": "UMUARAMA"
                },
                {
                    "id": 3253,
                    "nome": "ANA ROSA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3254,
                    "nome": "VILA PRUDENTE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3255,
                    "nome": "ITANHANDU",
                    "municipio": "ITANHANDU"
                },
                {
                    "id": 3256,
                    "nome": "SAO JOAO BOA VISTA",
                    "municipio": "SAO JOAO DA BOA VISTA"
                },
                {
                    "id": 3257,
                    "nome": "PRATA",
                    "municipio": "PRATA"
                },
                {
                    "id": 3258,
                    "nome": "MATRIZ-SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3259,
                    "nome": "RUA DOUTOR QUIRINO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 3260,
                    "nome": "EMPRESA RIB.PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 3261,
                    "nome": "CIDADE TERNURA-TATUI",
                    "municipio": "TATUI"
                },
                {
                    "id": 3262,
                    "nome": "EMPRESA RIO CLARO",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 3263,
                    "nome": "PCA.BARAO DE ARARAS",
                    "municipio": "ARARAS"
                },
                {
                    "id": 3264,
                    "nome": "ALEXANDRINA-S.CARLOS",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 3265,
                    "nome": "IPANEMA",
                    "municipio": "IPANEMA"
                },
                {
                    "id": 3266,
                    "nome": "CATEDRAL-SOROCABA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 3267,
                    "nome": "CATEDRAL-GUARA",
                    "municipio": "GUARATINGUETA"
                },
                {
                    "id": 3268,
                    "nome": "EMPRESA PIRACICABA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 3269,
                    "nome": "RUA BISPO RODOVALHO",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 3270,
                    "nome": "RIBEIRAO DO PINHAL",
                    "municipio": "RIBEIRAO DO PINHAL"
                },
                {
                    "id": 3271,
                    "nome": "EMPRESA FRANCA",
                    "municipio": "FRANCA"
                },
                {
                    "id": 3272,
                    "nome": "ATENAS-ITAPETININGA",
                    "municipio": "ITAPETININGA"
                },
                {
                    "id": 3273,
                    "nome": "CONVENCAO-ITU",
                    "municipio": "ITU"
                },
                {
                    "id": 3274,
                    "nome": "PRACA RAUL LEME",
                    "municipio": "BRAGANCA PAULISTA"
                },
                {
                    "id": 3275,
                    "nome": "SAPIRANGA",
                    "municipio": "SAPIRANGA"
                },
                {
                    "id": 3276,
                    "nome": "PC.RUI BARBOSA-BAURU",
                    "municipio": "BAURU"
                },
                {
                    "id": 3277,
                    "nome": "EDIFICIO ATRIUM-MOGI",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 3278,
                    "nome": "RUA ANDRADAS-PINDA",
                    "municipio": "PINDAMONHANGABA"
                },
                {
                    "id": 3279,
                    "nome": "MUZAMBINHO",
                    "municipio": "MUZAMBINHO"
                },
                {
                    "id": 3280,
                    "nome": "PCA.ROSARIO-JACAREI",
                    "municipio": "JACAREI"
                },
                {
                    "id": 3281,
                    "nome": "PC.S.JOSE-MOGI-MIRIM",
                    "municipio": "MOGI-MIRIM"
                },
                {
                    "id": 3282,
                    "nome": "RUA AGUIAR-ITATIBA",
                    "municipio": "ITATIBA"
                },
                {
                    "id": 3283,
                    "nome": "ESCR.EXC.STO.ANDRE",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 3284,
                    "nome": "SAO MATEUS DO SUL",
                    "municipio": "SAO MATEUS DO SUL"
                },
                {
                    "id": 3285,
                    "nome": "RUA MAL.DEODORO-SBC",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 3286,
                    "nome": "PIRACEMA",
                    "municipio": "PIRASSUNUNGA"
                },
                {
                    "id": 3287,
                    "nome": "ESTANCIA ATIBAIA",
                    "municipio": "ATIBAIA"
                },
                {
                    "id": 3288,
                    "nome": "CANAVIAIS",
                    "municipio": "SERTAOZINHO"
                },
                {
                    "id": 3289,
                    "nome": "SAO JOAQUIM",
                    "municipio": "SAO JOAQUIM"
                },
                {
                    "id": 3290,
                    "nome": "VALE DO PARAIBA",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 3291,
                    "nome": "CUITE",
                    "municipio": "CUITE"
                },
                {
                    "id": 3292,
                    "nome": "CATEDRAL-ASSIS",
                    "municipio": "ASSIS"
                },
                {
                    "id": 3293,
                    "nome": "NOVA BEBEDOURO",
                    "municipio": "BEBEDOURO"
                },
                {
                    "id": 3294,
                    "nome": "CATEDRAL-S.J.R.PRETO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 3295,
                    "nome": "MINEIROS DO TIETE",
                    "municipio": "MINEIROS DO TIETE"
                },
                {
                    "id": 3296,
                    "nome": "ITATINGA",
                    "municipio": "ITATINGA"
                },
                {
                    "id": 3297,
                    "nome": "ALTO DA BOA VISTA-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3298,
                    "nome": "MINEIROS",
                    "municipio": "MINEIROS"
                },
                {
                    "id": 3299,
                    "nome": "PCA.DR.GAMA-BIRIGUI",
                    "municipio": "BIRIGUI"
                },
                {
                    "id": 3300,
                    "nome": "R.MARANHAO-CATANDUVA",
                    "municipio": "CATANDUVA"
                },
                {
                    "id": 3301,
                    "nome": "SAO JOSE RIO PARDO",
                    "municipio": "SAO JOSE DO RIO PARDO"
                },
                {
                    "id": 3302,
                    "nome": "LINENSE",
                    "municipio": "LINS"
                },
                {
                    "id": 3303,
                    "nome": "AV.SAMPAIO VIDAL",
                    "municipio": "MARILIA"
                },
                {
                    "id": 3304,
                    "nome": "SERRA AZUL",
                    "municipio": "SERRA AZUL"
                },
                {
                    "id": 3305,
                    "nome": "PRACA NOVE DE JULHO",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 3306,
                    "nome": "PASSO DA AREIA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 3307,
                    "nome": "TORRINHA",
                    "municipio": "TORRINHA"
                },
                {
                    "id": 3308,
                    "nome": "REGINOPOLIS",
                    "municipio": "REGINOPOLIS"
                },
                {
                    "id": 3309,
                    "nome": "QUATA",
                    "municipio": "QUATA"
                },
                {
                    "id": 3310,
                    "nome": "POCONE",
                    "municipio": "POCONE"
                },
                {
                    "id": 3311,
                    "nome": "RUA VINTE E SEIS",
                    "municipio": "BARRETOS"
                },
                {
                    "id": 3312,
                    "nome": "EMPRESA AMERICANA",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 3313,
                    "nome": "CEAGESP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3314,
                    "nome": "IPAUSSU",
                    "municipio": "IPAUSSU"
                },
                {
                    "id": 3315,
                    "nome": "BELA VISTA PARAISO",
                    "municipio": "BELA VISTA DO PARAISO"
                },
                {
                    "id": 3316,
                    "nome": "PARAIBUNA",
                    "municipio": "PARAIBUNA"
                },
                {
                    "id": 3317,
                    "nome": "SALTO GRANDE",
                    "municipio": "SALTO GRANDE"
                },
                {
                    "id": 3318,
                    "nome": "TELEMACO BORBA",
                    "municipio": "TELEMACO BORBA"
                },
                {
                    "id": 3319,
                    "nome": "RUA QUINZE-MOGI",
                    "municipio": "MOGI-GUACU"
                },
                {
                    "id": 3320,
                    "nome": "TABATINGA",
                    "municipio": "TABATINGA"
                },
                {
                    "id": 3321,
                    "nome": "CONVIVIO DOM PEDRO",
                    "municipio": "SALTO"
                },
                {
                    "id": 3322,
                    "nome": "ARIRANHA",
                    "municipio": "ARIRANHA"
                },
                {
                    "id": 3323,
                    "nome": "SANTA FE DO SUL",
                    "municipio": "SANTA FE DO SUL"
                },
                {
                    "id": 3324,
                    "nome": "CIDADE DOS INDAIAS",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 3325,
                    "nome": "ROSARIO OESTE",
                    "municipio": "ROSARIO OESTE"
                },
                {
                    "id": 3326,
                    "nome": "AVANHANDAVA",
                    "municipio": "AVANHANDAVA"
                },
                {
                    "id": 3327,
                    "nome": "VERA CRUZ",
                    "municipio": "VERA CRUZ"
                },
                {
                    "id": 3328,
                    "nome": "ITIRAPINA",
                    "municipio": "ITIRAPINA"
                },
                {
                    "id": 3329,
                    "nome": "FERNANDO PRESTES",
                    "municipio": "FERNANDO PRESTES"
                },
                {
                    "id": 3330,
                    "nome": "GOIANESIA",
                    "municipio": "GOIANESIA"
                },
                {
                    "id": 3331,
                    "nome": "PIQUETE",
                    "municipio": "PIQUETE"
                },
                {
                    "id": 3332,
                    "nome": "RINCAO",
                    "municipio": "RINCAO"
                },
                {
                    "id": 3333,
                    "nome": "IRAPUA",
                    "municipio": "IRAPUA"
                },
                {
                    "id": 3334,
                    "nome": "PITANGUEIRAS-GUARUJA",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 3335,
                    "nome": "ECHAPORA",
                    "municipio": "ECHAPORA"
                },
                {
                    "id": 3336,
                    "nome": "ANTONIO PRADO",
                    "municipio": "ANTONIO PRADO"
                },
                {
                    "id": 3337,
                    "nome": "REDENCAO DA SERRA",
                    "municipio": "REDENCAO DA SERRA"
                },
                {
                    "id": 3338,
                    "nome": "RUA FREI GASPAR",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 3339,
                    "nome": "GARANHUNS",
                    "municipio": "GARANHUNS"
                },
                {
                    "id": 3340,
                    "nome": "CACAPAVA DO SUL",
                    "municipio": "CACAPAVA DO SUL"
                },
                {
                    "id": 3341,
                    "nome": "NEVES PAULISTA",
                    "municipio": "NEVES PAULISTA"
                },
                {
                    "id": 3342,
                    "nome": "NOVA ALIANCA",
                    "municipio": "NOVA ALIANCA"
                },
                {
                    "id": 3343,
                    "nome": "TAQUARI",
                    "municipio": "TAQUARI"
                },
                {
                    "id": 3344,
                    "nome": "CIDADE DAS FLORES-SP",
                    "municipio": "SUZANO"
                },
                {
                    "id": 3345,
                    "nome": "ALVARES FLORENCE",
                    "municipio": "ALVARES FLORENCE"
                },
                {
                    "id": 3346,
                    "nome": "SAO JOSE BELA VISTA",
                    "municipio": "SAO JOSE DA BELA VISTA"
                },
                {
                    "id": 3347,
                    "nome": "VENANCIO AIRES",
                    "municipio": "VENANCIO AIRES"
                },
                {
                    "id": 3348,
                    "nome": "AV.9 ABRIL-CUBATAO",
                    "municipio": "CUBATAO"
                },
                {
                    "id": 3349,
                    "nome": "CABRALIA PAULISTA",
                    "municipio": "CABRALIA PAULISTA"
                },
                {
                    "id": 3350,
                    "nome": "CORUMBATAI",
                    "municipio": "CORUMBATAI"
                },
                {
                    "id": 3351,
                    "nome": "ESTACAO FRANCO ROCHA",
                    "municipio": "FRANCO DA ROCHA"
                },
                {
                    "id": 3352,
                    "nome": "CARPINA",
                    "municipio": "CARPINA"
                },
                {
                    "id": 3353,
                    "nome": "PONGAI",
                    "municipio": "PONGAI"
                },
                {
                    "id": 3354,
                    "nome": "MONTEIRO LOBATO",
                    "municipio": "MONTEIRO LOBATO"
                },
                {
                    "id": 3355,
                    "nome": "SAO BENTO DO SUL",
                    "municipio": "SAO BENTO DO SUL"
                },
                {
                    "id": 3356,
                    "nome": "HERCULANDIA",
                    "municipio": "HERCULANDIA"
                },
                {
                    "id": 3357,
                    "nome": "PRACA DOS CORREIOS",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 3358,
                    "nome": "AGUAS DE STA.BARBARA",
                    "municipio": "AGUAS DE SANTA BARBARA"
                },
                {
                    "id": 3359,
                    "nome": "PARANACITY",
                    "municipio": "PARANACITY"
                },
                {
                    "id": 3360,
                    "nome": "CEDRAL",
                    "municipio": "CEDRAL"
                },
                {
                    "id": 3361,
                    "nome": "GUARUCENTRO",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 3362,
                    "nome": "IBIRUBA",
                    "municipio": "IBIRUBA"
                },
                {
                    "id": 3363,
                    "nome": "TREMEMBE",
                    "municipio": "TREMEMBE"
                },
                {
                    "id": 3364,
                    "nome": "PRAIA DE CARAGUA",
                    "municipio": "CARAGUATATUBA"
                },
                {
                    "id": 3365,
                    "nome": "ARACOIABA DA SERRA",
                    "municipio": "ARACOIABA DA SERRA"
                },
                {
                    "id": 3366,
                    "nome": "TAPERA",
                    "municipio": "TAPERA"
                },
                {
                    "id": 3367,
                    "nome": "IBIRAREMA",
                    "municipio": "IBIRAREMA"
                },
                {
                    "id": 3368,
                    "nome": "MANDURI",
                    "municipio": "MANDURI"
                },
                {
                    "id": 3369,
                    "nome": "CERRO LARGO",
                    "municipio": "CERRO LARGO"
                },
                {
                    "id": 3370,
                    "nome": "BILAC",
                    "municipio": "BILAC"
                },
                {
                    "id": 3371,
                    "nome": "GUARACAI",
                    "municipio": "GUARACAI"
                },
                {
                    "id": 3372,
                    "nome": "PARANAPANEMA",
                    "municipio": "PARANAPANEMA"
                },
                {
                    "id": 3373,
                    "nome": "AREALVA",
                    "municipio": "AREALVA"
                },
                {
                    "id": 3374,
                    "nome": "ARCOVERDE",
                    "municipio": "ARCOVERDE"
                },
                {
                    "id": 3375,
                    "nome": "FREDERICO WESTPHALEN",
                    "municipio": "FREDERICO WESTPHALEN"
                },
                {
                    "id": 3376,
                    "nome": "UBIRAJARA",
                    "municipio": "UBIRAJARA"
                },
                {
                    "id": 3377,
                    "nome": "BRESSER-SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3378,
                    "nome": "R.VOL.PATRIA-S.PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3379,
                    "nome": "RUA JOAQUIM TAVORA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3380,
                    "nome": "PINHEIROS TEODORO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3381,
                    "nome": "RUA AFONSO SARDINHA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3382,
                    "nome": "MAUA",
                    "municipio": "MAUA"
                },
                {
                    "id": 3383,
                    "nome": "ESTILO JOAO MENDES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3384,
                    "nome": "PRACA ALEIXO MAFRA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3385,
                    "nome": "CLOVIS BEVILACQUA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3386,
                    "nome": "TIRADENTES-SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3387,
                    "nome": "TRES DE MAIO",
                    "municipio": "TRES DE MAIO"
                },
                {
                    "id": 3388,
                    "nome": "REZENDE-PIRACICABA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 3389,
                    "nome": "JACAREI",
                    "municipio": "JACAREI"
                },
                {
                    "id": 3390,
                    "nome": "R.11 JUNHO-LIMEIRA",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 3391,
                    "nome": "CONSELHEIRO CARRAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3392,
                    "nome": "JARDIM FRANCA-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3393,
                    "nome": "PENHA-SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3394,
                    "nome": "EMBARE-SANTOS",
                    "municipio": "SANTOS"
                },
                {
                    "id": 3395,
                    "nome": "REP.DO LIBANO-OSASCO",
                    "municipio": "OSASCO"
                },
                {
                    "id": 3396,
                    "nome": "ESTACAO ADONIRAN",
                    "municipio": "VALINHOS"
                },
                {
                    "id": 3397,
                    "nome": "RIACHAO DO JACUIPE",
                    "municipio": "RIACHAO DO JACUIPE"
                },
                {
                    "id": 3398,
                    "nome": "VILA FALCAO-BAURU",
                    "municipio": "BAURU"
                },
                {
                    "id": 3399,
                    "nome": "CPOS.ELISEOS-RIB.PTO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 3400,
                    "nome": "DISTRITO ESTACAO",
                    "municipio": "FRANCA"
                },
                {
                    "id": 3401,
                    "nome": "FREGUESIA SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3402,
                    "nome": "VILA PRADO-S.CARLOS",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 3403,
                    "nome": "AV.PAULA FERREIRA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3404,
                    "nome": "PARADA INGLESA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3405,
                    "nome": "CAMPOS NOVOS",
                    "municipio": "CAMPOS NOVOS"
                },
                {
                    "id": 3406,
                    "nome": "DISTRITO DE SOUSAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 3407,
                    "nome": "RUA SALES OLIVEIRA",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 3408,
                    "nome": "VL.BELA VISTA-BAURU",
                    "municipio": "BAURU"
                },
                {
                    "id": 3409,
                    "nome": "RUA MAJOR MATHEUS",
                    "municipio": "BOTUCATU"
                },
                {
                    "id": 3410,
                    "nome": "VILA GERMAINE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3411,
                    "nome": "BALSAMO",
                    "municipio": "BALSAMO"
                },
                {
                    "id": 3412,
                    "nome": "CIDADE AZUL-R.CLARO",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 3413,
                    "nome": "PRACA DA BIBLIA",
                    "municipio": "MAUA"
                },
                {
                    "id": 3414,
                    "nome": "SALTO DE PIRAPORA",
                    "municipio": "SALTO DE PIRAPORA"
                },
                {
                    "id": 3415,
                    "nome": "IGARACU DO TIETE",
                    "municipio": "IGARACU DO TIETE"
                },
                {
                    "id": 3416,
                    "nome": "SANTANA DO PARAIBA",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 3417,
                    "nome": "FREGUESIA DO O",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3418,
                    "nome": "PARQUE ANHANGUERA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3419,
                    "nome": "PCA.DR.SAMPAIO VIDAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3420,
                    "nome": "ICEM",
                    "municipio": "ICEM"
                },
                {
                    "id": 3421,
                    "nome": "STA.CRUZ CONCEICAO",
                    "municipio": "SANTA CRUZ DA CONCEICAO"
                },
                {
                    "id": 3422,
                    "nome": "CESARIO LANGE",
                    "municipio": "CESARIO LANGE"
                },
                {
                    "id": 3423,
                    "nome": "ABAETE",
                    "municipio": "ABAETE"
                },
                {
                    "id": 3424,
                    "nome": "OITO DE SETEMBRO",
                    "municipio": "ITAQUAQUECETUBA"
                },
                {
                    "id": 3425,
                    "nome": "R.MANOEL NOBREGA",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 3426,
                    "nome": "SABINO",
                    "municipio": "SABINO"
                },
                {
                    "id": 3427,
                    "nome": "6888",
                    "municipio": ""
                },
                {
                    "id": 3428,
                    "nome": "MACARANI",
                    "municipio": "MACARANI"
                },
                {
                    "id": 3429,
                    "nome": "CASTILHO",
                    "municipio": "CASTILHO"
                },
                {
                    "id": 3430,
                    "nome": "AREIOPOLIS",
                    "municipio": "AREIOPOLIS"
                },
                {
                    "id": 3431,
                    "nome": "VILA SAO MIGUEL",
                    "municipio": "MARILIA"
                },
                {
                    "id": 3432,
                    "nome": "JUAZEIRO",
                    "municipio": "JUAZEIRO"
                },
                {
                    "id": 3433,
                    "nome": "SANTA HELENA GOIAS",
                    "municipio": "SANTA HELENA DE GOIAS"
                },
                {
                    "id": 3434,
                    "nome": "POLONI",
                    "municipio": "POLONI"
                },
                {
                    "id": 3435,
                    "nome": "OCAUCU",
                    "municipio": "OCAUCU"
                },
                {
                    "id": 3436,
                    "nome": "PRADOPOLIS",
                    "municipio": "PRADOPOLIS"
                },
                {
                    "id": 3437,
                    "nome": "CAMPINA VERDE",
                    "municipio": "CAMPINA VERDE"
                },
                {
                    "id": 3438,
                    "nome": "PARAISO",
                    "municipio": "PARAISO"
                },
                {
                    "id": 3439,
                    "nome": "SEVERINIA",
                    "municipio": "SEVERINIA"
                },
                {
                    "id": 3440,
                    "nome": "SANTO ANTONIO PINHAL",
                    "municipio": "SANTO ANTONIO DO PINHAL"
                },
                {
                    "id": 3441,
                    "nome": "VILA HARMONIA",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 3442,
                    "nome": "AV.DUQUE DE CAXIAS",
                    "municipio": "BAURU"
                },
                {
                    "id": 3443,
                    "nome": "PORTEIRINHA",
                    "municipio": "PORTEIRINHA"
                },
                {
                    "id": 3444,
                    "nome": "AV.N.S.PAZ-RIO PRETO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 3445,
                    "nome": "SUD MENNUCCI",
                    "municipio": "SUD MENNUCCI"
                },
                {
                    "id": 3446,
                    "nome": "ESCR.EXC.TAUBATE",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 3447,
                    "nome": "VILA N.S.GRACAS",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 3448,
                    "nome": "Ag�ncia 6929",
                    "municipio": ""
                },
                {
                    "id": 3449,
                    "nome": "CASTRO ALVES",
                    "municipio": "CASTRO ALVES"
                },
                {
                    "id": 3450,
                    "nome": "RUA AMAZONAS GUARUJA",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 3451,
                    "nome": "VOTORANTINENSE",
                    "municipio": "VOTORANTIM"
                },
                {
                    "id": 3452,
                    "nome": "VILA SAMPAIO-JAU",
                    "municipio": "JAU"
                },
                {
                    "id": 3453,
                    "nome": "CARMO-ARARAQUARA",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 3454,
                    "nome": "ROSEIRA",
                    "municipio": "ROSEIRA"
                },
                {
                    "id": 3455,
                    "nome": "RUA PAULA BUENO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 3456,
                    "nome": "PARQUE BOTURUSSU",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3457,
                    "nome": "VILA CARMOSINA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3458,
                    "nome": "OSORIO",
                    "municipio": "OSORIO"
                },
                {
                    "id": 3459,
                    "nome": "RIO PIRACICABA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 3460,
                    "nome": "CAMPO LARGO",
                    "municipio": "CAMPO LARGO"
                },
                {
                    "id": 3461,
                    "nome": "PIACATU",
                    "municipio": "PIACATU"
                },
                {
                    "id": 3462,
                    "nome": "JARDIM JABOTICABEIRA",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 3463,
                    "nome": "DUQUE-RIBEIRAO PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 3464,
                    "nome": "R.FCO.AFONSO-MOGI",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 3465,
                    "nome": "IBIRAMA",
                    "municipio": "IBIRAMA"
                },
                {
                    "id": 3466,
                    "nome": "AV.BRASIL-P.GRANDE",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 3467,
                    "nome": "AV.GENERAL CARNEIRO",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 3468,
                    "nome": "CIDADE ADEMAR",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3469,
                    "nome": "AVENIDA PORTUGAL",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 3470,
                    "nome": "VILA SONIA-SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3471,
                    "nome": "SETE DE SETEMBRO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 3472,
                    "nome": "ROD.REGIS-TABOAO",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 3473,
                    "nome": "BAIRRO STA.TEREZINHA",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 3474,
                    "nome": "VILA BARCELONA",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 3475,
                    "nome": "26 DE JULHO-SUMARE",
                    "municipio": "SUMARE"
                },
                {
                    "id": 3476,
                    "nome": "EMPRESA LGO.SOCORRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3477,
                    "nome": "CANELA",
                    "municipio": "CANELA"
                },
                {
                    "id": 3478,
                    "nome": "S.LOURENCO DA SERRA",
                    "municipio": "SAO LOURENCO DA SERRA"
                },
                {
                    "id": 3479,
                    "nome": "REMANSO-HORTOLANDIA",
                    "municipio": "HORTOLANDIA"
                },
                {
                    "id": 3480,
                    "nome": "EMPRESA VILA MARIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3481,
                    "nome": "ESCR.EXC.UBERLANDIA",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 3482,
                    "nome": "CAPIVARI",
                    "municipio": "CAPIVARI"
                },
                {
                    "id": 3483,
                    "nome": "JARDIM TIJUCA-MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 3484,
                    "nome": "LARGO DO SOCORRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3485,
                    "nome": "JARDIM CAMPO GRANDE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3486,
                    "nome": "EMPRESA PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3487,
                    "nome": "RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 3488,
                    "nome": "ITABUNA",
                    "municipio": "ITABUNA"
                },
                {
                    "id": 3489,
                    "nome": "ACOPIARA",
                    "municipio": "ACOPIARA"
                },
                {
                    "id": 3490,
                    "nome": "RUA INDEPENDENCIA",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 3491,
                    "nome": "USP CAMPUS SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3492,
                    "nome": "SANTA CRUZ",
                    "municipio": "SANTA CRUZ"
                },
                {
                    "id": 3493,
                    "nome": "PARQUE BAHIA-COTIA",
                    "municipio": "COTIA"
                },
                {
                    "id": 3494,
                    "nome": "BADY BASSITT",
                    "municipio": "BADY BASSITT"
                },
                {
                    "id": 3495,
                    "nome": "NOVA VENECIA",
                    "municipio": "NOVA VENECIA"
                },
                {
                    "id": 3496,
                    "nome": "FERRAZ VASCONCELOS",
                    "municipio": "FERRAZ DE VASCONCELOS"
                },
                {
                    "id": 3497,
                    "nome": "Ag�ncia 7025",
                    "municipio": ""
                },
                {
                    "id": 3498,
                    "nome": "VILA TATETUBA",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 3499,
                    "nome": "WENCESLAU BRAZ",
                    "municipio": "WENCESLAU BRAZ"
                },
                {
                    "id": 3500,
                    "nome": "CIDADE DUTRA-S.PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3501,
                    "nome": "PONTALINA",
                    "municipio": "PONTALINA"
                },
                {
                    "id": 3502,
                    "nome": "EMPRESA LAPA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3503,
                    "nome": "7044",
                    "municipio": ""
                },
                {
                    "id": 3504,
                    "nome": "AV.CAETANO BARRELLA",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 3505,
                    "nome": "ESCR.EXC.GUARULHOS",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 3506,
                    "nome": "PARIQUERA-ACU",
                    "municipio": "PARIQUERA-ACU"
                },
                {
                    "id": 3507,
                    "nome": "GIRUA",
                    "municipio": "GIRUA"
                },
                {
                    "id": 3508,
                    "nome": "BOSQUE MAIA",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 3509,
                    "nome": "APARECIDA DO TABOADO",
                    "municipio": "APARECIDA DO TABOADO"
                },
                {
                    "id": 3510,
                    "nome": "ESCR.EXC.MOGI SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 3511,
                    "nome": "VILA DAS MERCES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3512,
                    "nome": "ESTILO USP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3513,
                    "nome": "ESTILO MOOCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3514,
                    "nome": "FAXINAL DO SOTURNO",
                    "municipio": "FAXINAL DO SOTURNO"
                },
                {
                    "id": 3515,
                    "nome": "ESTILO PAULISTANA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3516,
                    "nome": "ESTILO N.CANTAREIRA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3517,
                    "nome": "ESTILO CONSOLACAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3518,
                    "nome": "ESTILO SAUDE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3519,
                    "nome": "ESTILO LAPA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3520,
                    "nome": "ESTILO IPIRANGA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3521,
                    "nome": "ESTILO BOULEVARD",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 3522,
                    "nome": "ESTILO EMBARE",
                    "municipio": "SANTOS"
                },
                {
                    "id": 3523,
                    "nome": "ESTILO UNICAMP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 3524,
                    "nome": "ESTILO S.CAETANO SUL",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 3525,
                    "nome": "CASTANHAL",
                    "municipio": "CASTANHAL"
                },
                {
                    "id": 3526,
                    "nome": "ESTILO OSASCO",
                    "municipio": "OSASCO"
                },
                {
                    "id": 3527,
                    "nome": "ESTILO ALPHAVILLE",
                    "municipio": "BARUERI"
                },
                {
                    "id": 3528,
                    "nome": "ESTILO ARARAQUARA",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 3529,
                    "nome": "ESTILO TAUBATE",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 3530,
                    "nome": "ESTILO ARACATUBA",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 3531,
                    "nome": "ESTILO PRES.PRUDENTE",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 3532,
                    "nome": "ESTILO MARILIA",
                    "municipio": "MARILIA"
                },
                {
                    "id": 3533,
                    "nome": "ESTILO RIO CLARO",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 3534,
                    "nome": "ESTILO FRANCA",
                    "municipio": "FRANCA"
                },
                {
                    "id": 3535,
                    "nome": "ESTILO MOGI CRUZES",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 3536,
                    "nome": "PANAMBI",
                    "municipio": "PANAMBI"
                },
                {
                    "id": 3537,
                    "nome": "ESTILO LIMEIRA",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 3538,
                    "nome": "EMPRESA RIO BRANCO",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 3539,
                    "nome": "BARREIROS",
                    "municipio": "BARREIROS"
                },
                {
                    "id": 3540,
                    "nome": "7102",
                    "municipio": ""
                },
                {
                    "id": 3541,
                    "nome": "STA.CRUZ CAPIBARIBE",
                    "municipio": "SANTA CRUZ DO CAPIBARIBE"
                },
                {
                    "id": 3542,
                    "nome": "AV.MASCARENHAS MORAE",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 3543,
                    "nome": "AVENIDA PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3544,
                    "nome": "EMPRESA V. CONQUISTA",
                    "municipio": "VITORIA DA CONQUISTA"
                },
                {
                    "id": 3545,
                    "nome": "GURUPA",
                    "municipio": "GURUPA"
                },
                {
                    "id": 3546,
                    "nome": "TIETE",
                    "municipio": "TIETE"
                },
                {
                    "id": 3547,
                    "nome": "BARCELOS",
                    "municipio": "BARCELOS"
                },
                {
                    "id": 3548,
                    "nome": "CANDEIAS DO JAMARI",
                    "municipio": "CANDEIAS DO JAMARI"
                },
                {
                    "id": 3549,
                    "nome": "SARZEDO",
                    "municipio": "SARZEDO"
                },
                {
                    "id": 3550,
                    "nome": "AGUA BOA",
                    "municipio": "AGUA BOA"
                },
                {
                    "id": 3551,
                    "nome": "ALTOS DA SERRA",
                    "municipio": "TANGARA DA SERRA"
                },
                {
                    "id": 3552,
                    "nome": "EMPRESA VARZEA GRAND",
                    "municipio": "VARZEA GRANDE"
                },
                {
                    "id": 3553,
                    "nome": "CABO",
                    "municipio": "CABO DE SANTO AGOSTINHO"
                },
                {
                    "id": 3554,
                    "nome": "RECANTO DAS EMAS",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 3555,
                    "nome": "SANTA MARIA-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 3556,
                    "nome": "ESTILO OSMAR CUNHA",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 3557,
                    "nome": "ESTILO AV.GOV.RONDON",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 3558,
                    "nome": "ESTILO PC TIRADENTES",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3559,
                    "nome": "SAO SEBASTIAO-SP",
                    "municipio": "SAO SEBASTIAO"
                },
                {
                    "id": 3560,
                    "nome": "ESTILO MINAS GERAIS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3561,
                    "nome": "ESTILO AV.C.COLOMBO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3562,
                    "nome": "EMPRESA SERTAOZINHO",
                    "municipio": "SERTAOZINHO"
                },
                {
                    "id": 3563,
                    "nome": "ESTILO DIAMOND",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3564,
                    "nome": "ESTILO NILO PECANHA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 3565,
                    "nome": "ALECRIM",
                    "municipio": "NATAL"
                },
                {
                    "id": 3566,
                    "nome": "ESTILO HIGIENOPOLIS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 3567,
                    "nome": "ESTILO PRAIA BELAS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 3568,
                    "nome": "ESTILO VISC.URUGUAI",
                    "municipio": "NITEROI"
                },
                {
                    "id": 3569,
                    "nome": "DIADEMA",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 3570,
                    "nome": "SUZANO",
                    "municipio": "SUZANO"
                },
                {
                    "id": 3571,
                    "nome": "BELENZINHO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3572,
                    "nome": "NITEROI",
                    "municipio": "NITEROI"
                },
                {
                    "id": 3573,
                    "nome": "BELO JARDIM",
                    "municipio": "BELO JARDIM"
                },
                {
                    "id": 3574,
                    "nome": "MOEMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3575,
                    "nome": "PINHEIRO MACHADO",
                    "municipio": "PINHEIRO MACHADO"
                },
                {
                    "id": 3576,
                    "nome": "SAO FRANCISCO PAULA",
                    "municipio": "SAO FRANCISCO DE PAULA"
                },
                {
                    "id": 3577,
                    "nome": "FLORES DA CUNHA",
                    "municipio": "FLORES DA CUNHA"
                },
                {
                    "id": 3578,
                    "nome": "MARAU",
                    "municipio": "MARAU"
                },
                {
                    "id": 3579,
                    "nome": "JOAO CAMARA",
                    "municipio": "JOAO CAMARA"
                },
                {
                    "id": 3580,
                    "nome": "NOVA ANDRADINA",
                    "municipio": "NOVA ANDRADINA"
                },
                {
                    "id": 3581,
                    "nome": "ITAGUAI",
                    "municipio": "ITAGUAI"
                },
                {
                    "id": 3582,
                    "nome": "BARRA DO PIRAI",
                    "municipio": "BARRA DO PIRAI"
                },
                {
                    "id": 3583,
                    "nome": "BRUMADO",
                    "municipio": "BRUMADO"
                },
                {
                    "id": 3584,
                    "nome": "SANANDUVA",
                    "municipio": "SANANDUVA"
                },
                {
                    "id": 3585,
                    "nome": "SANTO AUGUSTO",
                    "municipio": "SANTO AUGUSTO"
                },
                {
                    "id": 3586,
                    "nome": "CAMPOS SALES",
                    "municipio": "CAMPOS SALES"
                },
                {
                    "id": 3587,
                    "nome": "LARANJEIRAS DO SUL",
                    "municipio": "LARANJEIRAS DO SUL"
                },
                {
                    "id": 3588,
                    "nome": "MEDIANEIRA",
                    "municipio": "MEDIANEIRA"
                },
                {
                    "id": 3589,
                    "nome": "PALMITOS",
                    "municipio": "PALMITOS"
                },
                {
                    "id": 3590,
                    "nome": "TANGARA",
                    "municipio": "TANGARA"
                },
                {
                    "id": 3591,
                    "nome": "BRACO DO NORTE",
                    "municipio": "BRACO DO NORTE"
                },
                {
                    "id": 3592,
                    "nome": "ITAPERUNA",
                    "municipio": "ITAPERUNA"
                },
                {
                    "id": 3593,
                    "nome": "RIO BRILHANTE",
                    "municipio": "RIO BRILHANTE"
                },
                {
                    "id": 3594,
                    "nome": "ESTILO CANDELARIA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3595,
                    "nome": "ESTILO JACAREPAGUA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3596,
                    "nome": "ESTILO DIAS FERREIRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3597,
                    "nome": "ESTILO MEIER",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3598,
                    "nome": "ESTILO I.GOVERNADOR",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3599,
                    "nome": "TERESOPOLIS",
                    "municipio": "TERESOPOLIS"
                },
                {
                    "id": 3600,
                    "nome": "ESTILO PENHA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3601,
                    "nome": "ESTILO FLAMENGO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3602,
                    "nome": "ESTILO CHAMPAGNAT",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 3603,
                    "nome": "PORTO MURTINHO",
                    "municipio": "PORTO MURTINHO"
                },
                {
                    "id": 3604,
                    "nome": "AMAMBAI",
                    "municipio": "AMAMBAI"
                },
                {
                    "id": 3605,
                    "nome": "BOM JESUS DA LAPA",
                    "municipio": "BOM JESUS DA LAPA"
                },
                {
                    "id": 3606,
                    "nome": "CACEQUI",
                    "municipio": "CACEQUI"
                },
                {
                    "id": 3607,
                    "nome": "BORRAZOPOLIS",
                    "municipio": "BORRAZOPOLIS"
                },
                {
                    "id": 3608,
                    "nome": "UBIRATA",
                    "municipio": "UBIRATA"
                },
                {
                    "id": 3609,
                    "nome": "BOM JESUS",
                    "municipio": "BOM JESUS"
                },
                {
                    "id": 3610,
                    "nome": "PARAUNA",
                    "municipio": "PARAUNA"
                },
                {
                    "id": 3611,
                    "nome": "BETIM",
                    "municipio": "BETIM"
                },
                {
                    "id": 3612,
                    "nome": "SAO JOAO DE MERITI",
                    "municipio": "SAO JOAO DE MERITI"
                },
                {
                    "id": 3613,
                    "nome": "SETOR CAMPINAS",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 3614,
                    "nome": "RIO VERDE M.GROSSO",
                    "municipio": "RIO VERDE DE MATO GROSSO"
                },
                {
                    "id": 3615,
                    "nome": "ITAITUBA",
                    "municipio": "ITAITUBA"
                },
                {
                    "id": 3616,
                    "nome": "CAMPO BOM",
                    "municipio": "CAMPO BOM"
                },
                {
                    "id": 3617,
                    "nome": "PORTAO-CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 3618,
                    "nome": "SAO MIGUEL ARAGUAIA",
                    "municipio": "SAO MIGUEL DO ARAGUAIA"
                },
                {
                    "id": 3619,
                    "nome": "MOMBACA",
                    "municipio": "MOMBACA"
                },
                {
                    "id": 3620,
                    "nome": "SOUSA",
                    "municipio": "SOUSA"
                },
                {
                    "id": 3621,
                    "nome": "TAUBATE",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 3622,
                    "nome": "AFONSO CLAUDIO",
                    "municipio": "AFONSO CLAUDIO"
                },
                {
                    "id": 3623,
                    "nome": "EMPRESA MANAUS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 3624,
                    "nome": "EMPRESA F.DE SANTANA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 3625,
                    "nome": "ESCR.EXC.M.DO CRISTO",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 3626,
                    "nome": "EMPRESA CEILANDIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 3627,
                    "nome": "EMPRESA BARREIRAS",
                    "municipio": "BARREIRAS"
                },
                {
                    "id": 3628,
                    "nome": "EMPRESA CASTANHAL",
                    "municipio": "CASTANHAL"
                },
                {
                    "id": 3629,
                    "nome": "AGRO DOURADOS",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 3630,
                    "nome": "ESC MUNICIPIOS MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3631,
                    "nome": "EMPRESA TERESINA",
                    "municipio": "TERESINA"
                },
                {
                    "id": 3632,
                    "nome": "ESC MUN MG LESTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3633,
                    "nome": "AGRO MARINGA",
                    "municipio": "MARINGA"
                },
                {
                    "id": 3634,
                    "nome": "EMPRESA IGAPO",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 3635,
                    "nome": "AGRO LONDRINA",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 3636,
                    "nome": "EMPRESA CID.CANCAO",
                    "municipio": "MARINGA"
                },
                {
                    "id": 3637,
                    "nome": "EMPRESA CAMPOS GERAIS",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 3638,
                    "nome": "ESC MUN MG OESTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3639,
                    "nome": "EMPRESA DUQUE CAXIAS",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 3640,
                    "nome": "ESTEIO",
                    "municipio": "ESTEIO"
                },
                {
                    "id": 3641,
                    "nome": "AGRO SANTA MARIA",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 3642,
                    "nome": "EMPRESA SANTA MARIA",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 3643,
                    "nome": "EMPRESA CHAPECO",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 3644,
                    "nome": "EMPRESA PINHAIS",
                    "municipio": "PINHAIS"
                },
                {
                    "id": 3645,
                    "nome": "EMPRESA ARACATUBA",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 3646,
                    "nome": "AGRO FRANCA",
                    "municipio": "FRANCA"
                },
                {
                    "id": 3647,
                    "nome": "AGRO ARACATUBA",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 3648,
                    "nome": "CANUDOS-PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 3649,
                    "nome": "AGRO PRES.PRUDENTE",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 3650,
                    "nome": "AGRO RIBEIRAO PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 3651,
                    "nome": "EMPRESA MARILIA",
                    "municipio": "MARILIA"
                },
                {
                    "id": 3652,
                    "nome": "EMPRESA P.PRUDENTE",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 3653,
                    "nome": "LEME",
                    "municipio": "LEME"
                },
                {
                    "id": 3654,
                    "nome": "ITABIRA",
                    "municipio": "ITABIRA"
                },
                {
                    "id": 3655,
                    "nome": "CAMBE",
                    "municipio": "CAMBE"
                },
                {
                    "id": 3656,
                    "nome": "NATIVIDADE",
                    "municipio": "NATIVIDADE"
                },
                {
                    "id": 3657,
                    "nome": "PIRAJU",
                    "municipio": "PIRAJU"
                },
                {
                    "id": 3658,
                    "nome": "ESCR.EST.FAROL BARRA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 3659,
                    "nome": "ESCR.EST.IRACEMA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 3660,
                    "nome": "ESCR.ESTILO GOIANIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 3661,
                    "nome": "ESCR.ESTILO SAO LUIS",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 3662,
                    "nome": "ESCR.EST.LIBERDADE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3663,
                    "nome": "ESCR.EST.ALTEROSA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3664,
                    "nome": "ESCR.ESTILO BELEM",
                    "municipio": "BELEM"
                },
                {
                    "id": 3665,
                    "nome": "ESCR.EST.J.PESSOA 1",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 3666,
                    "nome": "ESCR.EST.CAPIBARIBE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 3667,
                    "nome": "ESCR.ESTILO TERESINA",
                    "municipio": "TERESINA"
                },
                {
                    "id": 3668,
                    "nome": "ESCR.EST.R.JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3669,
                    "nome": "ESCR.ESTILO NATAL",
                    "municipio": "NATAL"
                },
                {
                    "id": 3670,
                    "nome": "ESCR.ESTILO P.ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 3671,
                    "nome": "ESCR.ESTILO S.JOSE",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 3672,
                    "nome": "MARCELINO RAMOS",
                    "municipio": "MARCELINO RAMOS"
                },
                {
                    "id": 3673,
                    "nome": "MANDAGUACU",
                    "municipio": "MANDAGUACU"
                },
                {
                    "id": 3674,
                    "nome": "TABATINGA",
                    "municipio": "TABATINGA"
                },
                {
                    "id": 3675,
                    "nome": "TOBIAS BARRETO",
                    "municipio": "TOBIAS BARRETO"
                },
                {
                    "id": 3676,
                    "nome": "SAO JOSE DO CEDRO",
                    "municipio": "SAO JOSE DO CEDRO"
                },
                {
                    "id": 3677,
                    "nome": "SAO LOURENCO OESTE",
                    "municipio": "SAO LOURENCO D'OESTE"
                },
                {
                    "id": 3678,
                    "nome": "TORRES",
                    "municipio": "TORRES"
                },
                {
                    "id": 3679,
                    "nome": "AJURICABA",
                    "municipio": "AJURICABA"
                },
                {
                    "id": 3680,
                    "nome": "PONTA PORA",
                    "municipio": "PONTA PORA"
                },
                {
                    "id": 3681,
                    "nome": "RUBIATABA",
                    "municipio": "RUBIATABA"
                },
                {
                    "id": 3682,
                    "nome": "ANDRADAS",
                    "municipio": "ANDRADAS"
                },
                {
                    "id": 3683,
                    "nome": "BARRA DO CORDA",
                    "municipio": "BARRA DO CORDA"
                },
                {
                    "id": 3684,
                    "nome": "CAMETA",
                    "municipio": "CAMETA"
                },
                {
                    "id": 3685,
                    "nome": "CAPINOPOLIS",
                    "municipio": "CAPINOPOLIS"
                },
                {
                    "id": 3686,
                    "nome": "CASTELO-ES",
                    "municipio": "CASTELO"
                },
                {
                    "id": 3687,
                    "nome": "CIDADE GAUCHA",
                    "municipio": "CIDADE GAUCHA"
                },
                {
                    "id": 3688,
                    "nome": "DIAMANTINO",
                    "municipio": "DIAMANTINO"
                },
                {
                    "id": 3689,
                    "nome": "ELESBAO VELOSO",
                    "municipio": "ELESBAO VELOSO"
                },
                {
                    "id": 3690,
                    "nome": "ENGENHEIRO BELTRAO",
                    "municipio": "ENGENHEIRO BELTRAO"
                },
                {
                    "id": 3691,
                    "nome": "BOTUCATU",
                    "municipio": "BOTUCATU"
                },
                {
                    "id": 3692,
                    "nome": "ESPUMOSO",
                    "municipio": "ESPUMOSO"
                },
                {
                    "id": 3693,
                    "nome": "EUCLIDES DA CUNHA",
                    "municipio": "EUCLIDES DA CUNHA"
                },
                {
                    "id": 3694,
                    "nome": "EUNAPOLIS",
                    "municipio": "EUNAPOLIS"
                },
                {
                    "id": 3695,
                    "nome": "GLORIA DE DOURADOS",
                    "municipio": "GLORIA DE DOURADOS"
                },
                {
                    "id": 3696,
                    "nome": "GURUPI",
                    "municipio": "GURUPI"
                },
                {
                    "id": 3697,
                    "nome": "HORIZONTINA",
                    "municipio": "HORIZONTINA"
                },
                {
                    "id": 3698,
                    "nome": "IPORA",
                    "municipio": "IPORA"
                },
                {
                    "id": 3699,
                    "nome": "ITAIOPOLIS",
                    "municipio": "ITAIOPOLIS"
                },
                {
                    "id": 3700,
                    "nome": "ITAPIRANGA",
                    "municipio": "ITAPIRANGA"
                },
                {
                    "id": 3701,
                    "nome": "ITATIBA",
                    "municipio": "ITATIBA"
                },
                {
                    "id": 3702,
                    "nome": "SETOR PUBLICO CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 3703,
                    "nome": "PETROPOLIS",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 3704,
                    "nome": "JOAO PINHEIRO",
                    "municipio": "JOAO PINHEIRO"
                },
                {
                    "id": 3705,
                    "nome": "ESTILO JUVEVE",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 3706,
                    "nome": "AGRO CASCAVEL",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 3707,
                    "nome": "ESTILO MERCES",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 3708,
                    "nome": "ESTILO PORTAO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 3709,
                    "nome": "EMPRESA SOBRAL",
                    "municipio": "SOBRAL"
                },
                {
                    "id": 3710,
                    "nome": "LAVRAS DO SUL",
                    "municipio": "LAVRAS DO SUL"
                },
                {
                    "id": 3711,
                    "nome": "EMPRESA ALTO URUGUAI",
                    "municipio": "CONCORDIA"
                },
                {
                    "id": 3712,
                    "nome": "SANTA CRUZ DA SERRA",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 3713,
                    "nome": "MONTANHA-ES",
                    "municipio": "MONTANHA"
                },
                {
                    "id": 3714,
                    "nome": "LOTE XV",
                    "municipio": "BELFORD ROXO"
                },
                {
                    "id": 3715,
                    "nome": "NILOPOLIS",
                    "municipio": "NILOPOLIS"
                },
                {
                    "id": 3716,
                    "nome": "ESCR.EXC.CARIOCA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3717,
                    "nome": "PARAISO DO TOCANTINS",
                    "municipio": "PARAISO DO TOCANTINS"
                },
                {
                    "id": 3718,
                    "nome": "STO.ANTONIO SUDOESTE",
                    "municipio": "SANTO ANTONIO DO SUDOESTE"
                },
                {
                    "id": 3719,
                    "nome": "AV.UIRAPURU",
                    "municipio": "ARAPONGAS"
                },
                {
                    "id": 3720,
                    "nome": "MARINGA VELHO-PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 3721,
                    "nome": "EMPRESA VOTUPORANGA",
                    "municipio": "VOTUPORANGA"
                },
                {
                    "id": 3722,
                    "nome": "EMPRESA CATANDUVA",
                    "municipio": "CATANDUVA"
                },
                {
                    "id": 3723,
                    "nome": "EMPRESA BOTUCATU",
                    "municipio": "BOTUCATU"
                },
                {
                    "id": 3724,
                    "nome": "SAO GABRIEL DA PALHA",
                    "municipio": "SAO GABRIEL DA PALHA"
                },
                {
                    "id": 3725,
                    "nome": "EMPRESA NOROESTE",
                    "municipio": "IJUI"
                },
                {
                    "id": 3726,
                    "nome": "AV.DONATO QUINTINO",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 3727,
                    "nome": "EMPRESA CABO FRIO",
                    "municipio": "CABO FRIO"
                },
                {
                    "id": 3728,
                    "nome": "SAO SEBASTIAO DO CAI",
                    "municipio": "SAO SEBASTIAO DO CAI"
                },
                {
                    "id": 3729,
                    "nome": "AV.DA INTEGRACAO",
                    "municipio": "PETROLINA"
                },
                {
                    "id": 3730,
                    "nome": "EMPRESA CARUARU",
                    "municipio": "CARUARU"
                },
                {
                    "id": 3731,
                    "nome": "SOBRADINHO-RS",
                    "municipio": "SOBRADINHO"
                },
                {
                    "id": 3732,
                    "nome": "8081",
                    "municipio": ""
                },
                {
                    "id": 3733,
                    "nome": "EMPRESA INDAIATUBA",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 3734,
                    "nome": "EXCR.EXC.GOIANIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 3735,
                    "nome": "EMPRESA ARAGUAIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 3736,
                    "nome": "ESTILO BUENO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 3737,
                    "nome": "AGRO RIO VERDE",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 3738,
                    "nome": "TAIO",
                    "municipio": "TAIO"
                },
                {
                    "id": 3739,
                    "nome": "MORADA DO SOL",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 3740,
                    "nome": "NOVA IGUACU",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 3741,
                    "nome": "TOCANTINOPOLIS",
                    "municipio": "TOCANTINOPOLIS"
                },
                {
                    "id": 3742,
                    "nome": "SAO JOSE-PB",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 3743,
                    "nome": "EMPRESA SINIMBU",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 3744,
                    "nome": "ESCR.EXC.P.ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 3745,
                    "nome": "VALINHOS",
                    "municipio": "VALINHOS"
                },
                {
                    "id": 3746,
                    "nome": "AGRO PASSO FUNDO",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 3747,
                    "nome": "RUA LUIS VIANA",
                    "municipio": "ALAGOINHAS"
                },
                {
                    "id": 3748,
                    "nome": "PRESIDENTE VARGAS-BA",
                    "municipio": "TEIXEIRA DE FREITAS"
                },
                {
                    "id": 3749,
                    "nome": "VASSOURAS",
                    "municipio": "VASSOURAS"
                },
                {
                    "id": 3750,
                    "nome": "EMPRESA MACAPA",
                    "municipio": "MACAPA"
                },
                {
                    "id": 3751,
                    "nome": "JARDIM MARCO ZERO",
                    "municipio": "MACAPA"
                },
                {
                    "id": 3752,
                    "nome": "AV.RIO DE JANEIRO",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 3753,
                    "nome": "EMPRESA ALTO VALE",
                    "municipio": "RIO DO SUL"
                },
                {
                    "id": 3754,
                    "nome": "BROOKLIN PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3755,
                    "nome": "BOCA DO ACRE",
                    "municipio": "BOCA DO ACRE"
                },
                {
                    "id": 3756,
                    "nome": "8140",
                    "municipio": ""
                },
                {
                    "id": 3757,
                    "nome": "CAPITAO POCO",
                    "municipio": "CAPITAO POCO"
                },
                {
                    "id": 3758,
                    "nome": "CARINHANHA",
                    "municipio": "CARINHANHA"
                },
                {
                    "id": 3759,
                    "nome": "EMPRESA LIT.NORTE",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 3760,
                    "nome": "8168",
                    "municipio": ""
                },
                {
                    "id": 3761,
                    "nome": "IBOTIRAMA",
                    "municipio": "IBOTIRAMA"
                },
                {
                    "id": 3762,
                    "nome": "EMPRESA FOZ IGUACU",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 3763,
                    "nome": "MANACAPURU",
                    "municipio": "MANACAPURU"
                },
                {
                    "id": 3764,
                    "nome": "MANICORE",
                    "municipio": "MANICORE"
                },
                {
                    "id": 3765,
                    "nome": "EMPRESA SUMARE",
                    "municipio": "SUMARE"
                },
                {
                    "id": 3766,
                    "nome": "ARARAQUARA",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 3767,
                    "nome": "PARAGOMINAS",
                    "municipio": "PARAGOMINAS"
                },
                {
                    "id": 3768,
                    "nome": "PAULISTA",
                    "municipio": "PAULISTA"
                },
                {
                    "id": 3769,
                    "nome": "EMPRESA S.CAET. SUL",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 3770,
                    "nome": "SANTA QUITERIA",
                    "municipio": "SANTA QUITERIA"
                },
                {
                    "id": 3771,
                    "nome": "SAO MIGUEL CAMPOS",
                    "municipio": "SAO MIGUEL DOS CAMPOS"
                },
                {
                    "id": 3772,
                    "nome": "EMPRESA ZONA NORTE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 3773,
                    "nome": "ESCR.EXC.ALECRIM",
                    "municipio": "NATAL"
                },
                {
                    "id": 3774,
                    "nome": "ESCR.EXC.FLORIPA",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 3775,
                    "nome": "EMPRESA CONTINENTE",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 3776,
                    "nome": "ESCR.EXC.VILA RICA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3777,
                    "nome": "ESCR.EXC.MINEIRAO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3778,
                    "nome": "ESCR.EXC.SOROCABA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 3779,
                    "nome": "IBIUNA",
                    "municipio": "IBIUNA"
                },
                {
                    "id": 3780,
                    "nome": "EMPRESA SOROCABANA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 3781,
                    "nome": "ESCR.EXC.STO AMARO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3782,
                    "nome": "8257",
                    "municipio": ""
                },
                {
                    "id": 3783,
                    "nome": "EMPRESA ITAIM BIBI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3784,
                    "nome": "8259",
                    "municipio": ""
                },
                {
                    "id": 3785,
                    "nome": "TAGUATINGA CENTRO",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 3786,
                    "nome": "ESCR.EXC.PENHA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3787,
                    "nome": "ESCR.EXC.VILA MARIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3788,
                    "nome": "ESCR.EXC.SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3789,
                    "nome": "8264",
                    "municipio": ""
                },
                {
                    "id": 3790,
                    "nome": "EMPRESA TUBARAO",
                    "municipio": "TUBARAO"
                },
                {
                    "id": 3791,
                    "nome": "JOAO COLIN",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 3792,
                    "nome": "EMPRESA MEIO OESTE",
                    "municipio": "JOACABA"
                },
                {
                    "id": 3793,
                    "nome": "ARACRUZ",
                    "municipio": "ARACRUZ"
                },
                {
                    "id": 3794,
                    "nome": "CACHOEIRO ITAPEMIRIM",
                    "municipio": "CACHOEIRO DE ITAPEMIRIM"
                },
                {
                    "id": 3795,
                    "nome": "ASSIS CHATEAUBRIAND",
                    "municipio": "ASSIS CHATEAUBRIAND"
                },
                {
                    "id": 3796,
                    "nome": "EMPRESA JARAGUA SUL",
                    "municipio": "JARAGUA DO SUL"
                },
                {
                    "id": 3797,
                    "nome": "ATALAIA",
                    "municipio": "ATALAIA"
                },
                {
                    "id": 3798,
                    "nome": "EMPRESA ITAJAI",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 3799,
                    "nome": "EMPRESA BRUSQUE",
                    "municipio": "BRUSQUE"
                },
                {
                    "id": 3800,
                    "nome": "EMPRESA B.CAMBORIU",
                    "municipio": "BALNEARIO CAMBORIU"
                },
                {
                    "id": 3801,
                    "nome": "EMPRESA S.LEOPOLDO",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 3802,
                    "nome": "BARRA DO BUGRES",
                    "municipio": "BARRA DO BUGRES"
                },
                {
                    "id": 3803,
                    "nome": "EMPRESA STA CRUZ SUL",
                    "municipio": "SANTA CRUZ DO SUL"
                },
                {
                    "id": 3804,
                    "nome": "EMPRESA LAJEADO",
                    "municipio": "LAJEADO"
                },
                {
                    "id": 3805,
                    "nome": "ESTILO BR.ITAPURA",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 3806,
                    "nome": "ESTILO AV.PORTUGAL",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 3807,
                    "nome": "BARRA SAO FRANCISCO",
                    "municipio": "BARRA DE SAO FRANCISCO"
                },
                {
                    "id": 3808,
                    "nome": "BONITO-PE",
                    "municipio": "BONITO"
                },
                {
                    "id": 3809,
                    "nome": "CACU",
                    "municipio": "CACU"
                },
                {
                    "id": 3810,
                    "nome": "CAMACAN",
                    "municipio": "CAMACAN"
                },
                {
                    "id": 3811,
                    "nome": "CAMAPUA",
                    "municipio": "CAMAPUA"
                },
                {
                    "id": 3812,
                    "nome": "NAO-ME-TOQUE",
                    "municipio": "NAO-ME-TOQUE"
                },
                {
                    "id": 3813,
                    "nome": "CAPAO BONITO",
                    "municipio": "CAPAO BONITO"
                },
                {
                    "id": 3814,
                    "nome": "CARDOSO",
                    "municipio": "CARDOSO"
                },
                {
                    "id": 3815,
                    "nome": "ESTILO CENTRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3816,
                    "nome": "ESTILO ACLIMACAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3817,
                    "nome": "CHOPINZINHO",
                    "municipio": "CHOPINZINHO"
                },
                {
                    "id": 3818,
                    "nome": "ESTILO OLHOS D'AGUA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 3819,
                    "nome": "CLEVELANDIA",
                    "municipio": "CLEVELANDIA"
                },
                {
                    "id": 3820,
                    "nome": "ESTILO TAG.SHOPPING",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 3821,
                    "nome": "ECOPORANGA",
                    "municipio": "ECOPORANGA"
                },
                {
                    "id": 3822,
                    "nome": "ESTILO AV.ANGELICA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3823,
                    "nome": "FATIMA DO SUL",
                    "municipio": "FATIMA DO SUL"
                },
                {
                    "id": 3824,
                    "nome": "AVENIDA INGLATERRA",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 3825,
                    "nome": "EMPRESA CANOAS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 3826,
                    "nome": "EMPRESA B.GONCALVES",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 3827,
                    "nome": "GANDU",
                    "municipio": "GANDU"
                },
                {
                    "id": 3828,
                    "nome": "ESTILO BERRINI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3829,
                    "nome": "ESTILO BUTANTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3830,
                    "nome": "GOIOERE",
                    "municipio": "GOIOERE"
                },
                {
                    "id": 3831,
                    "nome": "ESTILO PINHEIROS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3832,
                    "nome": "ITABIRITO",
                    "municipio": "ITABIRITO"
                },
                {
                    "id": 3833,
                    "nome": "ESTILO ITAIM BIBI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3834,
                    "nome": "SOBRAL",
                    "municipio": "SOBRAL"
                },
                {
                    "id": 3835,
                    "nome": "ITABORAI",
                    "municipio": "ITABORAI"
                },
                {
                    "id": 3836,
                    "nome": "EMPRESA MACAE",
                    "municipio": "MACAE"
                },
                {
                    "id": 3837,
                    "nome": "ESTILO JD PAULISTANO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3838,
                    "nome": "ITANHEM",
                    "municipio": "ITANHEM"
                },
                {
                    "id": 3839,
                    "nome": "ITAPAJE",
                    "municipio": "ITAPAGE"
                },
                {
                    "id": 3840,
                    "nome": "ESTILO MIN.FAZENDA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3841,
                    "nome": "ESTILO INV. PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3842,
                    "nome": "ESTILO RUA E.UNIDOS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3843,
                    "nome": "ESTILO FREGUESIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3844,
                    "nome": "ESTILO PCA.S.ROMERO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3845,
                    "nome": "ITURAMA",
                    "municipio": "ITURAMA"
                },
                {
                    "id": 3846,
                    "nome": "ESTILO PENHA FRANCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3847,
                    "nome": "ESTILO CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3848,
                    "nome": "ESTILO ITAQUERA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3849,
                    "nome": "ESTILO RUA J.TAVORA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 3850,
                    "nome": "JACIARA",
                    "municipio": "JACIARA"
                },
                {
                    "id": 3851,
                    "nome": "ESTILO INV.RIB.PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 3852,
                    "nome": "AGRO PONTA GROSSA",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 3853,
                    "nome": "RUA JOSE CLETO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3854,
                    "nome": "JAGUARI",
                    "municipio": "JAGUARI"
                },
                {
                    "id": 3855,
                    "nome": "EMPRESA TOLEDO",
                    "municipio": "TOLEDO"
                },
                {
                    "id": 3856,
                    "nome": "JANDAIA DO SUL",
                    "municipio": "JANDAIA DO SUL"
                },
                {
                    "id": 3857,
                    "nome": "EMPRESA PARANAENSE",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 3858,
                    "nome": "EMPRESA PATO BRANCO",
                    "municipio": "PATO BRANCO"
                },
                {
                    "id": 3859,
                    "nome": "ESCR.EXC.CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 3860,
                    "nome": "LORENA",
                    "municipio": "LORENA"
                },
                {
                    "id": 3861,
                    "nome": "EMPRESA CAMPO MOURAO",
                    "municipio": "CAMPO MOURAO"
                },
                {
                    "id": 3862,
                    "nome": "EMPRESA APUCARANA",
                    "municipio": "APUCARANA"
                },
                {
                    "id": 3863,
                    "nome": "EMPRESA VS FRANCISCO",
                    "municipio": "PETROLINA"
                },
                {
                    "id": 3864,
                    "nome": "ESCR.EXC.CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 3865,
                    "nome": "EMPRESA J.GUARARAPES",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 3866,
                    "nome": "MARAVILHA",
                    "municipio": "MARAVILHA"
                },
                {
                    "id": 3867,
                    "nome": "MAL.CANDIDO RONDON",
                    "municipio": "MARECHAL CANDIDO RONDON"
                },
                {
                    "id": 3868,
                    "nome": "SETOR PUBLICO GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 3869,
                    "nome": "MIGUELOPOLIS",
                    "municipio": "MIGUELOPOLIS"
                },
                {
                    "id": 3870,
                    "nome": "ESTILO PONTA VERDE",
                    "municipio": "MACEIO"
                },
                {
                    "id": 3871,
                    "nome": "ESTILO UFBA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 3872,
                    "nome": "ESTILO BARRA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 3873,
                    "nome": "ESTILO SANTOS DUMONT",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 3874,
                    "nome": "EMPRESA METROPOLE",
                    "municipio": "CAUCAIA"
                },
                {
                    "id": 3875,
                    "nome": "ESTILO TCU DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 3876,
                    "nome": "MIRACEMA",
                    "municipio": "MIRACEMA"
                },
                {
                    "id": 3877,
                    "nome": "ESCR.EXC.ESTACAO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 3878,
                    "nome": "ESTILO TR.SUPERIORES",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 3879,
                    "nome": "ESTILO PCA.TRIBUNAIS",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 3880,
                    "nome": "ESTILO MIN.FAZENDA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 3881,
                    "nome": "ESTILO AGRO GOIANIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 3882,
                    "nome": "ESTILO RENASCENCA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 3883,
                    "nome": "ESTILO PAMPULHA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3884,
                    "nome": "MIRACEMA TOCANTINS",
                    "municipio": "MIRACEMA DO TOCANTINS"
                },
                {
                    "id": 3885,
                    "nome": "ESTILO CONTAGEM",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 3886,
                    "nome": "EMPRESA MARABA",
                    "municipio": "MARABA"
                },
                {
                    "id": 3887,
                    "nome": "ESTILO VALE DO ACO",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 3888,
                    "nome": "ESTILO E.DA CUNHA",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 3889,
                    "nome": "ESTILO MATO GROSSO",
                    "municipio": "CUIABA"
                },
                {
                    "id": 3890,
                    "nome": "MORADA NOVA",
                    "municipio": "MORADA NOVA"
                },
                {
                    "id": 3891,
                    "nome": "ESTILO AV.E.PESSOA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 3892,
                    "nome": "ESTILO BESSA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 3893,
                    "nome": "ESTILO PARNAMIRIM",
                    "municipio": "RECIFE"
                },
                {
                    "id": 3894,
                    "nome": "ESTILO RECIFE ANTIGO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 3895,
                    "nome": "86347",
                    "municipio": ""
                },
                {
                    "id": 3896,
                    "nome": "ESTILO MOSSORO",
                    "municipio": "MOSSORO"
                },
                {
                    "id": 3897,
                    "nome": "ESTILO PONTA NEGRA",
                    "municipio": "NATAL"
                },
                {
                    "id": 3898,
                    "nome": "ESTILO VALE SINOS",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 3899,
                    "nome": "ESTILO PASSO FUNDO",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 3900,
                    "nome": "NONOAI",
                    "municipio": "NONOAI"
                },
                {
                    "id": 3901,
                    "nome": "ESTILO SANTA MONICA",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 3902,
                    "nome": "ESTILO CASTEJON",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 3903,
                    "nome": "ESTILO SOROCABANA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 3904,
                    "nome": "PIRANHAS",
                    "municipio": "PIRANHAS"
                },
                {
                    "id": 3905,
                    "nome": "PITANGA",
                    "municipio": "PITANGA"
                },
                {
                    "id": 3906,
                    "nome": "PRINCESA ISABEL",
                    "municipio": "PRINCESA ISABEL"
                },
                {
                    "id": 3907,
                    "nome": "EMPRESA UBERABA",
                    "municipio": "UBERABA"
                },
                {
                    "id": 3908,
                    "nome": "EMPRESA POUSO ALEGRE",
                    "municipio": "POUSO ALEGRE"
                },
                {
                    "id": 3909,
                    "nome": "EMPRESA POCOS CALDAS",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 3910,
                    "nome": "RESTINGA SECA",
                    "municipio": "RESTINGA SECA"
                },
                {
                    "id": 3911,
                    "nome": "EMPRESA PATOS MINAS",
                    "municipio": "PATOS DE MINAS"
                },
                {
                    "id": 3912,
                    "nome": "EMPRESA G.VALADARES",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 3913,
                    "nome": "EMPRESA RIO VERDE",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 3914,
                    "nome": "EMPRESA MATO GROSSO",
                    "municipio": "CUIABA"
                },
                {
                    "id": 3915,
                    "nome": "LUVERDENSE",
                    "municipio": "LUCAS DO RIO VERDE"
                },
                {
                    "id": 3916,
                    "nome": "RIBEIRAO PIRES",
                    "municipio": "RIBEIRAO PIRES"
                },
                {
                    "id": 3917,
                    "nome": "EMPRESA ITUMBIARA",
                    "municipio": "ITUMBIARA"
                },
                {
                    "id": 3918,
                    "nome": "ROD.AUG.MONTENEGRO",
                    "municipio": "BELEM"
                },
                {
                    "id": 3919,
                    "nome": "CATETE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3920,
                    "nome": "SALGUEIRO",
                    "municipio": "SALGUEIRO"
                },
                {
                    "id": 3921,
                    "nome": "8700",
                    "municipio": ""
                },
                {
                    "id": 3922,
                    "nome": "EMPRESA SERRA",
                    "municipio": "SERRA"
                },
                {
                    "id": 3923,
                    "nome": "PRIVATE NORDESTE",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 3924,
                    "nome": "PRIVATE CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 3925,
                    "nome": "PRIVATE BRASILIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 3926,
                    "nome": "SANTA BARBARA DO SUL",
                    "municipio": "SANTA BARBARA DO SUL"
                },
                {
                    "id": 3927,
                    "nome": "STA.RITA DO SAPUCAI",
                    "municipio": "SANTA RITA DO SAPUCAI"
                },
                {
                    "id": 3928,
                    "nome": "ESCR.ESTILO PARANA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 3929,
                    "nome": "SAO JOAQUIM DA BARRA",
                    "municipio": "SAO JOAQUIM DA BARRA"
                },
                {
                    "id": 3930,
                    "nome": "SAO PEDRO DO SUL",
                    "municipio": "SAO PEDRO DO SUL"
                },
                {
                    "id": 3931,
                    "nome": "SEARA",
                    "municipio": "SEARA"
                },
                {
                    "id": 3932,
                    "nome": "EMPRESA C.ITAPEMIRIM",
                    "municipio": "CACHOEIRO DE ITAPEMIRIM"
                },
                {
                    "id": 3933,
                    "nome": "EMPRESA J. DO NORTE",
                    "municipio": "JUAZEIRO DO NORTE"
                },
                {
                    "id": 3934,
                    "nome": "TAPEJARA",
                    "municipio": "TAPEJARA"
                },
                {
                    "id": 3935,
                    "nome": "TENENTE PORTELA",
                    "municipio": "TENENTE PORTELA"
                },
                {
                    "id": 3936,
                    "nome": "TOME-ACU",
                    "municipio": "TOME-ACU"
                },
                {
                    "id": 3937,
                    "nome": "UMARIZAL",
                    "municipio": "UMARIZAL"
                },
                {
                    "id": 3938,
                    "nome": "PONTE NOVA",
                    "municipio": "PONTE NOVA"
                },
                {
                    "id": 3939,
                    "nome": "URUSSANGA",
                    "municipio": "URUSSANGA"
                },
                {
                    "id": 3940,
                    "nome": "VISCONDE RIO BRANCO",
                    "municipio": "VISCONDE DO RIO BRANCO"
                },
                {
                    "id": 3941,
                    "nome": "CAMPO NOVO",
                    "municipio": "CAMPO NOVO"
                },
                {
                    "id": 3942,
                    "nome": "GRAVATAI",
                    "municipio": "GRAVATAI"
                },
                {
                    "id": 3943,
                    "nome": "SAO MARCOS",
                    "municipio": "SAO MARCOS"
                },
                {
                    "id": 3944,
                    "nome": "AGUA BRANCA-PI",
                    "municipio": "AGUA BRANCA"
                },
                {
                    "id": 3945,
                    "nome": "AGUAS FORMOSAS",
                    "municipio": "AGUAS FORMOSAS"
                },
                {
                    "id": 3946,
                    "nome": "CAXIAS DO SUL",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 3947,
                    "nome": "ALVARES MACHADO",
                    "municipio": "ALVARES MACHADO"
                },
                {
                    "id": 3948,
                    "nome": "ANDIRA",
                    "municipio": "ANDIRA"
                },
                {
                    "id": 3949,
                    "nome": "APODI",
                    "municipio": "APODI"
                },
                {
                    "id": 3950,
                    "nome": "ARARUAMA",
                    "municipio": "ARARUAMA"
                },
                {
                    "id": 3951,
                    "nome": "ARCOS",
                    "municipio": "ARCOS"
                },
                {
                    "id": 3952,
                    "nome": "BALSAS",
                    "municipio": "BALSAS"
                },
                {
                    "id": 3953,
                    "nome": "BARRA BONITA-SP",
                    "municipio": "BARRA BONITA"
                },
                {
                    "id": 3954,
                    "nome": "BATAGUASSU",
                    "municipio": "BATAGUASSU"
                },
                {
                    "id": 3955,
                    "nome": "PRIVATE RIB.PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 3956,
                    "nome": "PRIVATE CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 3957,
                    "nome": "PRIVATE GOIANIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 3958,
                    "nome": "BOA VIAGEM",
                    "municipio": "BOA VIAGEM"
                },
                {
                    "id": 3959,
                    "nome": "BODOCO",
                    "municipio": "BODOCO"
                },
                {
                    "id": 3960,
                    "nome": "8990",
                    "municipio": ""
                },
                {
                    "id": 3961,
                    "nome": "PRACA TIRADENTES-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 3962,
                    "nome": "ARAGUARI",
                    "municipio": "ARAGUARI"
                },
                {
                    "id": 3963,
                    "nome": "BOM JESUS DE GOIAS",
                    "municipio": "BOM JESUS DE GOIAS"
                },
                {
                    "id": 3964,
                    "nome": "BOM RETIRO",
                    "municipio": "BOM RETIRO"
                },
                {
                    "id": 3965,
                    "nome": "BRASILIA DE MINAS",
                    "municipio": "BRASILIA DE MINAS"
                },
                {
                    "id": 3966,
                    "nome": "CAARAPO",
                    "municipio": "CAARAPO"
                },
                {
                    "id": 3967,
                    "nome": "AV.FERNANDES CUNHA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 3968,
                    "nome": "CAMPOS DO JORDAO",
                    "municipio": "CAMPOS DO JORDAO"
                },
                {
                    "id": 3969,
                    "nome": "CANTO DO BURITI",
                    "municipio": "CANTO DO BURITI"
                },
                {
                    "id": 3970,
                    "nome": "CAPANEMA-PR",
                    "municipio": "CAPANEMA"
                },
                {
                    "id": 3971,
                    "nome": "AGRO CAMPO MOURAO",
                    "municipio": "CAMPO MOURAO"
                },
                {
                    "id": 3972,
                    "nome": "AGRO UBERLANDIA",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 3973,
                    "nome": "CASSILANDIA",
                    "municipio": "CASSILANDIA"
                },
                {
                    "id": 3974,
                    "nome": "MADUREIRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 3975,
                    "nome": "CATUIPE",
                    "municipio": "CATUIPE"
                },
                {
                    "id": 3976,
                    "nome": "ESCR.EXC.RIO BRANCO",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 3977,
                    "nome": "ESCR.EXC.MACEIO",
                    "municipio": "MACEIO"
                },
                {
                    "id": 3978,
                    "nome": "ESCR.EXC.MANAUS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 3979,
                    "nome": "ESCR.EXC.MACAPA",
                    "municipio": "MACAPA"
                },
                {
                    "id": 3980,
                    "nome": "ESCR.EXC.F.SANTANA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 3981,
                    "nome": "ESCR.EXC.E.LACERDA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 3982,
                    "nome": "ESCR.EXC.F.DE ITAPUA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 3983,
                    "nome": "ESCR.EXC.M.MODELO",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 3984,
                    "nome": "COLINAS DO TOCANTINS",
                    "municipio": "COLINAS DO TOCANTINS"
                },
                {
                    "id": 3985,
                    "nome": "ESCR.EXC.TERRA LUZ",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 3986,
                    "nome": "ESCR.EXC.DRAGAO MAR",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 3987,
                    "nome": "ESCR.EXC.ESPLANADA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 3988,
                    "nome": "ESCR.EXC.MONUMENTAL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 3989,
                    "nome": "ESCR.EXC.ANAPOLIS",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 3990,
                    "nome": "ESCR.EXC.GOIAS",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 3991,
                    "nome": "ESCR.EXC.SAO LUIS 2",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 3992,
                    "nome": "ESCR.EXC.JK",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3993,
                    "nome": "COLORADO",
                    "municipio": "COLORADO"
                },
                {
                    "id": 3994,
                    "nome": "ESCR.EXC.SAVASSI",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3995,
                    "nome": "ESCR.EXC.S.DUMONT MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 3996,
                    "nome": "EMPRESA ITU",
                    "municipio": "ITU"
                },
                {
                    "id": 3997,
                    "nome": "ESCR.EXC.DIVINOPOLIS",
                    "municipio": "DIVINOPOLIS"
                },
                {
                    "id": 3998,
                    "nome": "ESCR.EXC.IPATINGA",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 3999,
                    "nome": "ESCR.EXC.M.CLAROS",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 4000,
                    "nome": "ESCR.EXC.PANTANAL",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 4001,
                    "nome": "ESCR.EXC.DOURADOS",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 4002,
                    "nome": "ESCR.EXC.CID.VERDE",
                    "municipio": "CUIABA"
                },
                {
                    "id": 4003,
                    "nome": "CONCEICAO",
                    "municipio": "CONCEICAO"
                },
                {
                    "id": 4004,
                    "nome": "ESCR.EXC.C.GRANDE-PB",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 4005,
                    "nome": "EMPRESA UBA",
                    "municipio": "UBA"
                },
                {
                    "id": 4006,
                    "nome": "ESCR.EXC.AV.R.BRANCO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 4007,
                    "nome": "ESCR.EXC.CAIS APOLO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 4008,
                    "nome": "ESCR.EXC.TERESINA",
                    "municipio": "TERESINA"
                },
                {
                    "id": 4009,
                    "nome": "ESCR.EXC.CAJUINA",
                    "municipio": "TERESINA"
                },
                {
                    "id": 4010,
                    "nome": "ESCR.EXC.PARANA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 4011,
                    "nome": "ESCR.EXC.LONDRINA",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 4012,
                    "nome": "CONCEICAO ARAGUAIA",
                    "municipio": "CONCEICAO DO ARAGUAIA"
                },
                {
                    "id": 4013,
                    "nome": "ESCR.EXC.MARINGA",
                    "municipio": "MARINGA"
                },
                {
                    "id": 4014,
                    "nome": "ESCR.EXC.PTA.GROSSA",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 4015,
                    "nome": "ESCR.EX.N.FLUMINENSE",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 4016,
                    "nome": "EXCLUSIVO D CAXIAS",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 4017,
                    "nome": "EXCLUSIVO NITEROI 2",
                    "municipio": "NITEROI"
                },
                {
                    "id": 4018,
                    "nome": "CORDEIRO",
                    "municipio": "CORDEIRO"
                },
                {
                    "id": 4019,
                    "nome": "ESCR.EXC.V.REDONDA",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 4020,
                    "nome": "ESCR.EXC.MOSSORO",
                    "municipio": "MOSSORO"
                },
                {
                    "id": 4021,
                    "nome": "ESCR.EXC.RIBEIRA",
                    "municipio": "NATAL"
                },
                {
                    "id": 4022,
                    "nome": "ESCR.EXC.PORTO VELHO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 4023,
                    "nome": "ESCR.EXC.BOA VISTA",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 4024,
                    "nome": "ESCR.EXC.N.HAMBURGO",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 4025,
                    "nome": "ESCR.EXC.PAMPA SUL",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 4026,
                    "nome": "ESCR.EXC.P.ALEGRE 2",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 4027,
                    "nome": "COTIA",
                    "municipio": "COTIA"
                },
                {
                    "id": 4028,
                    "nome": "ESCR.EXC.P.ALEGRE 3",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 4029,
                    "nome": "AGRO IJUI",
                    "municipio": "IJUI"
                },
                {
                    "id": 4030,
                    "nome": "ESCR.EXC.SANTA MARIA",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 4031,
                    "nome": "ESCR.EXC.BLUMENAU",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 4032,
                    "nome": "ESCR.EXC.CHAPECO",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 4033,
                    "nome": "ESCR.EXC.CRICIUMA",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 4034,
                    "nome": "ESCR.EXC.SAO JOSE",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 4035,
                    "nome": "ESCR.EXC.ARACAJU",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 4036,
                    "nome": "CUSTODIA",
                    "municipio": "CUSTODIA"
                },
                {
                    "id": 4037,
                    "nome": "ESCR.EXC.AMERICANA",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 4038,
                    "nome": "ESCR.EXC.ARACATUBA",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 4039,
                    "nome": "ESCR.EXC.ARARAQUARA",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 4040,
                    "nome": "ESCR.EXC.BAURU",
                    "municipio": "BAURU"
                },
                {
                    "id": 4041,
                    "nome": "ESCR.EXC.DR.QUIRINO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 4042,
                    "nome": "ESCR.EXC.FRANCA",
                    "municipio": "FRANCA"
                },
                {
                    "id": 4043,
                    "nome": "DESCALVADO",
                    "municipio": "DESCALVADO"
                },
                {
                    "id": 4044,
                    "nome": "ESCR.EXC.JUNDIAI",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 4045,
                    "nome": "ESCR.EXC.LIMEIRA",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 4046,
                    "nome": "ESCR.EXC.MARILIA",
                    "municipio": "MARILIA"
                },
                {
                    "id": 4047,
                    "nome": "ESCR.EXC.ALTO TIETE",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 4048,
                    "nome": "ESCR.EXC.OSASCO",
                    "municipio": "OSASCO"
                },
                {
                    "id": 4049,
                    "nome": "ESCR.EXC.BARUERI",
                    "municipio": "BARUERI"
                },
                {
                    "id": 4050,
                    "nome": "ESCR.EXC.PIRACICABA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 4051,
                    "nome": "ESCR.EXC.P.PRUDENTE",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 4052,
                    "nome": "ESCR.EXC.S.B.CAMPO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 4053,
                    "nome": "DOIS VIZINHOS",
                    "municipio": "DOIS VIZINHOS"
                },
                {
                    "id": 4054,
                    "nome": "ESCR.EXC.RUDGE RAMOS",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 4055,
                    "nome": "ESCR.EXC.BAIXADA",
                    "municipio": "SANTOS"
                },
                {
                    "id": 4056,
                    "nome": "ESCR.EXC.SANTOS",
                    "municipio": "SANTOS"
                },
                {
                    "id": 4057,
                    "nome": "ESCR.EXC.SAO CARLOS",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 4058,
                    "nome": "ESCR.EXC.VALE",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 4059,
                    "nome": "ESCR.EXC.GOVERNO SP1",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4060,
                    "nome": "ESCR.EXC.GOVERNO SP2",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4061,
                    "nome": "ESCR.EXC.PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4062,
                    "nome": "EMPRESA PASSO FUNDO",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 4063,
                    "nome": "FLORIDA PAULISTA",
                    "municipio": "FLORIDA PAULISTA"
                },
                {
                    "id": 4064,
                    "nome": "ESCR.EXC.CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4065,
                    "nome": "ESCR.EXC.CTO EMPRES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4066,
                    "nome": "ESCR.EXC.PAULISTANO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4067,
                    "nome": "ESCR.EXC.PREF.SP1",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4068,
                    "nome": "ESCR.EXC.PREF.SP2",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4069,
                    "nome": "ESCR.EXC.PALMAS",
                    "municipio": "PALMAS"
                },
                {
                    "id": 4070,
                    "nome": "GASPAR",
                    "municipio": "GASPAR"
                },
                {
                    "id": 4071,
                    "nome": "GRAVATA",
                    "municipio": "GRAVATA"
                },
                {
                    "id": 4072,
                    "nome": "GUANAMBI",
                    "municipio": "GUANAMBI"
                },
                {
                    "id": 4073,
                    "nome": "GUARAPARI",
                    "municipio": "GUARAPARI"
                },
                {
                    "id": 4074,
                    "nome": "GUARUJA",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 4075,
                    "nome": "HUMAITA",
                    "municipio": "HUMAITA"
                },
                {
                    "id": 4076,
                    "nome": "IBIA",
                    "municipio": "IBIA"
                },
                {
                    "id": 4077,
                    "nome": "INDAIAL",
                    "municipio": "INDAIAL"
                },
                {
                    "id": 4078,
                    "nome": "INDAIATUBA",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 4079,
                    "nome": "BANDEIRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 4080,
                    "nome": "IPIRA",
                    "municipio": "IPIRA"
                },
                {
                    "id": 4081,
                    "nome": "PRIVATE SP PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4082,
                    "nome": "PRIVATE SP CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4083,
                    "nome": "PRIVATE SP OESTE",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 4084,
                    "nome": "PRIVATE RJ CAPITAL",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 4085,
                    "nome": "PRIVATE MINAS GERAIS",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 4086,
                    "nome": "PRIVATE SORRISO",
                    "municipio": "SORRISO"
                },
                {
                    "id": 4087,
                    "nome": "PRIVATE RONDONOPOLIS",
                    "municipio": "RONDONOPOLIS"
                },
                {
                    "id": 4088,
                    "nome": "PRIVATE MATO GROSSO DO SUL",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 4089,
                    "nome": "ESCRIT�RIO PRIVATE NORTE NORDESTE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 4090,
                    "nome": "PRIVATE SANTA CATARINA",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 4091,
                    "nome": "PRIVATE PARAN�",
                    "municipio": "MARINGA"
                },
                {
                    "id": 4092,
                    "nome": "ESCRIT�RIO WEALTH MANAGEMENT",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4093,
                    "nome": "ITANHAEM",
                    "municipio": "ITANHAEM"
                },
                {
                    "id": 4094,
                    "nome": "PRIVATE FLUMINENSE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 4095,
                    "nome": "PRIVATE SP LESTE",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 4096,
                    "nome": "PRIVATE GOIAS",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 4097,
                    "nome": "PRIVATE CUIABA",
                    "municipio": "CUIABA"
                },
                {
                    "id": 4098,
                    "nome": "IUNA",
                    "municipio": "IUNA"
                },
                {
                    "id": 4099,
                    "nome": "JABOATAO GUARARAPES",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 4100,
                    "nome": "9340",
                    "municipio": ""
                },
                {
                    "id": 4101,
                    "nome": "9342",
                    "municipio": ""
                },
                {
                    "id": 4102,
                    "nome": "Ag�ncia 93422",
                    "municipio": ""
                },
                {
                    "id": 4103,
                    "nome": "JANAUBA",
                    "municipio": "JANAUBA"
                },
                {
                    "id": 4104,
                    "nome": "JEREMOABO",
                    "municipio": "JEREMOABO"
                },
                {
                    "id": 4105,
                    "nome": "JOSE BONIFACIO",
                    "municipio": "JOSE BONIFACIO"
                },
                {
                    "id": 4106,
                    "nome": "JUNQUEIROPOLIS",
                    "municipio": "JUNQUEIROPOLIS"
                },
                {
                    "id": 4107,
                    "nome": "LAJINHA",
                    "municipio": "LAJINHA"
                },
                {
                    "id": 4108,
                    "nome": "CRATO",
                    "municipio": "CRATO"
                },
                {
                    "id": 4109,
                    "nome": "LAVRAS DA MANGABEIRA",
                    "municipio": "LAVRAS DA MANGABEIRA"
                },
                {
                    "id": 4110,
                    "nome": "LUZIANIA",
                    "municipio": "LUZIANIA"
                },
                {
                    "id": 4111,
                    "nome": "MAGE",
                    "municipio": "MAGE"
                },
                {
                    "id": 4112,
                    "nome": "MAIRINQUE",
                    "municipio": "MAIRINQUE"
                },
                {
                    "id": 4113,
                    "nome": "MAMANGUAPE",
                    "municipio": "MAMANGUAPE"
                },
                {
                    "id": 4114,
                    "nome": "MANGA",
                    "municipio": "MANGA"
                },
                {
                    "id": 4115,
                    "nome": "MARACAS",
                    "municipio": "MARACAS"
                },
                {
                    "id": 4116,
                    "nome": "MAUES",
                    "municipio": "MAUES"
                },
                {
                    "id": 4117,
                    "nome": "MONDAI",
                    "municipio": "MONDAI"
                },
                {
                    "id": 4118,
                    "nome": "MONTE ALEGRE",
                    "municipio": "MONTE ALEGRE"
                },
                {
                    "id": 4119,
                    "nome": "EMPRESA BLUMENAU",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 4120,
                    "nome": "MONTE ALTO",
                    "municipio": "MONTE ALTO"
                },
                {
                    "id": 4121,
                    "nome": "JI-PARANA",
                    "municipio": "JI-PARANA"
                },
                {
                    "id": 4122,
                    "nome": "MONTE SANTO DE MINAS",
                    "municipio": "MONTE SANTO DE MINAS"
                },
                {
                    "id": 4123,
                    "nome": "MUTUM",
                    "municipio": "MUTUM"
                },
                {
                    "id": 4124,
                    "nome": "NAVIRAI",
                    "municipio": "NAVIRAI"
                },
                {
                    "id": 4125,
                    "nome": "ORLEANS",
                    "municipio": "ORLEANS"
                },
                {
                    "id": 4126,
                    "nome": "PALMEIRA",
                    "municipio": "PALMEIRA"
                },
                {
                    "id": 4127,
                    "nome": "PALMITAL",
                    "municipio": "PALMITAL"
                },
                {
                    "id": 4128,
                    "nome": "PALOTINA",
                    "municipio": "PALOTINA"
                },
                {
                    "id": 4129,
                    "nome": "FLORIANO",
                    "municipio": "FLORIANO"
                },
                {
                    "id": 4130,
                    "nome": "PEDRO LEOPOLDO",
                    "municipio": "PEDRO LEOPOLDO"
                },
                {
                    "id": 4131,
                    "nome": "PENTECOSTE",
                    "municipio": "PENTECOSTE"
                },
                {
                    "id": 4132,
                    "nome": "PETROLINA",
                    "municipio": "PETROLINA"
                },
                {
                    "id": 4133,
                    "nome": "Ag�ncia 96366",
                    "municipio": ""
                },
                {
                    "id": 4134,
                    "nome": "PIEDADE",
                    "municipio": "PIEDADE"
                },
                {
                    "id": 4135,
                    "nome": "PIRATINI",
                    "municipio": "PIRATINI"
                },
                {
                    "id": 4136,
                    "nome": "PITANGUI",
                    "municipio": "PITANGUI"
                },
                {
                    "id": 4137,
                    "nome": "PIUMHI",
                    "municipio": "PIUMHI"
                },
                {
                    "id": 4138,
                    "nome": "PRESIDENTE PRUDENTE",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 4139,
                    "nome": "PORTO FELIZ",
                    "municipio": "PORTO FELIZ"
                },
                {
                    "id": 4140,
                    "nome": "PRESIDENTE EPITACIO",
                    "municipio": "PRESIDENTE EPITACIO"
                },
                {
                    "id": 4141,
                    "nome": "PRUDENTOPOLIS",
                    "municipio": "PRUDENTOPOLIS"
                },
                {
                    "id": 4142,
                    "nome": "RIBEIRA DO POMBAL",
                    "municipio": "RIBEIRA DO POMBAL"
                },
                {
                    "id": 4143,
                    "nome": "RIO DAS PEDRAS",
                    "municipio": "RIO DAS PEDRAS"
                },
                {
                    "id": 4144,
                    "nome": "RONDON",
                    "municipio": "RONDON"
                },
                {
                    "id": 4145,
                    "nome": "SALINAS",
                    "municipio": "SALINAS"
                },
                {
                    "id": 4146,
                    "nome": "SANTA ISABEL DO IVAI",
                    "municipio": "SANTA ISABEL DO IVAI"
                },
                {
                    "id": 4147,
                    "nome": "SAO DOMINGOS-GO",
                    "municipio": "SAO DOMINGOS"
                },
                {
                    "id": 4148,
                    "nome": "EMPRESA VILA VELHA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 4149,
                    "nome": "EMPRESA TAUBATE",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 4150,
                    "nome": "EMPRESA OSASCO",
                    "municipio": "OSASCO"
                },
                {
                    "id": 4151,
                    "nome": "UBERLANDIA",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 4152,
                    "nome": "S.GONCALO DO SAPUCAI",
                    "municipio": "SAO GONCALO DO SAPUCAI"
                },
                {
                    "id": 4153,
                    "nome": "SAO JOSE DO BELMONTE",
                    "municipio": "SAO JOSE DO BELMONTE"
                },
                {
                    "id": 4154,
                    "nome": "SAO JOSE DOS PINHAIS",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 4155,
                    "nome": "SAO LOURENCO",
                    "municipio": "SAO LOURENCO"
                },
                {
                    "id": 4156,
                    "nome": "SAO PAULO DO POTENGI",
                    "municipio": "SAO PAULO DO POTENGI"
                },
                {
                    "id": 4157,
                    "nome": "SEABRA",
                    "municipio": "SEABRA"
                },
                {
                    "id": 4158,
                    "nome": "SERTANOPOLIS",
                    "municipio": "SERTANOPOLIS"
                },
                {
                    "id": 4159,
                    "nome": "SERTAOZINHO",
                    "municipio": "SERTAOZINHO"
                },
                {
                    "id": 4160,
                    "nome": "SILVANIA",
                    "municipio": "SILVANIA"
                },
                {
                    "id": 4161,
                    "nome": "EMPRESA BARUERI",
                    "municipio": "BARUERI"
                },
                {
                    "id": 4162,
                    "nome": "EMPRESA JUNDIAI",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 4163,
                    "nome": "CAJAZEIRAS",
                    "municipio": "CAJAZEIRAS"
                },
                {
                    "id": 4164,
                    "nome": "SUMARE",
                    "municipio": "SUMARE"
                },
                {
                    "id": 4165,
                    "nome": "TERRA RICA",
                    "municipio": "TERRA RICA"
                },
                {
                    "id": 4166,
                    "nome": "ESCR.EXC.VILA GALVAO",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 4167,
                    "nome": "TURVO",
                    "municipio": "TURVO"
                },
                {
                    "id": 4168,
                    "nome": "EMPRESA MOGI CRUZES",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 4169,
                    "nome": "VINHEDO",
                    "municipio": "VINHEDO"
                },
                {
                    "id": 4170,
                    "nome": "EMPRESA PETROPOLIS",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 4171,
                    "nome": "XAXIM-SC",
                    "municipio": "XAXIM"
                },
                {
                    "id": 4172,
                    "nome": "EMPRESA DIVINOPOLIS",
                    "municipio": "DIVINOPOLIS"
                },
                {
                    "id": 4173,
                    "nome": "ESCR.EXC.BONFIM",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 4174,
                    "nome": "ESCR.EXC.PAO ACUCAR",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 4175,
                    "nome": "ESCR.EXC.PRACA XV",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 4176,
                    "nome": "ESCR.EXC.ANA ROSA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4177,
                    "nome": "ESCR.EXC.CENTRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4178,
                    "nome": "ESCR.EST.INVESTIDOR",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 4179,
                    "nome": "UNA",
                    "municipio": "UNA"
                }
            ]
        },
        {
            "id": 22,
            "banco": "47",
            "nome": "BANCO DO ESTADO DE SERGIPE S.A.",
            "agencias": [
                {
                    "id": 8243,
                    "nome": "1",
                    "municipio": ""
                },
                {
                    "id": 8244,
                    "nome": "AG�NCIA NEOPOLIS",
                    "municipio": "NEOPOLIS"
                },
                {
                    "id": 8245,
                    "nome": "AG�NCIA BANCO DIGITAL -  B+",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8246,
                    "nome": "AG�NCIA SIQUEIRA CAMPOS",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8247,
                    "nome": "AG�NCIA NOSSA SENHORA DA GLORIA",
                    "municipio": "NOSSA SENHORA DA GLORIA"
                },
                {
                    "id": 8248,
                    "nome": "AG�NCIA ITABI",
                    "municipio": "ITABI"
                },
                {
                    "id": 8249,
                    "nome": "AG�NCIA CENTRAL-MATRIZ",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8250,
                    "nome": "AG�NCIA DISTRITO INDUSTRIAL",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8251,
                    "nome": "AG�NCIA ITAPORANGA D'AJUDA",
                    "municipio": "ITAPORANGA D'AJUDA"
                },
                {
                    "id": 8252,
                    "nome": "AG�NCIA CARIRA",
                    "municipio": "CARIRA"
                },
                {
                    "id": 8253,
                    "nome": "AG�NCIA LARANJEIRAS",
                    "municipio": "LARANJEIRAS"
                },
                {
                    "id": 8254,
                    "nome": "AG�NCIA SIRIRI",
                    "municipio": "SIRIRI"
                },
                {
                    "id": 8255,
                    "nome": "AG�NCIA ITABAIANA",
                    "municipio": "ITABAIANA"
                },
                {
                    "id": 8256,
                    "nome": "AG�NCIA CRISTINAPOLIS",
                    "municipio": "CRISTINAPOLIS"
                },
                {
                    "id": 8257,
                    "nome": "AG�NCIA NOSSA SENHORA APARECIDA",
                    "municipio": "NOSSA SENHORA APARECIDA"
                },
                {
                    "id": 8258,
                    "nome": "AG�NCIA UMBAUBA",
                    "municipio": "UMBAUBA"
                },
                {
                    "id": 8259,
                    "nome": "AG�NCIA POCO REDONDO",
                    "municipio": "POCO REDONDO"
                },
                {
                    "id": 8260,
                    "nome": "AG�NCIA TOBIAS BARRETO",
                    "municipio": "TOBIAS BARRETO"
                },
                {
                    "id": 8261,
                    "nome": "AG�NCIA SANTO AMARO DAS BROTAS",
                    "municipio": "SANTO AMARO DAS BROTAS"
                },
                {
                    "id": 8262,
                    "nome": "AG�NCIA SANTO ANTONIO",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8263,
                    "nome": "AG�NCIA SAO JOSE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8264,
                    "nome": "AG�NCIA BOQUIM",
                    "municipio": "BOQUIM"
                },
                {
                    "id": 8265,
                    "nome": "AG. PEDRA MOLE",
                    "municipio": "FREI PAULO"
                },
                {
                    "id": 8266,
                    "nome": "AG�NCIA ITABAIANINHA",
                    "municipio": "ITABAIANINHA"
                },
                {
                    "id": 8267,
                    "nome": "AG�NCIA SIMAO DIAS",
                    "municipio": "SIMAO DIAS"
                },
                {
                    "id": 8268,
                    "nome": "AG�NCIA JAPOATA",
                    "municipio": "JAPOATA"
                },
                {
                    "id": 8269,
                    "nome": "AG�NCIA JOAO PESSOA(CALCADAO)",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8270,
                    "nome": "AG�NCIA ATALAIA",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8271,
                    "nome": "AG�NCIA CARMOPOLIS",
                    "municipio": "CARMOPOLIS"
                },
                {
                    "id": 8272,
                    "nome": "AG�NCIA RIBEIROPOLIS",
                    "municipio": "RIBEIROPOLIS"
                },
                {
                    "id": 8273,
                    "nome": "AG�NCIA CANHOBA",
                    "municipio": "CANHOBA"
                },
                {
                    "id": 8274,
                    "nome": "AG�NCIA AREIA BRANCA",
                    "municipio": "AREIA BRANCA"
                },
                {
                    "id": 8275,
                    "nome": "AG�NCIA NOSSA SENHORA DAS DORES",
                    "municipio": "NOSSA SENHORA DAS DORES"
                },
                {
                    "id": 8276,
                    "nome": "AG�NCIA POCO VERDE",
                    "municipio": "POCO VERDE"
                },
                {
                    "id": 8277,
                    "nome": "AG�NCIA JAPARATUBA",
                    "municipio": "JAPARATUBA"
                },
                {
                    "id": 8278,
                    "nome": "AG�NCIA BARAO DE MARUIM",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8279,
                    "nome": "AG�NCIA CAPELA",
                    "municipio": "CAPELA"
                },
                {
                    "id": 8280,
                    "nome": "AG�NCIA CAMPO DO BRITO",
                    "municipio": "CAMPO DO BRITO"
                },
                {
                    "id": 8281,
                    "nome": "AGENCIA LUIZ GARCIA",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8282,
                    "nome": "AG�NCIA DR. AUGUSTO LEITE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8283,
                    "nome": "AG�NCIA MALHADOR",
                    "municipio": "MALHADOR"
                },
                {
                    "id": 8284,
                    "nome": "AG�NCIA AQUIDABA",
                    "municipio": "AQUIDABA"
                },
                {
                    "id": 8285,
                    "nome": "AG�NCIA SANTOS DUMONT",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8286,
                    "nome": "AG�NCIA MAGAZINE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8287,
                    "nome": "AG�NCIA PROPRIA",
                    "municipio": "PROPRIA"
                },
                {
                    "id": 8288,
                    "nome": "AG�NCIA ROSARIO DO CATETE",
                    "municipio": "ROSARIO DO CATETE"
                },
                {
                    "id": 8289,
                    "nome": "AGENCIA FRANCISCO PORTO",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8290,
                    "nome": "AGENCIA SHOPPING JARDINS",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8291,
                    "nome": "AG�NCIA NOSSA SENHORA DO SOCORRO",
                    "municipio": "NOSSA SENHORA DO SOCORRO"
                },
                {
                    "id": 8292,
                    "nome": "AG�NCIA EDUARDO GOMES",
                    "municipio": "SAO CRISTOVAO"
                },
                {
                    "id": 8293,
                    "nome": "AG�NCIA ANT�NIO CARLOS FRANCO",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8294,
                    "nome": "AG�NCIA PIRAMBU",
                    "municipio": "PIRAMBU"
                },
                {
                    "id": 8295,
                    "nome": "AG�NCIA FREI PAULO",
                    "municipio": "FREI PAULO"
                },
                {
                    "id": 8296,
                    "nome": "AG�NCIA CANIND� DO S�O FRANCISCO",
                    "municipio": "CANINDE DE SAO FRANCISCO"
                },
                {
                    "id": 8297,
                    "nome": "AG�NCIA SHOPPING RIOMAR",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8298,
                    "nome": "AG�NCIA RIACHUELO",
                    "municipio": "RIACHUELO"
                },
                {
                    "id": 8299,
                    "nome": "AG�NCIA BARRA DOS COQUEIROS",
                    "municipio": "BARRA DOS COQUEIROS"
                },
                {
                    "id": 8300,
                    "nome": "AGENCIA METRO PONTO NOVO",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8301,
                    "nome": "METRO AUGUSTO FRANCO",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8302,
                    "nome": "AG�NCIA INDIAROBA",
                    "municipio": "INDIAROBA"
                },
                {
                    "id": 8303,
                    "nome": "AG�NCIA GOVERNADOR MARCELO DEDA CHAGAS",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8304,
                    "nome": "AG�NCIA GENTIL BARBOSA",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8305,
                    "nome": "AG�NCIA PORTO DA FOLHA",
                    "municipio": "PORTO DA FOLHA"
                },
                {
                    "id": 8306,
                    "nome": "AG�NCIA ESTANCIA",
                    "municipio": "ESTANCIA"
                },
                {
                    "id": 8307,
                    "nome": "AG�NCIA LAGARTO",
                    "municipio": "LAGARTO"
                }
            ]
        },
        {
            "id": 19,
            "banco": "37",
            "nome": "BANCO DO ESTADO DO PARÁ S.A.",
            "agencias": [
                {
                    "id": 7594,
                    "nome": "VITORIA DO XINGU",
                    "municipio": "VITORIA DO XINGU"
                },
                {
                    "id": 7595,
                    "nome": "FLORESTA DO ARAGUAIA",
                    "municipio": "FLORESTA DO ARAGUAIA"
                },
                {
                    "id": 7596,
                    "nome": "GARRAFAO DO NORTE",
                    "municipio": "GARRAFAO DO NORTE"
                },
                {
                    "id": 7597,
                    "nome": "ABEL FIGUEIREDO",
                    "municipio": "ABEL FIGUEIREDO"
                },
                {
                    "id": 7598,
                    "nome": "AGUA AZUL DO NORTE",
                    "municipio": "AGUA AZUL DO NORTE"
                },
                {
                    "id": 7599,
                    "nome": "ANAPU",
                    "municipio": "ANAPU"
                },
                {
                    "id": 7600,
                    "nome": "BREJO GRANDE DO ARAGUAIA",
                    "municipio": "BREJO GRANDE DO ARAGUAIA"
                },
                {
                    "id": 7601,
                    "nome": "CURUA",
                    "municipio": "CURUA"
                },
                {
                    "id": 7602,
                    "nome": "BELEM CENTRO",
                    "municipio": "BELEM"
                },
                {
                    "id": 7603,
                    "nome": "PRIMAVERA",
                    "municipio": "PRIMAVERA"
                },
                {
                    "id": 7604,
                    "nome": "SANTO ANTONIO DO TAUA",
                    "municipio": "SANTO ANTONIO DO TAUA"
                },
                {
                    "id": 7605,
                    "nome": "SAPUCAIA",
                    "municipio": "SAPUCAIA"
                },
                {
                    "id": 7606,
                    "nome": "MELGA�O",
                    "municipio": "MELGACO"
                },
                {
                    "id": 7607,
                    "nome": "CURRALINHO",
                    "municipio": "CURRALINHO"
                },
                {
                    "id": 7608,
                    "nome": "AUGUSTO CORREA",
                    "municipio": "AUGUSTO CORREA"
                },
                {
                    "id": 7609,
                    "nome": "CURIONOPOLIS",
                    "municipio": "CURIONOPOLIS"
                },
                {
                    "id": 7610,
                    "nome": "TERRA SANTA",
                    "municipio": "TERRA SANTA"
                },
                {
                    "id": 7611,
                    "nome": "CACHOEIRA DO ARARI",
                    "municipio": "CACHOEIRA DO ARARI"
                },
                {
                    "id": 7612,
                    "nome": "OBIDOS",
                    "municipio": "OBIDOS"
                },
                {
                    "id": 7613,
                    "nome": "TRACUATEUA",
                    "municipio": "TRACUATEUA"
                },
                {
                    "id": 7614,
                    "nome": "S�O F�LIX DO XINGU",
                    "municipio": "SAO FELIX DO XINGU"
                },
                {
                    "id": 7615,
                    "nome": "TRAIRAO",
                    "municipio": "TRAIRAO"
                },
                {
                    "id": 7616,
                    "nome": "MARAB� S�O FELIX",
                    "municipio": "MARABA"
                },
                {
                    "id": 7617,
                    "nome": "OEIRAS DO PAR�",
                    "municipio": "OEIRAS DO PARA"
                },
                {
                    "id": 7618,
                    "nome": "SENADOR JOSE PORF�RIO",
                    "municipio": "SENADOR JOSE PORFIRIO"
                },
                {
                    "id": 7619,
                    "nome": "PORTO DE MOZ",
                    "municipio": "PORTO DE MOZ"
                },
                {
                    "id": 7620,
                    "nome": "AG�NCIA CUMARU DO NORTE",
                    "municipio": "CUMARU DO NORTE"
                },
                {
                    "id": 7621,
                    "nome": "AGENCIA PAU D' ARCO",
                    "municipio": "PAU D'ARCO"
                },
                {
                    "id": 7622,
                    "nome": "1285",
                    "municipio": ""
                },
                {
                    "id": 7623,
                    "nome": "MOCAJUBA",
                    "municipio": "MOCAJUBA"
                },
                {
                    "id": 7624,
                    "nome": "MARAB�",
                    "municipio": "MARABA"
                },
                {
                    "id": 7625,
                    "nome": "PALESTINA DO PAR�",
                    "municipio": "PALESTINA DO PARA"
                },
                {
                    "id": 7626,
                    "nome": "AG�NCIA JACAREACANGA",
                    "municipio": "JACAREACANGA"
                },
                {
                    "id": 7627,
                    "nome": "AG�NCIA RUR�POLIS",
                    "municipio": "RUROPOLIS"
                },
                {
                    "id": 7628,
                    "nome": "AG�NCIA CACHOEIRA DO PIRI�",
                    "municipio": "CACHOEIRA DO PIRIA"
                },
                {
                    "id": 7629,
                    "nome": "AG�NCIA PACAJ�",
                    "municipio": "PACAJA"
                },
                {
                    "id": 7630,
                    "nome": "AG�NCIA - PI�ARRA",
                    "municipio": "PICARRA"
                },
                {
                    "id": 7631,
                    "nome": "AG�NCIA ULIAN�POLIS",
                    "municipio": "ULIANOPOLIS"
                },
                {
                    "id": 7632,
                    "nome": "AG�NCIA PRAINHA",
                    "municipio": "PRAINHA"
                },
                {
                    "id": 7633,
                    "nome": "AG�NCIA COLARES",
                    "municipio": "COLARES"
                },
                {
                    "id": 7634,
                    "nome": "TELEGRAFO",
                    "municipio": "BELEM"
                },
                {
                    "id": 7635,
                    "nome": "AG�NCIA CASA DE T�BUA",
                    "municipio": "SANTA MARIA DAS BARREIRAS"
                },
                {
                    "id": 7636,
                    "nome": "AG�NCIA BAGRE",
                    "municipio": "BAGRE"
                },
                {
                    "id": 7637,
                    "nome": "AG�NCIA INHANGAPI",
                    "municipio": "INHANGAPI"
                },
                {
                    "id": 7638,
                    "nome": "AG�NCIA IRITUIA",
                    "municipio": "IRITUIA"
                },
                {
                    "id": 7639,
                    "nome": "AG�NCIA OUR�M",
                    "municipio": "OUREM"
                },
                {
                    "id": 7640,
                    "nome": "AG�NCIA S�O DOMINGOS DO ARAGUAIA",
                    "municipio": "SAO DOMINGOS DO ARAGUAIA"
                },
                {
                    "id": 7641,
                    "nome": "SENADOR LEMOS",
                    "municipio": "BELEM"
                },
                {
                    "id": 7642,
                    "nome": "AG�NCIA SANTAR�M NOVO",
                    "municipio": "SANTAREM NOVO"
                },
                {
                    "id": 7643,
                    "nome": "AG�NCIA QUATIPURU",
                    "municipio": "QUATIPURU"
                },
                {
                    "id": 7644,
                    "nome": "AG�NCIA S�O JO�O DO ARAGUAIA",
                    "municipio": "SAO JOAO DO ARAGUAIA"
                },
                {
                    "id": 7645,
                    "nome": "AG�NCIA TERRA ALTA",
                    "municipio": "TERRA ALTA"
                },
                {
                    "id": 7646,
                    "nome": "AG�NCIA CASTANHAL-JADERL�NDIA",
                    "municipio": "CASTANHAL"
                },
                {
                    "id": 7647,
                    "nome": "AG�NCIA S�O FRANCISCO DO PAR�",
                    "municipio": "SAO FRANCISCO DO PARA"
                },
                {
                    "id": 7648,
                    "nome": "AG�NCIA S�O SEBASTI�O DA BOA VISTA",
                    "municipio": "SAO SEBASTIAO DA BOA VISTA"
                },
                {
                    "id": 7649,
                    "nome": "AG�NCIA SANTA CRUZ DO ARARI",
                    "municipio": "SANTA CRUZ DO ARARI"
                },
                {
                    "id": 7650,
                    "nome": "AG�NCIA URUAR�",
                    "municipio": "URUARA"
                },
                {
                    "id": 7651,
                    "nome": "AG�NCIA S�O DOMINGOS DO CAPIM",
                    "municipio": "SAO DOMINGOS DO CAPIM"
                },
                {
                    "id": 7652,
                    "nome": "TUCURUI",
                    "municipio": "TUCURUI"
                },
                {
                    "id": 7653,
                    "nome": "AG�NCIA M�E DO RIO",
                    "municipio": "MAE DO RIO"
                },
                {
                    "id": 7654,
                    "nome": "AG�NCIA BELTERRA",
                    "municipio": "BELTERRA"
                },
                {
                    "id": 7655,
                    "nome": "AG�NCIA PEIXE-BOI",
                    "municipio": "PEIXE-BOI"
                },
                {
                    "id": 7656,
                    "nome": "AG�NCIA GURUP�",
                    "municipio": "GURUPA"
                },
                {
                    "id": 7657,
                    "nome": "BRAGANCA",
                    "municipio": "BRAGANCA"
                },
                {
                    "id": 7658,
                    "nome": "BREVES",
                    "municipio": "BREVES"
                },
                {
                    "id": 7659,
                    "nome": "CASTANHAL",
                    "municipio": "CASTANHAL"
                },
                {
                    "id": 7660,
                    "nome": "ANANINDEUA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 7661,
                    "nome": "ESTRADA NOVA",
                    "municipio": "BELEM"
                },
                {
                    "id": 7662,
                    "nome": "BARCARENA",
                    "municipio": "BARCARENA"
                },
                {
                    "id": 7663,
                    "nome": "NAZAR�",
                    "municipio": "BELEM"
                },
                {
                    "id": 7664,
                    "nome": "S�O BR�S",
                    "municipio": "BELEM"
                },
                {
                    "id": 7665,
                    "nome": "PALACIO",
                    "municipio": "BELEM"
                },
                {
                    "id": 7666,
                    "nome": "ICOARACI",
                    "municipio": "BELEM"
                },
                {
                    "id": 7667,
                    "nome": "REDENCAO",
                    "municipio": "REDENCAO"
                },
                {
                    "id": 7668,
                    "nome": "AG�NCIA SANTAR�M",
                    "municipio": "SANTAREM"
                },
                {
                    "id": 7669,
                    "nome": "CAMETA",
                    "municipio": "CAMETA"
                },
                {
                    "id": 7670,
                    "nome": "RONDON DO PARA",
                    "municipio": "RONDON DO PARA"
                },
                {
                    "id": 7671,
                    "nome": "CAPANEMA",
                    "municipio": "CAPANEMA"
                },
                {
                    "id": 7672,
                    "nome": "ALENQUER",
                    "municipio": "ALENQUER"
                },
                {
                    "id": 7673,
                    "nome": "CONC�RDIA DO PARA",
                    "municipio": "CONCORDIA DO PARA"
                },
                {
                    "id": 7674,
                    "nome": "ITUPIRANGA",
                    "municipio": "ITUPIRANGA"
                },
                {
                    "id": 7675,
                    "nome": "VISEU",
                    "municipio": "VISEU"
                },
                {
                    "id": 7676,
                    "nome": "AGENCIA PRIVATE BANPARA",
                    "municipio": "BELEM"
                },
                {
                    "id": 7677,
                    "nome": "ITAITUBA",
                    "municipio": "ITAITUBA"
                },
                {
                    "id": 7678,
                    "nome": "VIGIA",
                    "municipio": "VIGIA"
                },
                {
                    "id": 7679,
                    "nome": "XINGUARA",
                    "municipio": "XINGUARA"
                },
                {
                    "id": 7680,
                    "nome": "DOM ELISEU",
                    "municipio": "DOM ELISEU"
                },
                {
                    "id": 7681,
                    "nome": "ORIXIMIN�",
                    "municipio": "ORIXIMINA"
                },
                {
                    "id": 7682,
                    "nome": "PARAUAPEBAS",
                    "municipio": "PARAUAPEBAS"
                },
                {
                    "id": 7683,
                    "nome": "BR ANANINDEUA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 7684,
                    "nome": "CIDADE NOVA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 7685,
                    "nome": "JURUTI",
                    "municipio": "JURUTI"
                },
                {
                    "id": 7686,
                    "nome": "PEDREIRA",
                    "municipio": "BELEM"
                },
                {
                    "id": 7687,
                    "nome": "CANA� DOS CARAJ�S",
                    "municipio": "CANAA DOS CARAJAS"
                },
                {
                    "id": 7688,
                    "nome": "Ag�ncia 480",
                    "municipio": ""
                },
                {
                    "id": 7689,
                    "nome": "PARAGOMINAS",
                    "municipio": "PARAGOMINAS"
                },
                {
                    "id": 7690,
                    "nome": "AG�NCIA TAPAJ�S",
                    "municipio": "SANTAREM"
                },
                {
                    "id": 7691,
                    "nome": "MARAB� CIDADE NOVA",
                    "municipio": "MARABA"
                },
                {
                    "id": 7692,
                    "nome": "MARITUBA",
                    "municipio": "MARITUBA"
                },
                {
                    "id": 7693,
                    "nome": "AUGUSTO MONTENEGRO",
                    "municipio": "BELEM"
                },
                {
                    "id": 7694,
                    "nome": "TAIL�NDIA",
                    "municipio": "TAILANDIA"
                },
                {
                    "id": 7695,
                    "nome": "MOJU",
                    "municipio": "MOJU"
                },
                {
                    "id": 7696,
                    "nome": "BARCARENA CENTRO",
                    "municipio": "BARCARENA"
                },
                {
                    "id": 7697,
                    "nome": "SANTA B�RBARA DO PAR�",
                    "municipio": "SANTA BARBARA DO PARA"
                },
                {
                    "id": 7698,
                    "nome": "TUCUM�",
                    "municipio": "TUCUMA"
                },
                {
                    "id": 7699,
                    "nome": "BENEVIDES",
                    "municipio": "BENEVIDES"
                },
                {
                    "id": 7700,
                    "nome": "ABAETETUBA",
                    "municipio": "ABAETETUBA"
                },
                {
                    "id": 7701,
                    "nome": "BOM JESUS DO TOCANTINS",
                    "municipio": "BOM JESUS DO TOCANTINS"
                },
                {
                    "id": 7702,
                    "nome": "RIO MARIA",
                    "municipio": "RIO MARIA"
                },
                {
                    "id": 7703,
                    "nome": "SANTA LUZIA DO PAR�",
                    "municipio": "SANTA LUZIA DO PARA"
                },
                {
                    "id": 7704,
                    "nome": "CURU��",
                    "municipio": "CURUCA"
                },
                {
                    "id": 7705,
                    "nome": "JACUND�",
                    "municipio": "JACUNDA"
                },
                {
                    "id": 7706,
                    "nome": "SANTA MARIA DO PAR�",
                    "municipio": "SANTA MARIA DO PARA"
                },
                {
                    "id": 7707,
                    "nome": "TOM�-A�� - QUATRO BOCAS",
                    "municipio": "TOME-ACU"
                },
                {
                    "id": 7708,
                    "nome": "BONITO",
                    "municipio": "BONITO"
                },
                {
                    "id": 7709,
                    "nome": "FARO",
                    "municipio": "FARO"
                },
                {
                    "id": 7710,
                    "nome": "ALMEIRIM",
                    "municipio": "ALMEIRIM"
                },
                {
                    "id": 7711,
                    "nome": "CAPITAO POCO",
                    "municipio": "CAPITAO POCO"
                },
                {
                    "id": 7712,
                    "nome": "IGARAPE MIRI",
                    "municipio": "IGARAPE-MIRI"
                },
                {
                    "id": 7713,
                    "nome": "S�O MIGUEL DO GUAM�",
                    "municipio": "SAO MIGUEL DO GUAMA"
                },
                {
                    "id": 7714,
                    "nome": "BAI�O",
                    "municipio": "BAIAO"
                },
                {
                    "id": 7715,
                    "nome": "BREU BRANCO",
                    "municipio": "BREU BRANCO"
                },
                {
                    "id": 7716,
                    "nome": "ANAJ�S",
                    "municipio": "ANAJAS"
                },
                {
                    "id": 7717,
                    "nome": "ACAR�",
                    "municipio": "ACARA"
                },
                {
                    "id": 7718,
                    "nome": "S�O GERALDO DO ARAGUAIA",
                    "municipio": "SAO GERALDO DO ARAGUAIA"
                },
                {
                    "id": 7719,
                    "nome": "MOJUI DOS CAMPOS",
                    "municipio": "MOJUI DOS CAMPOS"
                },
                {
                    "id": 7720,
                    "nome": "MUAN�",
                    "municipio": "MUANA"
                },
                {
                    "id": 7721,
                    "nome": "SANTANA DO ARAGUAIA",
                    "municipio": "SANTANA DO ARAGUAIA"
                },
                {
                    "id": 7722,
                    "nome": "CONCEICAO DO ARAGUAIA",
                    "municipio": "CONCEICAO DO ARAGUAIA"
                },
                {
                    "id": 7723,
                    "nome": "MARAPANIM",
                    "municipio": "MARAPANIM"
                },
                {
                    "id": 7724,
                    "nome": "S�O CAETANO DE ODIVELAS",
                    "municipio": "SAO CAETANO DE ODIVELAS"
                },
                {
                    "id": 7725,
                    "nome": "IGARAPE ACU",
                    "municipio": "IGARAPE-ACU"
                },
                {
                    "id": 7726,
                    "nome": "MOSQUEIRO",
                    "municipio": "BELEM"
                },
                {
                    "id": 7727,
                    "nome": "MEDICIL�NDIA",
                    "municipio": "MEDICILANDIA"
                },
                {
                    "id": 7728,
                    "nome": "NOVO PROGRESSO",
                    "municipio": "NOVO PROGRESSO"
                },
                {
                    "id": 7729,
                    "nome": "OURILANDIA DO NORTE",
                    "municipio": "OURILANDIA DO NORTE"
                },
                {
                    "id": 7730,
                    "nome": "SOURE",
                    "municipio": "SOURE"
                },
                {
                    "id": 7731,
                    "nome": "ITAITUBA CIDADE ALTA",
                    "municipio": "ITAITUBA"
                },
                {
                    "id": 7732,
                    "nome": "LIMOEIRO DO AJURU",
                    "municipio": "LIMOEIRO DO AJURU"
                },
                {
                    "id": 7733,
                    "nome": "MARACANA",
                    "municipio": "MARACANA"
                },
                {
                    "id": 7734,
                    "nome": "PONTA DE PEDRAS",
                    "municipio": "PONTA DE PEDRAS"
                },
                {
                    "id": 7735,
                    "nome": "AFU�",
                    "municipio": "AFUA"
                },
                {
                    "id": 7736,
                    "nome": "ELDORADO DOS CARAJ�S",
                    "municipio": "ELDORADO DOS CARAJAS"
                },
                {
                    "id": 7737,
                    "nome": "SALVATERRA",
                    "municipio": "SALVATERRA"
                },
                {
                    "id": 7738,
                    "nome": "SAO JOAO DE PIRABAS",
                    "municipio": "SAO JOAO DE PIRABAS"
                },
                {
                    "id": 7739,
                    "nome": "SALINOPOLIS",
                    "municipio": "SALINOPOLIS"
                },
                {
                    "id": 7740,
                    "nome": "GOIAN�SIA DO PAR�",
                    "municipio": "GOIANESIA DO PARA"
                },
                {
                    "id": 7741,
                    "nome": "BUJARU",
                    "municipio": "BUJARU"
                },
                {
                    "id": 7742,
                    "nome": "IPIXUNA DO PAR�",
                    "municipio": "IPIXUNA DO PARA"
                },
                {
                    "id": 7743,
                    "nome": "MONTE ALEGRE",
                    "municipio": "MONTE ALEGRE"
                }
            ]
        },
        {
            "id": 21,
            "banco": "41",
            "nome": "BANCO DO ESTADO DO RIO GRANDE DO SUL S.A.",
            "agencias": [
                {
                    "id": 7745,
                    "nome": "MATRIZ",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7746,
                    "nome": "NITEROI CANOAS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 7747,
                    "nome": "AV.OTTO NIEMEYER",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7748,
                    "nome": "RUA CALDAS JUNIOR",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7749,
                    "nome": "ARARANGU�",
                    "municipio": "ARARANGUA"
                },
                {
                    "id": 7750,
                    "nome": "VENEZIANOS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7751,
                    "nome": "AGUDO",
                    "municipio": "AGUDO"
                },
                {
                    "id": 7752,
                    "nome": "PALHO�A",
                    "municipio": "PALHOCA"
                },
                {
                    "id": 7753,
                    "nome": "DO VALE CACHOEIRINHA",
                    "municipio": "CACHOEIRINHA"
                },
                {
                    "id": 7754,
                    "nome": "BOURBON IPIRANGA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7755,
                    "nome": "ITAPEMA",
                    "municipio": "ITAPEMA"
                },
                {
                    "id": 7756,
                    "nome": "GENERAL MOTORS",
                    "municipio": "GRAVATAI"
                },
                {
                    "id": 7757,
                    "nome": "AJURICABA",
                    "municipio": "AJURICABA"
                },
                {
                    "id": 7758,
                    "nome": "MA�AMBAR�",
                    "municipio": "MACAMBARA"
                },
                {
                    "id": 7759,
                    "nome": "LAGO�O",
                    "municipio": "LAGOAO"
                },
                {
                    "id": 7760,
                    "nome": "IBARAMA",
                    "municipio": "IBARAMA"
                },
                {
                    "id": 7761,
                    "nome": "MATA",
                    "municipio": "MATA"
                },
                {
                    "id": 7762,
                    "nome": "NOVO CABRAIS",
                    "municipio": "NOVO CABRAIS"
                },
                {
                    "id": 7763,
                    "nome": "PASSO DO SOBRADO",
                    "municipio": "PASSO DO SOBRADO"
                },
                {
                    "id": 7764,
                    "nome": "PROGRESSO",
                    "municipio": "PROGRESSO"
                },
                {
                    "id": 7765,
                    "nome": "GENERAL OS�RIO PELOTAS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 7766,
                    "nome": "CARA�",
                    "municipio": "CARAA"
                },
                {
                    "id": 7767,
                    "nome": "ENTRE-IJU�S",
                    "municipio": "ENTRE IJUIS"
                },
                {
                    "id": 7768,
                    "nome": "HULHA NEGRA",
                    "municipio": "HULHA NEGRA"
                },
                {
                    "id": 7769,
                    "nome": "INDEPEND�NCIA",
                    "municipio": "INDEPENDENCIA"
                },
                {
                    "id": 7770,
                    "nome": "NOVA ROMA DO SUL",
                    "municipio": "NOVA ROMA DO SUL"
                },
                {
                    "id": 7771,
                    "nome": "PARAISO DO SUL",
                    "municipio": "PARAISO DO SUL"
                },
                {
                    "id": 7772,
                    "nome": "VALE VERDE",
                    "municipio": "VALE VERDE"
                },
                {
                    "id": 7773,
                    "nome": "IBIRAPUIT�",
                    "municipio": "IBIRAPUITA"
                },
                {
                    "id": 7774,
                    "nome": "BARRA SHOPPING SUL",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7775,
                    "nome": "ALVORADA",
                    "municipio": "ALVORADA"
                },
                {
                    "id": 7776,
                    "nome": "NOVA ALVORADA",
                    "municipio": "NOVA ALVORADA"
                },
                {
                    "id": 7777,
                    "nome": "VALE REAL",
                    "municipio": "VALE REAL"
                },
                {
                    "id": 7778,
                    "nome": "UPF CAMPUS I",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 7779,
                    "nome": "BAIRRO CRUZEIRO CAXIAS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 7780,
                    "nome": "MINIST�RIO PUBLICO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7781,
                    "nome": "AGUAS CLARAS VIAMAO",
                    "municipio": "VIAMAO"
                },
                {
                    "id": 7782,
                    "nome": "CAMPINAS DO SUL",
                    "municipio": "CAMPINAS DO SUL"
                },
                {
                    "id": 7783,
                    "nome": "TR�S PALMEIRAS",
                    "municipio": "TRES PALMEIRAS"
                },
                {
                    "id": 7784,
                    "nome": "JARI",
                    "municipio": "JARI"
                },
                {
                    "id": 7785,
                    "nome": "MARIA ELIZABETH",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 7786,
                    "nome": "CENTEN�RIO",
                    "municipio": "CENTENARIO"
                },
                {
                    "id": 7787,
                    "nome": "�UREA",
                    "municipio": "AUREA"
                },
                {
                    "id": 7788,
                    "nome": "VILA NOVA DO SUL",
                    "municipio": "VILA NOVA DO SUL"
                },
                {
                    "id": 7789,
                    "nome": "MARIANA PIMENTEL",
                    "municipio": "MARIANA PIMENTEL"
                },
                {
                    "id": 7790,
                    "nome": "ITACURUBI",
                    "municipio": "ITACURUBI"
                },
                {
                    "id": 7791,
                    "nome": "QUEVEDOS",
                    "municipio": "QUEVEDOS"
                },
                {
                    "id": 7792,
                    "nome": "MARAT�",
                    "municipio": "MARATA"
                },
                {
                    "id": 7793,
                    "nome": "ALEGRIA",
                    "municipio": "ALEGRIA"
                },
                {
                    "id": 7794,
                    "nome": "DERRUBADAS",
                    "municipio": "DERRUBADAS"
                },
                {
                    "id": 7795,
                    "nome": "DR.MAURICIO CARDOSO",
                    "municipio": "DOUTOR MAURICIO CARDOSO"
                },
                {
                    "id": 7796,
                    "nome": "SAO MIGUEL DAS MISSOES",
                    "municipio": "SAO MIGUEL DAS MISSOES"
                },
                {
                    "id": 7797,
                    "nome": "GARRUCHOS",
                    "municipio": "GARRUCHOS"
                },
                {
                    "id": 7798,
                    "nome": "PASSA SETE",
                    "municipio": "PASSA SETE"
                },
                {
                    "id": 7799,
                    "nome": "NOVA VICENZA",
                    "municipio": "FARROUPILHA"
                },
                {
                    "id": 7800,
                    "nome": "PAL�CIO DA JUSTI�A",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7801,
                    "nome": "ALEGRETE",
                    "municipio": "ALEGRETE"
                },
                {
                    "id": 7802,
                    "nome": "DILERMANDO DE AGUIAR",
                    "municipio": "DILERMANDO DE AGUIAR"
                },
                {
                    "id": 7803,
                    "nome": "GRAMADO XAVIER",
                    "municipio": "GRAMADO XAVIER"
                },
                {
                    "id": 7804,
                    "nome": "BOA VISTA DO INCRA",
                    "municipio": "BOA VISTA DO INCRA"
                },
                {
                    "id": 7805,
                    "nome": "TRIBUNAL DE JUSTI�A",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7806,
                    "nome": "S�O ROQUE",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 7807,
                    "nome": "PARECI NOVO",
                    "municipio": "PARECI NOVO"
                },
                {
                    "id": 7808,
                    "nome": "FAZENDA VILANOVA",
                    "municipio": "FAZENDA VILANOVA"
                },
                {
                    "id": 7809,
                    "nome": "PONT�O",
                    "municipio": "PONTAO"
                },
                {
                    "id": 7810,
                    "nome": "S�O MARTINHO DA SERRA",
                    "municipio": "SAO MARTINHO DA SERRA"
                },
                {
                    "id": 7811,
                    "nome": "CAMPESTRE DA SERRA",
                    "municipio": "CAMPESTRE DA SERRA"
                },
                {
                    "id": 7812,
                    "nome": "SANTO ANTONIO DO PLANALTO",
                    "municipio": "SANTO ANTONIO DO PLANALTO"
                },
                {
                    "id": 7813,
                    "nome": "ACEGU�",
                    "municipio": "ACEGUA"
                },
                {
                    "id": 7814,
                    "nome": "CAIBAT�",
                    "municipio": "CAIBATE"
                },
                {
                    "id": 7815,
                    "nome": "S�O JOS� DOS AUSENTES",
                    "municipio": "SAO JOSE DOS AUSENTES"
                },
                {
                    "id": 7816,
                    "nome": "BOQUEIRAO DO LEAO",
                    "municipio": "BOQUEIRAO DO LEAO"
                },
                {
                    "id": 7817,
                    "nome": "PRA�A DA BANDEIRA",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 7818,
                    "nome": "SANTA CLARA DO SUL",
                    "municipio": "SANTA CLARA DO SUL"
                },
                {
                    "id": 7819,
                    "nome": "SENTINELA DO SUL",
                    "municipio": "SENTINELA DO SUL"
                },
                {
                    "id": 7820,
                    "nome": "BAIRRO PIPPI",
                    "municipio": "SANTO ANGELO"
                },
                {
                    "id": 7821,
                    "nome": "�GUA SANTA",
                    "municipio": "AGUA SANTA"
                },
                {
                    "id": 7822,
                    "nome": "PL�CIDO DE CASTRO",
                    "municipio": "CRUZ ALTA"
                },
                {
                    "id": 7823,
                    "nome": "BONS VENTOS",
                    "municipio": "OSORIO"
                },
                {
                    "id": 7824,
                    "nome": "TIRADENTES DO SUL",
                    "municipio": "TIRADENTES DO SUL"
                },
                {
                    "id": 7825,
                    "nome": "PADRE CLARET",
                    "municipio": "ESTEIO"
                },
                {
                    "id": 7826,
                    "nome": "VALE DO SOL",
                    "municipio": "VALE DO SOL"
                },
                {
                    "id": 7827,
                    "nome": "VIDEIRA",
                    "municipio": "VIDEIRA"
                },
                {
                    "id": 7828,
                    "nome": "BAIRRO EXPOSI��O",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 7829,
                    "nome": "UNISC",
                    "municipio": "SANTA CRUZ DO SUL"
                },
                {
                    "id": 7830,
                    "nome": "MATHIAS VELHO",
                    "municipio": "CANOAS"
                },
                {
                    "id": 7831,
                    "nome": "PORTAL DAS MISS�ES",
                    "municipio": "IJUI"
                },
                {
                    "id": 7832,
                    "nome": "GAL�POLIS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 7833,
                    "nome": "CAMPINA S�O LEOPOLDO",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 7834,
                    "nome": "GAROPABA",
                    "municipio": "GAROPABA"
                },
                {
                    "id": 7835,
                    "nome": "VILLAGIO IGUATEMI",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 7836,
                    "nome": "SERTAO SANTANA",
                    "municipio": "SERTAO SANTANA"
                },
                {
                    "id": 7837,
                    "nome": "ARROIO GRANDE",
                    "municipio": "ARROIO GRANDE"
                },
                {
                    "id": 7838,
                    "nome": "BAIRRO VILA NOVA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7839,
                    "nome": "CAPITAL DAS PRAIAS",
                    "municipio": "TRAMANDAI"
                },
                {
                    "id": 7840,
                    "nome": "CAMBOIM",
                    "municipio": "SAPUCAIA DO SUL"
                },
                {
                    "id": 7841,
                    "nome": "SEP� TIARAJ�",
                    "municipio": "SAO GABRIEL"
                },
                {
                    "id": 7842,
                    "nome": "ARROIO DO TIGRE",
                    "municipio": "ARROIO DO TIGRE"
                },
                {
                    "id": 7843,
                    "nome": "GLORINHA",
                    "municipio": "GLORINHA"
                },
                {
                    "id": 7844,
                    "nome": "PRA�A DA ENCOL",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7845,
                    "nome": "NILO PE�ANHA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7846,
                    "nome": "ARROIO DOS RATOS",
                    "municipio": "ARROIO DOS RATOS"
                },
                {
                    "id": 7847,
                    "nome": "PORTEIRA DO RIO GRANDE",
                    "municipio": "VACARIA"
                },
                {
                    "id": 7848,
                    "nome": "PRA�A JULIO DE CASTILHOS",
                    "municipio": "VIAMAO"
                },
                {
                    "id": 7849,
                    "nome": "ARVOREZINHA",
                    "municipio": "ARVOREZINHA"
                },
                {
                    "id": 7850,
                    "nome": "AUGUSTO PESTANA",
                    "municipio": "AUGUSTO PESTANA"
                },
                {
                    "id": 7851,
                    "nome": "BAGE",
                    "municipio": "BAGE"
                },
                {
                    "id": 7852,
                    "nome": "AGENCIA EDIFICIO SEDE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7853,
                    "nome": "BARAO DE COTEGIPE",
                    "municipio": "BARAO DE COTEGIPE"
                },
                {
                    "id": 7854,
                    "nome": "BARRA DO RIBEIRO",
                    "municipio": "BARRA DO RIBEIRO"
                },
                {
                    "id": 7855,
                    "nome": "BARROS CASSAL",
                    "municipio": "BARROS CASSAL"
                },
                {
                    "id": 7856,
                    "nome": "BARRACAO",
                    "municipio": "BARRACAO"
                },
                {
                    "id": 7857,
                    "nome": "CIDADE ALTA",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 7858,
                    "nome": "PARTENON",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7859,
                    "nome": "BENTO GONCALVES",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 7860,
                    "nome": "BLUMENAU",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 7861,
                    "nome": "BOM RETIRO DO SUL",
                    "municipio": "BOM RETIRO DO SUL"
                },
                {
                    "id": 7862,
                    "nome": "BOM JESUS",
                    "municipio": "BOM JESUS"
                },
                {
                    "id": 7863,
                    "nome": "BOA VISTA DO BURICA",
                    "municipio": "BOA VISTA DO BURICA"
                },
                {
                    "id": 7864,
                    "nome": "BRASILIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 7865,
                    "nome": "BUTIA",
                    "municipio": "BUTIA"
                },
                {
                    "id": 7866,
                    "nome": "CACAPAVA DO SUL",
                    "municipio": "CACAPAVA DO SUL"
                },
                {
                    "id": 7867,
                    "nome": "CACEQUI",
                    "municipio": "CACEQUI"
                },
                {
                    "id": 7868,
                    "nome": "BOSSOROCA",
                    "municipio": "BOSSOROCA"
                },
                {
                    "id": 7869,
                    "nome": "BOM PRINCIPIO",
                    "municipio": "BOM PRINCIPIO"
                },
                {
                    "id": 7870,
                    "nome": "CACHOEIRINHA",
                    "municipio": "CACHOEIRINHA"
                },
                {
                    "id": 7871,
                    "nome": "LOMBA DO PINHEIRO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7872,
                    "nome": "IPANEMA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7873,
                    "nome": "CAMAQUA",
                    "municipio": "CAMAQUA"
                },
                {
                    "id": 7874,
                    "nome": "CAMPO BOM",
                    "municipio": "CAMPO BOM"
                },
                {
                    "id": 7875,
                    "nome": "CANOAS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 7876,
                    "nome": "CANGUCU",
                    "municipio": "CANGUCU"
                },
                {
                    "id": 7877,
                    "nome": "CAPAO DO LEAO",
                    "municipio": "CAPAO DO LEAO"
                },
                {
                    "id": 7878,
                    "nome": "CARAZINHO",
                    "municipio": "CARAZINHO"
                },
                {
                    "id": 7879,
                    "nome": "PORTO LUCENA",
                    "municipio": "PORTO LUCENA"
                },
                {
                    "id": 7880,
                    "nome": "RONDINHA",
                    "municipio": "RONDINHA"
                },
                {
                    "id": 7881,
                    "nome": "CRISTOVAO COLOMBO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7882,
                    "nome": "CAXIAS DO SUL",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 7883,
                    "nome": "AG�NCIA DIGITAL",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7884,
                    "nome": "SAO PELEGRINO",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 7885,
                    "nome": "CRICIUMA",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 7886,
                    "nome": "CONDOR",
                    "municipio": "CONDOR"
                },
                {
                    "id": 7887,
                    "nome": "CRUZ ALTA",
                    "municipio": "CRUZ ALTA"
                },
                {
                    "id": 7888,
                    "nome": "CRUZEIRO DO SUL",
                    "municipio": "CRUZEIRO DO SUL"
                },
                {
                    "id": 7889,
                    "nome": "COTIPORA",
                    "municipio": "COTIPORA"
                },
                {
                    "id": 7890,
                    "nome": "CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7891,
                    "nome": "CASSINO",
                    "municipio": "RIO GRANDE"
                },
                {
                    "id": 7892,
                    "nome": "DOIS IRMAOS",
                    "municipio": "DOIS IRMAOS"
                },
                {
                    "id": 7893,
                    "nome": "AZENHA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7894,
                    "nome": "DOM PEDRITO",
                    "municipio": "DOM PEDRITO"
                },
                {
                    "id": 7895,
                    "nome": "CHACARA BARRETO",
                    "municipio": "CANOAS"
                },
                {
                    "id": 7896,
                    "nome": "DAVID CANABARRO",
                    "municipio": "DAVID CANABARRO"
                },
                {
                    "id": 7897,
                    "nome": "DONA FRANCISCA",
                    "municipio": "DONA FRANCISCA"
                },
                {
                    "id": 7898,
                    "nome": "ENCRUZILHADA DO SUL",
                    "municipio": "ENCRUZILHADA DO SUL"
                },
                {
                    "id": 7899,
                    "nome": "ERECHIM",
                    "municipio": "ERECHIM"
                },
                {
                    "id": 7900,
                    "nome": "ESTEIO",
                    "municipio": "ESTEIO"
                },
                {
                    "id": 7901,
                    "nome": "ESTRELA",
                    "municipio": "ESTRELA"
                },
                {
                    "id": 7902,
                    "nome": "FARROUPILHA",
                    "municipio": "FARROUPILHA"
                },
                {
                    "id": 7903,
                    "nome": "FLORIANOPOLIS",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 7904,
                    "nome": "GARIBALDI",
                    "municipio": "GARIBALDI"
                },
                {
                    "id": 7905,
                    "nome": "GUAIBA",
                    "municipio": "GUAIBA"
                },
                {
                    "id": 7906,
                    "nome": "IJUI",
                    "municipio": "IJUI"
                },
                {
                    "id": 7907,
                    "nome": "PAIM FILHO",
                    "municipio": "PAIM FILHO"
                },
                {
                    "id": 7908,
                    "nome": "FORTALEZA DOS VALOS",
                    "municipio": "FORTALEZA DOS VALOS"
                },
                {
                    "id": 7909,
                    "nome": "GAURAMA",
                    "municipio": "GAURAMA"
                },
                {
                    "id": 7910,
                    "nome": "HUMAITA",
                    "municipio": "HUMAITA"
                },
                {
                    "id": 7911,
                    "nome": "ITAQUI",
                    "municipio": "ITAQUI"
                },
                {
                    "id": 7912,
                    "nome": "ITATIBA DO SUL",
                    "municipio": "ITATIBA DO SUL"
                },
                {
                    "id": 7913,
                    "nome": "IVOTI",
                    "municipio": "IVOTI"
                },
                {
                    "id": 7914,
                    "nome": "JACUTINGA",
                    "municipio": "JACUTINGA"
                },
                {
                    "id": 7915,
                    "nome": "JAGUARI",
                    "municipio": "JAGUARI"
                },
                {
                    "id": 7916,
                    "nome": "JOIA",
                    "municipio": "JOIA"
                },
                {
                    "id": 7917,
                    "nome": "JOINVILLE",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 7918,
                    "nome": "AVENIDA DOS ESTADOS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7919,
                    "nome": "PUC",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7920,
                    "nome": "LAGOA VERMELHA",
                    "municipio": "LAGOA VERMELHA"
                },
                {
                    "id": 7921,
                    "nome": "LAJEADO",
                    "municipio": "LAJEADO"
                },
                {
                    "id": 7922,
                    "nome": "BOA VISTA",
                    "municipio": "ERECHIM"
                },
                {
                    "id": 7923,
                    "nome": "ASSIS BRASIL",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7924,
                    "nome": "SANTANA DO LIVRAMENTO",
                    "municipio": "SANTANA DO LIVRAMENTO"
                },
                {
                    "id": 7925,
                    "nome": "MONTENEGRO",
                    "municipio": "MONTENEGRO"
                },
                {
                    "id": 7926,
                    "nome": "NOVA PRATA",
                    "municipio": "NOVA PRATA"
                },
                {
                    "id": 7927,
                    "nome": "MOSTARDAS",
                    "municipio": "MOSTARDAS"
                },
                {
                    "id": 7928,
                    "nome": "NOSSA SENHORA DE LOURDES",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 7929,
                    "nome": "CACHOEIRA DO SUL",
                    "municipio": "CACHOEIRA DO SUL"
                },
                {
                    "id": 7930,
                    "nome": "NOVO HAMBURGO",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 7931,
                    "nome": "TRES FIGUEIRAS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7932,
                    "nome": "OSORIO",
                    "municipio": "OSORIO"
                },
                {
                    "id": 7933,
                    "nome": "PALMARES DO SUL",
                    "municipio": "PALMARES DO SUL"
                },
                {
                    "id": 7934,
                    "nome": "BOM CONSELHO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7935,
                    "nome": "PALMEIRA DAS MISSOES",
                    "municipio": "PALMEIRA DAS MISSOES"
                },
                {
                    "id": 7936,
                    "nome": "PALMITINHO",
                    "municipio": "PALMITINHO"
                },
                {
                    "id": 7937,
                    "nome": "PEJUCARA",
                    "municipio": "PEJUCARA"
                },
                {
                    "id": 7938,
                    "nome": "NOVA PETROPOLIS",
                    "municipio": "NOVA PETROPOLIS"
                },
                {
                    "id": 7939,
                    "nome": "NOVA HARTZ",
                    "municipio": "NOVA HARTZ"
                },
                {
                    "id": 7940,
                    "nome": "ROCA SALES",
                    "municipio": "ROCA SALES"
                },
                {
                    "id": 7941,
                    "nome": "BELEM NOVO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7942,
                    "nome": "PASSO FUNDO",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 7943,
                    "nome": "SAO JOSE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7944,
                    "nome": "SAO CRISTOVAO",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 7945,
                    "nome": "BONFIM",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7946,
                    "nome": "PELOTAS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 7947,
                    "nome": "CATUIPE",
                    "municipio": "CATUIPE"
                },
                {
                    "id": 7948,
                    "nome": "CAPAO DA CANOA",
                    "municipio": "CAPAO DA CANOA"
                },
                {
                    "id": 7949,
                    "nome": "QUARAI",
                    "municipio": "QUARAI"
                },
                {
                    "id": 7950,
                    "nome": "REDENTORA",
                    "municipio": "REDENTORA"
                },
                {
                    "id": 7951,
                    "nome": "RIO GRANDE",
                    "municipio": "RIO GRANDE"
                },
                {
                    "id": 7952,
                    "nome": "ROQUE GONZALES",
                    "municipio": "ROQUE GONZALES"
                },
                {
                    "id": 7953,
                    "nome": "ROLANTE",
                    "municipio": "ROLANTE"
                },
                {
                    "id": 7954,
                    "nome": "SALTO DO JACUI",
                    "municipio": "SALTO DO JACUI"
                },
                {
                    "id": 7955,
                    "nome": "RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7956,
                    "nome": "RIO PARDO",
                    "municipio": "RIO PARDO"
                },
                {
                    "id": 7957,
                    "nome": "ROSARIO DO SUL",
                    "municipio": "ROSARIO DO SUL"
                },
                {
                    "id": 7958,
                    "nome": "SANTA CRUZ DO SUL",
                    "municipio": "SANTA CRUZ DO SUL"
                },
                {
                    "id": 7959,
                    "nome": "SANTA BARBARA DO SUL",
                    "municipio": "SANTA BARBARA DO SUL"
                },
                {
                    "id": 7960,
                    "nome": "BARAO",
                    "municipio": "BARAO"
                },
                {
                    "id": 7961,
                    "nome": "BAIRRO CIDADE",
                    "municipio": "SANTA CRUZ DO SUL"
                },
                {
                    "id": 7962,
                    "nome": "SANTA MARIA",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 7963,
                    "nome": "MEDIANEIRA",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 7964,
                    "nome": "NOSSA SENHORA DAS DORES",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 7965,
                    "nome": "ANA RECH",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 7966,
                    "nome": "SANTA ROSA",
                    "municipio": "SANTA ROSA"
                },
                {
                    "id": 7967,
                    "nome": "SANTA VITORIA DO PALMAR",
                    "municipio": "SANTA VITORIA DO PALMAR"
                },
                {
                    "id": 7968,
                    "nome": "CAVALHADA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7969,
                    "nome": "SANTIAGO",
                    "municipio": "SANTIAGO"
                },
                {
                    "id": 7970,
                    "nome": "CARLOS GOMES",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7971,
                    "nome": "SHOPPING PRAIA DE BELAS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7972,
                    "nome": "TANCREDO NEVES",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 7973,
                    "nome": "SANTO ANGELO",
                    "municipio": "SANTO ANGELO"
                },
                {
                    "id": 7974,
                    "nome": "SANTO ANTONIO DAS MISSOES",
                    "municipio": "SANTO ANTONIO DAS MISSOES"
                },
                {
                    "id": 7975,
                    "nome": "CAMOBI",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 7976,
                    "nome": "SAO BORJA",
                    "municipio": "SAO BORJA"
                },
                {
                    "id": 7977,
                    "nome": "SAO FRANCISCO DE ASSIS",
                    "municipio": "SAO FRANCISCO DE ASSIS"
                },
                {
                    "id": 7978,
                    "nome": "SAO GABRIEL",
                    "municipio": "SAO GABRIEL"
                },
                {
                    "id": 7979,
                    "nome": "CAMINHO DO MEIO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7980,
                    "nome": "CIDADE BAIXA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7981,
                    "nome": "SAO JERONIMO",
                    "municipio": "SAO JERONIMO"
                },
                {
                    "id": 7982,
                    "nome": "BOQUEIRAO",
                    "municipio": "CANOAS"
                },
                {
                    "id": 7983,
                    "nome": "COLISEU",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7984,
                    "nome": "SAO LEOPOLDO",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 7985,
                    "nome": "SAO MARTINHO",
                    "municipio": "SAO MARTINHO"
                },
                {
                    "id": 7986,
                    "nome": "SAO LUIZ GONZAGA",
                    "municipio": "SAO LUIZ GONZAGA"
                },
                {
                    "id": 7987,
                    "nome": "SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7988,
                    "nome": "SAO SEPE",
                    "municipio": "SAO SEPE"
                },
                {
                    "id": 7989,
                    "nome": "RIO BRANCO",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 7990,
                    "nome": "SAPIRANGA",
                    "municipio": "SAPIRANGA"
                },
                {
                    "id": 7991,
                    "nome": "SARANDI",
                    "municipio": "SARANDI"
                },
                {
                    "id": 7992,
                    "nome": "SOLEDADE",
                    "municipio": "SOLEDADE"
                },
                {
                    "id": 7993,
                    "nome": "TAPES",
                    "municipio": "TAPES"
                },
                {
                    "id": 7994,
                    "nome": "CRISTO REDENTOR",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7995,
                    "nome": "TUPANCIRETA",
                    "municipio": "TUPANCIRETA"
                },
                {
                    "id": 7996,
                    "nome": "TUBARAO",
                    "municipio": "TUBARAO"
                },
                {
                    "id": 7997,
                    "nome": "SELBACH",
                    "municipio": "SELBACH"
                },
                {
                    "id": 7998,
                    "nome": "TUCUNDUVA",
                    "municipio": "TUCUNDUVA"
                },
                {
                    "id": 7999,
                    "nome": "TAVARES",
                    "municipio": "TAVARES"
                },
                {
                    "id": 8000,
                    "nome": "TAPEJARA",
                    "municipio": "TAPEJARA"
                },
                {
                    "id": 8001,
                    "nome": "TUPARENDI",
                    "municipio": "TUPARENDI"
                },
                {
                    "id": 8002,
                    "nome": "VILA IPIRANGA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8003,
                    "nome": "URUGUAIANA",
                    "municipio": "URUGUAIANA"
                },
                {
                    "id": 8004,
                    "nome": "SCHARLAU",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 8005,
                    "nome": "VACARIA",
                    "municipio": "VACARIA"
                },
                {
                    "id": 8006,
                    "nome": "VERANOPOLIS",
                    "municipio": "VERANOPOLIS"
                },
                {
                    "id": 8007,
                    "nome": "VICENTE DUTRA",
                    "municipio": "VICENTE DUTRA"
                },
                {
                    "id": 8008,
                    "nome": "VICTOR GRAEFF",
                    "municipio": "VICTOR GRAEFF"
                },
                {
                    "id": 8009,
                    "nome": "JAGUARAO",
                    "municipio": "JAGUARAO"
                },
                {
                    "id": 8010,
                    "nome": "GLORIA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8011,
                    "nome": "FRAGATA",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 8012,
                    "nome": "TRES VENDAS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 8013,
                    "nome": "JULIO DE CASTILHOS",
                    "municipio": "JULIO DE CASTILHOS"
                },
                {
                    "id": 8014,
                    "nome": "MENINO DEUS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8015,
                    "nome": "ALECRIM",
                    "municipio": "ALECRIM"
                },
                {
                    "id": 8016,
                    "nome": "ALPESTRE",
                    "municipio": "ALPESTRE"
                },
                {
                    "id": 8017,
                    "nome": "DOM FELICIANO",
                    "municipio": "DOM FELICIANO"
                },
                {
                    "id": 8018,
                    "nome": "UNIAO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8019,
                    "nome": "ANTA GORDA",
                    "municipio": "ANTA GORDA"
                },
                {
                    "id": 8020,
                    "nome": "VILA FLORES",
                    "municipio": "VILA FLORES"
                },
                {
                    "id": 8021,
                    "nome": "KOBRASOL",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 8022,
                    "nome": "CANUDOS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 8023,
                    "nome": "BORGUETTI",
                    "municipio": "CARAZINHO"
                },
                {
                    "id": 8024,
                    "nome": "ANTONIO PRADO",
                    "municipio": "ANTONIO PRADO"
                },
                {
                    "id": 8025,
                    "nome": "ARATIBA",
                    "municipio": "ARATIBA"
                },
                {
                    "id": 8026,
                    "nome": "CERRO GRANDE DO SUL",
                    "municipio": "CERRO GRANDE DO SUL"
                },
                {
                    "id": 8027,
                    "nome": "CAPELA DE SANTANA",
                    "municipio": "CAPELA DE SANTANA"
                },
                {
                    "id": 8028,
                    "nome": "CRUZEIRO SANTA ROSA",
                    "municipio": "SANTA ROSA"
                },
                {
                    "id": 8029,
                    "nome": "SANTA MARIA DO HERVAL",
                    "municipio": "SANTA MARIA DO HERVAL"
                },
                {
                    "id": 8030,
                    "nome": "ARROIO DO MEIO",
                    "municipio": "ARROIO DO MEIO"
                },
                {
                    "id": 8031,
                    "nome": "CACIQUE DOBLE",
                    "municipio": "CACIQUE DOBLE"
                },
                {
                    "id": 8032,
                    "nome": "CAMPO NOVO",
                    "municipio": "CAMPO NOVO"
                },
                {
                    "id": 8033,
                    "nome": "CANELA",
                    "municipio": "CANELA"
                },
                {
                    "id": 8034,
                    "nome": "CANDELARIA",
                    "municipio": "CANDELARIA"
                },
                {
                    "id": 8035,
                    "nome": "CAMBARA DO SUL",
                    "municipio": "CAMBARA DO SUL"
                },
                {
                    "id": 8036,
                    "nome": "ERNESTINA",
                    "municipio": "ERNESTINA"
                },
                {
                    "id": 8037,
                    "nome": "CANDIDO GODOI",
                    "municipio": "CANDIDO GODOI"
                },
                {
                    "id": 8038,
                    "nome": "HARMONIA",
                    "municipio": "HARMONIA"
                },
                {
                    "id": 8039,
                    "nome": "NOVA PADUA",
                    "municipio": "NOVA PADUA"
                },
                {
                    "id": 8040,
                    "nome": "IMIGRANTE",
                    "municipio": "IMIGRANTE"
                },
                {
                    "id": 8041,
                    "nome": "NOVA SANTA RITA",
                    "municipio": "NOVA SANTA RITA"
                },
                {
                    "id": 8042,
                    "nome": "PAVERAMA",
                    "municipio": "PAVERAMA"
                },
                {
                    "id": 8043,
                    "nome": "PICADA CAFE",
                    "municipio": "PICADA CAFE"
                },
                {
                    "id": 8044,
                    "nome": "SAO JOAO DA URTIGA",
                    "municipio": "SAO JOAO DA URTIGA"
                },
                {
                    "id": 8045,
                    "nome": "VILA MARIA",
                    "municipio": "VILA MARIA"
                },
                {
                    "id": 8046,
                    "nome": "IMBE",
                    "municipio": "IMBE"
                },
                {
                    "id": 8047,
                    "nome": "ESTACAO",
                    "municipio": "ESTACAO"
                },
                {
                    "id": 8048,
                    "nome": "CANDIOTA",
                    "municipio": "CANDIOTA"
                },
                {
                    "id": 8049,
                    "nome": "ARROIO DO SAL",
                    "municipio": "ARROIO DO SAL"
                },
                {
                    "id": 8050,
                    "nome": "CARLOS BARBOSA",
                    "municipio": "CARLOS BARBOSA"
                },
                {
                    "id": 8051,
                    "nome": "CHAPECO",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 8052,
                    "nome": "CHAPADA",
                    "municipio": "CHAPADA"
                },
                {
                    "id": 8053,
                    "nome": "CASCA",
                    "municipio": "CASCA"
                },
                {
                    "id": 8054,
                    "nome": "CERRO BRANCO",
                    "municipio": "CERRO BRANCO"
                },
                {
                    "id": 8055,
                    "nome": "CERRO LARGO",
                    "municipio": "CERRO LARGO"
                },
                {
                    "id": 8056,
                    "nome": "CHIAPETA",
                    "municipio": "CHIAPETTA"
                },
                {
                    "id": 8057,
                    "nome": "COLORADO",
                    "municipio": "COLORADO"
                },
                {
                    "id": 8058,
                    "nome": "CHARQUEADAS",
                    "municipio": "CHARQUEADAS"
                },
                {
                    "id": 8059,
                    "nome": "CIRIACO",
                    "municipio": "CIRIACO"
                },
                {
                    "id": 8060,
                    "nome": "CRISSIUMAL",
                    "municipio": "CRISSIUMAL"
                },
                {
                    "id": 8061,
                    "nome": "CONSTANTINA",
                    "municipio": "CONSTANTINA"
                },
                {
                    "id": 8062,
                    "nome": "ENCANTADO",
                    "municipio": "ENCANTADO"
                },
                {
                    "id": 8063,
                    "nome": "CORONEL BICACO",
                    "municipio": "CORONEL BICACO"
                },
                {
                    "id": 8064,
                    "nome": "CENTRO ADMINISTRATIVO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8065,
                    "nome": "ERVAL SECO",
                    "municipio": "ERVAL SECO"
                },
                {
                    "id": 8066,
                    "nome": "EREBANGO",
                    "municipio": "EREBANGO"
                },
                {
                    "id": 8067,
                    "nome": "Ag�ncia 6",
                    "municipio": ""
                },
                {
                    "id": 8068,
                    "nome": "NAVEGANTES",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8069,
                    "nome": "ESMERALDA",
                    "municipio": "ESMERALDA"
                },
                {
                    "id": 8070,
                    "nome": "CIDREIRA",
                    "municipio": "CIDREIRA"
                },
                {
                    "id": 8071,
                    "nome": "SEGREDO",
                    "municipio": "SEGREDO"
                },
                {
                    "id": 8072,
                    "nome": "ESPUMOSO",
                    "municipio": "ESPUMOSO"
                },
                {
                    "id": 8073,
                    "nome": "PIO X",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 8074,
                    "nome": "PATRIA NOVA",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 8075,
                    "nome": "ESTANCIA VELHA",
                    "municipio": "ESTANCIA VELHA"
                },
                {
                    "id": 8076,
                    "nome": "CRISTAL",
                    "municipio": "CRISTAL"
                },
                {
                    "id": 8077,
                    "nome": "FAXINAL DO SOTURNO",
                    "municipio": "FAXINAL DO SOTURNO"
                },
                {
                    "id": 8078,
                    "nome": "FELIZ",
                    "municipio": "FELIZ"
                },
                {
                    "id": 8079,
                    "nome": "MAXIMILIANO DE ALMEIDA",
                    "municipio": "MAXIMILIANO DE ALMEIDA"
                },
                {
                    "id": 8080,
                    "nome": "CAICARA",
                    "municipio": "CAICARA"
                },
                {
                    "id": 8081,
                    "nome": "OTAVIO ROCHA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8082,
                    "nome": "SAO JORGE",
                    "municipio": "SAO JORGE"
                },
                {
                    "id": 8083,
                    "nome": "PODER JUDICIARIO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8084,
                    "nome": "CAMPOS VELHO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8085,
                    "nome": "FLORES DA CUNHA",
                    "municipio": "FLORES DA CUNHA"
                },
                {
                    "id": 8086,
                    "nome": "FORMIGUEIRO",
                    "municipio": "FORMIGUEIRO"
                },
                {
                    "id": 8087,
                    "nome": "FREDERICO WESTPHALEN",
                    "municipio": "FREDERICO WESTPHALEN"
                },
                {
                    "id": 8088,
                    "nome": "GENERAL CAMARA",
                    "municipio": "GENERAL CAMARA"
                },
                {
                    "id": 8089,
                    "nome": "GETULIO VARGAS",
                    "municipio": "GETULIO VARGAS"
                },
                {
                    "id": 8090,
                    "nome": "XANGRI-LA",
                    "municipio": "XANGRI-LA"
                },
                {
                    "id": 8091,
                    "nome": "PINHAL GRANDE",
                    "municipio": "PINHAL GRANDE"
                },
                {
                    "id": 8092,
                    "nome": "GIRUA",
                    "municipio": "GIRUA"
                },
                {
                    "id": 8093,
                    "nome": "GRAMADO",
                    "municipio": "GRAMADO"
                },
                {
                    "id": 8094,
                    "nome": "NOIVA DO MAR",
                    "municipio": "RIO GRANDE"
                },
                {
                    "id": 8095,
                    "nome": "GRAVATAI",
                    "municipio": "GRAVATAI"
                },
                {
                    "id": 8096,
                    "nome": "SEBERI",
                    "municipio": "SEBERI"
                },
                {
                    "id": 8097,
                    "nome": "GUAPORE",
                    "municipio": "GUAPORE"
                },
                {
                    "id": 8098,
                    "nome": "IP�",
                    "municipio": "IPE"
                },
                {
                    "id": 8099,
                    "nome": "SAO JOSE DO HORTENCIO",
                    "municipio": "SAO JOSE DO HORTENCIO"
                },
                {
                    "id": 8100,
                    "nome": "GUARANI DAS MISSOES",
                    "municipio": "GUARANI DAS MISSOES"
                },
                {
                    "id": 8101,
                    "nome": "AMETISTA DO SUL",
                    "municipio": "AMETISTA DO SUL"
                },
                {
                    "id": 8102,
                    "nome": "AMARAL FERRADOR",
                    "municipio": "AMARAL FERRADOR"
                },
                {
                    "id": 8103,
                    "nome": "HERVAL",
                    "municipio": "HERVAL"
                },
                {
                    "id": 8104,
                    "nome": "ERVAL GRANDE",
                    "municipio": "ERVAL GRANDE"
                },
                {
                    "id": 8105,
                    "nome": "HORIZONTINA",
                    "municipio": "HORIZONTINA"
                },
                {
                    "id": 8106,
                    "nome": "IBIRAIARAS",
                    "municipio": "IBIRAIARAS"
                },
                {
                    "id": 8107,
                    "nome": "IBIRUBA",
                    "municipio": "IBIRUBA"
                },
                {
                    "id": 8108,
                    "nome": "IGREJINHA",
                    "municipio": "IGREJINHA"
                },
                {
                    "id": 8109,
                    "nome": "PASSO DA AREIA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8110,
                    "nome": "BOURBON BOULEVARD",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8111,
                    "nome": "BARRA FUNDA",
                    "municipio": "BARRA FUNDA"
                },
                {
                    "id": 8112,
                    "nome": "DOIS LAJEADOS",
                    "municipio": "DOIS LAJEADOS"
                },
                {
                    "id": 8113,
                    "nome": "CAPIVARI DO SUL",
                    "municipio": "CAPIVARI DO SUL"
                },
                {
                    "id": 8114,
                    "nome": "MANOEL VIANA",
                    "municipio": "MANOEL VIANA"
                },
                {
                    "id": 8115,
                    "nome": "MAQUINE",
                    "municipio": "MAQUINE"
                },
                {
                    "id": 8116,
                    "nome": "SEVERIANO DE ALMEIDA",
                    "municipio": "SEVERIANO DE ALMEIDA"
                },
                {
                    "id": 8117,
                    "nome": "LAVRAS DO SUL",
                    "municipio": "LAVRAS DO SUL"
                },
                {
                    "id": 8118,
                    "nome": "LIBERATO SALZANO",
                    "municipio": "LIBERATO SALZANO"
                },
                {
                    "id": 8119,
                    "nome": "MACHADINHO",
                    "municipio": "MACHADINHO"
                },
                {
                    "id": 8120,
                    "nome": "MARAU",
                    "municipio": "MARAU"
                },
                {
                    "id": 8121,
                    "nome": "MARCELINO RAMOS",
                    "municipio": "MARCELINO RAMOS"
                },
                {
                    "id": 8122,
                    "nome": "MARIANO MORO",
                    "municipio": "MARIANO MORO"
                },
                {
                    "id": 8123,
                    "nome": "RIOZINHO",
                    "municipio": "RIOZINHO"
                },
                {
                    "id": 8124,
                    "nome": "MIRAGUAI",
                    "municipio": "MIRAGUAI"
                },
                {
                    "id": 8125,
                    "nome": "TUPANDI",
                    "municipio": "TUPANDI"
                },
                {
                    "id": 8126,
                    "nome": "TRINDADE DO SUL",
                    "municipio": "TRINDADE DO SUL"
                },
                {
                    "id": 8127,
                    "nome": "PETROPOLIS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8128,
                    "nome": "MUCUM",
                    "municipio": "MUCUM"
                },
                {
                    "id": 8129,
                    "nome": "PANTANO GRANDE",
                    "municipio": "PANTANO GRANDE"
                },
                {
                    "id": 8130,
                    "nome": "NONOAI",
                    "municipio": "NONOAI"
                },
                {
                    "id": 8131,
                    "nome": "NOVA BASSANO",
                    "municipio": "NOVA BASSANO"
                },
                {
                    "id": 8132,
                    "nome": "NOVA PALMA",
                    "municipio": "NOVA PALMA"
                },
                {
                    "id": 8133,
                    "nome": "PANAMBI",
                    "municipio": "PANAMBI"
                },
                {
                    "id": 8134,
                    "nome": "PARAI",
                    "municipio": "PARAI"
                },
                {
                    "id": 8135,
                    "nome": "PEDRO OSORIO",
                    "municipio": "PEDRO OSORIO"
                },
                {
                    "id": 8136,
                    "nome": "AV.BRASIL P.FUNDO",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 8137,
                    "nome": "BAR�O DO TRIUNFO",
                    "municipio": "BARAO DO TRIUNFO"
                },
                {
                    "id": 8138,
                    "nome": "PARCAO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8139,
                    "nome": "PINHEIRO MACHADO",
                    "municipio": "PINHEIRO MACHADO"
                },
                {
                    "id": 8140,
                    "nome": "AREAL",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 8141,
                    "nome": "PIRATINI",
                    "municipio": "PIRATINI"
                },
                {
                    "id": 8142,
                    "nome": "PLANALTO",
                    "municipio": "PLANALTO"
                },
                {
                    "id": 8143,
                    "nome": "PORTO XAVIER",
                    "municipio": "PORTO XAVIER"
                },
                {
                    "id": 8144,
                    "nome": "VIAMOPOLIS",
                    "municipio": "VIAMAO"
                },
                {
                    "id": 8145,
                    "nome": "PORTAO",
                    "municipio": "PORTAO"
                },
                {
                    "id": 8146,
                    "nome": "MINAS DO LEAO",
                    "municipio": "MINAS DO LEAO"
                },
                {
                    "id": 8147,
                    "nome": "FEITORIA",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 8148,
                    "nome": "NAO ME TOQUE",
                    "municipio": "NAO-ME-TOQUE"
                },
                {
                    "id": 8149,
                    "nome": "RESTINGA SECA",
                    "municipio": "RESTINGA SECA"
                },
                {
                    "id": 8150,
                    "nome": "PAROBE",
                    "municipio": "PAROBE"
                },
                {
                    "id": 8151,
                    "nome": "RONDA ALTA",
                    "municipio": "RONDA ALTA"
                },
                {
                    "id": 8152,
                    "nome": "RODEIO BONITO",
                    "municipio": "RODEIO BONITO"
                },
                {
                    "id": 8153,
                    "nome": "RESTINGA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8154,
                    "nome": "TRES CACHOEIRAS",
                    "municipio": "TRES CACHOEIRAS"
                },
                {
                    "id": 8155,
                    "nome": "FLORESTA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8156,
                    "nome": "SAO JOAO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8157,
                    "nome": "CHUI",
                    "municipio": "CHUI"
                },
                {
                    "id": 8158,
                    "nome": "CONCORDIA",
                    "municipio": "CONCORDIA"
                },
                {
                    "id": 8159,
                    "nome": "CA�ADOR",
                    "municipio": "CACADOR"
                },
                {
                    "id": 8160,
                    "nome": "PARQUE DOS ANJOS",
                    "municipio": "GRAVATAI"
                },
                {
                    "id": 8161,
                    "nome": "SAO VENDELINO",
                    "municipio": "SAO VENDELINO"
                },
                {
                    "id": 8162,
                    "nome": "BALNEARIO CAMBORIU",
                    "municipio": "BALNEARIO CAMBORIU"
                },
                {
                    "id": 8163,
                    "nome": "SAO DOMINGOS DO SUL",
                    "municipio": "SAO DOMINGOS DO SUL"
                },
                {
                    "id": 8164,
                    "nome": "PINHEIRINHO DO VALE",
                    "municipio": "PINHEIRINHO DO VALE"
                },
                {
                    "id": 8165,
                    "nome": "SAO NICOLAU",
                    "municipio": "SAO NICOLAU"
                },
                {
                    "id": 8166,
                    "nome": "SAPUCAIA DO SUL",
                    "municipio": "SAPUCAIA DO SUL"
                },
                {
                    "id": 8167,
                    "nome": "TERESOPOLIS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8168,
                    "nome": "SANANDUVA",
                    "municipio": "SANANDUVA"
                },
                {
                    "id": 8169,
                    "nome": "SANTANA DA BOA VISTA",
                    "municipio": "SANTANA DA BOA VISTA"
                },
                {
                    "id": 8170,
                    "nome": "SANTO ANTONIO DA PATRULHA",
                    "municipio": "SANTO ANTONIO DA PATRULHA"
                },
                {
                    "id": 8171,
                    "nome": "UNIVERSIDADE DE CAXIAS DO SUL",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 8172,
                    "nome": "SANTO AUGUSTO",
                    "municipio": "SANTO AUGUSTO"
                },
                {
                    "id": 8173,
                    "nome": "LAGES",
                    "municipio": "LAGES"
                },
                {
                    "id": 8174,
                    "nome": "NOVA ESPERAN�A DO SUL",
                    "municipio": "NOVA ESPERANCA DO SUL"
                },
                {
                    "id": 8175,
                    "nome": "FAZENDA SOUZA CAXIAS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 8176,
                    "nome": "JOA�ABA",
                    "municipio": "JOACABA"
                },
                {
                    "id": 8177,
                    "nome": "AVENIDA BALTAZAR O. GARCIA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8178,
                    "nome": "SERT�O",
                    "municipio": "SERTAO"
                },
                {
                    "id": 8179,
                    "nome": "PAL�CIO DA POLICIA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8180,
                    "nome": "BORGES DE MEDEIROS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8181,
                    "nome": "DUQUE DE CAXIAS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8182,
                    "nome": "BENJAMIN CONSTANT",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8183,
                    "nome": "AVENIDA PROTASIO ALVES",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8184,
                    "nome": "BEIRA RIO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8185,
                    "nome": "REDENCAO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8186,
                    "nome": "TRISTEZA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8187,
                    "nome": "SANTO CRISTO",
                    "municipio": "SANTO CRISTO"
                },
                {
                    "id": 8188,
                    "nome": "WENCESLAU ESCOBAR",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8189,
                    "nome": "UNIVERSITARIA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8190,
                    "nome": "SAO JOSE DO NORTE",
                    "municipio": "SAO JOSE DO NORTE"
                },
                {
                    "id": 8191,
                    "nome": "SAO JOSE DO OURO",
                    "municipio": "SAO JOSE DO OURO"
                },
                {
                    "id": 8192,
                    "nome": "CAMPINA DAS MISSOES",
                    "municipio": "CAMPINA DAS MISSOES"
                },
                {
                    "id": 8193,
                    "nome": "SAO LOURENCO DO SUL",
                    "municipio": "SAO LOURENCO DO SUL"
                },
                {
                    "id": 8194,
                    "nome": "QUINZE DE JANEIRO",
                    "municipio": "CANOAS"
                },
                {
                    "id": 8195,
                    "nome": "ALFREDO CHAVES",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 8196,
                    "nome": "CAPUCHINHOS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 8197,
                    "nome": "ELDORADO DO SUL",
                    "municipio": "ELDORADO DO SUL"
                },
                {
                    "id": 8198,
                    "nome": "ENTRE RIOS DO SUL",
                    "municipio": "ENTRE RIOS DO SUL"
                },
                {
                    "id": 8199,
                    "nome": "SAO MARCOS",
                    "municipio": "SAO MARCOS"
                },
                {
                    "id": 8200,
                    "nome": "SAO PAULO DAS MISSOES",
                    "municipio": "SAO PAULO DAS MISSOES"
                },
                {
                    "id": 8201,
                    "nome": "SAO SEBASTIAO DO CAI",
                    "municipio": "SAO SEBASTIAO DO CAI"
                },
                {
                    "id": 8202,
                    "nome": "SAO PEDRO DO SUL",
                    "municipio": "SAO PEDRO DO SUL"
                },
                {
                    "id": 8203,
                    "nome": "SAO VICENTE DO SUL",
                    "municipio": "SAO VICENTE DO SUL"
                },
                {
                    "id": 8204,
                    "nome": "VILA BRANCA",
                    "municipio": "GRAVATAI"
                },
                {
                    "id": 8205,
                    "nome": "SERAFINA CORREA",
                    "municipio": "SERAFINA CORREA"
                },
                {
                    "id": 8206,
                    "nome": "TERRA DE AREIA",
                    "municipio": "TERRA DE AREIA"
                },
                {
                    "id": 8207,
                    "nome": "ILOPOLIS",
                    "municipio": "ILOPOLIS"
                },
                {
                    "id": 8208,
                    "nome": "IRAI",
                    "municipio": "IRAI"
                },
                {
                    "id": 8209,
                    "nome": "SANTO INACIO DE LOYOLLA",
                    "municipio": "LAJEADO"
                },
                {
                    "id": 8210,
                    "nome": "SILVEIRA MARTINS",
                    "municipio": "SILVEIRA MARTINS"
                },
                {
                    "id": 8211,
                    "nome": "SINIMBU",
                    "municipio": "SINIMBU"
                },
                {
                    "id": 8212,
                    "nome": "SOBRADINHO",
                    "municipio": "SOBRADINHO"
                },
                {
                    "id": 8213,
                    "nome": "NOVA ARACA",
                    "municipio": "NOVA ARACA"
                },
                {
                    "id": 8214,
                    "nome": "NOVA BRESCIA",
                    "municipio": "NOVA BRESCIA"
                },
                {
                    "id": 8215,
                    "nome": "AVENIDA GENERAL NETO",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 8216,
                    "nome": "QUINZE DE NOVEMBRO",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 8217,
                    "nome": "PUTINGA",
                    "municipio": "PUTINGA"
                },
                {
                    "id": 8218,
                    "nome": "SALVADOR DO SUL",
                    "municipio": "SALVADOR DO SUL"
                },
                {
                    "id": 8219,
                    "nome": "RUA DOUTOR BOZANO",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 8220,
                    "nome": "SAO FRANCISCO DE PAULA",
                    "municipio": "SAO FRANCISCO DE PAULA"
                },
                {
                    "id": 8221,
                    "nome": "TAPERA",
                    "municipio": "TAPERA"
                },
                {
                    "id": 8222,
                    "nome": "TAQUARA",
                    "municipio": "TAQUARA"
                },
                {
                    "id": 8223,
                    "nome": "TENENTE PORTELA",
                    "municipio": "TENENTE PORTELA"
                },
                {
                    "id": 8224,
                    "nome": "TRAMANDAI",
                    "municipio": "TRAMANDAI"
                },
                {
                    "id": 8225,
                    "nome": "TRES DE MAIO",
                    "municipio": "TRES DE MAIO"
                },
                {
                    "id": 8226,
                    "nome": "TRES PASSOS",
                    "municipio": "TRES PASSOS"
                },
                {
                    "id": 8227,
                    "nome": "TEUTONIA",
                    "municipio": "TEUTONIA"
                },
                {
                    "id": 8228,
                    "nome": "TRES COROAS",
                    "municipio": "TRES COROAS"
                },
                {
                    "id": 8229,
                    "nome": "TRIUNFO",
                    "municipio": "TRIUNFO"
                },
                {
                    "id": 8230,
                    "nome": "TAQUARI",
                    "municipio": "TAQUARI"
                },
                {
                    "id": 8231,
                    "nome": "TRES ARROIOS",
                    "municipio": "TRES ARROIOS"
                },
                {
                    "id": 8232,
                    "nome": "TORRES",
                    "municipio": "TORRES"
                },
                {
                    "id": 8233,
                    "nome": "VENANCIO AIRES",
                    "municipio": "VENANCIO AIRES"
                },
                {
                    "id": 8234,
                    "nome": "FONTOURA  XAVIER",
                    "municipio": "FONTOURA XAVIER"
                },
                {
                    "id": 8235,
                    "nome": "VERA CRUZ",
                    "municipio": "VERA CRUZ"
                },
                {
                    "id": 8236,
                    "nome": "VIADUTOS",
                    "municipio": "VIADUTOS"
                },
                {
                    "id": 8237,
                    "nome": "EUGENIO DE CASTRO",
                    "municipio": "EUGENIO DE CASTRO"
                },
                {
                    "id": 8238,
                    "nome": "VIAMAO",
                    "municipio": "VIAMAO"
                },
                {
                    "id": 8239,
                    "nome": "BALNEARIO PINHAL",
                    "municipio": "BALNEARIO PINHAL"
                },
                {
                    "id": 8240,
                    "nome": "CERRITO",
                    "municipio": "CERRITO"
                },
                {
                    "id": 8241,
                    "nome": "SANTA ISABEL",
                    "municipio": "VIAMAO"
                },
                {
                    "id": 8242,
                    "nome": "ZONA NORTE CACHOEIRA",
                    "municipio": "CACHOEIRA DO SUL"
                }
            ]
        },
        {
            "id": 3,
            "banco": "4",
            "nome": "BANCO DO NORDESTE DO BRASIL S.A.",
            "agencias": [
                {
                    "id": 4299,
                    "nome": "CAMPOS SALES",
                    "municipio": "CAMPOS SALES"
                },
                {
                    "id": 4300,
                    "nome": "CURRAIS NOVOS",
                    "municipio": "CURRAIS NOVOS"
                },
                {
                    "id": 4301,
                    "nome": "CAICO",
                    "municipio": "CAICO"
                },
                {
                    "id": 4302,
                    "nome": "PRESIDENTE DUTRA",
                    "municipio": "PRESIDENTE DUTRA"
                },
                {
                    "id": 4303,
                    "nome": "SANTA INES",
                    "municipio": "SANTA INES"
                },
                {
                    "id": 4304,
                    "nome": "SENHOR DO BONFIM",
                    "municipio": "SENHOR DO BONFIM"
                },
                {
                    "id": 4305,
                    "nome": "GRANJA",
                    "municipio": "GRANJA"
                },
                {
                    "id": 4306,
                    "nome": "BACABAL",
                    "municipio": "BACABAL"
                },
                {
                    "id": 4307,
                    "nome": "BARRA DO CORDA",
                    "municipio": "BARRA DO CORDA"
                },
                {
                    "id": 4308,
                    "nome": "CHAPADINHA",
                    "municipio": "CHAPADINHA"
                },
                {
                    "id": 4309,
                    "nome": "MONTALVANIA",
                    "municipio": "MONTALVANIA"
                },
                {
                    "id": 4310,
                    "nome": "CARIRA",
                    "municipio": "CARIRA"
                },
                {
                    "id": 4311,
                    "nome": "UNIAO DOS PALMARES",
                    "municipio": "UNIAO DOS PALMARES"
                },
                {
                    "id": 4312,
                    "nome": "SERRA TALHADA",
                    "municipio": "SERRA TALHADA"
                },
                {
                    "id": 4313,
                    "nome": "APODI",
                    "municipio": "APODI"
                },
                {
                    "id": 4314,
                    "nome": "MOMBACA",
                    "municipio": "MOMBACA"
                },
                {
                    "id": 4315,
                    "nome": "BREJO SANTO",
                    "municipio": "BREJO SANTO"
                },
                {
                    "id": 4316,
                    "nome": "ACU",
                    "municipio": "ACU"
                },
                {
                    "id": 4317,
                    "nome": "ITABAIANA",
                    "municipio": "ITABAIANA"
                },
                {
                    "id": 4318,
                    "nome": "MUNDO NOVO",
                    "municipio": "MUNDO NOVO"
                },
                {
                    "id": 4319,
                    "nome": "VITORIA DE STO ANTAO",
                    "municipio": "VITORIA DE SANTO ANTAO"
                },
                {
                    "id": 4320,
                    "nome": "ITAPIPOCA",
                    "municipio": "ITAPIPOCA"
                },
                {
                    "id": 4321,
                    "nome": "CATOLE DO ROCHA",
                    "municipio": "CATOLE DO ROCHA"
                },
                {
                    "id": 4322,
                    "nome": "PAULISTA",
                    "municipio": "PAULISTA"
                },
                {
                    "id": 4323,
                    "nome": "STA MARIA DA VITORIA",
                    "municipio": "SANTA MARIA DA VITORIA"
                },
                {
                    "id": 4324,
                    "nome": "GOIANA",
                    "municipio": "GOIANA"
                },
                {
                    "id": 4325,
                    "nome": "AGUA BRANCA",
                    "municipio": "AGUA BRANCA"
                },
                {
                    "id": 4326,
                    "nome": "CRATO",
                    "municipio": "CRATO"
                },
                {
                    "id": 4327,
                    "nome": "PIRIPIRI",
                    "municipio": "PIRIPIRI"
                },
                {
                    "id": 4328,
                    "nome": "SANTO ANTONIO DE JESUS",
                    "municipio": "SANTO ANTONIO DE JESUS"
                },
                {
                    "id": 4329,
                    "nome": "CODO",
                    "municipio": "CODO"
                },
                {
                    "id": 4330,
                    "nome": "PEDREIRAS",
                    "municipio": "PEDREIRAS"
                },
                {
                    "id": 4331,
                    "nome": "ESTANCIA",
                    "municipio": "ESTANCIA"
                },
                {
                    "id": 4332,
                    "nome": "CICERO DANTAS",
                    "municipio": "CICERO DANTAS"
                },
                {
                    "id": 4333,
                    "nome": "TIMBAUBA",
                    "municipio": "TIMBAUBA"
                },
                {
                    "id": 4334,
                    "nome": "BELO HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 4335,
                    "nome": "JACOBINA",
                    "municipio": "JACOBINA"
                },
                {
                    "id": 4336,
                    "nome": "TIANGUA",
                    "municipio": "TIANGUA"
                },
                {
                    "id": 4337,
                    "nome": "NOSSA SENHORA DA GLORIA",
                    "municipio": "NOSSA SENHORA DA GLORIA"
                },
                {
                    "id": 4338,
                    "nome": "QUIXADA",
                    "municipio": "QUIXADA"
                },
                {
                    "id": 4339,
                    "nome": "JUAZEIRO",
                    "municipio": "JUAZEIRO"
                },
                {
                    "id": 4340,
                    "nome": "BOM JESUS",
                    "municipio": "BOM JESUS"
                },
                {
                    "id": 4341,
                    "nome": "BALSAS",
                    "municipio": "BALSAS"
                },
                {
                    "id": 4342,
                    "nome": "FEIRA DE SANTANA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 4343,
                    "nome": "JANAUBA",
                    "municipio": "JANAUBA"
                },
                {
                    "id": 4344,
                    "nome": "SUME",
                    "municipio": "SUME"
                },
                {
                    "id": 4345,
                    "nome": "CAMACARI",
                    "municipio": "CAMACARI"
                },
                {
                    "id": 4346,
                    "nome": "MEDEIROS NETO",
                    "municipio": "MEDEIROS NETO"
                },
                {
                    "id": 4347,
                    "nome": "CORRENTINA",
                    "municipio": "CORRENTINA"
                },
                {
                    "id": 4348,
                    "nome": "ARACATI",
                    "municipio": "ARACATI"
                },
                {
                    "id": 4349,
                    "nome": "LAGARTO",
                    "municipio": "LAGARTO"
                },
                {
                    "id": 4350,
                    "nome": "ZE DOCA",
                    "municipio": "ZE DOCA"
                },
                {
                    "id": 4351,
                    "nome": "FLORESTA",
                    "municipio": "FLORESTA"
                },
                {
                    "id": 4352,
                    "nome": "ARARIPINA",
                    "municipio": "ARARIPINA"
                },
                {
                    "id": 4353,
                    "nome": "ANDARAI",
                    "municipio": "ANDARAI"
                },
                {
                    "id": 4354,
                    "nome": "FORTALEZA-ALDEOTA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 4355,
                    "nome": "BOA VIAGEM",
                    "municipio": "BOA VIAGEM"
                },
                {
                    "id": 4356,
                    "nome": "BOM JESUS DA LAPA",
                    "municipio": "BOM JESUS DA LAPA"
                },
                {
                    "id": 4357,
                    "nome": "BOQUIM",
                    "municipio": "BOQUIM"
                },
                {
                    "id": 4358,
                    "nome": "CAMACAN",
                    "municipio": "CAMACAN"
                },
                {
                    "id": 4359,
                    "nome": "ESPERANTINA",
                    "municipio": "ESPERANTINA"
                },
                {
                    "id": 4360,
                    "nome": "FORTALEZA CENTRO",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 4361,
                    "nome": "ILHEUS",
                    "municipio": "ILHEUS"
                },
                {
                    "id": 4362,
                    "nome": "LARANJEIRAS",
                    "municipio": "LARANJEIRAS"
                },
                {
                    "id": 4363,
                    "nome": "PAULO AFONSO",
                    "municipio": "PAULO AFONSO"
                },
                {
                    "id": 4364,
                    "nome": "POMBAL",
                    "municipio": "POMBAL"
                },
                {
                    "id": 4365,
                    "nome": "SANTANA DO IPANEMA",
                    "municipio": "SANTANA DO IPANEMA"
                },
                {
                    "id": 4366,
                    "nome": "ACAILANDIA",
                    "municipio": "ACAILANDIA"
                },
                {
                    "id": 4367,
                    "nome": "IPIAU",
                    "municipio": "IPIAU"
                },
                {
                    "id": 4368,
                    "nome": "GARANHUNS",
                    "municipio": "GARANHUNS"
                },
                {
                    "id": 4369,
                    "nome": "NEOPOLIS",
                    "municipio": "NEOPOLIS"
                },
                {
                    "id": 4370,
                    "nome": "SAPE",
                    "municipio": "SAPE"
                },
                {
                    "id": 4371,
                    "nome": "TEIXEIRA DE FREITAS",
                    "municipio": "TEIXEIRA DE FREITAS"
                },
                {
                    "id": 4372,
                    "nome": "EUNAPOLIS",
                    "municipio": "EUNAPOLIS"
                },
                {
                    "id": 4373,
                    "nome": "PAULISTANA",
                    "municipio": "PAULISTANA"
                },
                {
                    "id": 4374,
                    "nome": "GARARU",
                    "municipio": "GARARU"
                },
                {
                    "id": 4375,
                    "nome": "ARACAJU SIQUEIRA CAMPOS",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 4376,
                    "nome": "SALVADOR-BARRA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 4377,
                    "nome": "FORTALEZA-BEZERRA DE MENEZES",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 4378,
                    "nome": "NATAL-PRUDENTE DE MORAIS",
                    "municipio": "NATAL"
                },
                {
                    "id": 4379,
                    "nome": "JOAO PESSOA-EPIT�CIO PESSOA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 4380,
                    "nome": "MARACANA�",
                    "municipio": "MARACANAU"
                },
                {
                    "id": 4381,
                    "nome": "SALVADOR PITUBA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 4382,
                    "nome": "FORTALEZA-MONTESE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 4383,
                    "nome": "GUANAMBI",
                    "municipio": "GUANAMBI"
                },
                {
                    "id": 4384,
                    "nome": "MACEI�-FAROL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 4385,
                    "nome": "RECIFE-DOMINGOS FERREIRA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 4386,
                    "nome": "SAO LUIS-RENASCEN�A",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 4387,
                    "nome": "TERESINA JOAO XXIII",
                    "municipio": "TERESINA"
                },
                {
                    "id": 4388,
                    "nome": "PINHEIRO",
                    "municipio": "PINHEIRO"
                },
                {
                    "id": 4389,
                    "nome": "LUIS EDUARDO MAGALH�ES",
                    "municipio": "LUIS EDUARDO MAGALHAES"
                },
                {
                    "id": 4390,
                    "nome": "CAPELINHA",
                    "municipio": "CAPELINHA"
                },
                {
                    "id": 4391,
                    "nome": "COLATINA",
                    "municipio": "COLATINA"
                },
                {
                    "id": 4392,
                    "nome": "TE�FILO OTONI",
                    "municipio": "TEOFILO OTONI"
                },
                {
                    "id": 4393,
                    "nome": "ALAGOA GRANDE",
                    "municipio": "ALAGOA GRANDE"
                },
                {
                    "id": 4394,
                    "nome": "GUARABIRA",
                    "municipio": "GUARABIRA"
                },
                {
                    "id": 4395,
                    "nome": "LINHARES",
                    "municipio": "LINHARES"
                },
                {
                    "id": 4396,
                    "nome": "IGUATU",
                    "municipio": "IGUATU"
                },
                {
                    "id": 4397,
                    "nome": "URUCUI",
                    "municipio": "URUCUI"
                },
                {
                    "id": 4398,
                    "nome": "VALENCA",
                    "municipio": "VALENCA"
                },
                {
                    "id": 4399,
                    "nome": "CONCEI��O DO COIT�",
                    "municipio": "CONCEICAO DO COITE"
                },
                {
                    "id": 4400,
                    "nome": "S�O JO�O DO PIAU�",
                    "municipio": "SAO JOAO DO PIAUI"
                },
                {
                    "id": 4401,
                    "nome": "PARNAMIRIM - RN",
                    "municipio": "PARNAMIRIM"
                },
                {
                    "id": 4402,
                    "nome": "PORTO FRANCO - MA",
                    "municipio": "PORTO FRANCO"
                },
                {
                    "id": 4403,
                    "nome": "ALMENARA",
                    "municipio": "ALMENARA"
                },
                {
                    "id": 4404,
                    "nome": "CAUCAIA",
                    "municipio": "CAUCAIA"
                },
                {
                    "id": 4405,
                    "nome": "NOVA VEN�CIA",
                    "municipio": "NOVA VENECIA"
                },
                {
                    "id": 4406,
                    "nome": "IRECE",
                    "municipio": "IRECE"
                },
                {
                    "id": 4407,
                    "nome": "S�O MATEUS",
                    "municipio": "SAO MATEUS"
                },
                {
                    "id": 4408,
                    "nome": "Ag�ncia 2208",
                    "municipio": ""
                },
                {
                    "id": 4409,
                    "nome": "S�O MIGUEL DOS CAMPOS",
                    "municipio": "SAO MIGUEL DOS CAMPOS"
                },
                {
                    "id": 4410,
                    "nome": "TIMON",
                    "municipio": "TIMON"
                },
                {
                    "id": 4411,
                    "nome": "JO�O PESSOA CIDADE UNIVERSIT�RIA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 4412,
                    "nome": "SANTA RITA",
                    "municipio": "SANTA RITA"
                },
                {
                    "id": 4413,
                    "nome": "PACAJUS",
                    "municipio": "PACAJUS"
                },
                {
                    "id": 4414,
                    "nome": "FORTALEZA WASHINGTON SOARES",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 4415,
                    "nome": "MACEI� ANTARES",
                    "municipio": "MACEIO"
                },
                {
                    "id": 4416,
                    "nome": "ITAPORANGA",
                    "municipio": "ITAPORANGA"
                },
                {
                    "id": 4417,
                    "nome": "ACOPIARA",
                    "municipio": "ACOPIARA"
                },
                {
                    "id": 4418,
                    "nome": "BARBALHA",
                    "municipio": "BARBALHA"
                },
                {
                    "id": 4419,
                    "nome": "JABOAT�O DOS GUARARAPES",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 4420,
                    "nome": "CAMARAGIBE",
                    "municipio": "CAMARAGIBE"
                },
                {
                    "id": 4421,
                    "nome": "ARACAJU JARDINS",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 4422,
                    "nome": "CEARA- MIRIM",
                    "municipio": "CEARA-MIRIM"
                },
                {
                    "id": 4423,
                    "nome": "OLINDA",
                    "municipio": "OLINDA"
                },
                {
                    "id": 4424,
                    "nome": "PALMARES",
                    "municipio": "PALMARES"
                },
                {
                    "id": 4425,
                    "nome": "JAGUARIBE",
                    "municipio": "JAGUARIBE"
                },
                {
                    "id": 4426,
                    "nome": "S�O LUIS S�O CRIST�V�O",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 4427,
                    "nome": "GRAJA�",
                    "municipio": "GRAJAU"
                },
                {
                    "id": 4428,
                    "nome": "SANTA LUZIA",
                    "municipio": "SANTA LUZIA"
                },
                {
                    "id": 4429,
                    "nome": "SEABRA",
                    "municipio": "SEABRA"
                },
                {
                    "id": 4430,
                    "nome": "CRUZ DAS ALMAS",
                    "municipio": "CRUZ DAS ALMAS"
                },
                {
                    "id": 4431,
                    "nome": "CARPINA",
                    "municipio": "CARPINA"
                },
                {
                    "id": 4432,
                    "nome": "TERESINA DIRCEU",
                    "municipio": "TERESINA"
                },
                {
                    "id": 4433,
                    "nome": "BRUMADO",
                    "municipio": "BRUMADO"
                },
                {
                    "id": 4434,
                    "nome": "NATAL ROBERTO FREIRE",
                    "municipio": "NATAL"
                },
                {
                    "id": 4435,
                    "nome": "SALVADOR TANCREDO NEVES",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 4436,
                    "nome": "JANUARIA",
                    "municipio": "JANUARIA"
                },
                {
                    "id": 4437,
                    "nome": "PORTO SEGURO",
                    "municipio": "PORTO SEGURO"
                },
                {
                    "id": 4438,
                    "nome": "S�O JOS� DE RIBAMAR - MA",
                    "municipio": "SAO JOSE DE RIBAMAR"
                },
                {
                    "id": 4439,
                    "nome": "ARINOS",
                    "municipio": "ARINOS"
                },
                {
                    "id": 4440,
                    "nome": "DIAMANTINA",
                    "municipio": "DIAMANTINA"
                },
                {
                    "id": 4441,
                    "nome": "NOSSA SENHORA DO SOCORRO",
                    "municipio": "NOSSA SENHORA DO SOCORRO"
                },
                {
                    "id": 4442,
                    "nome": "MACAIBA",
                    "municipio": "MACAIBA"
                },
                {
                    "id": 4443,
                    "nome": "ARCOVERDE",
                    "municipio": "ARCOVERDE"
                },
                {
                    "id": 4444,
                    "nome": "JARDIM DO SERIDO",
                    "municipio": "JARDIM DO SERIDO"
                },
                {
                    "id": 4445,
                    "nome": "SAO FRANCISCO",
                    "municipio": "SAO FRANCISCO"
                },
                {
                    "id": 4446,
                    "nome": "IPIR�",
                    "municipio": "IPIRA"
                },
                {
                    "id": 4447,
                    "nome": "SANTO AMARO",
                    "municipio": "SANTO AMARO"
                },
                {
                    "id": 4448,
                    "nome": "ACARAU",
                    "municipio": "ACARAU"
                },
                {
                    "id": 4449,
                    "nome": "MARANGUAPE",
                    "municipio": "MARANGUAPE"
                },
                {
                    "id": 4450,
                    "nome": "S�O GON�ALO DO AMARANTE",
                    "municipio": "SAO GONCALO DO AMARANTE"
                },
                {
                    "id": 4451,
                    "nome": "HORIZONTE",
                    "municipio": "HORIZONTE"
                },
                {
                    "id": 4452,
                    "nome": "VICOSA DO CEARA",
                    "municipio": "VICOSA DO CEARA"
                },
                {
                    "id": 4453,
                    "nome": "UMARIZAL",
                    "municipio": "UMARIZAL"
                },
                {
                    "id": 4454,
                    "nome": "JEQUIE",
                    "municipio": "JEQUIE"
                },
                {
                    "id": 4455,
                    "nome": "SAO LOURENCO DA MATA",
                    "municipio": "SAO LOURENCO DA MATA"
                },
                {
                    "id": 4456,
                    "nome": "MORENO",
                    "municipio": "MORENO"
                },
                {
                    "id": 4457,
                    "nome": "SANTA CRUZ DO CAPIBARIBE",
                    "municipio": "SANTA CRUZ DO CAPIBARIBE"
                },
                {
                    "id": 4458,
                    "nome": "RECIFE CASA FORTE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 4459,
                    "nome": "SAO BENTO DO UNA",
                    "municipio": "SAO BENTO DO UNA"
                },
                {
                    "id": 4460,
                    "nome": "GRAVAT�",
                    "municipio": "GRAVATA"
                },
                {
                    "id": 4461,
                    "nome": "TUTOIA",
                    "municipio": "TUTOIA"
                },
                {
                    "id": 4462,
                    "nome": "PACO DO LUMIAR",
                    "municipio": "PACO DO LUMIAR"
                },
                {
                    "id": 4463,
                    "nome": "RIO LARGO",
                    "municipio": "RIO LARGO"
                },
                {
                    "id": 4464,
                    "nome": "JOAO PESSOA CENTRO",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 4465,
                    "nome": "MARAGOGI",
                    "municipio": "MARAGOGI"
                },
                {
                    "id": 4466,
                    "nome": "DELMIRO GOUVEIA",
                    "municipio": "DELMIRO GOUVEIA"
                },
                {
                    "id": 4467,
                    "nome": "CORURIPE",
                    "municipio": "CORURIPE"
                },
                {
                    "id": 4468,
                    "nome": "IBOTIRAMA",
                    "municipio": "IBOTIRAMA"
                },
                {
                    "id": 4469,
                    "nome": "JAGUAQUARA",
                    "municipio": "JAGUAQUARA"
                },
                {
                    "id": 4470,
                    "nome": "CAMPO FORMOSO",
                    "municipio": "CAMPO FORMOSO"
                },
                {
                    "id": 4471,
                    "nome": "CASA NOVA",
                    "municipio": "CASA NOVA"
                },
                {
                    "id": 4472,
                    "nome": "XIQUE-XIQUE",
                    "municipio": "XIQUE-XIQUE"
                },
                {
                    "id": 4473,
                    "nome": "MONTE SANTO",
                    "municipio": "MONTE SANTO"
                },
                {
                    "id": 4474,
                    "nome": "TUCANO",
                    "municipio": "TUCANO"
                },
                {
                    "id": 4475,
                    "nome": "JUAZEIRO DO NORTE",
                    "municipio": "JUAZEIRO DO NORTE"
                },
                {
                    "id": 4476,
                    "nome": "COLINAS",
                    "municipio": "COLINAS"
                },
                {
                    "id": 4477,
                    "nome": "GOVERNADOR NUNES FREIRE",
                    "municipio": "GOVERNADOR NUNES FREIRE"
                },
                {
                    "id": 4478,
                    "nome": "SANTA QUITERIA",
                    "municipio": "SANTA QUITERIA"
                },
                {
                    "id": 4479,
                    "nome": "BAYEUX",
                    "municipio": "BAYEUX"
                },
                {
                    "id": 4480,
                    "nome": "BARREIRINHAS",
                    "municipio": "BARREIRINHAS"
                },
                {
                    "id": 4481,
                    "nome": "VIANA",
                    "municipio": "VIANA"
                },
                {
                    "id": 4482,
                    "nome": "ITAPAGE",
                    "municipio": "ITAPAGE"
                },
                {
                    "id": 4483,
                    "nome": "MORRO DO CHAPEU",
                    "municipio": "MORRO DO CHAPEU"
                },
                {
                    "id": 4484,
                    "nome": "LIMOEIRO DO NORTE",
                    "municipio": "LIMOEIRO DO NORTE"
                },
                {
                    "id": 4485,
                    "nome": "JOAO CAMARA",
                    "municipio": "JOAO CAMARA"
                },
                {
                    "id": 4486,
                    "nome": "SERRINHA",
                    "municipio": "SERRINHA"
                },
                {
                    "id": 4487,
                    "nome": "BOM CONSELHO",
                    "municipio": "BOM CONSELHO"
                },
                {
                    "id": 4488,
                    "nome": "IGARASSU",
                    "municipio": "IGARASSU"
                },
                {
                    "id": 4489,
                    "nome": "RUSSAS",
                    "municipio": "RUSSAS"
                },
                {
                    "id": 4490,
                    "nome": "IPOJUCA",
                    "municipio": "IPOJUCA"
                },
                {
                    "id": 4491,
                    "nome": "LIMOEIRO",
                    "municipio": "LIMOEIRO"
                },
                {
                    "id": 4492,
                    "nome": "BELO JARDIM",
                    "municipio": "BELO JARDIM"
                },
                {
                    "id": 4493,
                    "nome": "ESCADA",
                    "municipio": "ESCADA"
                },
                {
                    "id": 4494,
                    "nome": "MACEIO_CENTRO",
                    "municipio": "MACEIO"
                },
                {
                    "id": 4495,
                    "nome": "BARRA DA ESTIVA",
                    "municipio": "BARRA DA ESTIVA"
                },
                {
                    "id": 4496,
                    "nome": "S�O JO�O DOS PATOS",
                    "municipio": "SAO JOAO DOS PATOS"
                },
                {
                    "id": 4497,
                    "nome": "ITAPECURU MIRIM",
                    "municipio": "ITAPECURU MIRIM"
                },
                {
                    "id": 4498,
                    "nome": "EUS�BIO",
                    "municipio": "EUSEBIO"
                },
                {
                    "id": 4499,
                    "nome": "PAUDALHO",
                    "municipio": "PAUDALHO"
                },
                {
                    "id": 4500,
                    "nome": "AQUIRAZ",
                    "municipio": "AQUIRAZ"
                },
                {
                    "id": 4501,
                    "nome": "FORTALEZA PARANGABA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 4502,
                    "nome": "CABO DE SANTO AGOSTINHO",
                    "municipio": "CABO DE SANTO AGOSTINHO"
                },
                {
                    "id": 4503,
                    "nome": "MATA GRANDE",
                    "municipio": "MATA GRANDE"
                },
                {
                    "id": 4504,
                    "nome": "ABREU E LIMA",
                    "municipio": "ABREU E LIMA"
                },
                {
                    "id": 4505,
                    "nome": "EUCLIDES DA CUNHA",
                    "municipio": "EUCLIDES DA CUNHA"
                },
                {
                    "id": 4506,
                    "nome": "LAURO DE FREITASA",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 4507,
                    "nome": "DIAS D'AVILA",
                    "municipio": "DIAS D'AVILA"
                },
                {
                    "id": 4508,
                    "nome": "ARACI",
                    "municipio": "ARACI"
                },
                {
                    "id": 4509,
                    "nome": "CATU",
                    "municipio": "CATU"
                },
                {
                    "id": 4510,
                    "nome": "CANDEIAS",
                    "municipio": "CANDEIAS"
                },
                {
                    "id": 4511,
                    "nome": "CABEDELO",
                    "municipio": "CABEDELO"
                },
                {
                    "id": 4512,
                    "nome": "PICU�",
                    "municipio": "PICUI"
                },
                {
                    "id": 4513,
                    "nome": "GOIANINHA",
                    "municipio": "GOIANINHA"
                },
                {
                    "id": 4514,
                    "nome": "MOSSORO",
                    "municipio": "MOSSORO"
                },
                {
                    "id": 4515,
                    "nome": "UNIAO",
                    "municipio": "UNIAO"
                },
                {
                    "id": 4516,
                    "nome": "BOCAI�VA",
                    "municipio": "BOCAIUVA"
                },
                {
                    "id": 4517,
                    "nome": "OLHO D'AGUA DAS FLORES",
                    "municipio": "OLHO D'AGUA DAS FLORES"
                },
                {
                    "id": 4518,
                    "nome": "MONTES CLAROS",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 4519,
                    "nome": "NATAL TIROL",
                    "municipio": "NATAL"
                },
                {
                    "id": 4520,
                    "nome": "MONTEIRO",
                    "municipio": "MONTEIRO"
                },
                {
                    "id": 4521,
                    "nome": "NOVA RUSSAS",
                    "municipio": "NOVA RUSSAS"
                },
                {
                    "id": 4522,
                    "nome": "OEIRAS",
                    "municipio": "OEIRAS"
                },
                {
                    "id": 4523,
                    "nome": "PARNAIBA",
                    "municipio": "PARNAIBA"
                },
                {
                    "id": 4524,
                    "nome": "PAU DOS FERROS",
                    "municipio": "PAU DOS FERROS"
                },
                {
                    "id": 4525,
                    "nome": "ANGICOS",
                    "municipio": "ANGICOS"
                },
                {
                    "id": 4526,
                    "nome": "PESQUEIRA",
                    "municipio": "PESQUEIRA"
                },
                {
                    "id": 4527,
                    "nome": "Ag�ncia 4076",
                    "municipio": ""
                },
                {
                    "id": 4528,
                    "nome": "PETROLINA",
                    "municipio": "PETROLINA"
                },
                {
                    "id": 4529,
                    "nome": "PORTEIRINHA",
                    "municipio": "PORTEIRINHA"
                },
                {
                    "id": 4530,
                    "nome": "QUIXERAMOBIM",
                    "municipio": "QUIXERAMOBIM"
                },
                {
                    "id": 4531,
                    "nome": "RECIFE CENTRO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 4532,
                    "nome": "SALGUEIRO",
                    "municipio": "SALGUEIRO"
                },
                {
                    "id": 4533,
                    "nome": "SALVADOR-COM�RCIO",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 4534,
                    "nome": "SANTA CRUZ",
                    "municipio": "SANTA CRUZ"
                },
                {
                    "id": 4535,
                    "nome": "SAO BENEDITO",
                    "municipio": "SAO BENEDITO"
                },
                {
                    "id": 4536,
                    "nome": "S�O RAIMUNDO NONATO",
                    "municipio": "SAO RAIMUNDO NONATO"
                },
                {
                    "id": 4537,
                    "nome": "ARACAJU CENTRO",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 4538,
                    "nome": "SERTANIA",
                    "municipio": "SERTANIA"
                },
                {
                    "id": 4539,
                    "nome": "Ag�ncia 5041",
                    "municipio": ""
                },
                {
                    "id": 4540,
                    "nome": "SIMAO DIAS",
                    "municipio": "SIMAO DIAS"
                },
                {
                    "id": 4541,
                    "nome": "SOBRAL",
                    "municipio": "SOBRAL"
                },
                {
                    "id": 4542,
                    "nome": "SOUSA",
                    "municipio": "SOUSA"
                },
                {
                    "id": 4543,
                    "nome": "SURUBIM",
                    "municipio": "SURUBIM"
                },
                {
                    "id": 4544,
                    "nome": "TAUA",
                    "municipio": "TAUA"
                },
                {
                    "id": 4545,
                    "nome": "TERESINA CENTRO",
                    "municipio": "TERESINA"
                },
                {
                    "id": 4546,
                    "nome": "VALENCA DO PIAUI",
                    "municipio": "VALENCA DO PIAUI"
                },
                {
                    "id": 4547,
                    "nome": "ITABUNA",
                    "municipio": "ITABUNA"
                },
                {
                    "id": 4548,
                    "nome": "SAO LUIS CENTRO",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 4549,
                    "nome": "ARAPIRACA",
                    "municipio": "ARAPIRACA"
                },
                {
                    "id": 4550,
                    "nome": "SALINAS",
                    "municipio": "SALINAS"
                },
                {
                    "id": 4551,
                    "nome": "SANTO ANTONIO",
                    "municipio": "SANTO ANTONIO"
                },
                {
                    "id": 4552,
                    "nome": "CANINDE",
                    "municipio": "CANINDE"
                },
                {
                    "id": 4553,
                    "nome": "OURICURI",
                    "municipio": "OURICURI"
                },
                {
                    "id": 4554,
                    "nome": "Ag�ncia 630",
                    "municipio": ""
                },
                {
                    "id": 4555,
                    "nome": "RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 4556,
                    "nome": "PENEDO",
                    "municipio": "PENEDO"
                },
                {
                    "id": 4557,
                    "nome": "PATOS",
                    "municipio": "PATOS"
                },
                {
                    "id": 4558,
                    "nome": "FLORIANO",
                    "municipio": "FLORIANO"
                },
                {
                    "id": 4559,
                    "nome": "PROPRIA",
                    "municipio": "PROPRIA"
                },
                {
                    "id": 4560,
                    "nome": "BATALHA",
                    "municipio": "BATALHA"
                },
                {
                    "id": 4561,
                    "nome": "BRASILIA DE MINAS",
                    "municipio": "BRASILIA DE MINAS"
                },
                {
                    "id": 4562,
                    "nome": "SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4563,
                    "nome": "LAVRAS DA MANGABEIRA",
                    "municipio": "LAVRAS DA MANGABEIRA"
                },
                {
                    "id": 4564,
                    "nome": "VITORIA DA CONQUISTA",
                    "municipio": "VITORIA DA CONQUISTA"
                },
                {
                    "id": 4565,
                    "nome": "ITAMARAJU",
                    "municipio": "ITAMARAJU"
                },
                {
                    "id": 4566,
                    "nome": "RECIFE-AGAMENON MAGALH�ES",
                    "municipio": "RECIFE"
                },
                {
                    "id": 4567,
                    "nome": "PIRAPORA",
                    "municipio": "PIRAPORA"
                },
                {
                    "id": 4568,
                    "nome": "NOSSA SENHORA DAS DORES",
                    "municipio": "NOSSA SENHORA DAS DORES"
                },
                {
                    "id": 4569,
                    "nome": "BEZERROS",
                    "municipio": "BEZERROS"
                },
                {
                    "id": 4570,
                    "nome": "PALMEIRA DOS INDIOS",
                    "municipio": "PALMEIRA DOS INDIOS"
                },
                {
                    "id": 4571,
                    "nome": "IMPERATRIZ",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 4572,
                    "nome": "ITAPETINGA",
                    "municipio": "ITAPETINGA"
                },
                {
                    "id": 4573,
                    "nome": "ALAGOINHAS",
                    "municipio": "ALAGOINHAS"
                },
                {
                    "id": 4574,
                    "nome": "ITABERABA",
                    "municipio": "ITABERABA"
                },
                {
                    "id": 4575,
                    "nome": "MONTE AZUL",
                    "municipio": "MONTE AZUL"
                },
                {
                    "id": 4576,
                    "nome": "PICOS",
                    "municipio": "PICOS"
                },
                {
                    "id": 4577,
                    "nome": "MACAU",
                    "municipio": "MACAU"
                },
                {
                    "id": 4578,
                    "nome": "BATURITE",
                    "municipio": "BATURITE"
                },
                {
                    "id": 4579,
                    "nome": "CRATEUS",
                    "municipio": "CRATEUS"
                },
                {
                    "id": 4580,
                    "nome": "CAMPINA GRANDE",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 4581,
                    "nome": "SIM�ES FILHO",
                    "municipio": "SIMOES FILHO"
                },
                {
                    "id": 4582,
                    "nome": "CAJAZEIRAS",
                    "municipio": "CAJAZEIRAS"
                },
                {
                    "id": 4583,
                    "nome": "BARREIRAS",
                    "municipio": "BARREIRAS"
                },
                {
                    "id": 4584,
                    "nome": "CAXIAS",
                    "municipio": "CAXIAS"
                },
                {
                    "id": 4585,
                    "nome": "CORRENTE",
                    "municipio": "CORRENTE"
                },
                {
                    "id": 4586,
                    "nome": "CAMPO MAIOR",
                    "municipio": "CAMPO MAIOR"
                },
                {
                    "id": 4587,
                    "nome": "SOLANEA",
                    "municipio": "SOLANEA"
                },
                {
                    "id": 4588,
                    "nome": "TOBIAS BARRETO",
                    "municipio": "TOBIAS BARRETO"
                },
                {
                    "id": 4589,
                    "nome": "CARUARU",
                    "municipio": "CARUARU"
                }
            ]
        },
        {
            "id": 123,
            "banco": "265",
            "nome": "BANCO FATOR S.A.",
            "agencias": [
                {
                    "id": 15396,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 111,
            "banco": "224",
            "nome": "BANCO FIBRA S.A.",
            "agencias": [
                {
                    "id": 12072,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 46,
            "banco": "94",
            "nome": "BANCO FINAXIS S.A.",
            "agencias": [
                {
                    "id": 8432,
                    "nome": "AG�NCIA MATRIZ",
                    "municipio": "CURITIBA"
                }
            ]
        },
        {
            "id": 68,
            "banco": "125",
            "nome": "BANCO GENIAL S.A.",
            "agencias": [
                {
                    "id": 11993,
                    "nome": "MATRIZ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11994,
                    "nome": "AGENCIA SP",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 209,
            "banco": "390",
            "nome": "BANCO GM S.A.",
            "agencias": [
                {
                    "id": 18075,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 320,
            "banco": "612",
            "nome": "BANCO GUANABARA S.A.",
            "agencias": [
                {
                    "id": 18301,
                    "nome": "MATRIZ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18302,
                    "nome": "BANCO GUANABARA S/A",
                    "municipio": "FORTALEZA"
                }
            ]
        },
        {
            "id": 126,
            "banco": "269",
            "nome": "BANCO HSBC S.A.",
            "agencias": [
                {
                    "id": 15399,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 7,
            "banco": "12",
            "nome": "BANCO INBURSA S.A.",
            "agencias": [
                {
                    "id": 4594,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 317,
            "banco": "604",
            "nome": "BANCO INDUSTRIAL DO BRASIL S.A.",
            "agencias": [
                {
                    "id": 18290,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18291,
                    "nome": "CUIABA - MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 18292,
                    "nome": "AGENCIA BELO HORIZONTE - MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 18293,
                    "nome": "RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18294,
                    "nome": "CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 18295,
                    "nome": "CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 18296,
                    "nome": "SALVADOR",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 18297,
                    "nome": "MACAP�",
                    "municipio": "MACAPA"
                },
                {
                    "id": 18298,
                    "nome": "GOI�NIA-GO",
                    "municipio": "GOIANIA"
                }
            ]
        },
        {
            "id": 34,
            "banco": "77",
            "nome": "BANCO INTER S.A.",
            "agencias": [
                {
                    "id": 8417,
                    "nome": "MATRIZ",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 8418,
                    "nome": "OUTRAS ATIVIDADES AUXILIARES DOS SERVI�OS FINANCEI",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8419,
                    "nome": "BANCO INTERMEDIUM SA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 8420,
                    "nome": "AGENCIA S�O PAULO",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 117,
            "banco": "249",
            "nome": "BANCO INVESTCRED UNIBANCO S.A.",
            "agencias": [
                {
                    "id": 15390,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 96,
            "banco": "184",
            "nome": "BANCO ITAÚ BBA S.A.",
            "agencias": [
                {
                    "id": 12026,
                    "nome": "ITA� BBA SALVADOR",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 12027,
                    "nome": "CENTRAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12028,
                    "nome": "ITA� BBA RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12029,
                    "nome": "ITA� BBA CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 12030,
                    "nome": "ITA� BBA URURA�",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12031,
                    "nome": "ITA� BBA GOI�NIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 12032,
                    "nome": "ITA� BBA PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 12033,
                    "nome": "ITA� BBA BELO HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 12034,
                    "nome": "ITA� BBA CURITIBA",
                    "municipio": "CURITIBA"
                }
            ]
        },
        {
            "id": 16,
            "banco": "29",
            "nome": "BANCO ITAÚ CONSIGNADO S.A.",
            "agencias": [
                {
                    "id": 5016,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 279,
            "banco": "479",
            "nome": "BANCO ITAUBANK S.A.",
            "agencias": [
                {
                    "id": 18260,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 31,
            "banco": "74",
            "nome": "BANCO J. SAFRA S.A.",
            "agencias": [
                {
                    "id": 8414,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 196,
            "banco": "376",
            "nome": "BANCO J.P. MORGAN S.A.",
            "agencias": [
                {
                    "id": 18060,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18061,
                    "nome": "RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                }
            ]
        },
        {
            "id": 108,
            "banco": "217",
            "nome": "BANCO JOHN DEERE S.A.",
            "agencias": [
                {
                    "id": 12067,
                    "nome": "MATRIZ",
                    "municipio": "INDAIATUBA"
                }
            ]
        },
        {
            "id": 33,
            "banco": "76",
            "nome": "BANCO KDB DO BRASIL S.A.",
            "agencias": [
                {
                    "id": 8416,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 348,
            "banco": "757",
            "nome": "BANCO KEB HANA DO BRASIL S.A.",
            "agencias": [
                {
                    "id": 18502,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 324,
            "banco": "630",
            "nome": "BANCO LETSBANK S.A.",
            "agencias": [
                {
                    "id": 18306,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 316,
            "banco": "600",
            "nome": "BANCO LUSO BRASILEIRO S.A.",
            "agencias": [
                {
                    "id": 18289,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 82,
            "banco": "141",
            "nome": "BANCO MASTER DE INVESTIMENTO S.A.",
            "agencias": [
                {
                    "id": 12009,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 115,
            "banco": "243",
            "nome": "BANCO MASTER S/A",
            "agencias": [
                {
                    "id": 15378,
                    "nome": "MATRIZ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15379,
                    "nome": "SAO PAULO SP",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 208,
            "banco": "389",
            "nome": "BANCO MERCANTIL DO BRASIL S.A.",
            "agencias": [
                {
                    "id": 18073,
                    "nome": "MATRIZ",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 18074,
                    "nome": "PLATAFORMA EMPRESAS MG",
                    "municipio": "BELO HORIZONTE"
                }
            ]
        },
        {
            "id": 201,
            "banco": "381",
            "nome": "BANCO MERCEDES-BENZ DO BRASIL S.A.",
            "agencias": [
                {
                    "id": 18066,
                    "nome": "MATRIZ",
                    "municipio": "SAO BERNARDO DO CAMPO"
                }
            ]
        },
        {
            "id": 192,
            "banco": "370",
            "nome": "BANCO MIZUHO DO BRASIL S.A.",
            "agencias": [
                {
                    "id": 18056,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 339,
            "banco": "746",
            "nome": "BANCO MODAL S.A.",
            "agencias": [
                {
                    "id": 18448,
                    "nome": "MATRIZ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18449,
                    "nome": "SAO PAULO",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 28,
            "banco": "66",
            "nome": "BANCO MORGAN STANLEY S.A.",
            "agencias": [
                {
                    "id": 8313,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 260,
            "banco": "456",
            "nome": "BANCO MUFG BRASIL S.A.",
            "agencias": [
                {
                    "id": 18242,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 106,
            "banco": "212",
            "nome": "BANCO ORIGINAL S.A.",
            "agencias": [
                {
                    "id": 12064,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 333,
            "banco": "712",
            "nome": "BANCO OURINVEST S.A.",
            "agencias": [
                {
                    "id": 18393,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 322,
            "banco": "623",
            "nome": "BANCO PAN S.A.",
            "agencias": [
                {
                    "id": 18304,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 319,
            "banco": "611",
            "nome": "BANCO PAULISTA S.A.",
            "agencias": [
                {
                    "id": 18300,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 328,
            "banco": "643",
            "nome": "BANCO PINE S.A.",
            "agencias": [
                {
                    "id": 18332,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18333,
                    "nome": "CAMPINAS - SP",
                    "municipio": "CAMPINAS"
                }
            ]
        },
        {
            "id": 340,
            "banco": "747",
            "nome": "BANCO RABOBANK INTERNATIONAL BRASIL S.A.",
            "agencias": [
                {
                    "id": 18450,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18451,
                    "nome": "AG. CHAPAD�O DO SUL",
                    "municipio": "CHAPADAO DO SUL"
                },
                {
                    "id": 18452,
                    "nome": "AG. BRASILIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 18453,
                    "nome": "AG. BARREIRAS",
                    "municipio": "BARREIRAS"
                },
                {
                    "id": 18454,
                    "nome": "AG. ARA�ATUBA",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 18455,
                    "nome": "AG. PATOS DE MINAS",
                    "municipio": "PATOS DE MINAS"
                },
                {
                    "id": 18456,
                    "nome": "AG. BALSAS",
                    "municipio": "BALSAS"
                },
                {
                    "id": 18457,
                    "nome": "AG. QUER�NCIA",
                    "municipio": "QUERENCIA"
                },
                {
                    "id": 18458,
                    "nome": "AG. PALMAS",
                    "municipio": "PALMAS"
                },
                {
                    "id": 18459,
                    "nome": "AG�NCIA - GUARAPUAVA",
                    "municipio": "GUARAPUAVA"
                },
                {
                    "id": 18460,
                    "nome": "AG.RIBEIRAO PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 18461,
                    "nome": "AG.VARGINHA",
                    "municipio": "VARGINHA"
                },
                {
                    "id": 18462,
                    "nome": "AG. CUIABA",
                    "municipio": "CUIABA"
                },
                {
                    "id": 18463,
                    "nome": "AG. RONDON�POLIS",
                    "municipio": "RONDONOPOLIS"
                },
                {
                    "id": 18464,
                    "nome": "AG. LUCAS DO RIO VERDE",
                    "municipio": "LUCAS DO RIO VERDE"
                },
                {
                    "id": 18465,
                    "nome": "AG. TANGARA DA SERRA",
                    "municipio": "TANGARA DA SERRA"
                },
                {
                    "id": 18466,
                    "nome": "AG. UBERLANDIA",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 18467,
                    "nome": "AG. RIO VERDE",
                    "municipio": "RIO VERDE"
                }
            ]
        },
        {
            "id": 43,
            "banco": "88",
            "nome": "BANCO RANDON S.A.",
            "agencias": [
                {
                    "id": 8429,
                    "nome": "MATRIZ",
                    "municipio": "CAXIAS DO SUL"
                }
            ]
        },
        {
            "id": 325,
            "banco": "633",
            "nome": "BANCO RENDIMENTO S.A.",
            "agencias": [
                {
                    "id": 18307,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18308,
                    "nome": "RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18309,
                    "nome": "BRAS�LIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 18310,
                    "nome": "CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 18311,
                    "nome": "RIBEIR�O PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 18312,
                    "nome": "CURITIBA-PR",
                    "municipio": "CURITIBA"
                }
            ]
        },
        {
            "id": 336,
            "banco": "741",
            "nome": "BANCO RIBEIRAO PRETO S.A.",
            "agencias": [
                {
                    "id": 18396,
                    "nome": "SEDE",
                    "municipio": "RIBEIRAO PRETO"
                }
            ]
        },
        {
            "id": 334,
            "banco": "720",
            "nome": "BANCO RNX S.A.",
            "agencias": [
                {
                    "id": 18394,
                    "nome": "MATRIZ",
                    "municipio": "CURITIBA"
                }
            ]
        },
        {
            "id": 64,
            "banco": "120",
            "nome": "BANCO RODOBENS S.A.",
            "agencias": [
                {
                    "id": 11988,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 235,
            "banco": "422",
            "nome": "BANCO SAFRA S.A.",
            "agencias": [
                {
                    "id": 18101,
                    "nome": "GALE�O",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18102,
                    "nome": "CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 18103,
                    "nome": "SANTO ANDRE",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 18104,
                    "nome": "MORUMBI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18105,
                    "nome": "PLATAFORMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18106,
                    "nome": "RIBEIRAO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 18107,
                    "nome": "SAO JOSE DO RIO PRETO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 18108,
                    "nome": "CAMBUI",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 18109,
                    "nome": "ANGELICA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18110,
                    "nome": "HIGIENOPOLIS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18111,
                    "nome": "OSASCO",
                    "municipio": "OSASCO"
                },
                {
                    "id": 18112,
                    "nome": "UBERLANDIA",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 18113,
                    "nome": "MOEMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18114,
                    "nome": "SAO JOSE DOS CAMPOS",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 18115,
                    "nome": "NOVO HAMBURGO",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 18116,
                    "nome": "FLORIANOPOLIS",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 18117,
                    "nome": "BARRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18118,
                    "nome": "SAO CAETANO",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 18119,
                    "nome": "TATUAPE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18120,
                    "nome": "ALPHAVILLE",
                    "municipio": "BARUERI"
                },
                {
                    "id": 18121,
                    "nome": "MOINHOS DE VENTO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 18122,
                    "nome": "BOA VIAGEM",
                    "municipio": "RECIFE"
                },
                {
                    "id": 18123,
                    "nome": "CUIAB�",
                    "municipio": "CUIABA"
                },
                {
                    "id": 18124,
                    "nome": "BAURU",
                    "municipio": "BAURU"
                },
                {
                    "id": 18125,
                    "nome": "CRICIUMA",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 18126,
                    "nome": "CHAPEC�",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 18127,
                    "nome": "RIBEIRAO CENTRO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 18128,
                    "nome": "CASTELO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18129,
                    "nome": "NOVA CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 18130,
                    "nome": "MARING�",
                    "municipio": "MARINGA"
                },
                {
                    "id": 18131,
                    "nome": "CASCAVEL",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 18132,
                    "nome": "NITER�I",
                    "municipio": "NITEROI"
                },
                {
                    "id": 18133,
                    "nome": "IGUATEMI",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 18134,
                    "nome": "ALDEOTA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 18135,
                    "nome": "LAPA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18136,
                    "nome": "BERRINI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18137,
                    "nome": "NATAL",
                    "municipio": "NATAL"
                },
                {
                    "id": 18138,
                    "nome": "SAVASSI",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 18139,
                    "nome": "GRA�A",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18140,
                    "nome": "GABRIEL MONTEIRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18141,
                    "nome": "PACAEMBU",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18142,
                    "nome": "ALTO DA BOA VISTA",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 18143,
                    "nome": "BATEL",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 18144,
                    "nome": "CORPORATE PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 18145,
                    "nome": "S�O LUIS",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 18146,
                    "nome": "TRIANON",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18147,
                    "nome": "JUIZ DE FORA",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 18148,
                    "nome": "SAO BERNARDO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 18149,
                    "nome": "LEBLON",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18150,
                    "nome": "CENTRO OESTE",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 18151,
                    "nome": "NOVA SUI�A",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 18152,
                    "nome": "JK",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18153,
                    "nome": "COPACABANA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18154,
                    "nome": "CENTRAL QUINZE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18155,
                    "nome": "GUARULHOS",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 18156,
                    "nome": "SIRIO LIBANES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18157,
                    "nome": "MOGI DAS CRUZES",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 18158,
                    "nome": "SUMAR�",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18159,
                    "nome": "SA�DE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18160,
                    "nome": "AGENCIA ANAPOLIS",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 18161,
                    "nome": "ARA�ATUBA",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 18162,
                    "nome": "S�O JOS� DOS PINHAIS",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 18163,
                    "nome": "IPIRANGA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18164,
                    "nome": "BOTAFOGO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18165,
                    "nome": "TAUBAT�",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 18166,
                    "nome": "JOAO PESSOA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 18167,
                    "nome": "AG�NCIA MAR�LIA",
                    "municipio": "MARILIA"
                },
                {
                    "id": 18168,
                    "nome": "AG�NCIA AMERICANA",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 18169,
                    "nome": "BELO HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 18170,
                    "nome": "FARIA LIMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18171,
                    "nome": "AG�NCIA FIDUCI�RIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18172,
                    "nome": "RIO BRANCO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18173,
                    "nome": "PARAISO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18174,
                    "nome": "MOOCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18175,
                    "nome": "STO AMARO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18176,
                    "nome": "DIGITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18177,
                    "nome": "AG�NCIA DIGITAL III",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18178,
                    "nome": "AGZERO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18179,
                    "nome": "AGZERO II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18180,
                    "nome": "SAFRA INVEST",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18181,
                    "nome": "AG�NCIA SAFRAINVEST II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18182,
                    "nome": "RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 18183,
                    "nome": "AG�NCIA FOPA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18184,
                    "nome": "AG�NCIA EMP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18185,
                    "nome": "SANTOS",
                    "municipio": "SANTOS"
                },
                {
                    "id": 18186,
                    "nome": "CIDADE JARDIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18187,
                    "nome": "ITAIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18188,
                    "nome": "LONDRINA",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 18189,
                    "nome": "GOIANIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 18190,
                    "nome": "FORTALEZA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 18191,
                    "nome": "PORTAO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 18192,
                    "nome": "CAXIAS DO SUL",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 18193,
                    "nome": "BARAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18194,
                    "nome": "SOROCABA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 18195,
                    "nome": "PIRACICABA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 18196,
                    "nome": "AG�NCIA CUMBICA",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 18197,
                    "nome": "CAMPO GRANDE",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 18198,
                    "nome": "MANAUS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 18199,
                    "nome": "IPANEMA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18200,
                    "nome": "BELEM",
                    "municipio": "BELEM"
                },
                {
                    "id": 18201,
                    "nome": "VITORIA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 18202,
                    "nome": "BOM RETIRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18203,
                    "nome": "JUNDIAI",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 18204,
                    "nome": "BRASILIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 18205,
                    "nome": "SANTANA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18206,
                    "nome": "AG�NCIA ORION",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18207,
                    "nome": "BOA VISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18208,
                    "nome": "CANDELARIA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18209,
                    "nome": "MACEIO",
                    "municipio": "MACEIO"
                },
                {
                    "id": 18210,
                    "nome": "BLUMENAU",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 18211,
                    "nome": "PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 18212,
                    "nome": "PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18213,
                    "nome": "JARDINS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18214,
                    "nome": "SALVADOR",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 18215,
                    "nome": "VILA MARIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18216,
                    "nome": "BRAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18217,
                    "nome": "JOINVILE",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 18218,
                    "nome": "CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 18219,
                    "nome": "EINSTEIN",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18220,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 17,
            "banco": "33",
            "nome": "BANCO SANTANDER (BRASIL) S.A.",
            "agencias": [
                {
                    "id": 5017,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5018,
                    "nome": "CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5019,
                    "nome": "B BARROSO-TERESINA-PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 5020,
                    "nome": "001 1001 CENTENARIA - RS II",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5021,
                    "nome": "001 1002 CENTENARIA - RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5022,
                    "nome": "001-1004 GUTIERREZ-CAP-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5023,
                    "nome": "001-1005 ANDRADAS - RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5024,
                    "nome": "001 1006 BENJAMIN CONSTANT - PORTO ALEGRE RS II",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5025,
                    "nome": "001 1007 EUSEBIO-CE",
                    "municipio": "EUSEBIO"
                },
                {
                    "id": 5026,
                    "nome": "001-1008 CENTRO-COLATINA-ES",
                    "municipio": "COLATINA"
                },
                {
                    "id": 5027,
                    "nome": "017-1010 BARROS CASSAL",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5028,
                    "nome": "017-1011 BENJAMIN CONSTANT",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5029,
                    "nome": "001-1012 AV BRASILIA-CAP-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5030,
                    "nome": "001-1013 BORGES DE MEDEIROS - PORTO ALEGRE RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5031,
                    "nome": "001-1014 BOM FIM",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5032,
                    "nome": "017-1018 FARRAPOS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5033,
                    "nome": "FLORESTA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5034,
                    "nome": "AZENHA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5035,
                    "nome": "001-1023 SOUSAS-INT-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5036,
                    "nome": "001-1025 MOINHOS DE VENTO POA RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5037,
                    "nome": "NAVEGANTES",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5038,
                    "nome": "001 1027 PCA XV-P. ALEGRE-RS II",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5039,
                    "nome": "PARTENON",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5040,
                    "nome": "MINUANO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5041,
                    "nome": "001-0103 SAO SEBASTIAO",
                    "municipio": "SAO SEBASTIAO"
                },
                {
                    "id": 5042,
                    "nome": "001-1030 PROTASIO ALVES - PORTO ALEGRE RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5043,
                    "nome": "001-1033 REDENTORA-INT-SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 5044,
                    "nome": "ASSIS BRASIL I-CAP-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5045,
                    "nome": "SANTO AMARO II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5046,
                    "nome": "ALEGRETE",
                    "municipio": "ALEGRETE"
                },
                {
                    "id": 5047,
                    "nome": "001 1041 AV CUPECE-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5048,
                    "nome": "001 1042 VILA OLIMPIA-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5049,
                    "nome": "CENTRO-BAGE-RS",
                    "municipio": "BAGE"
                },
                {
                    "id": 5050,
                    "nome": "001-1046 P�A NIPPON-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5051,
                    "nome": "CENTRO-BENTO G-RS",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 5052,
                    "nome": "AVENIDAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5053,
                    "nome": "CACAPAVA DO SUL",
                    "municipio": "CACAPAVA DO SUL"
                },
                {
                    "id": 5054,
                    "nome": "CACHOEIRA DO SUL",
                    "municipio": "CACHOEIRA DO SUL"
                },
                {
                    "id": 5055,
                    "nome": "001-1053 ENSEADA BOTAFOGO-CAP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5056,
                    "nome": "001 1054 CRATO-CE",
                    "municipio": "CRATO"
                },
                {
                    "id": 5057,
                    "nome": "CAMAQUA",
                    "municipio": "CAMAQUA"
                },
                {
                    "id": 5058,
                    "nome": "CAMPO BOM",
                    "municipio": "CAMPO BOM"
                },
                {
                    "id": 5059,
                    "nome": "001-1057 CHACARA DAS PEDRAS-CAP-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5060,
                    "nome": "PAULO DE FARIA",
                    "municipio": "PAULO DE FARIA"
                },
                {
                    "id": 5061,
                    "nome": "CANELA",
                    "municipio": "CANELA"
                },
                {
                    "id": 5062,
                    "nome": "001-1061 BROTAS-SALVADOR-BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 5063,
                    "nome": "001-1062 CANGUCU",
                    "municipio": "CANGUCU"
                },
                {
                    "id": 5064,
                    "nome": "001 1064 TIRADENTES-CANOAS-RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 5065,
                    "nome": "CAPAO DA CANOA",
                    "municipio": "CAPAO DA CANOA"
                },
                {
                    "id": 5066,
                    "nome": "CARAZINHO",
                    "municipio": "CARAZINHO"
                },
                {
                    "id": 5067,
                    "nome": "001-1068 OURO PRETO-CAP-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5068,
                    "nome": "PENHA II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5069,
                    "nome": "AV  JULIO DE CASTILHOS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 5070,
                    "nome": "001 1071 - FONSECA-INT-RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 5071,
                    "nome": "001-1072 BARCELOS DOMINGOS-CAP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5072,
                    "nome": "001-1074 DEP EMILIO CARLOS-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5073,
                    "nome": "001-1076 AV DO FORTE-CAP-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5074,
                    "nome": "CRUZ ALTA",
                    "municipio": "CRUZ ALTA"
                },
                {
                    "id": 5075,
                    "nome": "001 1079 TUCURUI-PA",
                    "municipio": "TUCURUI"
                },
                {
                    "id": 5076,
                    "nome": "BOM RETIRO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5077,
                    "nome": "DOM PEDRITO",
                    "municipio": "DOM PEDRITO"
                },
                {
                    "id": 5078,
                    "nome": "001-1083 - ENCANTADO RS",
                    "municipio": "ENCANTADO"
                },
                {
                    "id": 5079,
                    "nome": "001-1085 ERECHIM",
                    "municipio": "ERECHIM"
                },
                {
                    "id": 5080,
                    "nome": "001-1086 GUAIANASES-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5081,
                    "nome": "ESTANCIA VELHA",
                    "municipio": "ESTANCIA VELHA"
                },
                {
                    "id": 5082,
                    "nome": "S�O CAETANO DO SUL II",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 5083,
                    "nome": "ESTEIO",
                    "municipio": "ESTEIO"
                },
                {
                    "id": 5084,
                    "nome": "001-1091 HELENA MARIA-INT-SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 5085,
                    "nome": "001 1093 PONTA DA PRAIA- SANTOS-SP I",
                    "municipio": "SANTOS"
                },
                {
                    "id": 5086,
                    "nome": "FARROUPILHA",
                    "municipio": "FARROUPILHA"
                },
                {
                    "id": 5087,
                    "nome": "GARIBALDI",
                    "municipio": "GARIBALDI"
                },
                {
                    "id": 5088,
                    "nome": "001-1099 ION CENTER-CAP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5089,
                    "nome": "MAR�LIA II",
                    "municipio": "MARILIA"
                },
                {
                    "id": 5090,
                    "nome": "SANTO ANDR� II",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 5091,
                    "nome": "GRAMADO",
                    "municipio": "GRAMADO"
                },
                {
                    "id": 5092,
                    "nome": "DOM FELICIANO-GRAVATAI-RS",
                    "municipio": "GRAVATAI"
                },
                {
                    "id": 5093,
                    "nome": "001 1103 GUAIBA - RS",
                    "municipio": "GUAIBA"
                },
                {
                    "id": 5094,
                    "nome": "001 1105 SANTOS FERREIRA-CANOAS-RS I",
                    "municipio": "CANOAS"
                },
                {
                    "id": 5095,
                    "nome": "HAMBURGO VELHO",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 5096,
                    "nome": "HORIZONTINA",
                    "municipio": "HORIZONTINA"
                },
                {
                    "id": 5097,
                    "nome": "IGREJINHA",
                    "municipio": "IGREJINHA"
                },
                {
                    "id": 5098,
                    "nome": "CRUZEIRO-INT-SP",
                    "municipio": "CRUZEIRO"
                },
                {
                    "id": 5099,
                    "nome": "001 1110 W3 NORTE Q710 CAP DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 5100,
                    "nome": "IJUI",
                    "municipio": "IJUI"
                },
                {
                    "id": 5101,
                    "nome": "001 1112 GUARA-DF",
                    "municipio": "BRASILIA (GUARA)"
                },
                {
                    "id": 5102,
                    "nome": "001-1113 AV GOETHE-CAP-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5103,
                    "nome": "ITAQUI",
                    "municipio": "ITAQUI"
                },
                {
                    "id": 5104,
                    "nome": "001 1118 AV PRES ALTINO-SP-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5105,
                    "nome": "SANTANA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5106,
                    "nome": "LAGOA VERMELHA",
                    "municipio": "LAGOA VERMELHA"
                },
                {
                    "id": 5107,
                    "nome": "CENTRO-LAJEADO-RS",
                    "municipio": "LAJEADO"
                },
                {
                    "id": 5108,
                    "nome": "001 1123 MQ DO HERVAL-RIO-RJ I",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5109,
                    "nome": "MONTENEGRO",
                    "municipio": "MONTENEGRO"
                },
                {
                    "id": 5110,
                    "nome": "CENTRO-MOCOCA-SP",
                    "municipio": "MOCOCA"
                },
                {
                    "id": 5111,
                    "nome": "NOVA PRATA",
                    "municipio": "NOVA PRATA"
                },
                {
                    "id": 5112,
                    "nome": "001-1133 LAUZANE PAULISTA-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5113,
                    "nome": "NOVO HAMBURGO-INT-RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 5114,
                    "nome": "001-1135 JOSE M WHITAKER-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5115,
                    "nome": "001-1136 VITORIA CONQUISTA-INT-BA",
                    "municipio": "VITORIA DA CONQUISTA"
                },
                {
                    "id": 5116,
                    "nome": "OSORIO",
                    "municipio": "OSORIO"
                },
                {
                    "id": 5117,
                    "nome": "001 1138 PALMARES DO SUL",
                    "municipio": "PALMARES DO SUL"
                },
                {
                    "id": 5118,
                    "nome": "CAMBUCI II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5119,
                    "nome": "PANAMBI",
                    "municipio": "PANAMBI"
                },
                {
                    "id": 5120,
                    "nome": "001 1141 CATEDRAL-PASSO FUNDO-RS I",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 5121,
                    "nome": "001-1142 AL DA SERRA-INT-MG",
                    "municipio": "NOVA LIMA"
                },
                {
                    "id": 5122,
                    "nome": "001 1145 PELOTAS-RS-I",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 5123,
                    "nome": "BELA VISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5124,
                    "nome": "CENTRO-RIO GRANDE-RS",
                    "municipio": "RIO GRANDE"
                },
                {
                    "id": 5125,
                    "nome": "001 1153 BALSAS-MA",
                    "municipio": "BALSAS"
                },
                {
                    "id": 5126,
                    "nome": "001 1154 PORTO NACIONAL-TO",
                    "municipio": "PORTO NACIONAL"
                },
                {
                    "id": 5127,
                    "nome": "001 1156 QUIXADA-CE",
                    "municipio": "QUIXADA"
                },
                {
                    "id": 5128,
                    "nome": "SANTANA DO LIVRAMENTO",
                    "municipio": "SANTANA DO LIVRAMENTO"
                },
                {
                    "id": 5129,
                    "nome": "PACHECO E CHAVES-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5130,
                    "nome": "001-1160 PRAIA DA COSTA-V.VELHA-ES",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 5131,
                    "nome": "001 1161 PCA DQ CAXIAS-OSASCO-SP II",
                    "municipio": "OSASCO"
                },
                {
                    "id": 5132,
                    "nome": "CENTRO-SCRUZ SUL-RS",
                    "municipio": "SANTA CRUZ DO SUL"
                },
                {
                    "id": 5133,
                    "nome": "001-1164 PCA JACOMO ZANELLA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5134,
                    "nome": "001 1165 GASPAR-SC",
                    "municipio": "GASPAR"
                },
                {
                    "id": 5135,
                    "nome": "001-1166 SANTA MARIA-RS",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 5136,
                    "nome": "001 1167 LAGOA DA PRATA-MG",
                    "municipio": "LAGOA DA PRATA"
                },
                {
                    "id": 5137,
                    "nome": "SANTA ROSA",
                    "municipio": "SANTA ROSA"
                },
                {
                    "id": 5138,
                    "nome": "IPIRANGA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5139,
                    "nome": "SANTA VITORIA DO PALMAR",
                    "municipio": "SANTA VITORIA DO PALMAR"
                },
                {
                    "id": 5140,
                    "nome": "SANTIAGO",
                    "municipio": "SANTIAGO"
                },
                {
                    "id": 5141,
                    "nome": "SANTO ANGELO",
                    "municipio": "SANTO ANGELO"
                },
                {
                    "id": 5142,
                    "nome": "001-1175 PCA DAS NACOES-CAP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5143,
                    "nome": "001 1176 JANDIRA-SP",
                    "municipio": "JANDIRA"
                },
                {
                    "id": 5144,
                    "nome": "SAO BORJA",
                    "municipio": "SAO BORJA"
                },
                {
                    "id": 5145,
                    "nome": "JABAQUARA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5146,
                    "nome": "001 1180 BERNARDO SAYAO-IMPERATRIZ",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 5147,
                    "nome": "001-1181 EQS 408/409-CAP-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 5148,
                    "nome": "001 1184 SENADOR CANEDO-GO",
                    "municipio": "SENADOR CANEDO"
                },
                {
                    "id": 5149,
                    "nome": "SAO GABRIEL",
                    "municipio": "SAO GABRIEL"
                },
                {
                    "id": 5150,
                    "nome": "001 1189 INDEPEND-SLEOPOLDO-RS I",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 5151,
                    "nome": "LAPA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5152,
                    "nome": "001 1190 SANTA RITA-PB",
                    "municipio": "SANTA RITA"
                },
                {
                    "id": 5153,
                    "nome": "SAO LOURENCO DO SUL",
                    "municipio": "SAO LOURENCO DO SUL"
                },
                {
                    "id": 5154,
                    "nome": "001-1194 ORLEANS-CAP-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5155,
                    "nome": "SAO SEBASTIAO DO CAI",
                    "municipio": "SAO SEBASTIAO DO CAI"
                },
                {
                    "id": 5156,
                    "nome": "001-1197 BARREIROS-INT-SC",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 5157,
                    "nome": "SAPIRANGA",
                    "municipio": "SAPIRANGA"
                },
                {
                    "id": 5158,
                    "nome": "001-1199 BENEFICENCIA-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5159,
                    "nome": "SANTO ANASTACIO",
                    "municipio": "SANTO ANASTACIO"
                },
                {
                    "id": 5160,
                    "nome": "PINHEIROS-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5161,
                    "nome": "001-1206 PRES WILSON-INT-SP",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 5162,
                    "nome": "001 1207  AV.VITAL BRASIL-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5163,
                    "nome": "001 0121 V. LEOPOLDINA I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5164,
                    "nome": "TORRES",
                    "municipio": "TORRES"
                },
                {
                    "id": 5165,
                    "nome": "TRAMANDAI",
                    "municipio": "TRAMANDAI"
                },
                {
                    "id": 5166,
                    "nome": "001-1217 V DAS PEDRAS-ITABORAI-RJ",
                    "municipio": "ITABORAI"
                },
                {
                    "id": 5167,
                    "nome": "001 1219 CENTRO-URUGUAIANA-RS",
                    "municipio": "URUGUAIANA"
                },
                {
                    "id": 5168,
                    "nome": "SAO MANUEL",
                    "municipio": "SAO MANUEL"
                },
                {
                    "id": 5169,
                    "nome": "001-1220 XAXIM-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5170,
                    "nome": "VACARIA",
                    "municipio": "VACARIA"
                },
                {
                    "id": 5171,
                    "nome": "001-1223 SET BELA VISTA-GOIANIA-GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 5172,
                    "nome": "VENANCIO AIRES",
                    "municipio": "VENANCIO AIRES"
                },
                {
                    "id": 5173,
                    "nome": "001 1225 ACAILANDIA-MA",
                    "municipio": "ACAILANDIA"
                },
                {
                    "id": 5174,
                    "nome": "VERANOPOLIS",
                    "municipio": "VERANOPOLIS"
                },
                {
                    "id": 5175,
                    "nome": "P�A XV NOVEMBRO-CAP-SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 5176,
                    "nome": "001 1229 AL RIO NEGRO INT SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 5177,
                    "nome": "CENTRO-CUBATAO-SP",
                    "municipio": "CUBATAO"
                },
                {
                    "id": 5178,
                    "nome": "001-1230 BR HOMEM DE MELO-CAP-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5179,
                    "nome": "001-1232 BLUMENAU - SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 5180,
                    "nome": "001-1234 PCA BARAO-BRUSQUE-SC",
                    "municipio": "BRUSQUE"
                },
                {
                    "id": 5181,
                    "nome": "CACADOR",
                    "municipio": "CACADOR"
                },
                {
                    "id": 5182,
                    "nome": "001-1236 AV DAS TORRES-CAP-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5183,
                    "nome": "CENTRO-CHAPECO-SC",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 5184,
                    "nome": "CONCORDIA",
                    "municipio": "CONCORDIA"
                },
                {
                    "id": 5185,
                    "nome": "COPACABANA II",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5186,
                    "nome": "CRICIUMA-INT-SC",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 5187,
                    "nome": "CURITIBANOS",
                    "municipio": "CURITIBANOS"
                },
                {
                    "id": 5188,
                    "nome": "HERCILIO LUZ-ITAJAI-SC",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 5189,
                    "nome": "PEIXOTO-JARAGUA DO SUL-SC",
                    "municipio": "JARAGUA DO SUL"
                },
                {
                    "id": 5190,
                    "nome": "R FCO LINDNER-JOACABA-SC",
                    "municipio": "JOACABA"
                },
                {
                    "id": 5191,
                    "nome": "B AMERICA-JOINVILLE-SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 5192,
                    "nome": "001 1246 SANTANA-AP",
                    "municipio": "SANTANA"
                },
                {
                    "id": 5193,
                    "nome": "LAGES-INT-SC",
                    "municipio": "LAGES"
                },
                {
                    "id": 5194,
                    "nome": "001-1248 ABOLICAO-CAP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5195,
                    "nome": "001 1249 BARRA DO GARCAS-MT",
                    "municipio": "BARRA DO GARCAS"
                },
                {
                    "id": 5196,
                    "nome": "PALHOCA",
                    "municipio": "PALHOCA"
                },
                {
                    "id": 5197,
                    "nome": "001-1258 PINHAIS-INT-PR",
                    "municipio": "PINHAIS"
                },
                {
                    "id": 5198,
                    "nome": "001-1259 CENTRO-S.BENTO DO SUL-SC",
                    "municipio": "SAO BENTO DO SUL"
                },
                {
                    "id": 5199,
                    "nome": "CARMO-ASSEMBLEIA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5200,
                    "nome": "001-1263 CENTRO I-TUBARAO-SC",
                    "municipio": "TUBARAO"
                },
                {
                    "id": 5201,
                    "nome": "VIDEIRA",
                    "municipio": "VIDEIRA"
                },
                {
                    "id": 5202,
                    "nome": "XANXERE",
                    "municipio": "XANXERE"
                },
                {
                    "id": 5203,
                    "nome": "001-1268 AP DE GOIANIA-INT-GO",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 5204,
                    "nome": "001-1269 COMENDADOR ARAUJO - CURITIBA PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5205,
                    "nome": "001 0127 NITEROI-PRACA DO RINK I",
                    "municipio": "NITEROI"
                },
                {
                    "id": 5206,
                    "nome": "PORTAO - CURITIBA PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5207,
                    "nome": "VISCONDE DE GUARAPUAVA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5208,
                    "nome": "MANOEL RIBAS-APUCARANA-PR",
                    "municipio": "APUCARANA"
                },
                {
                    "id": 5209,
                    "nome": "001 1275 CENTRO_ARAPONGAS-PR III",
                    "municipio": "ARAPONGAS"
                },
                {
                    "id": 5210,
                    "nome": "FOZ DO IGUACU-INT-PR",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 5211,
                    "nome": "001-1279 CAP ROCHA-GUARAPUAVA-PR",
                    "municipio": "GUARAPUAVA"
                },
                {
                    "id": 5212,
                    "nome": "001-1280 AV CILLOS-INT-SP",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 5213,
                    "nome": "001-1281 SCHARLAU-INT-RS",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 5214,
                    "nome": "001-1282 AV PARANA",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 5215,
                    "nome": "CENTRO-PALMAS-PR",
                    "municipio": "PALMAS"
                },
                {
                    "id": 5216,
                    "nome": "001 0129 OSASCO-CENTRO I",
                    "municipio": "OSASCO"
                },
                {
                    "id": 5217,
                    "nome": "PONTA GROSSA-INT-PR",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 5218,
                    "nome": "RIO NEGRO",
                    "municipio": "RIO NEGRO"
                },
                {
                    "id": 5219,
                    "nome": "SAO JOSE DOS PINHAIS-INT-PR",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 5220,
                    "nome": "UNIAO DA VITORIA",
                    "municipio": "UNIAO DA VITORIA"
                },
                {
                    "id": 5221,
                    "nome": "SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5222,
                    "nome": "BROOKLIN",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5223,
                    "nome": "LIMEIRA II",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 5224,
                    "nome": "CENTRO-TAQUARITINGA-SP",
                    "municipio": "TAQUARITINGA"
                },
                {
                    "id": 5225,
                    "nome": "001 1302 LAPA-SP-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5226,
                    "nome": "001-1304 ALTO DA MOOCA I-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5227,
                    "nome": "001-1306 CIDADE JARDIM I-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5228,
                    "nome": "PARAGUACU PAULISTA",
                    "municipio": "PARAGUACU PAULISTA"
                },
                {
                    "id": 5229,
                    "nome": "PENHA II-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5230,
                    "nome": "FCO GLIC�RIO I-INT-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5231,
                    "nome": "001-1313 ZAHRAN-CAP-MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 5232,
                    "nome": "001-1314 R JO�O PESSOA I-INT-SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 5233,
                    "nome": "001-1317 MIGRANTE-INT-PR",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 5234,
                    "nome": "MQ DO HERVAL-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5235,
                    "nome": "001-1319 VL JONES-INT-SP",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 5236,
                    "nome": "PEREIRA BARRETO",
                    "municipio": "PEREIRA BARRETO"
                },
                {
                    "id": 5237,
                    "nome": "001-1320 CHARLES SCHNNEIDER-INT-SP",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 5238,
                    "nome": "POSTO 5-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5239,
                    "nome": "BONSUCESSO I-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5240,
                    "nome": "001-1326 VL OPERARIA-MARINGA-PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 5241,
                    "nome": "MADUREIRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5242,
                    "nome": "TAGUAI",
                    "municipio": "TAGUAI"
                },
                {
                    "id": 5243,
                    "nome": "001 1330 PRES VARGAS 529 RIO RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5244,
                    "nome": "001-1332 AV MORAES SALES-INT-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5245,
                    "nome": "001-1334 JOSE HIGINO I-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5246,
                    "nome": "FARIA LIMA II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5247,
                    "nome": "001-1340 CIDADE NOVA-CAP-AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 5248,
                    "nome": "001-1341 BRASILIA ASA SUL I-CAP-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 5249,
                    "nome": "001-1342 PIABETA-INT-RJ",
                    "municipio": "MAGE"
                },
                {
                    "id": 5250,
                    "nome": "GAL FREIT-SAPUCAIA SUL-RS",
                    "municipio": "SAPUCAIA DO SUL"
                },
                {
                    "id": 5251,
                    "nome": "SAO CAETANO DO SUL",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 5252,
                    "nome": "001 1348  SOROCABA - SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 5253,
                    "nome": "001 1349 G.VARGAS-GUARULHOS-SP  I",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 5254,
                    "nome": "CENTRO-SVICENTE-SP",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 5255,
                    "nome": "METR� CONSOLA��O-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5256,
                    "nome": "CASCAVEL-INT-PR",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 5257,
                    "nome": "001-1354 MARECHAL RONDON I-INT-SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 5258,
                    "nome": "001-1358 MARCILIO DIAS INT-SP",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 5259,
                    "nome": "ILHA SOLTEIRA",
                    "municipio": "ILHA SOLTEIRA"
                },
                {
                    "id": 5260,
                    "nome": "GOV PEDRO TOLEDO I-INT-SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 5261,
                    "nome": "ARACATUBA",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 5262,
                    "nome": "CARLOS GOMES I S  ANDRE SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 5263,
                    "nome": "VOLUNT�RIOS II-INT-SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 5264,
                    "nome": "PEDREGULHO",
                    "municipio": "PEDREGULHO"
                },
                {
                    "id": 5265,
                    "nome": "001-1370 CATEDRAL I-J.FORA-MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 5266,
                    "nome": "MARING�-BRASIL I-INT-PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 5267,
                    "nome": "001 1375 PADROEIRA I-JUNDIAI-SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 5268,
                    "nome": "CENTRO-V.REDONDA-RJ",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 5269,
                    "nome": "AV NOVE DE JULHO I INT SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 5270,
                    "nome": "FRANCA",
                    "municipio": "FRANCA"
                },
                {
                    "id": 5271,
                    "nome": "ARARAQUARA",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 5272,
                    "nome": "P�A AFONSO PENA-INT-SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 5273,
                    "nome": "I BANDEIRA-CPO MOURAO-PR",
                    "municipio": "CAMPO MOURAO"
                },
                {
                    "id": 5274,
                    "nome": "MIRANDOPOLIS",
                    "municipio": "MIRANDOPOLIS"
                },
                {
                    "id": 5275,
                    "nome": "001 1391 PRES KENNEDY DCAXIAS RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 5276,
                    "nome": "AV GOI�S-CAP-GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 5277,
                    "nome": "CAMPO GRANDE",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 5278,
                    "nome": "001 1397 BELO HORIZONTE-MG III",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5279,
                    "nome": "CENTRO-MIRASSOL-SP",
                    "municipio": "MIRASSOL"
                },
                {
                    "id": 5280,
                    "nome": "GUARULHOS II",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 5281,
                    "nome": "001 1402 PRAIA DE BELAS-P.ALEGRE-RS II",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5282,
                    "nome": "001-1403 ALEIXO-CAP-AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 5283,
                    "nome": "001 1405 CENTRO-DIADEMA-SP III",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 5284,
                    "nome": "MARILIA",
                    "municipio": "MARILIA"
                },
                {
                    "id": 5285,
                    "nome": "MONSENHOR-SAO ROQUE-SP",
                    "municipio": "SAO ROQUE"
                },
                {
                    "id": 5286,
                    "nome": "GUILHERME COTCHING",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5287,
                    "nome": "DIADEMA II",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 5288,
                    "nome": "001 1425 AV STOS DUMONT-UBERABA-MG II",
                    "municipio": "UBERABA"
                },
                {
                    "id": 5289,
                    "nome": "001 1426 UBERLANDIA-PLATO II",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 5290,
                    "nome": "PAULA SOUSA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5291,
                    "nome": "R CINCINATO BRAGA-INT-RJ",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 5292,
                    "nome": "001-1432 ERNANI AMARAL-NITEROI-RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 5293,
                    "nome": "CHAGAS-POCOS DE CALDAS-MG",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 5294,
                    "nome": "MOOCA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5295,
                    "nome": "SAO JOAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5296,
                    "nome": "SAO PELEGRINO",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 5297,
                    "nome": "001 1454 OTTO-PORTO ALEGRE-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5298,
                    "nome": "ARROIO GRANDE",
                    "municipio": "ARROIO GRANDE"
                },
                {
                    "id": 5299,
                    "nome": "FLORES DA CUNHA",
                    "municipio": "FLORES DA CUNHA"
                },
                {
                    "id": 5300,
                    "nome": "ALVORADA",
                    "municipio": "ALVORADA"
                },
                {
                    "id": 5301,
                    "nome": "BURITAMA",
                    "municipio": "BURITAMA"
                },
                {
                    "id": 5302,
                    "nome": "001 1460 PCA DO AVIAO-ANAPOLIS-GO II",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 5303,
                    "nome": "CACHOEIRINHA",
                    "municipio": "CACHOEIRINHA"
                },
                {
                    "id": 5304,
                    "nome": "TRISTEZA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5305,
                    "nome": "SEMINARIO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5306,
                    "nome": "001-0147 CENTRO I-BLUMENAU-SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 5307,
                    "nome": "CAMPOS",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 5308,
                    "nome": "001 - 1472 AV NV RESENDE-RESENDE RJ",
                    "municipio": "RESENDE"
                },
                {
                    "id": 5309,
                    "nome": "PAROBE",
                    "municipio": "PAROBE"
                },
                {
                    "id": 5310,
                    "nome": "001 0148 CAMPOS SALLES-CAMPINAS-SP I",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5311,
                    "nome": "CAPIVARI",
                    "municipio": "CAPIVARI"
                },
                {
                    "id": 5312,
                    "nome": "FRANCISCO BELTRAO",
                    "municipio": "FRANCISCO BELTRAO"
                },
                {
                    "id": 5313,
                    "nome": "NOVO HORIZONTE",
                    "municipio": "NOVO HORIZONTE"
                },
                {
                    "id": 5314,
                    "nome": "CARRAO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5315,
                    "nome": "001 1500 TRES VENDAS - PELOTAS RS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 5316,
                    "nome": "CERQUILHO",
                    "municipio": "CERQUILHO"
                },
                {
                    "id": 5317,
                    "nome": "001-1511 AV CERRO AZUL-INT-PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 5318,
                    "nome": "SAO JOSE",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 5319,
                    "nome": "CARLOS GOMES",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5320,
                    "nome": "001 1514 OTTO-PORTO ALEGRE-RS I",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5321,
                    "nome": "CANOAS I-INT-RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 5322,
                    "nome": "001-1516 PIO X-CAXIAS SUL-RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 5323,
                    "nome": "001-1517 MEDIANEIRA-SANTA MARIA RS",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 5324,
                    "nome": "SHOPPING STRIP CENTER",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5325,
                    "nome": "001 1520 C DUTRA RIO RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5326,
                    "nome": "O. TARQUINO-N.IGUA�U-RJ",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 5327,
                    "nome": "R DA MATRIZ-SJMERITI-RJ",
                    "municipio": "SAO JOAO DE MERITI"
                },
                {
                    "id": 5328,
                    "nome": "001-1523 RODOSHOPPING-S.GONCALO-RJ",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 5329,
                    "nome": "017-1525 VL VALQUEIRE-CAP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5330,
                    "nome": "001 1527 CENTER SHOPPING CAP RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5331,
                    "nome": "SANTA CRUZ-RIO RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5332,
                    "nome": "DESCALVADO",
                    "municipio": "DESCALVADO"
                },
                {
                    "id": 5333,
                    "nome": "ARI FRANCO-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5334,
                    "nome": "PENHA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5335,
                    "nome": "CAMPO GRANDE-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5336,
                    "nome": "001 1535 FAZENDA RIO GRANDE-PR",
                    "municipio": "FAZENDA RIO GRANDE"
                },
                {
                    "id": 5337,
                    "nome": "001 1536 - CAMBURI-CAP-ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 5338,
                    "nome": "001-1537 GARCIA-INT-SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 5339,
                    "nome": "001-1539 MARECHAL-JARAGUA SUL-SC",
                    "municipio": "JARAGUA DO SUL"
                },
                {
                    "id": 5340,
                    "nome": "001 0154 PAULISTA CENTER 3-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5341,
                    "nome": "001 1540 MIRASSOLANDIA-SJRPRETO-SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 5342,
                    "nome": "001 1541 CENTENARIA - RS I",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5343,
                    "nome": "001-1542 JUCUTUQUARA-CAP-ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 5344,
                    "nome": "001-1543 AV BRASIL-INT-SP",
                    "municipio": "FRANCA"
                },
                {
                    "id": 5345,
                    "nome": "001 1544 S BENEDITO UBERABA MG",
                    "municipio": "UBERABA"
                },
                {
                    "id": 5346,
                    "nome": "001-1545 PQ DO POVO-P.PRUDENTE-SP",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 5347,
                    "nome": "001-1546 VL TUPI-INT-SP",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 5348,
                    "nome": "001-1547 GRAJAU-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5349,
                    "nome": "001-1548 BOM RETIRO-CAP-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5350,
                    "nome": "001 1549 ANA ROSA-SP-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5351,
                    "nome": "001 0155 TEN.SILVEIRA-FLORIPA-SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 5352,
                    "nome": "001-1550 MILIONARIOS-CAP-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5353,
                    "nome": "001-1552 -FAZENDINHA-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5354,
                    "nome": "001-1553 NV RUSSIA-P GROSSA-PR",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 5355,
                    "nome": "001 1554 ALDEIA DA SERRA-S PARN-SP",
                    "municipio": "SANTANA DE PARNAIBA"
                },
                {
                    "id": 5356,
                    "nome": "001 1555 INGLESES-FLORIPA-SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 5357,
                    "nome": "001-1556 BOSQUE-RIO BRANCO-AC",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 5358,
                    "nome": "001 1557 MACAE-CENTRO-RJ I",
                    "municipio": "MACAE"
                },
                {
                    "id": 5359,
                    "nome": "001-1558 PAULO FRONTIN-ITAGUAI-RJ",
                    "municipio": "ITAGUAI"
                },
                {
                    "id": 5360,
                    "nome": "GUARUJA",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 5361,
                    "nome": "001 1560 PB RJ I COML",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5362,
                    "nome": "001-1561 MARIA ANTONIA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5363,
                    "nome": "001 1562 POZZOBON-VOTUPORANGA-SP",
                    "municipio": "VOTUPORANGA"
                },
                {
                    "id": 5364,
                    "nome": "001-1563 KOBRASOL-SAO JOSE-SC",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 5365,
                    "nome": "001 1564 PARAISO DO TOCANTINS-TO",
                    "municipio": "PARAISO DO TOCANTINS"
                },
                {
                    "id": 5366,
                    "nome": "001-1566 VL GIGLIO-ATIBAIA-SP",
                    "municipio": "ATIBAIA"
                },
                {
                    "id": 5367,
                    "nome": "001-1568 JD GUANABARA-GOIANIA-GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 5368,
                    "nome": "INDAIATUBA II",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 5369,
                    "nome": "001-1570 CENTRO-GUARIBA-SP",
                    "municipio": "GUARIBA"
                },
                {
                    "id": 5370,
                    "nome": "001- 1571 VL VITORIA-INDAIATUBA-SP",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 5371,
                    "nome": "001-1572 PLANALTO-SBCAMPO-SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 5372,
                    "nome": "001-JOAO DE BARROS-RECIFE-PE I",
                    "municipio": "RECIFE"
                },
                {
                    "id": 5373,
                    "nome": "001 1574 PTE SAO JOAO-JUNDIAI-SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 5374,
                    "nome": "001 1575-PONTA NEGRA-NATAL-RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 5375,
                    "nome": "001 1576 - RAMIRO BARCEL-P ALEGRE-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5376,
                    "nome": "001-1577 - CIDADE NOVA-ANANINDEUA-PA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 5377,
                    "nome": "001 1578- CANUDOS-NV HAMBURGO-RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 5378,
                    "nome": "001 1579 PRINC D OESTE CAMPINAS SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5379,
                    "nome": "AGUAI",
                    "municipio": "AGUAI"
                },
                {
                    "id": 5380,
                    "nome": "001 1580 - B.LOURDES-CAXIAS SUL-RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 5381,
                    "nome": "001-1581 JD SAO LUIZ-RIB PRETO-SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 5382,
                    "nome": "001-1582 JD CANADA-NV LIMA-MG",
                    "municipio": "NOVA LIMA"
                },
                {
                    "id": 5383,
                    "nome": "001 1583 CEL QUIRINO-CAMPINAS-SP IV",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5384,
                    "nome": "001-1584 PAPICU-FORTALEZA-CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 5385,
                    "nome": "001-1586 OURO FINO-SJPINHAIS-PR",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 5386,
                    "nome": "001 1587 JUARA-MT",
                    "municipio": "JUARA"
                },
                {
                    "id": 5387,
                    "nome": "001 1589 BACABAL-MA",
                    "municipio": "BACABAL"
                },
                {
                    "id": 5388,
                    "nome": "JOINVILLE-INT-SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 5389,
                    "nome": "001-1590 SEN LEMOS-BELEM-PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 5390,
                    "nome": "001-1591 JD STA LUZIA-SJRPRETO-SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 5391,
                    "nome": "001-1592 MANAIRA-J.PESSOA-PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 5392,
                    "nome": "001-1593 FCO PORTO-ARACAJU-SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 5393,
                    "nome": "001 1594 - PB BH I",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5394,
                    "nome": "001-1595 BH-PRUDENTE DE MORAIS I",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5395,
                    "nome": "001-1596 ALF BACKER-SGONCALO-RJ",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 5396,
                    "nome": "001-1597 PORTAL-VINHEDO-SP",
                    "municipio": "VINHEDO"
                },
                {
                    "id": 5397,
                    "nome": "Ag�ncia 1598",
                    "municipio": ""
                },
                {
                    "id": 5398,
                    "nome": "001-1599 JD DO EDEN-SOROCABA-SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 5399,
                    "nome": "CENTRO-CACAPAVA-SP",
                    "municipio": "CACAPAVA"
                },
                {
                    "id": 5400,
                    "nome": "LAGES",
                    "municipio": "LAGES"
                },
                {
                    "id": 5401,
                    "nome": "001-1600 AV ESPORTES-VALINHOS-SP",
                    "municipio": "VALINHOS"
                },
                {
                    "id": 5402,
                    "nome": "001 1601 RECIFE-AV.CAXANGA I",
                    "municipio": "RECIFE"
                },
                {
                    "id": 5403,
                    "nome": "001-1602 S VIA CATARINA-PALHOCA-SC",
                    "municipio": "PALHOCA"
                },
                {
                    "id": 5404,
                    "nome": "001-1603 ITAVUVU NORTE-SOROCABA-SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 5405,
                    "nome": "001-1604 CENTRO- CABO   PE",
                    "municipio": "CABO DE SANTO AGOSTINHO"
                },
                {
                    "id": 5406,
                    "nome": "001-1605 PINHEIRINHO-CRICIUMA-SC",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 5407,
                    "nome": "001 1606 P.GROSSA-CENTRO I",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 5408,
                    "nome": "001 1608 JANUARIA-MG",
                    "municipio": "JANUARIA"
                },
                {
                    "id": 5409,
                    "nome": "001-1609 AV ESMERALDAS-MARILIA-SP",
                    "municipio": "MARILIA"
                },
                {
                    "id": 5410,
                    "nome": "CENTRO-LEME-SP",
                    "municipio": "LEME"
                },
                {
                    "id": 5411,
                    "nome": "001-1610 VL JACUI-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5412,
                    "nome": "001 1611 LAPA-PR",
                    "municipio": "LAPA"
                },
                {
                    "id": 5413,
                    "nome": "001-1613 ADHEMAR BARROS-GUARUJA SP",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 5414,
                    "nome": "001-1614 CENTRO-NAVEGANTES-SC",
                    "municipio": "NAVEGANTES"
                },
                {
                    "id": 5415,
                    "nome": "001-1615 VL BRANCA-GRAVATAI-RS",
                    "municipio": "GRAVATAI"
                },
                {
                    "id": 5416,
                    "nome": "001 1616 DOIS VIZINHOS-PR",
                    "municipio": "DOIS VIZINHOS"
                },
                {
                    "id": 5417,
                    "nome": "001 1617 SHOP RAPOSO SP SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5418,
                    "nome": "001 1619 SELECT ANALIA FRANCO SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5419,
                    "nome": "LONDRINA II",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 5420,
                    "nome": "001-1623 CENTRO-ARACRUZ-ES",
                    "municipio": "ARACRUZ"
                },
                {
                    "id": 5421,
                    "nome": "001-1625 PENINSULA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5422,
                    "nome": "001-1627 DECK LAGO SUL-BRASILIA-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 5423,
                    "nome": "001-1628 COQUEIROS-FLORIPA-SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 5424,
                    "nome": "001 0163 URB-MARINGA-Z1 I",
                    "municipio": "MARINGA"
                },
                {
                    "id": 5425,
                    "nome": "001-1632 NOVO CENTRO-ITU-SP",
                    "municipio": "ITU"
                },
                {
                    "id": 5426,
                    "nome": "001-1634 CAPAO REDONDO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5427,
                    "nome": "001 1635 PB CTBA I",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5428,
                    "nome": "001-1636 - PB SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5429,
                    "nome": "001-1637 ST SUDOESTE-BRASILIA-DF II",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 5430,
                    "nome": "001-1638 CRUZEIRO-POUSO ALEGRE-MG",
                    "municipio": "POUSO ALEGRE"
                },
                {
                    "id": 5431,
                    "nome": "001-1639 PIRAJUSSARA-TSERRA-SP",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 5432,
                    "nome": "CACHOEIRA PAULISTA",
                    "municipio": "CACHOEIRA PAULISTA"
                },
                {
                    "id": 5433,
                    "nome": "001-1640 GLORIA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5434,
                    "nome": "001-1641 LARGO DA FREGUESIA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5435,
                    "nome": "001-1643 BLUE CENTER-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5436,
                    "nome": "001-1644 PRINCESA SUL-VARGINHA-MG",
                    "municipio": "VARGINHA"
                },
                {
                    "id": 5437,
                    "nome": "001-1646 PIRABEIRABA-JOINVILLE-SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 5438,
                    "nome": "001-1647 VL CRUZEIRO-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5439,
                    "nome": "001-1648 CIDADE BAIXA-P.ALEGRE-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5440,
                    "nome": "001-1649 CAJURU-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5441,
                    "nome": "F SOBRINHO-PARANAGUA-PR",
                    "municipio": "PARANAGUA"
                },
                {
                    "id": 5442,
                    "nome": "001-1650 STA ROSALIA-SOROCABA-SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 5443,
                    "nome": "001-1651 STA MONICA-FLORIPA-SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 5444,
                    "nome": "001-1653 CARMO-BH-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5445,
                    "nome": "001-1656 STA C SERRA-DQ CAXIAS-RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 5446,
                    "nome": "001-1657 GRAMACHO-DQ CAXIAS-RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 5447,
                    "nome": "001-1658 VILARINHO-BH-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5448,
                    "nome": "001-1659 CTO ADM-CAMACARI-BA",
                    "municipio": "CAMACARI"
                },
                {
                    "id": 5449,
                    "nome": "001-1660 J CASTILHO-CPO GRANDE-MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 5450,
                    "nome": "001-1661 ALPHAVILLE-SALVADOR-BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 5451,
                    "nome": "001-1662 ROCHA MIRANDA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5452,
                    "nome": "001 1663 BH-PAMPULHA I",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5453,
                    "nome": "001-1664 NV TANCREDO-SALVADOR-BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 5454,
                    "nome": "001-1665 LAGOA CORPORATE-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5455,
                    "nome": "001-1666 CENTRO-TANGARA SERRA-MT",
                    "municipio": "TANGARA DA SERRA"
                },
                {
                    "id": 5456,
                    "nome": "001-1668 SAO BENEDITO-STA LUZIA-MG",
                    "municipio": "SANTA LUZIA"
                },
                {
                    "id": 5457,
                    "nome": "001-1669 RIO-JACAREPAGUA II",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5458,
                    "nome": "CELSO GARCIA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5459,
                    "nome": "001-1671 CENTRO-PARACATU-MG",
                    "municipio": "PARACATU"
                },
                {
                    "id": 5460,
                    "nome": "001-1672 STA TEREZINHA-BRUSQUE-SC",
                    "municipio": "BRUSQUE"
                },
                {
                    "id": 5461,
                    "nome": "001-1673 HADDOCK LOBO-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5462,
                    "nome": "001-1675 GOYTACAZES-CAMPOS-RJ",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 5463,
                    "nome": "001-1676 CASTELO OFFICE-BARUERI-SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 5464,
                    "nome": "001-1677 FLAMBOYANT-CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5465,
                    "nome": "001 1678 CENTRO PARATY RJ",
                    "municipio": "PARATY"
                },
                {
                    "id": 5466,
                    "nome": "001-1679 PARQUE SHOPPING-BELEM-PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 5467,
                    "nome": "PORTO FELIZ",
                    "municipio": "PORTO FELIZ"
                },
                {
                    "id": 5468,
                    "nome": "001-1680 COM SOARES-N IGUACU-RJ",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 5469,
                    "nome": "001-1681 NOVA ASSEMBLEIA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5470,
                    "nome": "001-1682 AV MARIA TERESA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5471,
                    "nome": "001-1683 SANTOS FERREIRA-CANOAS-RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 5472,
                    "nome": "001-1687 ANTONINO-CPO GRANDE-MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 5473,
                    "nome": "BOCAINA",
                    "municipio": "BOCAINA"
                },
                {
                    "id": 5474,
                    "nome": "001-1690 CANAAN-SETE LAGOAS-MG",
                    "municipio": "SETE LAGOAS"
                },
                {
                    "id": 5475,
                    "nome": "001-1691 PQ DAS AGUAS-SGONCALO-RJ",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 5476,
                    "nome": "001-1692 PB POA I",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5477,
                    "nome": "001-1693 PB-CAMPINAS-I",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5478,
                    "nome": "001-1695 CENTRO-ALTAMIRA-PA",
                    "municipio": "ALTAMIRA"
                },
                {
                    "id": 5479,
                    "nome": "001 1696 SELECT FARIA LIMA SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5480,
                    "nome": "001-1697 BACAXA-SAQUAREMA-RJ",
                    "municipio": "SAQUAREMA"
                },
                {
                    "id": 5481,
                    "nome": "001-1699 PCO MUNICIPAL-M.CLAROS-MG",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 5482,
                    "nome": "CENTRO-ITAPETININGA-SP",
                    "municipio": "ITAPETININGA"
                },
                {
                    "id": 5483,
                    "nome": "SANTA RITA P QUATRO",
                    "municipio": "SANTA RITA DO PASSA QUATRO"
                },
                {
                    "id": 5484,
                    "nome": "001 0171 INDEPENDENCIA-SANTOS-SP I",
                    "municipio": "SANTOS"
                },
                {
                    "id": 5485,
                    "nome": "001-1719 IGUACU-IPATINGA-MG",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 5486,
                    "nome": "TATUI",
                    "municipio": "TATUI"
                },
                {
                    "id": 5487,
                    "nome": "001 1720 - CIDADE ADM-BH-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5488,
                    "nome": "001-1721 C MANCINI-TRES LAGOAS-MS",
                    "municipio": "TRES LAGOAS"
                },
                {
                    "id": 5489,
                    "nome": "001-1722 SELECT RADIO TV-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 5490,
                    "nome": "001-1724 303 SUDOESTE-BRASILIA-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 5491,
                    "nome": "001-1725 SELECT PANAMBY-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5492,
                    "nome": "001 1726 SELECT VL NV CONCEICAO-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5493,
                    "nome": "001-1727 SELECT BERRINI-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5494,
                    "nome": "001 1728 SELECT ESTADOS UNIDOS-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5495,
                    "nome": "001-1729 SELECT PANAMERICANA-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5496,
                    "nome": "BROTAS",
                    "municipio": "BROTAS"
                },
                {
                    "id": 5497,
                    "nome": "001-1730 SELECT ALPHAVILLE-BARUERI",
                    "municipio": "BARUERI"
                },
                {
                    "id": 5498,
                    "nome": "001-1731 SELECT CAMBUI-CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5499,
                    "nome": "001-1732 SELECT BOTAFOGO-CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5500,
                    "nome": "001-1734 SELECT TIJUCA-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5501,
                    "nome": "001-1735 SELECT COPACABANA-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5502,
                    "nome": "001-1736 SELECT LEBLON-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5503,
                    "nome": "001 1737 SELECT PCA PIO X-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5504,
                    "nome": "001-1738 SELECT CENTRO-POA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5505,
                    "nome": "001-1739 SELECT MOINHOS VENTO-POA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5506,
                    "nome": "VICENTE DE CARVALHO",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 5507,
                    "nome": "001-1740 SELECT JOAO PINHEIRO-BH",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5508,
                    "nome": "001 1741 SELECT USP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5509,
                    "nome": "001-1742�CENTRO-VIAMAO-RS",
                    "municipio": "VIAMAO"
                },
                {
                    "id": 5510,
                    "nome": "001-1744 SELECT ITAIM BIBI-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5511,
                    "nome": "001-1745 SELECT RECREIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5512,
                    "nome": "001 1746 SELECT ICARAI-NITEROI-RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 5513,
                    "nome": "001-1747 SELECT AFONSO PENA-BH",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5514,
                    "nome": "001-1748 SELECT BLUE CHIP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5515,
                    "nome": "001-1749 SELECT BOULEVARD-RIBPRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 5516,
                    "nome": "PIRAJU-INT-SP",
                    "municipio": "PIRAJU"
                },
                {
                    "id": 5517,
                    "nome": "001 1750 CID NOVA PARAUAPEBAS PA",
                    "municipio": "PARAUAPEBAS"
                },
                {
                    "id": 5518,
                    "nome": "001-1751 SELECT PITUBA-SALVADOR",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 5519,
                    "nome": "001-1752 SELECT ALVARES CABRAL",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5520,
                    "nome": "001-1753 SELECT CAMPO GRANDE",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 5521,
                    "nome": "001-1754 SELECT CATEDRAL-CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5522,
                    "nome": "001 1755 SELECT SEDE SANTANDER JK",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5523,
                    "nome": "001-1756 SELECT BELEM",
                    "municipio": "BELEM"
                },
                {
                    "id": 5524,
                    "nome": "001 1757 SELECT UBERLANDIA",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 5525,
                    "nome": "001-1758 SELECT BOA VIAGEM-RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 5526,
                    "nome": "001-1759 SELECT SET OESTE-GOIANIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 5527,
                    "nome": "ITARARE",
                    "municipio": "ITARARE"
                },
                {
                    "id": 5528,
                    "nome": "001-1760 SELECT SAO BERNARDO CAMPO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 5529,
                    "nome": "001-1761 SELECT GONZAGA-SANTOS",
                    "municipio": "SANTOS"
                },
                {
                    "id": 5530,
                    "nome": "001-1762 SELECT SAO JOSE RIO PRETO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 5531,
                    "nome": "001-1763 SELECT JUIZ DE FORA",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 5532,
                    "nome": "001-1764  SELECT PERDIZES-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5533,
                    "nome": "001-1765 SELECT CENTRO-PIRACICABA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 5534,
                    "nome": "001-1766 SELECT UBERABA",
                    "municipio": "UBERABA"
                },
                {
                    "id": 5535,
                    "nome": "001-1767 SELECT CUIABA",
                    "municipio": "CUIABA"
                },
                {
                    "id": 5536,
                    "nome": "001-1768 SELECT PETROPOLIS",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 5537,
                    "nome": "001-1769 - SELECT COPA POSTO 5-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5538,
                    "nome": "OSWALDO CRUZ",
                    "municipio": "OSVALDO CRUZ"
                },
                {
                    "id": 5539,
                    "nome": "001-1770 SELECT MARILIA",
                    "municipio": "MARILIA"
                },
                {
                    "id": 5540,
                    "nome": "001-1771 SELECT LONDRINA",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 5541,
                    "nome": "001-1772 SELECT FLORIANOPOLIS",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 5542,
                    "nome": "001-1773 SELECT MARINGA",
                    "municipio": "MARINGA"
                },
                {
                    "id": 5543,
                    "nome": "001 1774 SELECT RIO BRANCO-RJ I",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5544,
                    "nome": "001 1775 SELECT RIO BRANCO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5545,
                    "nome": "001-1776 SELECT ASSEMBLEIA-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5546,
                    "nome": "001-1777 SELECT NILO PECANHA-POA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5547,
                    "nome": "001-1778 SELECT BAURU",
                    "municipio": "BAURU"
                },
                {
                    "id": 5548,
                    "nome": "001 1779 ANGRA DOS REIS-CENTRO I",
                    "municipio": "ANGRA DOS REIS"
                },
                {
                    "id": 5549,
                    "nome": "SUMAR� II",
                    "municipio": "SUMARE"
                },
                {
                    "id": 5550,
                    "nome": "001-1780 SELECT SILVIO ROMERO-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5551,
                    "nome": "001-1781 SELECT AF.PENA-SJCAMPOS",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 5552,
                    "nome": "001-1782 SELECT G.MONTEIRO-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5553,
                    "nome": "001-1783 SELECT PCA AMERICA-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5554,
                    "nome": "001-1784 SELECT BELA PAULISTA-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5555,
                    "nome": "001-1785 SELECT ADOLFO PINHEIRO-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5556,
                    "nome": "001-1786 SELECT CENTRO-SOROCABA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 5557,
                    "nome": "001-1787 SELECT CENTRO-JUNDIAI",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 5558,
                    "nome": "001-1788 CTO-LUIS E.MAGALHAES-BA",
                    "municipio": "LUIS EDUARDO MAGALHAES"
                },
                {
                    "id": 5559,
                    "nome": "001-1789 SELECT AV ANGELICA-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5560,
                    "nome": "001-0179 CATEDRAL-J.FORA-MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 5561,
                    "nome": "001-1790 SELECT SANTO ANDRE",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 5562,
                    "nome": "001-1791 PB BR I-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 5563,
                    "nome": "001-1794 SELECT BATEL-CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5564,
                    "nome": "001-1795 SELECT CAXIAS DO SUL",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 5565,
                    "nome": "001-1797 SELECT BOTAFOGO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5566,
                    "nome": "001-1798 SELECT SAO CARLOS",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 5567,
                    "nome": "001-1799 SELECT JOAO PESSOA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 5568,
                    "nome": "OURINHOS II",
                    "municipio": "OURINHOS"
                },
                {
                    "id": 5569,
                    "nome": "CENTRO-IGARAPAVA-SP",
                    "municipio": "IGARAPAVA"
                },
                {
                    "id": 5570,
                    "nome": "001-1800 SELECT SAO CAETANO DO SUL",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 5571,
                    "nome": "001-1801 SELECT LAGO SUL-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 5572,
                    "nome": "001-1802 SELECT MOOCA-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5573,
                    "nome": "001-1803 SELECT GUARULHOS",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 5574,
                    "nome": "001-1804 SELECT A.VERDE-CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5575,
                    "nome": "001-1805 SELECT IPIRANGA-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5576,
                    "nome": "001-1806 SELECT ASA SUL-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 5577,
                    "nome": "001-1807 SELECT ANA ROSA-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5578,
                    "nome": "001-1808 SELECT CONDE DE BONFIM-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5579,
                    "nome": "001-1809 SELECT BARRA-SALVADOR",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 5580,
                    "nome": "CENTRO-M GUACU-SP",
                    "municipio": "MOGI-GUACU"
                },
                {
                    "id": 5581,
                    "nome": "001-1810 SELECT BROOKLIN-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5582,
                    "nome": "001-1811 SELECT MACAE",
                    "municipio": "MACAE"
                },
                {
                    "id": 5583,
                    "nome": "001-1812 SELECT SAVASSI-BH",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5584,
                    "nome": "001-1813 SELECT PARAISO-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5585,
                    "nome": "001-1814 SELECT MOEMA-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5586,
                    "nome": "001-1815 SELECT GOYTACAZES-RJ",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 5587,
                    "nome": "001-1816 SELECT ALDEOTA-FORTALEZA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 5588,
                    "nome": "001-1817 SELECT AGAMENON-RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 5589,
                    "nome": "001-1818 SELECT JOINVILLE",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 5590,
                    "nome": "001-1819 SELECT PACAEMBU-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5591,
                    "nome": "CENTRO-GUAIRA-SP",
                    "municipio": "GUAIRA"
                },
                {
                    "id": 5592,
                    "nome": "001 1820 SELECT TERESINA",
                    "municipio": "TERESINA"
                },
                {
                    "id": 5593,
                    "nome": "001 1821 SELECT AV PAULISTA SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5594,
                    "nome": "001-1822 SELECT BLUMENAU",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 5595,
                    "nome": "001-1824 SELECT BELVEDERE-BH",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5596,
                    "nome": "001-1825 SELECT PRES PRUDENTE",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 5597,
                    "nome": "001-1826 PB RE I-PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 5598,
                    "nome": "001-1827 PB-RIBEIRAO PRETO-SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 5599,
                    "nome": "001-1828�SELECT NATAL",
                    "municipio": "NATAL"
                },
                {
                    "id": 5600,
                    "nome": "001-1829 SELECT P DO CANTO-VITORIA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 5601,
                    "nome": "SERT�OZINHO II",
                    "municipio": "SERTAOZINHO"
                },
                {
                    "id": 5602,
                    "nome": "001 1831 SELECT MACEIO",
                    "municipio": "MACEIO"
                },
                {
                    "id": 5603,
                    "nome": "001-1833 PGR-BRASILIA-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 5604,
                    "nome": "001 1834 SELECT IPANEMA RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5605,
                    "nome": "001 1835 COM SOARES-N IGUACU-RJ I",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 5606,
                    "nome": "TACIBA",
                    "municipio": "TACIBA"
                },
                {
                    "id": 5607,
                    "nome": "MARTINOPOLIS",
                    "municipio": "MARTINOPOLIS"
                },
                {
                    "id": 5608,
                    "nome": "UNIP PAULISTA - S�O PAULO/SP",
                    "municipio": ""
                },
                {
                    "id": 5609,
                    "nome": "PIEDADE",
                    "municipio": "PIEDADE"
                },
                {
                    "id": 5610,
                    "nome": "Ag�ncia 1872",
                    "municipio": ""
                },
                {
                    "id": 5611,
                    "nome": "001 0188 DR RUDGE-SBCAMPO-SP I",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 5612,
                    "nome": "CENTRO-CAXIAS SUL-RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 5613,
                    "nome": "RIBEIR�O PRETO II",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 5614,
                    "nome": "RAUL CHAVES-JACAREI-SP",
                    "municipio": "JACAREI"
                },
                {
                    "id": 5615,
                    "nome": "001 1914 CENTRO-SAO MATEUS-ES",
                    "municipio": "SAO MATEUS"
                },
                {
                    "id": 5616,
                    "nome": "001 1916 SHOP CAJAZEIRAS-SALVADOR-BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 5617,
                    "nome": "001 1917 CENTRO-CALDAS NOVAS-GO",
                    "municipio": "CALDAS NOVAS"
                },
                {
                    "id": 5618,
                    "nome": "001 1918 CENTRO-TEIX. FREITAS-BA",
                    "municipio": "TEIXEIRA DE FREITAS"
                },
                {
                    "id": 5619,
                    "nome": "001 1919 CENTRO-PORTO SEGURO-BA",
                    "municipio": "PORTO SEGURO"
                },
                {
                    "id": 5620,
                    "nome": "001-0192 CACONDE",
                    "municipio": "CACONDE"
                },
                {
                    "id": 5621,
                    "nome": "001 1921 SHOP AURORA-LONDRINA-PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 5622,
                    "nome": "001 1922 NOVA-MARABA-PA",
                    "municipio": "MARABA"
                },
                {
                    "id": 5623,
                    "nome": "001 1925 TRIANG-JUAZEIRO NORTE-CE",
                    "municipio": "JUAZEIRO DO NORTE"
                },
                {
                    "id": 5624,
                    "nome": "CENTRO-MATAO-SP",
                    "municipio": "MATAO"
                },
                {
                    "id": 5625,
                    "nome": "001 1931 SELECT MANAUS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 5626,
                    "nome": "001 1932 CENTRO-ALAGOINHAS-BA",
                    "municipio": "ALAGOINHAS"
                },
                {
                    "id": 5627,
                    "nome": "CENTRO-VALINHOS-SP",
                    "municipio": "VALINHOS"
                },
                {
                    "id": 5628,
                    "nome": "001 1941 CENTRO-JI-PARANA-RO",
                    "municipio": "JI-PARANA"
                },
                {
                    "id": 5629,
                    "nome": "001 1942 GAMA-BRASILIA-DF",
                    "municipio": "BRASILIA (GAMA)"
                },
                {
                    "id": 5630,
                    "nome": "001 1943 CENTRO-JEQUIE-BA",
                    "municipio": "JEQUIE"
                },
                {
                    "id": 5631,
                    "nome": "001 1944 CENTRO-ITACOATIARA-AM",
                    "municipio": "ITACOATIARA"
                },
                {
                    "id": 5632,
                    "nome": "CENTRO-MAUA-SP",
                    "municipio": "MAUA"
                },
                {
                    "id": 5633,
                    "nome": "CENTRO-RIB PIRES-SP",
                    "municipio": "RIBEIRAO PIRES"
                },
                {
                    "id": 5634,
                    "nome": "SUZANO II",
                    "municipio": "SUZANO"
                },
                {
                    "id": 5635,
                    "nome": "001 1981 CENTRO-CPO NOVO PARECIS-MT",
                    "municipio": "CAMPO NOVO DO PARECIS"
                },
                {
                    "id": 5636,
                    "nome": "001 1982 CENTRO-S ANTONIO JESUS-BA",
                    "municipio": "SANTO ANTONIO DE JESUS"
                },
                {
                    "id": 5637,
                    "nome": "001 1983 CENTRO-VIANA-ES",
                    "municipio": "VIANA"
                },
                {
                    "id": 5638,
                    "nome": "001 1984 CENTRO-SAPEZAL-MT",
                    "municipio": "SAPEZAL"
                },
                {
                    "id": 5639,
                    "nome": "001 1985 CENTRO-ALTA FLORESTA-MT",
                    "municipio": "ALTA FLORESTA"
                },
                {
                    "id": 5640,
                    "nome": "001 1986 CENTRO-VILHENA-RO",
                    "municipio": "VILHENA"
                },
                {
                    "id": 5641,
                    "nome": "001 1987 CENTRO-CIANORTE-PR",
                    "municipio": "CIANORTE"
                },
                {
                    "id": 5642,
                    "nome": "001 1988 JK SHOP-CEILANDIA-DF",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 5643,
                    "nome": "001 1989 CENTRO-CACERES-MT",
                    "municipio": "CACERES"
                },
                {
                    "id": 5644,
                    "nome": "MANAUS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 5645,
                    "nome": "001 1991 CENTRO-EUNAPOLIS-BA",
                    "municipio": "EUNAPOLIS"
                },
                {
                    "id": 5646,
                    "nome": "001 1997 CENTRO-PATO BRANCO-PR",
                    "municipio": "PATO BRANCO"
                },
                {
                    "id": 5647,
                    "nome": "001 1998 CENTRO-SAO FELIX XINGU-PA",
                    "municipio": "SAO FELIX DO XINGU"
                },
                {
                    "id": 5648,
                    "nome": "001-0002 SANTOS II",
                    "municipio": "SANTOS"
                },
                {
                    "id": 5649,
                    "nome": "CENTRO-OLIMPIA-SP",
                    "municipio": "OLIMPIA"
                },
                {
                    "id": 5650,
                    "nome": "001 2001 CENTRO-CAMETA-PA",
                    "municipio": "CAMETA"
                },
                {
                    "id": 5651,
                    "nome": "001-2002 BELENZINHO II-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5652,
                    "nome": "ALTO DA B.VISTA-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5653,
                    "nome": "001 2005 LGO DA CARIOCA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5654,
                    "nome": "001 2006 FARIA LIMA II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5655,
                    "nome": "001 2007 CENTRO-SANTOS-SP I",
                    "municipio": "SANTOS"
                },
                {
                    "id": 5656,
                    "nome": "CONSOLACAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5657,
                    "nome": "JAU I",
                    "municipio": "JAU"
                },
                {
                    "id": 5658,
                    "nome": "001 2011 CENTRO-BARBALHA-CE",
                    "municipio": "BARBALHA"
                },
                {
                    "id": 5659,
                    "nome": "001 2012 LAPA-SP-SP III",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5660,
                    "nome": "001-2013 BRASILIA - SETOR COMERCIAL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 5661,
                    "nome": "001 2014 PADROEIRA-JUNDIAI-SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 5662,
                    "nome": "001 2016 G.VARGAS-GUARULHOS-SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 5663,
                    "nome": "FCO. GLICERIO-CAMPINAS/SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5664,
                    "nome": "GOV PEDRO TOLEDO-INT-SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 5665,
                    "nome": "001 2019 R ALVARES CABRAL-INT-SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 5666,
                    "nome": "TIJUCA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5667,
                    "nome": "001 2020 CENTRO-CASTANHAL-PA",
                    "municipio": "CASTANHAL"
                },
                {
                    "id": 5668,
                    "nome": "C MONTEIRO-SJCAMPOS-SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 5669,
                    "nome": "CASTELO II-INT-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5670,
                    "nome": "VOLUNT�RIOS-INT-SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 5671,
                    "nome": "001 2026 SOROCABA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 5672,
                    "nome": "001 2028 ARACATUBA",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 5673,
                    "nome": "001 2029 CENTRO-BIGUACU-SC",
                    "municipio": "BIGUACU"
                },
                {
                    "id": 5674,
                    "nome": "BROOKLIN",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5675,
                    "nome": "ALTO DA B.VISTA I-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5676,
                    "nome": "001 2031 PCA XV-P. ALEGRE-RS I",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5677,
                    "nome": "001-2033 AV PARAN� I-INT-PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 5678,
                    "nome": "ARARAQUARA I",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 5679,
                    "nome": "001 2037 LIMA E SILVA-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5680,
                    "nome": "001-2038 CAMPO DE MARTE-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5681,
                    "nome": "MARECHAL RONDON-INT-SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 5682,
                    "nome": "001 0204 AV PAULISTA-SP-SP III",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5683,
                    "nome": "MARILIA I",
                    "municipio": "MARILIA"
                },
                {
                    "id": 5684,
                    "nome": "001 2041 UBERLANDIA-PLATO I",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 5685,
                    "nome": "SANTA CECILIA - SP CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5686,
                    "nome": "HIPICA-SP-CAP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5687,
                    "nome": "001-2044 ALTO DA XV-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5688,
                    "nome": "SILVIO ROMERO-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5689,
                    "nome": "BONSUCESSO-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5690,
                    "nome": "SENADOR FLAQUER S ANDRE SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 5691,
                    "nome": "001-2048 AFONSO PENA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5692,
                    "nome": "001 2049 CENTRO-GUAXUPE-MG",
                    "municipio": "GUAXUPE"
                },
                {
                    "id": 5693,
                    "nome": "001 0205 SAO JOAO I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5694,
                    "nome": "001 2050 JUSCELINO KUBITSCHEK-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5695,
                    "nome": "001 2051 GONCALVES LEDO-FORTALEZA-CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 5696,
                    "nome": "001 2052 CENTRO-MARAU-RS",
                    "municipio": "MARAU"
                },
                {
                    "id": 5697,
                    "nome": "001 2053 CENTRO-GOIANESIA-GO",
                    "municipio": "GOIANESIA"
                },
                {
                    "id": 5698,
                    "nome": "001 2054 CENTRO-CAMPINA GDE SUL-PR",
                    "municipio": "CAMPINA GRANDE DO SUL"
                },
                {
                    "id": 5699,
                    "nome": "001 2055 CENTRO-MURIAE-MG",
                    "municipio": "MURIAE"
                },
                {
                    "id": 5700,
                    "nome": "001 2056 AL RIO NEGRO-INT-SP II",
                    "municipio": "BARUERI"
                },
                {
                    "id": 5701,
                    "nome": "GIOVANNI GRONCHI - SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5702,
                    "nome": "VILA MARY - DIADEMA SP",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 5703,
                    "nome": "001 2059 TAQUARALTO-PALMAS-TO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 5704,
                    "nome": "SP-VILA MARIA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5705,
                    "nome": "001 2060 PRAIA FORTE-MATA SJOAO-BA",
                    "municipio": "MATA DE SAO JOAO"
                },
                {
                    "id": 5706,
                    "nome": "MARACATINS-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5707,
                    "nome": "001 2062 URB-SP-BERRINI I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5708,
                    "nome": "PARI I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5709,
                    "nome": "001 2064 VILA OLIMPIA-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5710,
                    "nome": "AGUA FRIA - SP CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5711,
                    "nome": "LIBERDADE I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5712,
                    "nome": "PERDIZES I-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5713,
                    "nome": "001-2068 CAMPO BELO I-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5714,
                    "nome": "VILA DIVA - SP CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5715,
                    "nome": "BARAO GERALDO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5716,
                    "nome": "001 2070 AV. IBIRAPUERA-SP CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5717,
                    "nome": "EMILIO CARLOS-OSASCO-SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 5718,
                    "nome": "R PAMPLONA 1681-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5719,
                    "nome": "ANTILHAS-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5720,
                    "nome": "VL DIVA I-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5721,
                    "nome": "SAO CAETANO DO SUL I",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 5722,
                    "nome": "001 2076 NV PACAEMBU-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5723,
                    "nome": "001 2079 GRACA ARANHA-RJ II",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5724,
                    "nome": "CAPAO BONITO",
                    "municipio": "CAPAO BONITO"
                },
                {
                    "id": 5725,
                    "nome": "001 2080 MATRIZ PATRIA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5726,
                    "nome": "001-2081 JD OCEANICO-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5727,
                    "nome": "CONTAGEM - MG",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 5728,
                    "nome": "ACLIMACAO I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5729,
                    "nome": "AV CONTORNO SAVASSI-BH-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5730,
                    "nome": "001 2086 CENTRO-CANAA CARAJAS-PA",
                    "municipio": "CANAA DOS CARAJAS"
                },
                {
                    "id": 5731,
                    "nome": "JULIO CASTILHOS I INT RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 5732,
                    "nome": "ASSIS BRASIL-P.ALEGRE RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5733,
                    "nome": "001-2089 BLUMENAU-SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 5734,
                    "nome": "RIO DAS PEDRAS",
                    "municipio": "RIO DAS PEDRAS"
                },
                {
                    "id": 5735,
                    "nome": "CARLOS GOMES - POA RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5736,
                    "nome": "001 2091 AV ALVARES CABRAL-BH-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5737,
                    "nome": "BETIM   MG",
                    "municipio": "BETIM"
                },
                {
                    "id": 5738,
                    "nome": "MADUREIRA - RJ CAPITAL",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5739,
                    "nome": "001-2094 ILHA DO GOVERNADOR",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5740,
                    "nome": "PIRITUBA I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5741,
                    "nome": "C. CASTIGLIONE I-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5742,
                    "nome": "001 2097 AV STOS DUMONT-UBERABA-MG III",
                    "municipio": "UBERABA"
                },
                {
                    "id": 5743,
                    "nome": "001-2098 ERNANI AMARAL I-NITEROI-RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 5744,
                    "nome": "001 2099 POSTO 6 RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5745,
                    "nome": "CENTRO-BARRETOS-SP",
                    "municipio": "BARRETOS"
                },
                {
                    "id": 5746,
                    "nome": "STA. BARBARA DO OESTE",
                    "municipio": "SANTA BARBARA D'OESTE"
                },
                {
                    "id": 5747,
                    "nome": "001 2100 SAO MIGUEL PTA-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5748,
                    "nome": "001 2101 CEL QUIRINO-CAMPINAS-SP V",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5749,
                    "nome": "SAO JOSE DOS PINHAIS - PR",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 5750,
                    "nome": "001-2103 JARDIM DE ALAH-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5751,
                    "nome": "001 2104 HEITOR PENTEADO-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5752,
                    "nome": "001 2105 SAMAMBAIA-BRASILIA-DF",
                    "municipio": "BRASILIA (SAMAMBAIA)"
                },
                {
                    "id": 5753,
                    "nome": "001 2106 ABAETETUBA-PA",
                    "municipio": "ABAETETUBA"
                },
                {
                    "id": 5754,
                    "nome": "VILA MATILDE - SP CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5755,
                    "nome": "VILA RE - SP CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5756,
                    "nome": "001 2109 MANOEL RIBAS-GUARAPUAVA-PR",
                    "municipio": "GUARAPUAVA"
                },
                {
                    "id": 5757,
                    "nome": "001 0211 SAO MIGUEL ARCANJO",
                    "municipio": "SAO MIGUEL ARCANJO"
                },
                {
                    "id": 5758,
                    "nome": "ARICANDUVA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5759,
                    "nome": "VILA S�NIA I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5760,
                    "nome": "001 2112 AV.BAND-CAMPO GRANDE-MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 5761,
                    "nome": "001-2113 ALTO DA MOOCA II-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5762,
                    "nome": "FRANCA I",
                    "municipio": "FRANCA"
                },
                {
                    "id": 5763,
                    "nome": "001-2115 SANTA EFIGENIA-BH-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5764,
                    "nome": "001-2116 R ARAGUARI-BH-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5765,
                    "nome": "TIJUCA I",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5766,
                    "nome": "001 2118 ITAPEMA-SC",
                    "municipio": "ITAPEMA"
                },
                {
                    "id": 5767,
                    "nome": "VL MARIANA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5768,
                    "nome": "001 2120 CAICO-RN",
                    "municipio": "CAICO"
                },
                {
                    "id": 5769,
                    "nome": "001-2122 CATEDRAL II-J.FORA-MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 5770,
                    "nome": "011-2123 PQ MOINHOS-P.ALEGRE-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5771,
                    "nome": "001-1022 AZENHA - P. ALEGRE RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5772,
                    "nome": "SUZANO I",
                    "municipio": "SUZANO"
                },
                {
                    "id": 5773,
                    "nome": "001 2126 TAUBATE - SP II",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 5774,
                    "nome": "B ASSUNCAO-SBCAMPO-SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 5775,
                    "nome": "001 2128 R ALVARES CABRAL I-INT-SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 5776,
                    "nome": "SERTAOZINHO I",
                    "municipio": "SERTAOZINHO"
                },
                {
                    "id": 5777,
                    "nome": "JOAO PESSOA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 5778,
                    "nome": "ANDROMEDA-SJCAMPOS-SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 5779,
                    "nome": "CENTRO JOINVILLE",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 5780,
                    "nome": "TAGUATINGA - DF",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 5781,
                    "nome": "001-2133 BATEL - CURITIBA PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5782,
                    "nome": "001 2136 PCA FERREIRA-FORTALEZA-CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 5783,
                    "nome": "001 2138 CENTENARIA - RS III",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5784,
                    "nome": "001-2139 BRASILIA ASA SUL - DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 5785,
                    "nome": "CAMPO GRANDE - MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 5786,
                    "nome": "001-2141 PIO XII - GOIANIA GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 5787,
                    "nome": "001 2142 G.VARGAS-GUARULHOS-SP  II",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 5788,
                    "nome": "CAPELA DO SOCORRO/CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5789,
                    "nome": "001 2144 MORUMBI-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5790,
                    "nome": "001 2145 IPIRANGA-SP-SP IV",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5791,
                    "nome": "Rua Imperador Dom Pedro Ii",
                    "municipio": ""
                },
                {
                    "id": 5792,
                    "nome": "MARING�-BRASIL-INT-PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 5793,
                    "nome": "UTINGA I",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 5794,
                    "nome": "MAL DEODORO-PETROPOLIS-RJ",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 5795,
                    "nome": "AV ANA COSTA-SANTOS-SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 5796,
                    "nome": "001-2152 CENTRO ITQ-INT-SP",
                    "municipio": "ITAQUAQUECETUBA"
                },
                {
                    "id": 5797,
                    "nome": "VL NOVA GALV�O-INT-SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 5798,
                    "nome": "ARARAS I",
                    "municipio": "ARARAS"
                },
                {
                    "id": 5799,
                    "nome": "AMERICANA I",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 5800,
                    "nome": "001 2159 CACOAL-RO",
                    "municipio": "CACOAL"
                },
                {
                    "id": 5801,
                    "nome": "CENTRO-ITATIBA-SP",
                    "municipio": "ITATIBA"
                },
                {
                    "id": 5802,
                    "nome": "BARUERI I",
                    "municipio": "BARUERI"
                },
                {
                    "id": 5803,
                    "nome": "001 2162 LARGO DO ROSARIO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5804,
                    "nome": "001 2163 CENTRO-DIADEMA-SP II",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 5805,
                    "nome": "001-2166 ALTO DA MOOCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5806,
                    "nome": "MAJOR SERTORIO SP - CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5807,
                    "nome": "SENADOR VERGUEIRO-INT-SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 5808,
                    "nome": "TUCURUVI I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5809,
                    "nome": "001-2170 JD DA SA�DE-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5810,
                    "nome": "VILA LEOPOLDINA - SP CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5811,
                    "nome": "001 2172 BUTANTA - SP CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5812,
                    "nome": "C.CASTIGLIONE-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5813,
                    "nome": "001 2174 ANA ROSA-SP-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5814,
                    "nome": "001 2175 AV PAULISTA-SP-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5815,
                    "nome": "RUBINO DE OLIVEIRA-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5816,
                    "nome": "AV IPIRANGA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5817,
                    "nome": "R DA GRA�A-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5818,
                    "nome": "CAMBUCI I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5819,
                    "nome": "CENTRO-GARCA-SP",
                    "municipio": "GARCA"
                },
                {
                    "id": 5820,
                    "nome": "R BONIFACIL CUBAS-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5821,
                    "nome": "SILVIO ROMERO I-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5822,
                    "nome": "001-2182 CIDADE JARDIM - SP CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5823,
                    "nome": "BAR�O RIO BRANCO-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5824,
                    "nome": "AV CUIABA-RONDONOPOLIS-MT",
                    "municipio": "RONDONOPOLIS"
                },
                {
                    "id": 5825,
                    "nome": "001 2186 CUIABA-AV.GETULIO VARGAS II",
                    "municipio": "CUIABA"
                },
                {
                    "id": 5826,
                    "nome": "001 2187 BH-AVENIDA II",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5827,
                    "nome": "001 2189 MAL DEODORO-CURITIBA II",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5828,
                    "nome": "001 0219 BENJAMIN CONSTANT - PORTO ALEGRE RS I",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5829,
                    "nome": "PORTAO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5830,
                    "nome": "CASCAVEL - PR",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 5831,
                    "nome": "001 2194 - SAO MIGUEL PTA-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5832,
                    "nome": "PENHA I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5833,
                    "nome": "RUA PAULA SOUZA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5834,
                    "nome": "PCA PANAMERICANA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5835,
                    "nome": "PIRAJUI",
                    "municipio": "PIRAJUI"
                },
                {
                    "id": 5836,
                    "nome": "PERDIZES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5837,
                    "nome": "JARDIM BRASIL SP - CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5838,
                    "nome": "VILA SANTA CATARINA I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5839,
                    "nome": "001 2205 VL PRUDENTE-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5840,
                    "nome": "N S CANDEL�RIA-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5841,
                    "nome": "SETE DE ABRIL - SP CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5842,
                    "nome": "001 2208 PA VL NV CONCEICAO-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5843,
                    "nome": "CENTRO-MONTE ALTO-SP",
                    "municipio": "MONTE ALTO"
                },
                {
                    "id": 5844,
                    "nome": "LIMEIRA I",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 5845,
                    "nome": "LINS I",
                    "municipio": "LINS"
                },
                {
                    "id": 5846,
                    "nome": "001-2215 AV AUTONOMISTAS-OSASCO-SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 5847,
                    "nome": "OURINHOS I",
                    "municipio": "OURINHOS"
                },
                {
                    "id": 5848,
                    "nome": "VISC INHAUMA-INT-SP",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 5849,
                    "nome": "FELICIO LAURITO-INT-SP",
                    "municipio": "RIBEIRAO PIRES"
                },
                {
                    "id": 5850,
                    "nome": "NOVE DE JULHO   RIB  PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 5851,
                    "nome": "001-2225 REGIS-TSERRA-SP",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 5852,
                    "nome": "VILA PIRES - STO.ANDRE - SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 5853,
                    "nome": "001 2227 AV REBOUCAS-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5854,
                    "nome": "001-2228 AV DOS BANDEIRANTES/SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5855,
                    "nome": "PEDRO II-S ANDRE-SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 5856,
                    "nome": "CONCHAL",
                    "municipio": "CONCHAL"
                },
                {
                    "id": 5857,
                    "nome": "ALFONSO BOVERO I-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5858,
                    "nome": "IT� I",
                    "municipio": "ITU"
                },
                {
                    "id": 5859,
                    "nome": "001-2233 SERRA DO JAPI-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5860,
                    "nome": "N S CANDEL�RIA I-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5861,
                    "nome": "PARQUE DA UVA I-INT-SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 5862,
                    "nome": "001-2237 MOGI DAS CRUZES I",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 5863,
                    "nome": "SUMARE I",
                    "municipio": "SUMARE"
                },
                {
                    "id": 5864,
                    "nome": "SANTA CECILIA I-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5865,
                    "nome": "AV. CUPECE - SP CAPITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5866,
                    "nome": "INDAIATUBA I",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 5867,
                    "nome": "001-2242 V. REZENDE - PIRAC - SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 5868,
                    "nome": "VOLUNT�RIOS I-INT-SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 5869,
                    "nome": "JARDIM BONFIGLIOLI I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5870,
                    "nome": "001-2245 INTERLAGOS I-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5871,
                    "nome": "001 2246 PICOS-PI",
                    "municipio": "PICOS"
                },
                {
                    "id": 5872,
                    "nome": "001-2247 SHOP DOWNTOWN-CAP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5873,
                    "nome": "FREGUESIA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5874,
                    "nome": "001 2249 BELO HORIZONTE-MG I",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5875,
                    "nome": "CENTRO-ORLANDIA-SP",
                    "municipio": "ORLANDIA"
                },
                {
                    "id": 5876,
                    "nome": "001 2250 AV PAULISTA-SP-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5877,
                    "nome": "CASTELO I-INT-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5878,
                    "nome": "RIO CLARO I",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 5879,
                    "nome": "001-2253 PCA DR AUGUSTO-LAVRAS-MG",
                    "municipio": "LAVRAS"
                },
                {
                    "id": 5880,
                    "nome": "PCA GV-VARGINHA-MG",
                    "municipio": "VARGINHA"
                },
                {
                    "id": 5881,
                    "nome": "J BENTO-POUSO ALEGRE-MG",
                    "municipio": "POUSO ALEGRE"
                },
                {
                    "id": 5882,
                    "nome": "CENTRO CIVICO-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 5883,
                    "nome": "001-2257 LGO DA S FEIRA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5884,
                    "nome": "001-2258 VILA ISABEL - RJ - CAP",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5885,
                    "nome": "001-2259 AV NELSON CARDOSO-RJ-CAP",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5886,
                    "nome": "001 0226 B 25 DE AGOSTO-DCAXIAS-RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 5887,
                    "nome": "CEL CARNEIRO-ITAJUBA-MG",
                    "municipio": "ITAJUBA"
                },
                {
                    "id": 5888,
                    "nome": "001-2261 BELVEDERE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5889,
                    "nome": "MARING�-BRASIL II-INT-PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 5890,
                    "nome": "CORPORATE II",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5891,
                    "nome": "001-2265 TIRADENTES-TOLEDO-PR",
                    "municipio": "TOLEDO"
                },
                {
                    "id": 5892,
                    "nome": "001 2266 SAO PEDRO DA ALDEIA-RJ",
                    "municipio": "SAO PEDRO DA ALDEIA"
                },
                {
                    "id": 5893,
                    "nome": "AV GOIAS I-DIVINOPOLIS-MG",
                    "municipio": "DIVINOPOLIS"
                },
                {
                    "id": 5894,
                    "nome": "001-2268 AV AROUCA-PASSOS-MG",
                    "municipio": "PASSOS"
                },
                {
                    "id": 5895,
                    "nome": "CONCHAS",
                    "municipio": "CONCHAS"
                },
                {
                    "id": 5896,
                    "nome": "001 2270 PRIVATE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5897,
                    "nome": "CORPORATE VI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5898,
                    "nome": "001 2272 CASTRO-PR",
                    "municipio": "CASTRO"
                },
                {
                    "id": 5899,
                    "nome": "001 2275 PONTA PORA-MS",
                    "municipio": "PONTA PORA"
                },
                {
                    "id": 5900,
                    "nome": "001 2276 MEDIANEIRA-PR",
                    "municipio": "MEDIANEIRA"
                },
                {
                    "id": 5901,
                    "nome": "001 2277 JARINU-SP",
                    "municipio": "JARINU"
                },
                {
                    "id": 5902,
                    "nome": "001 2278 JANAUBA-MG",
                    "municipio": "JANAUBA"
                },
                {
                    "id": 5903,
                    "nome": "CORPORATE BH",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 5904,
                    "nome": "001 0228 SP-PARAISO I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5905,
                    "nome": "CORPORATE III",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5906,
                    "nome": "ASSET",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5907,
                    "nome": "CORPORATE IV",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5908,
                    "nome": "R DO IMPERADOR RIO - RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5909,
                    "nome": "001 2284 RIO DE JANEIRO-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5910,
                    "nome": "ESTACAO-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5911,
                    "nome": "001-2286 LARGO DO BICAO-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5912,
                    "nome": "MEIER-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 5913,
                    "nome": "001-2288 AV CENTRAL-SERRA-ES",
                    "municipio": "SERRA"
                },
                {
                    "id": 5914,
                    "nome": "001-2289 JOAO MONLEVADE-INT-MG",
                    "municipio": "JOAO MONLEVADE"
                },
                {
                    "id": 5915,
                    "nome": "UTINGA II",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 5916,
                    "nome": "001-2290 TIMOTEO-INT-MG",
                    "municipio": "TIMOTEO"
                },
                {
                    "id": 5917,
                    "nome": "MANOEL DIAS-SALVADOR-BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 5918,
                    "nome": "001 2292 SAO GONCALO AMARANTE-RN",
                    "municipio": "SAO GONCALO DO AMARANTE"
                },
                {
                    "id": 5919,
                    "nome": "001 2293 MAIOBAO-MA",
                    "municipio": "PACO DO LUMIAR"
                },
                {
                    "id": 5920,
                    "nome": "001 2294 IGUATU-CE",
                    "municipio": "IGUATU"
                },
                {
                    "id": 5921,
                    "nome": "001 2295 PRAIA DE BELAS-P.ALEGRE-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 5922,
                    "nome": "001 2296 CENTRO-CAXIAS-MA",
                    "municipio": "CAXIAS"
                },
                {
                    "id": 5923,
                    "nome": "001 2298 NICOMEDES-UBERLANDIA-MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 5924,
                    "nome": "001 2299 RUY RODRIGUEZ-CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5925,
                    "nome": "CENTRO-JABOTICABAL-SP",
                    "municipio": "JABOTICABAL"
                },
                {
                    "id": 5926,
                    "nome": "CRAVINHOS",
                    "municipio": "CRAVINHOS"
                },
                {
                    "id": 5927,
                    "nome": "001 2300 POMERODE-SC",
                    "municipio": "POMERODE"
                },
                {
                    "id": 5928,
                    "nome": "001 2301 MANGABEIRA-J.PESSOA-PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 5929,
                    "nome": "001 2302 ARAGUAINA-TO",
                    "municipio": "ARAGUAINA"
                },
                {
                    "id": 5930,
                    "nome": "001 2303 TRES PONTAS-MG",
                    "municipio": "TRES PONTAS"
                },
                {
                    "id": 5931,
                    "nome": "001 2304 ITAPARICA-VILA VELHA-ES",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 5932,
                    "nome": "001 2305 GRANDE CIRCULAR-MANAUS-AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 5933,
                    "nome": "001 2306 SAO PEDRO-TERESINA-PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 5934,
                    "nome": "001 2307 CALHAU-SAO LUIS-MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 5935,
                    "nome": "001 2308 PARNAIBA-PI",
                    "municipio": "PARNAIBA"
                },
                {
                    "id": 5936,
                    "nome": "001 2325 PAULO AFONSO-BA",
                    "municipio": "PAULO AFONSO"
                },
                {
                    "id": 5937,
                    "nome": "001 2327 VALPARAISO DE GOIAS-GO",
                    "municipio": "VALPARAISO DE GOIAS"
                },
                {
                    "id": 5938,
                    "nome": "001 2328 IRECE-BA",
                    "municipio": "IRECE"
                },
                {
                    "id": 5939,
                    "nome": "001 2329 ABREU E LIMA-PE",
                    "municipio": "ABREU E LIMA"
                },
                {
                    "id": 5940,
                    "nome": "ALBUQUERQUE LINS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5941,
                    "nome": "001 2331 QUEIMADOS-RJ",
                    "municipio": "QUEIMADOS"
                },
                {
                    "id": 5942,
                    "nome": "001 2332 CAUCAIA-CE",
                    "municipio": "CAUCAIA"
                },
                {
                    "id": 5943,
                    "nome": "001 2334 PARNAMIRIN-RN",
                    "municipio": "PARNAMIRIM"
                },
                {
                    "id": 5944,
                    "nome": "001 2337 DIAMANTINA-MG",
                    "municipio": "DIAMANTINA"
                },
                {
                    "id": 5945,
                    "nome": "001 2338 SANTO ANTONIO PATRULHA-RS",
                    "municipio": "SANTO ANTONIO DA PATRULHA"
                },
                {
                    "id": 5946,
                    "nome": "001 2339 FORMOSA-GO",
                    "municipio": "FORMOSA"
                },
                {
                    "id": 5947,
                    "nome": "001 2344 MAGE-RJ",
                    "municipio": "MAGE"
                },
                {
                    "id": 5948,
                    "nome": "001 2346 RIBEIRAO DAS NEVES-MG",
                    "municipio": "RIBEIRAO DAS NEVES"
                },
                {
                    "id": 5949,
                    "nome": "001 2347 ARIQUEMES RO",
                    "municipio": "ARIQUEMES"
                },
                {
                    "id": 5950,
                    "nome": "001 0235 HEITOR PENTEADO-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5951,
                    "nome": "001 2358 BONSUCESSO-GUARULHOS-SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 5952,
                    "nome": "COND 5 AVENIDA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5953,
                    "nome": "001 2361 MACHADO-MG",
                    "municipio": "MACHADO"
                },
                {
                    "id": 5954,
                    "nome": "001 2362 TRINDADE GO",
                    "municipio": "TRINDADE"
                },
                {
                    "id": 5955,
                    "nome": "001 2364 MAMANGUAPE-PB",
                    "municipio": "MAMANGUAPE"
                },
                {
                    "id": 5956,
                    "nome": "001 2365 TELEMACO BORBA-PR",
                    "municipio": "TELEMACO BORBA"
                },
                {
                    "id": 5957,
                    "nome": "001 2366 MORADA SOL-INDAIATUBA-SP",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 5958,
                    "nome": "001 2367 SANTA INES-MA",
                    "municipio": "SANTA INES"
                },
                {
                    "id": 5959,
                    "nome": "001 2368 IRATI-PR",
                    "municipio": "IRATI"
                },
                {
                    "id": 5960,
                    "nome": "001 2369 CRATEUS-CE",
                    "municipio": "CRATEUS"
                },
                {
                    "id": 5961,
                    "nome": "ARTUR NOGUEIRA",
                    "municipio": "ARTUR NOGUEIRA"
                },
                {
                    "id": 5962,
                    "nome": "001 2370 ITAPIPOCA-CE",
                    "municipio": "ITAPIPOCA"
                },
                {
                    "id": 5963,
                    "nome": "001 0238 BRAS-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5964,
                    "nome": "001 2382 IGARAPE-MIRI-PA",
                    "municipio": "IGARAPE-MIRI"
                },
                {
                    "id": 5965,
                    "nome": "Ag�ncia 2383",
                    "municipio": ""
                },
                {
                    "id": 5966,
                    "nome": "001-0239 CAMPOS ELISEOS-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5967,
                    "nome": "001 2390 PIRAPORA-MG",
                    "municipio": "PIRAPORA"
                },
                {
                    "id": 5968,
                    "nome": "001 2392 SANTO ANTONIO DE PADUA-RJ",
                    "municipio": "SANTO ANTONIO DE PADUA"
                },
                {
                    "id": 5969,
                    "nome": "001 2396 PINHEIRO-MA",
                    "municipio": "PINHEIRO"
                },
                {
                    "id": 5970,
                    "nome": "S�O CARLOS II",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 5971,
                    "nome": "001 2402 JARU-RO",
                    "municipio": "JARU"
                },
                {
                    "id": 5972,
                    "nome": "001 2424 NEROPOLIS-GO",
                    "municipio": "NEROPOLIS"
                },
                {
                    "id": 5973,
                    "nome": "001 2429 SANTA LUZIA-MA",
                    "municipio": "SANTA LUZIA"
                },
                {
                    "id": 5974,
                    "nome": "VINTE QUATRO DE MAIO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5975,
                    "nome": "001 2432 AQUIDAUANA-MS",
                    "municipio": "AQUIDAUANA"
                },
                {
                    "id": 5976,
                    "nome": "001 2437 ALMIRANTE TAMANDARE-PR",
                    "municipio": "ALMIRANTE TAMANDARE"
                },
                {
                    "id": 5977,
                    "nome": "001 2438 IMBITUBA-SC",
                    "municipio": "IMBITUBA"
                },
                {
                    "id": 5978,
                    "nome": "VIA ANCHIETA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5979,
                    "nome": "001 2440 AV LIONS RONDONOPOLIS MT",
                    "municipio": "RONDONOPOLIS"
                },
                {
                    "id": 5980,
                    "nome": "001 2441 CAMPO GRANDE-CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 5981,
                    "nome": "001 2442 CONFRESA-MT",
                    "municipio": "CONFRESA"
                },
                {
                    "id": 5982,
                    "nome": "001 0245 CLODOMIRO AMAZONAS I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5983,
                    "nome": "001 2456 DOM ELISEU-PA",
                    "municipio": "DOM ELISEU"
                },
                {
                    "id": 5984,
                    "nome": "001 2462 ROLIM DE MOURA-RO",
                    "municipio": "ROLIM DE MOURA"
                },
                {
                    "id": 5985,
                    "nome": "001 2465 ASSIS CHATEAUBRIAND-PR",
                    "municipio": "ASSIS CHATEAUBRIAND"
                },
                {
                    "id": 5986,
                    "nome": "001 2470 RIO BRILHANTE-MS",
                    "municipio": "RIO BRILHANTE"
                },
                {
                    "id": 5987,
                    "nome": "001 2478 TEFE-AM",
                    "municipio": "TEFE"
                },
                {
                    "id": 5988,
                    "nome": "001 2479 MANHUACU-MG",
                    "municipio": "MANHUACU"
                },
                {
                    "id": 5989,
                    "nome": "LIBERDADE II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 5990,
                    "nome": "001 2491 ARARANGUA-SC",
                    "municipio": "ARARANGUA"
                },
                {
                    "id": 5991,
                    "nome": "001 2492 PIMENTA BUENO - RO",
                    "municipio": "PIMENTA BUENO"
                },
                {
                    "id": 5992,
                    "nome": "001 2494 ICARA-SC",
                    "municipio": "ICARA"
                },
                {
                    "id": 5993,
                    "nome": "001 2499 ITAITUBA-PA",
                    "municipio": "ITAITUBA"
                },
                {
                    "id": 5994,
                    "nome": "IBITINGA",
                    "municipio": "IBITINGA"
                },
                {
                    "id": 5995,
                    "nome": "001 2503 VILA DIRCE CARAPICUIBA SP",
                    "municipio": "CARAPICUIBA"
                },
                {
                    "id": 5996,
                    "nome": "001 2505 CATAGUASES-MG",
                    "municipio": "CATAGUASES"
                },
                {
                    "id": 5997,
                    "nome": "001 2507 PORTO VELHO - JATUARANA - RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 5998,
                    "nome": "001 2508 CRUZEIRO DO SUL-AC",
                    "municipio": "CRUZEIRO DO SUL"
                },
                {
                    "id": 5999,
                    "nome": "001 2515 MANACAPURU-AM",
                    "municipio": "MANACAPURU"
                },
                {
                    "id": 6000,
                    "nome": "MADRE DE DEUS-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6001,
                    "nome": "001 2523 SAO MATEUS DO SUL-PR",
                    "municipio": "SAO MATEUS DO SUL"
                },
                {
                    "id": 6002,
                    "nome": "001 2525 EFAPI-CHAPECO-SC",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 6003,
                    "nome": "001 2526 UBIRATA-PR",
                    "municipio": "UBIRATA"
                },
                {
                    "id": 6004,
                    "nome": "001 2530 LUZIANIA-GO",
                    "municipio": "LUZIANIA"
                },
                {
                    "id": 6005,
                    "nome": "001 2535 PARINTINS-AM",
                    "municipio": "PARINTINS"
                },
                {
                    "id": 6006,
                    "nome": "001 2536 MOREIRA CESAR-PINDA-SP",
                    "municipio": "PINDAMONHANGABA"
                },
                {
                    "id": 6007,
                    "nome": "EMBU-GUACU",
                    "municipio": "EMBU-GUACU"
                },
                {
                    "id": 6008,
                    "nome": "HIGIENOPOLIS",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 6009,
                    "nome": "FRANCISCO MORATO",
                    "municipio": "FRANCISCO MORATO"
                },
                {
                    "id": 6010,
                    "nome": "CENTRO-PIRASSUNUNGA-SP",
                    "municipio": "PIRASSUNUNGA"
                },
                {
                    "id": 6011,
                    "nome": "TUCURUVI II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6012,
                    "nome": "001-0262 CURSINO II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6013,
                    "nome": "ITABERA",
                    "municipio": "ITABERA"
                },
                {
                    "id": 6014,
                    "nome": "001 0264 VL PRUDENTE-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6015,
                    "nome": "001 0266 CENTRO-LORENA-SP",
                    "municipio": "LORENA"
                },
                {
                    "id": 6016,
                    "nome": "CENTRO-BATATAIS-SP",
                    "municipio": "BATATAIS"
                },
                {
                    "id": 6017,
                    "nome": "001 0270 VISC INHAUMA-SCS-SP I",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 6018,
                    "nome": "ALTINOPOLIS",
                    "municipio": "ALTINOPOLIS"
                },
                {
                    "id": 6019,
                    "nome": "CENTRO-BARRA BONITA-SP",
                    "municipio": "BARRA BONITA"
                },
                {
                    "id": 6020,
                    "nome": "CEDRAL",
                    "municipio": "CEDRAL"
                },
                {
                    "id": 6021,
                    "nome": "COLINA",
                    "municipio": "COLINA"
                },
                {
                    "id": 6022,
                    "nome": "DOIS CORREGOS",
                    "municipio": "DOIS CORREGOS"
                },
                {
                    "id": 6023,
                    "nome": "COTIA",
                    "municipio": "COTIA"
                },
                {
                    "id": 6024,
                    "nome": "GETULINA",
                    "municipio": "GETULINA"
                },
                {
                    "id": 6025,
                    "nome": "ITAPUI",
                    "municipio": "ITAPUI"
                },
                {
                    "id": 6026,
                    "nome": "CENTRO-SJBARRA-SP",
                    "municipio": "SAO JOAQUIM DA BARRA"
                },
                {
                    "id": 6027,
                    "nome": "CENTRO-JARDINOPOLIS-SP",
                    "municipio": "JARDINOPOLIS"
                },
                {
                    "id": 6028,
                    "nome": "PARQUE DA UVA",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 6029,
                    "nome": "NOVA GRANADA",
                    "municipio": "NOVA GRANADA"
                },
                {
                    "id": 6030,
                    "nome": "PEDERNEIRAS",
                    "municipio": "PEDERNEIRAS"
                },
                {
                    "id": 6031,
                    "nome": "PINDORAMA",
                    "municipio": "PINDORAMA"
                },
                {
                    "id": 6032,
                    "nome": "AV. INDEPENDENCIA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 6033,
                    "nome": "MONTE MOR",
                    "municipio": "MONTE MOR"
                },
                {
                    "id": 6034,
                    "nome": "SAUDADE-RPRETO-SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 6035,
                    "nome": "VILA TIBERIO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 6036,
                    "nome": "CENTRO-AMPARO-SP",
                    "municipio": "AMPARO"
                },
                {
                    "id": 6037,
                    "nome": "ARAMINA",
                    "municipio": "ARAMINA"
                },
                {
                    "id": 6038,
                    "nome": "MONTE APRAZIVEL",
                    "municipio": "MONTE APRAZIVEL"
                },
                {
                    "id": 6039,
                    "nome": "VALPARAISO",
                    "municipio": "VALPARAISO"
                },
                {
                    "id": 6040,
                    "nome": "VARGEM GRANDE DO SUL",
                    "municipio": "VARGEM GRANDE DO SUL"
                },
                {
                    "id": 6041,
                    "nome": "VL GUILHERME-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6042,
                    "nome": "Ag�ncia 2960",
                    "municipio": ""
                },
                {
                    "id": 6043,
                    "nome": "Ag�ncia 2969",
                    "municipio": ""
                },
                {
                    "id": 6044,
                    "nome": "TUPI PAULISTA",
                    "municipio": "TUPI PAULISTA"
                },
                {
                    "id": 6045,
                    "nome": "Ag�ncia 2971",
                    "municipio": ""
                },
                {
                    "id": 6046,
                    "nome": "Ag�ncia 2975",
                    "municipio": ""
                },
                {
                    "id": 6047,
                    "nome": "Ag�ncia 2976",
                    "municipio": ""
                },
                {
                    "id": 6048,
                    "nome": "Jaboat�o dos Guararapes",
                    "municipio": ""
                },
                {
                    "id": 6049,
                    "nome": "Ag�ncia 29780",
                    "municipio": ""
                },
                {
                    "id": 6050,
                    "nome": "Ag�ncia 2979",
                    "municipio": ""
                },
                {
                    "id": 6051,
                    "nome": "PEDREIRA",
                    "municipio": "PEDREIRA"
                },
                {
                    "id": 6052,
                    "nome": "Ag�ncia 2982",
                    "municipio": ""
                },
                {
                    "id": 6053,
                    "nome": "Ag�ncia 2983",
                    "municipio": ""
                },
                {
                    "id": 6054,
                    "nome": "Ag�ncia 2985",
                    "municipio": ""
                },
                {
                    "id": 6055,
                    "nome": "Ag�ncia 2986",
                    "municipio": ""
                },
                {
                    "id": 6056,
                    "nome": "Ag�ncia 2987",
                    "municipio": ""
                },
                {
                    "id": 6057,
                    "nome": "Ag�ncia 2989",
                    "municipio": ""
                },
                {
                    "id": 6058,
                    "nome": "STA FE DO SUL",
                    "municipio": "SANTA FE DO SUL"
                },
                {
                    "id": 6059,
                    "nome": "CENTRO-CATANDUVA-SP",
                    "municipio": "CATANDUVA"
                },
                {
                    "id": 6060,
                    "nome": "JA� II",
                    "municipio": "JAU"
                },
                {
                    "id": 6061,
                    "nome": "NHANDEARA",
                    "municipio": "NHANDEARA"
                },
                {
                    "id": 6062,
                    "nome": "3001",
                    "municipio": ""
                },
                {
                    "id": 6063,
                    "nome": "001 3002 PCA XV NOVEMBRO-POA-RS I",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 6064,
                    "nome": "001 3003 AV RIO BRANCO-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6065,
                    "nome": "001-3004 SP-R. BOA VISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6066,
                    "nome": "TIMOTEO-ACESITA",
                    "municipio": "TIMOTEO"
                },
                {
                    "id": 6067,
                    "nome": "BH-BARREIRO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6068,
                    "nome": "JOSE BONIFACIO",
                    "municipio": "JOSE BONIFACIO"
                },
                {
                    "id": 6069,
                    "nome": "ALFENAS",
                    "municipio": "ALFENAS"
                },
                {
                    "id": 6070,
                    "nome": "PCA DO AVIAO-ANAPOLIS-GO",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 6071,
                    "nome": "RIO-ANDARAI",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6072,
                    "nome": "ASSEMBLEIA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6073,
                    "nome": "ANDRADINA-PAES LEME-SP",
                    "municipio": "ANDRADINA"
                },
                {
                    "id": 6074,
                    "nome": "URUPES",
                    "municipio": "URUPES"
                },
                {
                    "id": 6075,
                    "nome": "ANGRA DOS REIS CENTRO",
                    "municipio": "ANGRA DOS REIS"
                },
                {
                    "id": 6076,
                    "nome": "S. BENEDITO-APARECIDA-SP",
                    "municipio": "APARECIDA"
                },
                {
                    "id": 6077,
                    "nome": "ARACAJU",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 6078,
                    "nome": "001 3027 ARACATUBA I",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 6079,
                    "nome": "ARAGUARI",
                    "municipio": "ARAGUARI"
                },
                {
                    "id": 6080,
                    "nome": "CENTRO-PAULINIA-SP",
                    "municipio": "PAULINIA"
                },
                {
                    "id": 6081,
                    "nome": "001 3030 ARAPONGAS-PR I",
                    "municipio": "ARAPONGAS"
                },
                {
                    "id": 6082,
                    "nome": "ARARUAMA",
                    "municipio": "ARARUAMA"
                },
                {
                    "id": 6083,
                    "nome": "001-3035 PLAT.CORPORATE BRASILIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 6084,
                    "nome": "BH-AVENIDA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6085,
                    "nome": "001 3037 IPIRANGA-SP-SP III",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6086,
                    "nome": "AV 7-BAGE-RS",
                    "municipio": "BAGE"
                },
                {
                    "id": 6087,
                    "nome": "PORTO FERREIRA",
                    "municipio": "PORTO FERREIRA"
                },
                {
                    "id": 6088,
                    "nome": "001 3040 BH-AVENIDA I",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6089,
                    "nome": "001-3041 SALVADOR-MERCES",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 6090,
                    "nome": "BARBACENA-CENTRO",
                    "municipio": "BARBACENA"
                },
                {
                    "id": 6091,
                    "nome": "B.MANSA-CENTRO",
                    "municipio": "BARRA MANSA"
                },
                {
                    "id": 6092,
                    "nome": "BARRA DO PIRAI",
                    "municipio": "BARRA DO PIRAI"
                },
                {
                    "id": 6093,
                    "nome": "BARRO PRETO-BH-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6094,
                    "nome": "PALMEIRA D'OESTE",
                    "municipio": "PALMEIRA D'OESTE"
                },
                {
                    "id": 6095,
                    "nome": "PCA J ALVES-BATATAIS-SP",
                    "municipio": "BATATAIS"
                },
                {
                    "id": 6096,
                    "nome": "BAURU-CENTRO",
                    "municipio": "BAURU"
                },
                {
                    "id": 6097,
                    "nome": "BELFORD ROXO",
                    "municipio": "BELFORD ROXO"
                },
                {
                    "id": 6098,
                    "nome": "BETIM-CENTRO",
                    "municipio": "BETIM"
                },
                {
                    "id": 6099,
                    "nome": "001-3059 CENTRO-BLUMENAU-SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 6100,
                    "nome": "MIRANTE DO PARANAPANEMA",
                    "municipio": "MIRANTE DO PARANAPANEMA"
                },
                {
                    "id": 6101,
                    "nome": "001 3063 ESTACAO-RIO-RJ I",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6102,
                    "nome": "C OSORIO-BRAGANCA PTA-SP",
                    "municipio": "BRAGANCA PAULISTA"
                },
                {
                    "id": 6103,
                    "nome": "PLAT.CORPORATE SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6104,
                    "nome": "RIO-PRACA DO CARMO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6105,
                    "nome": "001 0307 CENTRO-PINDAMONHAGABA-SP",
                    "municipio": "PINDAMONHANGABA"
                },
                {
                    "id": 6106,
                    "nome": "BRUMADINHO",
                    "municipio": "BRUMADINHO"
                },
                {
                    "id": 6107,
                    "nome": "CENTRO-CABO FRIO-RJ",
                    "municipio": "CABO FRIO"
                },
                {
                    "id": 6108,
                    "nome": "001 3072 PCA BANDEIRA CACAPAVA SP",
                    "municipio": "CACAPAVA"
                },
                {
                    "id": 6109,
                    "nome": "001-3075 PLAT.CORPORATE M/N AV.RIO BRANCO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6110,
                    "nome": "001-3076 SALVADOR-CALCADA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 6111,
                    "nome": "CAMANDUCAIA",
                    "municipio": "CAMANDUCAIA"
                },
                {
                    "id": 6112,
                    "nome": "CAMBE",
                    "municipio": "CAMBE"
                },
                {
                    "id": 6113,
                    "nome": "CENTRO-BASTOS-SP",
                    "municipio": "BASTOS"
                },
                {
                    "id": 6114,
                    "nome": "CAMBUI",
                    "municipio": "CAMBUI"
                },
                {
                    "id": 6115,
                    "nome": "CAMPANHA",
                    "municipio": "CAMPANHA"
                },
                {
                    "id": 6116,
                    "nome": "001-3082 CAMPINA GRANDE",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 6117,
                    "nome": "CAMPOS SALLES-CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 6118,
                    "nome": "001 3085 CAMPO GRANDE II",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 6119,
                    "nome": "CAMPOS-CENTRO",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 6120,
                    "nome": "001 3087 CENTRO-CAMPOS JORDAO-SP",
                    "municipio": "CAMPOS DO JORDAO"
                },
                {
                    "id": 6121,
                    "nome": "001 3088 SAO JOAO II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6122,
                    "nome": "TEODORO SAMPAIO",
                    "municipio": "TEODORO SAMPAIO"
                },
                {
                    "id": 6123,
                    "nome": "CARUARU - RUA MESTRE PEDRO",
                    "municipio": "CARUARU"
                },
                {
                    "id": 6124,
                    "nome": "CASSILANDIA",
                    "municipio": "CASSILANDIA"
                },
                {
                    "id": 6125,
                    "nome": "R BRASIL-CATANDUVA-SP",
                    "municipio": "CATANDUVA"
                },
                {
                    "id": 6126,
                    "nome": "CAXAMBU",
                    "municipio": "CAXAMBU"
                },
                {
                    "id": 6127,
                    "nome": "PIONEIRA-CAXIAS SUL-RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 6128,
                    "nome": "CONTAGEM-CIDADE INDUSTRIA",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 6129,
                    "nome": "RIO-CINELANDIA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6130,
                    "nome": "PALMITAL",
                    "municipio": "PALMITAL"
                },
                {
                    "id": 6131,
                    "nome": "PRESIDENTE EPITACIO",
                    "municipio": "PRESIDENTE EPITACIO"
                },
                {
                    "id": 6132,
                    "nome": "DF-COMERCIAL SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 6133,
                    "nome": "CONGONHAS",
                    "municipio": "CONGONHAS"
                },
                {
                    "id": 6134,
                    "nome": "SP-CONSELHEIRO CRISPINIAN",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6135,
                    "nome": "001 3104 CONSELHEIRO LAFAIETE-MG",
                    "municipio": "CONSELHEIRO LAFAIETE"
                },
                {
                    "id": 6136,
                    "nome": "C.FABRICIANO-CENTRO",
                    "municipio": "CORONEL FABRICIANO"
                },
                {
                    "id": 6137,
                    "nome": "CORUMBA",
                    "municipio": "CORUMBA"
                },
                {
                    "id": 6138,
                    "nome": "AURIFLAMA",
                    "municipio": "AURIFLAMA"
                },
                {
                    "id": 6139,
                    "nome": "CRUZILIA",
                    "municipio": "CRUZILIA"
                },
                {
                    "id": 6140,
                    "nome": "001 3112 NOVE DE ABRIL-CUBATAO-SP",
                    "municipio": "CUBATAO"
                },
                {
                    "id": 6141,
                    "nome": "001 3113 CUIABA-AV.GETULIO VARGAS I",
                    "municipio": "CUIABA"
                },
                {
                    "id": 6142,
                    "nome": "CURVELO",
                    "municipio": "CURVELO"
                },
                {
                    "id": 6143,
                    "nome": "RECIFE CENTRO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6144,
                    "nome": "GENERAL SALGADO",
                    "municipio": "GENERAL SALGADO"
                },
                {
                    "id": 6145,
                    "nome": "DOURADOS",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 6146,
                    "nome": "CENTRO-DCAXIAS-RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 6147,
                    "nome": "ELOI MENDES",
                    "municipio": "ELOI MENDES"
                },
                {
                    "id": 6148,
                    "nome": "001 3124  AV NORTE-RECIFE-PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6149,
                    "nome": "EXTREMA",
                    "municipio": "EXTREMA"
                },
                {
                    "id": 6150,
                    "nome": "APIAI",
                    "municipio": "APIAI"
                },
                {
                    "id": 6151,
                    "nome": "001-3131 CENTRO-FLORIPA-SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 6152,
                    "nome": "FORTALEZA CENTRO",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 6153,
                    "nome": "FRUTAL",
                    "municipio": "FRUTAL"
                },
                {
                    "id": 6154,
                    "nome": "GOIANIA CENTRO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 6155,
                    "nome": "FARTURA",
                    "municipio": "FARTURA"
                },
                {
                    "id": 6156,
                    "nome": "001 3140 RIO GRACA ARANHA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6157,
                    "nome": "R 10-GUAIRA-SP",
                    "municipio": "GUAIRA"
                },
                {
                    "id": 6158,
                    "nome": "FLORIANO-GUARARAPES-SP",
                    "municipio": "GUARARAPES"
                },
                {
                    "id": 6159,
                    "nome": "MONS.FILIPPO-GUARA-SP",
                    "municipio": "GUARATINGUETA"
                },
                {
                    "id": 6160,
                    "nome": "RUY BARBOSA-IGARAPAVA-SP",
                    "municipio": "IGARAPAVA"
                },
                {
                    "id": 6161,
                    "nome": "TAQUARITUBA",
                    "municipio": "TAQUARITUBA"
                },
                {
                    "id": 6162,
                    "nome": "001-3150 ILHEUS",
                    "municipio": "ILHEUS"
                },
                {
                    "id": 6163,
                    "nome": "IPATINGA-CENTRO",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 6164,
                    "nome": "GAL OZORIO-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6165,
                    "nome": "IPATINGA-HORTO",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 6166,
                    "nome": "ITABIRA",
                    "municipio": "ITABIRA"
                },
                {
                    "id": 6167,
                    "nome": "ITABIRITO",
                    "municipio": "ITABIRITO"
                },
                {
                    "id": 6168,
                    "nome": "001-3157 ITABUNA",
                    "municipio": "ITABUNA"
                },
                {
                    "id": 6169,
                    "nome": "001 3159 ITAJAI - SC I",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 6170,
                    "nome": "CANDIDO MOTA",
                    "municipio": "CANDIDO MOTA"
                },
                {
                    "id": 6171,
                    "nome": "CENTRO-ITAJUBA-MG",
                    "municipio": "ITAJUBA"
                },
                {
                    "id": 6172,
                    "nome": "RIO-ITAMARATI",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6173,
                    "nome": "ITAUNA",
                    "municipio": "ITAUNA"
                },
                {
                    "id": 6174,
                    "nome": "ITUIUTABA",
                    "municipio": "ITUIUTABA"
                },
                {
                    "id": 6175,
                    "nome": "ITUMBIARA",
                    "municipio": "ITUMBIARA"
                },
                {
                    "id": 6176,
                    "nome": "001-3168 AV DR SOARES-ITUVERAVA-SP",
                    "municipio": "ITUVERAVA"
                },
                {
                    "id": 6177,
                    "nome": "JACUPIRANGA",
                    "municipio": "JACUPIRANGA"
                },
                {
                    "id": 6178,
                    "nome": "CEL JOSE-JARDINOPOLIS-SP",
                    "municipio": "JARDINOPOLIS"
                },
                {
                    "id": 6179,
                    "nome": "JATAI",
                    "municipio": "JATAI"
                },
                {
                    "id": 6180,
                    "nome": "J.MONLEVADE-CENTRO",
                    "municipio": "JOAO MONLEVADE"
                },
                {
                    "id": 6181,
                    "nome": "001 3175 JOAO PESSOA I",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 6182,
                    "nome": "R PRINCIPE-JOINVILLE-SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 6183,
                    "nome": "001 3178 JUNDIAI CENTRO",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 6184,
                    "nome": "CANANEIA",
                    "municipio": "CANANEIA"
                },
                {
                    "id": 6185,
                    "nome": "001-3180 LAGOA SANTA-CENTRO",
                    "municipio": "LAGOA SANTA"
                },
                {
                    "id": 6186,
                    "nome": "001 3181 BH-SANTO AGOSTINHO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6187,
                    "nome": "001 3182 LAGES I",
                    "municipio": "LAGES"
                },
                {
                    "id": 6188,
                    "nome": "CENTRO-LAVRAS-MG",
                    "municipio": "LAVRAS"
                },
                {
                    "id": 6189,
                    "nome": "LEOPOLDINA",
                    "municipio": "LEOPOLDINA"
                },
                {
                    "id": 6190,
                    "nome": "001 3188 LIMEIRA-SP II",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 6191,
                    "nome": "001 3189 LONDRINA-PR I",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 6192,
                    "nome": "PATRIARCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6193,
                    "nome": "MACAE-CENTRO",
                    "municipio": "MACAE"
                },
                {
                    "id": 6194,
                    "nome": "001-3191 MACAPA",
                    "municipio": "MACAPA"
                },
                {
                    "id": 6195,
                    "nome": "001 3192 URB-MACEIO-RUA DO SOL I",
                    "municipio": "MACEIO"
                },
                {
                    "id": 6196,
                    "nome": "001-3193 ALDEOTA-FORTALEZA-CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 6197,
                    "nome": "001 3198 URB-MARINGA-Z1 II",
                    "municipio": "MARINGA"
                },
                {
                    "id": 6198,
                    "nome": "QUATA",
                    "municipio": "QUATA"
                },
                {
                    "id": 6199,
                    "nome": "BOM JESUS DOS PERDOES",
                    "municipio": "BOM JESUS DOS PERDOES"
                },
                {
                    "id": 6200,
                    "nome": "PCA 22 -MAUA-SP",
                    "municipio": "MAUA"
                },
                {
                    "id": 6201,
                    "nome": "001-3201 RIO-MEM DE SA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6202,
                    "nome": "001-3202 LOURDES-BH-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6203,
                    "nome": "MESQUITA",
                    "municipio": "MESQUITA"
                },
                {
                    "id": 6204,
                    "nome": "JD DO MEIER-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6205,
                    "nome": "CENTRO-MIGUEL PEREIRA-RJ",
                    "municipio": "MIGUEL PEREIRA"
                },
                {
                    "id": 6206,
                    "nome": "AVENIDA-MOGI-SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 6207,
                    "nome": "001 3208 CENTRO-M GUACU-SP I",
                    "municipio": "MOGI-GUACU"
                },
                {
                    "id": 6208,
                    "nome": "CEASA-CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 6209,
                    "nome": "001-3211 NATAL-AV. PRUDENTE DE MORAIS",
                    "municipio": "NATAL"
                },
                {
                    "id": 6210,
                    "nome": "NILOPOLIS",
                    "municipio": "NILOPOLIS"
                },
                {
                    "id": 6211,
                    "nome": "001 3213 CENTRO-NITEROI -RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 6212,
                    "nome": "BELEM-BATISTA CAMPOS",
                    "municipio": "BELEM"
                },
                {
                    "id": 6213,
                    "nome": "CENTRO-NFRIBURGO-RJ",
                    "municipio": "NOVA FRIBURGO"
                },
                {
                    "id": 6214,
                    "nome": "001-3217 N.IGUACU-CENTRO",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 6215,
                    "nome": "NOVA LIMA",
                    "municipio": "NOVA LIMA"
                },
                {
                    "id": 6216,
                    "nome": "DF-N.BANDEIRANTE",
                    "municipio": "BRASILIA (NUCLEO BANDEIRANTE)"
                },
                {
                    "id": 6217,
                    "nome": "RIOLANDIA",
                    "municipio": "RIOLANDIA"
                },
                {
                    "id": 6218,
                    "nome": "OLIVEIRA",
                    "municipio": "OLIVEIRA"
                },
                {
                    "id": 6219,
                    "nome": "OURO PRETO",
                    "municipio": "OURO PRETO"
                },
                {
                    "id": 6220,
                    "nome": "PARACAMBI",
                    "municipio": "PARACAMBI"
                },
                {
                    "id": 6221,
                    "nome": "PARA DE MINAS",
                    "municipio": "PARA DE MINAS"
                },
                {
                    "id": 6222,
                    "nome": "AMERICO DE CAMPOS",
                    "municipio": "AMERICO DE CAMPOS"
                },
                {
                    "id": 6223,
                    "nome": "PARANAIBA",
                    "municipio": "PARANAIBA"
                },
                {
                    "id": 6224,
                    "nome": "CENTRO-PASSOS-MG",
                    "municipio": "PASSOS"
                },
                {
                    "id": 6225,
                    "nome": "PATOS DE MINAS",
                    "municipio": "PATOS DE MINAS"
                },
                {
                    "id": 6226,
                    "nome": "INDIAPORA",
                    "municipio": "INDIAPORA"
                },
                {
                    "id": 6227,
                    "nome": "PELOTAS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 6228,
                    "nome": "CENTRO-PETROPOLIS-RJ",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 6229,
                    "nome": "R ANDRADAS-PINDA-SP",
                    "municipio": "PINDAMONHANGABA"
                },
                {
                    "id": 6230,
                    "nome": "CENTRO-PIRACAIA-SP",
                    "municipio": "PIRACAIA"
                },
                {
                    "id": 6231,
                    "nome": "001 3246 PIRACICABA-SP III",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 6232,
                    "nome": "CENTRO-PIRAJU-SP",
                    "municipio": "PIRAJU"
                },
                {
                    "id": 6233,
                    "nome": "CENTRO-POCOS DE CALDAS-MG",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 6234,
                    "nome": "PONTA GROSSA",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 6235,
                    "nome": "OSCAR BRESSANE",
                    "municipio": "OSCAR BRESSANE"
                },
                {
                    "id": 6236,
                    "nome": "PONTE NOVA",
                    "municipio": "PONTE NOVA"
                },
                {
                    "id": 6237,
                    "nome": "001-3253 CENTRO-PORTO VELHO-RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 6238,
                    "nome": "COPA 5-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6239,
                    "nome": "CENTRO-POUSO ALEGRE-MG",
                    "municipio": "POUSO ALEGRE"
                },
                {
                    "id": 6240,
                    "nome": "001 3258 PQ DO POVO-P.PRUDENTE I",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 6241,
                    "nome": "BOA ESPERANCA DO SUL",
                    "municipio": "BOA ESPERANCA DO SUL"
                },
                {
                    "id": 6242,
                    "nome": "001-3261 R MILLER-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6243,
                    "nome": "REALENGO-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6244,
                    "nome": "001-3265 CENTRO-RESENDE-RJ",
                    "municipio": "RESENDE"
                },
                {
                    "id": 6245,
                    "nome": "RIO-RIACHUELO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6246,
                    "nome": "001 3268 CENTRO-RIB PIRES-SP I",
                    "municipio": "RIBEIRAO PIRES"
                },
                {
                    "id": 6247,
                    "nome": "RIB.PRETO-R.SAO SEBASTIAO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 6248,
                    "nome": "001 3270 CENTRO-RIO BRANCO-AC",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 6249,
                    "nome": "RIO-RIO COMPRIDO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6250,
                    "nome": "DQ CAXIAS-RIO GRANDE-RS",
                    "municipio": "RIO GRANDE"
                },
                {
                    "id": 6251,
                    "nome": "MANAUS-AV.EDUARDO RIBEIRO",
                    "municipio": "MANAUS"
                },
                {
                    "id": 6252,
                    "nome": "ROLANDIA",
                    "municipio": "ROLANDIA"
                },
                {
                    "id": 6253,
                    "nome": "001-3275 CENTRO-RONDONOPOLIS-MT",
                    "municipio": "RONDONOPOLIS"
                },
                {
                    "id": 6254,
                    "nome": "SABARA",
                    "municipio": "SABARA"
                },
                {
                    "id": 6255,
                    "nome": "CARAPICUIBA",
                    "municipio": "CARAPICUIBA"
                },
                {
                    "id": 6256,
                    "nome": "VOL DA PATRIA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6257,
                    "nome": "001-3285 CASTILHOS-SCSUL-RS",
                    "municipio": "SANTA CRUZ DO SUL"
                },
                {
                    "id": 6258,
                    "nome": "SANTA MARIA",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 6259,
                    "nome": "SANTA RITA DO SAPUCAI",
                    "municipio": "SANTA RITA DO SAPUCAI"
                },
                {
                    "id": 6260,
                    "nome": "STO AMARO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6261,
                    "nome": "CORREIA DIAS-S.ANDRE-SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 6262,
                    "nome": "RECIFE-VENEZA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6263,
                    "nome": "SANTOS_CENTRO",
                    "municipio": "SANTOS"
                },
                {
                    "id": 6264,
                    "nome": "SANTOS DUMONT",
                    "municipio": "SANTOS DUMONT"
                },
                {
                    "id": 6265,
                    "nome": "PRESIDENTE PRUDENTE II",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 6266,
                    "nome": "001 3301 SAO CARLOS-SP II",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 6267,
                    "nome": "RIO-SAO CRISTOVAO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6268,
                    "nome": "SAO GONCALO DO SAPUCAI",
                    "municipio": "SAO GONCALO DO SAPUCAI"
                },
                {
                    "id": 6269,
                    "nome": "S JOAO-P.ALEGRE-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 6270,
                    "nome": "SAO JOAO DEL REI",
                    "municipio": "SAO JOAO DEL REI"
                },
                {
                    "id": 6271,
                    "nome": "SJMERITI-CENTRO",
                    "municipio": "SAO JOAO DE MERITI"
                },
                {
                    "id": 6272,
                    "nome": "PARI II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6273,
                    "nome": "SJCAMPOS-CENTRO",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 6274,
                    "nome": "SJRPRETO-AV.ALBERTO ANDAL",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 6275,
                    "nome": "SAO LOURENCO",
                    "municipio": "SAO LOURENCO"
                },
                {
                    "id": 6276,
                    "nome": "SAO LUIS",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 6277,
                    "nome": "001-3316 CENTRO-SAO PEDRO-SP�",
                    "municipio": "SAO PEDRO"
                },
                {
                    "id": 6278,
                    "nome": "001-3317 CENTRO-SAO ROQUE-SP",
                    "municipio": "SAO ROQUE"
                },
                {
                    "id": 6279,
                    "nome": "SAO SEBASTIAO DO PARAISO",
                    "municipio": "SAO SEBASTIAO DO PARAISO"
                },
                {
                    "id": 6280,
                    "nome": "001-3319 J RAMALHO-SVICENTE-SP",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 6281,
                    "nome": "CENTRO-ITAPIRA-SP",
                    "municipio": "ITAPIRA"
                },
                {
                    "id": 6282,
                    "nome": "001 3322 RIO COPA POSTO 2",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6283,
                    "nome": "SETE LAGOAS-CENTRO",
                    "municipio": "SETE LAGOAS"
                },
                {
                    "id": 6284,
                    "nome": "001-3324 SALVADOR-BARRA AVENIDA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 6285,
                    "nome": "001 3327 SOROCABA-CENTRO",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 6286,
                    "nome": "CEL MILITAO-TANABI-SP",
                    "municipio": "TANABI"
                },
                {
                    "id": 6287,
                    "nome": "SANTANA DO PARNAIBA",
                    "municipio": "SANTANA DE PARNAIBA"
                },
                {
                    "id": 6288,
                    "nome": "001 3330 TAUBATE-SP",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 6289,
                    "nome": "TEOFILO OTONI",
                    "municipio": "TEOFILO OTONI"
                },
                {
                    "id": 6290,
                    "nome": "001 3334 CENTRO-TERESOPOLIS-RJ",
                    "municipio": "TERESOPOLIS"
                },
                {
                    "id": 6291,
                    "nome": "TRES CORACOES",
                    "municipio": "TRES CORACOES"
                },
                {
                    "id": 6292,
                    "nome": "TRES LAGOAS",
                    "municipio": "TRES LAGOAS"
                },
                {
                    "id": 6293,
                    "nome": "CENTRO-TUBARAO-SC",
                    "municipio": "TUBARAO"
                },
                {
                    "id": 6294,
                    "nome": "MONTE ALEGRE DO SUL",
                    "municipio": "MONTE ALEGRE DO SUL"
                },
                {
                    "id": 6295,
                    "nome": "UBA",
                    "municipio": "UBA"
                },
                {
                    "id": 6296,
                    "nome": "UBERLANDIA CENTRO",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 6297,
                    "nome": "001 3343 CENTRO I-URUGUAIANA-RS",
                    "municipio": "URUGUAIANA"
                },
                {
                    "id": 6298,
                    "nome": "CENTRO-VARGINHA-MG",
                    "municipio": "VARGINHA"
                },
                {
                    "id": 6299,
                    "nome": "RETA DA PENHA-VITORIA-ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 6300,
                    "nome": "VILA VELHA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 6301,
                    "nome": "GOIANIA-ANHANGUERA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 6302,
                    "nome": "VINHEDO",
                    "municipio": "VINHEDO"
                },
                {
                    "id": 6303,
                    "nome": "RIO-AV.CESARIO DE MELO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6304,
                    "nome": "VILA-V.REDONDA-RJ",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 6305,
                    "nome": "R DO TESOURO-TSERRA-SP",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 6306,
                    "nome": "PCA SAENS PENA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6307,
                    "nome": "GUARAPARI",
                    "municipio": "GUARAPARI"
                },
                {
                    "id": 6308,
                    "nome": "001 3370 CATETE RIO RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6309,
                    "nome": "PAES DE BARROS-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6310,
                    "nome": "Ag�ncia 3372",
                    "municipio": ""
                },
                {
                    "id": 6311,
                    "nome": "001-3377 PLAT.CORPORATE BELO HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6312,
                    "nome": "001 3380 RIO-CHARLES DE GAULLE II",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6313,
                    "nome": "001 3381 SAARA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6314,
                    "nome": "RIO-COPA POSTO 4",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6315,
                    "nome": "RIO-BENFICA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6316,
                    "nome": "S.GONCALO-ALCANTARA",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 6317,
                    "nome": "ICARAI-NITEROI-RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 6318,
                    "nome": "001-3397 ITABORAI",
                    "municipio": "ITABORAI"
                },
                {
                    "id": 6319,
                    "nome": "AMARAL PEIXOTO-NITEROI-RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 6320,
                    "nome": "CENTRO-TANABI-SP",
                    "municipio": "TANABI"
                },
                {
                    "id": 6321,
                    "nome": "ARUJA",
                    "municipio": "ARUJA"
                },
                {
                    "id": 6322,
                    "nome": "RIO BONITO",
                    "municipio": "RIO BONITO"
                },
                {
                    "id": 6323,
                    "nome": "001-3403 CORPORATE RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6324,
                    "nome": "S.GONCALO-CENTRO",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 6325,
                    "nome": "R RIBEIRO DE LIMA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6326,
                    "nome": "001-3407 PCA XV-P.ALEGRE-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 6327,
                    "nome": "AV PAULISTA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6328,
                    "nome": "BARUERI II",
                    "municipio": "BARUERI"
                },
                {
                    "id": 6329,
                    "nome": "SP-BRIGADEIRO LUIS ANTONI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6330,
                    "nome": "001 3411 HENRIQUE SCHAUMANN-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6331,
                    "nome": "ANA ROSA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6332,
                    "nome": "R LAVAPES-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6333,
                    "nome": "001 3415 MAL DEODORO-CURITIBA-PR I",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 6334,
                    "nome": "BR DE JUNDIAI-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6335,
                    "nome": "CATEDRAL-PASSO FUNDO-RS",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 6336,
                    "nome": "CENTRO-CARAGUATATUBA-SP",
                    "municipio": "CARAGUATATUBA"
                },
                {
                    "id": 6337,
                    "nome": "MARECHAL-ITAPETININGA-SP",
                    "municipio": "ITAPETININGA"
                },
                {
                    "id": 6338,
                    "nome": "001 3421 INDEPEND-SLEOPOLDO-RS",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 6339,
                    "nome": "BOTUCATU-CENTRO",
                    "municipio": "BOTUCATU"
                },
                {
                    "id": 6340,
                    "nome": "001 3424 AV 3-ORLANDIA-SP",
                    "municipio": "ORLANDIA"
                },
                {
                    "id": 6341,
                    "nome": "GUARULHOS CENTRO",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 6342,
                    "nome": "P�A-OTHONIEL-RIO CLARO-SP",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 6343,
                    "nome": "001-3427 CACHOEIRO DE ITAPEMIRIM",
                    "municipio": "CACHOEIRO DE ITAPEMIRIM"
                },
                {
                    "id": 6344,
                    "nome": "001 3428 XII NOVEMBRO AMERICANA SP",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 6345,
                    "nome": "COSMOPOLIS",
                    "municipio": "COSMOPOLIS"
                },
                {
                    "id": 6346,
                    "nome": "DQ CAXIAS-ARARAQUARA-SP",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 6347,
                    "nome": "001-3433 MANAUS-BOULEVARD",
                    "municipio": "MANAUS"
                },
                {
                    "id": 6348,
                    "nome": "RORAIMA",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 6349,
                    "nome": "001-3438 MANAUS-CENTRO",
                    "municipio": "MANAUS"
                },
                {
                    "id": 6350,
                    "nome": "FRANCO DA ROCHA",
                    "municipio": "FRANCO DA ROCHA"
                },
                {
                    "id": 6351,
                    "nome": "DF-503 SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 6352,
                    "nome": "GOIANIA-CENTER SUL",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 6353,
                    "nome": "MORRINHOS",
                    "municipio": "MORRINHOS"
                },
                {
                    "id": 6354,
                    "nome": "RIO-RUA CONDE DE BONFIM",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6355,
                    "nome": "BANGU-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6356,
                    "nome": "CENTRO-GUARARAPES-SP",
                    "municipio": "GUARARAPES"
                },
                {
                    "id": 6357,
                    "nome": "RIO-ESPLANADA DO CASTELO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6358,
                    "nome": "RIO-LARGO DO MACHADO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6359,
                    "nome": "RIO-R.DIAS DA ROCHA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6360,
                    "nome": "CARDOSO DE MORAIS-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6361,
                    "nome": "RIO-VISCONDE DE PIRAJA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6362,
                    "nome": "RIO-LIDO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6363,
                    "nome": "001 3459 MARIA FREITAS-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6364,
                    "nome": "ITANHAEM",
                    "municipio": "ITANHAEM"
                },
                {
                    "id": 6365,
                    "nome": "RIO-PILARES",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6366,
                    "nome": "001 3462 AV RIO BRANCO-RJ I",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6367,
                    "nome": "BARRA DA TIJUCA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6368,
                    "nome": "C.GRANDE-BARAO RIO BRANCO",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 6369,
                    "nome": "CUIABA-AV.GETULIO VARGAS",
                    "municipio": "CUIABA"
                },
                {
                    "id": 6370,
                    "nome": "ARAXA",
                    "municipio": "ARAXA"
                },
                {
                    "id": 6371,
                    "nome": "ITAPECERICA DA SERRA",
                    "municipio": "ITAPECERICA DA SERRA"
                },
                {
                    "id": 6372,
                    "nome": "001-3471 SAO LUCAS-BH-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6373,
                    "nome": "BH-PRUDENTE DE MORAIS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6374,
                    "nome": "001 3473 BH-R.CARIJOS I",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6375,
                    "nome": "001-3476 BH-R.CARIJOS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6376,
                    "nome": "SAVASSI-BH-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6377,
                    "nome": "ITAPEVI",
                    "municipio": "ITAPEVI"
                },
                {
                    "id": 6378,
                    "nome": "BOM DESPACHO",
                    "municipio": "BOM DESPACHO"
                },
                {
                    "id": 6379,
                    "nome": "CAETE-JOSE BRANDAO",
                    "municipio": "CAETE"
                },
                {
                    "id": 6380,
                    "nome": "CONTAGEM CENTRO",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 6381,
                    "nome": "ITAPORANGA",
                    "municipio": "ITAPORANGA"
                },
                {
                    "id": 6382,
                    "nome": "CENTRO-DIVINOPOLIS-MG",
                    "municipio": "DIVINOPOLIS"
                },
                {
                    "id": 6383,
                    "nome": "FORMIGA",
                    "municipio": "FORMIGA"
                },
                {
                    "id": 6384,
                    "nome": "AG.GOVERNADOR VALADARES",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 6385,
                    "nome": "J.FORA-MANCHESTER",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 6386,
                    "nome": "CENTRO-ATIBAIA-SP",
                    "municipio": "ATIBAIA"
                },
                {
                    "id": 6387,
                    "nome": "R. SEB.FERREIRA-ITAQUA-SP",
                    "municipio": "ITAQUAQUECETUBA"
                },
                {
                    "id": 6388,
                    "nome": "MARIANA",
                    "municipio": "MARIANA"
                },
                {
                    "id": 6389,
                    "nome": "M.CLAROS-CENTRO",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 6390,
                    "nome": "NANUQUE",
                    "municipio": "NANUQUE"
                },
                {
                    "id": 6391,
                    "nome": "NEPOMUCENO",
                    "municipio": "NEPOMUCENO"
                },
                {
                    "id": 6392,
                    "nome": "LARANJAL PAULISTA",
                    "municipio": "LARANJAL PAULISTA"
                },
                {
                    "id": 6393,
                    "nome": "001-3513 MM AV RIO BRANCO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6394,
                    "nome": "SAO GOTARDO",
                    "municipio": "SAO GOTARDO"
                },
                {
                    "id": 6395,
                    "nome": "MAIRIPORA",
                    "municipio": "MAIRIPORA"
                },
                {
                    "id": 6396,
                    "nome": "AV STOS DUMONT-UBERABA-MG",
                    "municipio": "UBERABA"
                },
                {
                    "id": 6397,
                    "nome": "UBERLANDIA-PLATO",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 6398,
                    "nome": "VESPASIANO",
                    "municipio": "VESPASIANO"
                },
                {
                    "id": 6399,
                    "nome": "BELEM-NAZARE",
                    "municipio": "BELEM"
                },
                {
                    "id": 6400,
                    "nome": "001 3525 MAL DEODORO-CURITIBA III",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 6401,
                    "nome": "MOINHOS VENTO-P.ALEGRE-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 6402,
                    "nome": "001-0353 POA",
                    "municipio": "POA"
                },
                {
                    "id": 6403,
                    "nome": "001 3530 PCA R SILVEIRA-DCAXIAS-RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 6404,
                    "nome": "NITEROI-PRACA DO RINK",
                    "municipio": "NITEROI"
                },
                {
                    "id": 6405,
                    "nome": "001 3532 GOV.A.PEIXOTO-N.IGUACU-RJ I",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 6406,
                    "nome": "C IMPERIAL-PETROPOLIS-RJ",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 6407,
                    "nome": "VALENCA",
                    "municipio": "VALENCA"
                },
                {
                    "id": 6408,
                    "nome": "001 3536 CENTRO-V.REDONDA-RJ I",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 6409,
                    "nome": "CENTRO-SALTO-SP",
                    "municipio": "SALTO"
                },
                {
                    "id": 6410,
                    "nome": "PRA�A BAR�O-ARARAS-SP",
                    "municipio": "ARARAS"
                },
                {
                    "id": 6411,
                    "nome": "M ARISTIDES-BEBEDOURO-SP",
                    "municipio": "BEBEDOURO"
                },
                {
                    "id": 6412,
                    "nome": "GUARULHOS-PONTE GRANDE",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 6413,
                    "nome": "OSASCO-CENTRO",
                    "municipio": "OSASCO"
                },
                {
                    "id": 6414,
                    "nome": "STA CRUZ DAS PALMEIRAS",
                    "municipio": "SANTA CRUZ DAS PALMEIRAS"
                },
                {
                    "id": 6415,
                    "nome": "CAMPOS ELISEOS-RPRETO-SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 6416,
                    "nome": "BOQUEIRAO-SANTOS-SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 6417,
                    "nome": "SBCAMPO-CENTRO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 6418,
                    "nome": "001-3555 BARALDI-SCAETANO SUL-SP",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 6419,
                    "nome": "CATEDRAL-SJBVISTA-SP",
                    "municipio": "SAO JOAO DA BOA VISTA"
                },
                {
                    "id": 6420,
                    "nome": "CENTRO-SJRPARDO-SP",
                    "municipio": "SAO JOSE DO RIO PARDO"
                },
                {
                    "id": 6421,
                    "nome": "SANTA ISABEL",
                    "municipio": "SANTA ISABEL"
                },
                {
                    "id": 6422,
                    "nome": "BR LIMEIRA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6423,
                    "nome": "SP-R.DA QUITANDA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6424,
                    "nome": "SP-AV. 9 DE JULHO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6425,
                    "nome": "SP-SANTA CASA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6426,
                    "nome": "R AUGUSTA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6427,
                    "nome": "TAMOIOS-TUPA-SP",
                    "municipio": "TUPA"
                },
                {
                    "id": 6428,
                    "nome": "001 3568 AMAZONAS VOTUPORANGA SP",
                    "municipio": "VOTUPORANGA"
                },
                {
                    "id": 6429,
                    "nome": "SERRA NEGRA",
                    "municipio": "SERRA NEGRA"
                },
                {
                    "id": 6430,
                    "nome": "ITAMONTE",
                    "municipio": "ITAMONTE"
                },
                {
                    "id": 6431,
                    "nome": "FERNANDO DE NORONHA",
                    "municipio": "FERNANDO DE NORONHA"
                },
                {
                    "id": 6432,
                    "nome": "CENTRO-CANOAS-RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 6433,
                    "nome": "TAMBAU",
                    "municipio": "TAMBAU"
                },
                {
                    "id": 6434,
                    "nome": "001-3582 FLORIANO PEIXOTO-ITU-SP",
                    "municipio": "ITU"
                },
                {
                    "id": 6435,
                    "nome": "001 3583 CENTRO-LEME-SP I",
                    "municipio": "LEME"
                },
                {
                    "id": 6436,
                    "nome": "001-3584 TREZE DE MAIO-AMPARO-SP",
                    "municipio": "AMPARO"
                },
                {
                    "id": 6437,
                    "nome": "001 3585 STA BARBARA DO OESTE I",
                    "municipio": "SANTA BARBARA D'OESTE"
                },
                {
                    "id": 6438,
                    "nome": "CASCAVEL",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 6439,
                    "nome": "CENTRO-TOLEDO-PR",
                    "municipio": "TOLEDO"
                },
                {
                    "id": 6440,
                    "nome": "CENTRO-CPO MOURAO-PR",
                    "municipio": "CAMPO MOURAO"
                },
                {
                    "id": 6441,
                    "nome": "001-3593 CAMACARI",
                    "municipio": "CAMACARI"
                },
                {
                    "id": 6442,
                    "nome": "MANOEL BENTO-PENAPOLIS-SP",
                    "municipio": "PENAPOLIS"
                },
                {
                    "id": 6443,
                    "nome": "001-3599 CENTENARIO-CRICIUMA-SC",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 6444,
                    "nome": "S JOSE RIO PARDO-INT-SP",
                    "municipio": "SAO JOSE DO RIO PARDO"
                },
                {
                    "id": 6445,
                    "nome": "LINDOIA",
                    "municipio": "LINDOIA"
                },
                {
                    "id": 6446,
                    "nome": "001-3600 CENTRO-GUARAPUAVA-PR",
                    "municipio": "GUARAPUAVA"
                },
                {
                    "id": 6447,
                    "nome": "FOZ DO IGUACU",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 6448,
                    "nome": "PARANAVAI",
                    "municipio": "PARANAVAI"
                },
                {
                    "id": 6449,
                    "nome": "UMUARAMA",
                    "municipio": "UMUARAMA"
                },
                {
                    "id": 6450,
                    "nome": "RUI BARBOSA-APUCARANA-PR",
                    "municipio": "APUCARANA"
                },
                {
                    "id": 6451,
                    "nome": "CORNELIO PROCOPIO",
                    "municipio": "CORNELIO PROCOPIO"
                },
                {
                    "id": 6452,
                    "nome": "MIRACATU",
                    "municipio": "MIRACATU"
                },
                {
                    "id": 6453,
                    "nome": "PATROCINIO",
                    "municipio": "PATROCINIO"
                },
                {
                    "id": 6454,
                    "nome": "IMPERATRIZ",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 6455,
                    "nome": "DIADEMA-CENTRO",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 6456,
                    "nome": "CAMPO BELO",
                    "municipio": "CAMPO BELO"
                },
                {
                    "id": 6457,
                    "nome": "001 3615 CENTRO-AVARE-SP I",
                    "municipio": "AVARE"
                },
                {
                    "id": 6458,
                    "nome": "RUI BARBOSA-ASSIS-SP",
                    "municipio": "ASSIS"
                },
                {
                    "id": 6459,
                    "nome": "001 3617 N RUBEZ CRUZEIRO SP",
                    "municipio": "CRUZEIRO"
                },
                {
                    "id": 6460,
                    "nome": "CENTRO-JACAREI-SP",
                    "municipio": "JACAREI"
                },
                {
                    "id": 6461,
                    "nome": "001 3619 CENTRO I-LORENA-SP",
                    "municipio": "LORENA"
                },
                {
                    "id": 6462,
                    "nome": "PARIQUERA-ACU",
                    "municipio": "PARIQUERA-ACU"
                },
                {
                    "id": 6463,
                    "nome": "JD STA HELENA-SUZANO-SP",
                    "municipio": "SUZANO"
                },
                {
                    "id": 6464,
                    "nome": "R BARBOSA JABOTICABAL SP",
                    "municipio": "JABOTICABAL"
                },
                {
                    "id": 6465,
                    "nome": "BRASKEM UNIB/RS",
                    "municipio": "TRIUNFO"
                },
                {
                    "id": 6466,
                    "nome": "GOIATUBA",
                    "municipio": "GOIATUBA"
                },
                {
                    "id": 6467,
                    "nome": "DR RUDGE-SBCAMPO-SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 6468,
                    "nome": "SANTA GERTRUDES",
                    "municipio": "SANTA GERTRUDES"
                },
                {
                    "id": 6469,
                    "nome": "001-3632 BELENZINHO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6470,
                    "nome": "AV PACAEMBU-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6471,
                    "nome": "IPERO",
                    "municipio": "IPERO"
                },
                {
                    "id": 6472,
                    "nome": "SANTA LUCIA",
                    "municipio": "SANTA LUCIA"
                },
                {
                    "id": 6473,
                    "nome": "CEL QUIRINO-CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 6474,
                    "nome": "001 0365 TAIA�U",
                    "municipio": "TAIACU"
                },
                {
                    "id": 6475,
                    "nome": "INDEPENDENCIA-SANTOS-SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 6476,
                    "nome": "MATEUS LEME",
                    "municipio": "MATEUS LEME"
                },
                {
                    "id": 6477,
                    "nome": "001 3656 RIO VERDE-GO",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 6478,
                    "nome": "JABORANDI",
                    "municipio": "JABORANDI"
                },
                {
                    "id": 6479,
                    "nome": "SALVADOR-IGUATEMI",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 6480,
                    "nome": "001 3676 LARANJEIRAS-SE",
                    "municipio": "LARANJEIRAS"
                },
                {
                    "id": 6481,
                    "nome": "ILHA PORTUGUESA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6482,
                    "nome": "001-3678 DF-502 NORTE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 6483,
                    "nome": "368",
                    "municipio": ""
                },
                {
                    "id": 6484,
                    "nome": "INTERLAGOS-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6485,
                    "nome": "PERDIZES SUMARE-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6486,
                    "nome": "RECIFE-BOA VIAGEM",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6487,
                    "nome": "001-3689 PLAT.CORPORATE SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6488,
                    "nome": "CENTRO-SJRPRETO-SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 6489,
                    "nome": "PARANAPUA",
                    "municipio": "PARANAPUA"
                },
                {
                    "id": 6490,
                    "nome": "J CASTILHOS-N.HAMBURGO-RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 6491,
                    "nome": "ANGRA DOS REIS-PRAIA BRAV",
                    "municipio": "ANGRA DOS REIS"
                },
                {
                    "id": 6492,
                    "nome": "001-3704 LAURO DE FREITAS",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 6493,
                    "nome": "CAMPINAS-JARDIM GUANABARA",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 6494,
                    "nome": "PQ DO IBIRAPUERA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6495,
                    "nome": "SUMARE-CENTRO",
                    "municipio": "SUMARE"
                },
                {
                    "id": 6496,
                    "nome": "ALTO HIGIENOP-LONDRINA-PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 6497,
                    "nome": "POPULINA",
                    "municipio": "POPULINA"
                },
                {
                    "id": 6498,
                    "nome": "GETULIO VARGAS-CHAPECO-SC",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 6499,
                    "nome": "001-3712  ESTREITO-FLORIPA-SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 6500,
                    "nome": "CENTRO-JOACABA-SC",
                    "municipio": "JOACABA"
                },
                {
                    "id": 6501,
                    "nome": "001 3717 TATUAPE-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6502,
                    "nome": "SP-LARGO DO SOCORRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6503,
                    "nome": "ITAGUAI",
                    "municipio": "ITAGUAI"
                },
                {
                    "id": 6504,
                    "nome": "RIO-JACAREPAGUA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6505,
                    "nome": "R DO CARMO-TSERRA-SP",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 6506,
                    "nome": "001-3727 BROOKLIN-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6507,
                    "nome": "RIO-JARDIM BOTANICO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6508,
                    "nome": "001-3729 INDAIATUBA-SP I",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 6509,
                    "nome": "CURITIBA-AV.PRES.KENNEDDY",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 6510,
                    "nome": "001-3732 CURITIBA-JOAO NEGRAO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 6511,
                    "nome": "JD SATELITE-SJCAMPOS-SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 6512,
                    "nome": "001 3734 GUARUJA-SP I",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 6513,
                    "nome": "P.ALEGRE-VIC.DA FONTOURA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 6514,
                    "nome": "001-3737 MACEIO-FAROL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 6515,
                    "nome": "001-3738 LINDOIA-P.ALEGRE RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 6516,
                    "nome": "DF-SIA",
                    "municipio": "BRASILIA (GUARA)"
                },
                {
                    "id": 6517,
                    "nome": "PATROCINIO PAULISTA",
                    "municipio": "PATROCINIO PAULISTA"
                },
                {
                    "id": 6518,
                    "nome": "001 3740 CAPAO RASO-CAP-PR I",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 6519,
                    "nome": "001-3741 AV AMOREIRAS-CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 6520,
                    "nome": "RIB.PRETO-ALTO DA CIDADE",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 6521,
                    "nome": "GOIANIA-CIDADE JARDIM",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 6522,
                    "nome": "VL ARENS-JUNDIAI-SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 6523,
                    "nome": "PITUBA-SALVADOR-BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 6524,
                    "nome": "AG. AV. BERNARDO VIEIRA",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 6525,
                    "nome": "MORRO AGUDO",
                    "municipio": "MORRO AGUDO"
                },
                {
                    "id": 6526,
                    "nome": "CARAJAS",
                    "municipio": "PARAUAPEBAS"
                },
                {
                    "id": 6527,
                    "nome": "CENTRO-TRES RIOS-RJ",
                    "municipio": "TRES RIOS"
                },
                {
                    "id": 6528,
                    "nome": "RECIFE-PARQUE AMORIM",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6529,
                    "nome": "PQ ACLIMACAO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6530,
                    "nome": "PALESTINA",
                    "municipio": "PALESTINA"
                },
                {
                    "id": 6531,
                    "nome": "A ARANTES-CASA BRANCA-SP",
                    "municipio": "CASA BRANCA"
                },
                {
                    "id": 6532,
                    "nome": "CORDEIROPOLIS",
                    "municipio": "CORDEIROPOLIS"
                },
                {
                    "id": 6533,
                    "nome": "PARDINHO",
                    "municipio": "PARDINHO"
                },
                {
                    "id": 6534,
                    "nome": "001 3772 E MATARAZZO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6535,
                    "nome": "BONIFACIO-ES DO PINHAL-SP",
                    "municipio": "ESPIRITO SANTO DO PINHAL"
                },
                {
                    "id": 6536,
                    "nome": "001 3774 R BRASIL FERNANDOPOLIS SP",
                    "municipio": "FERNANDOPOLIS"
                },
                {
                    "id": 6537,
                    "nome": "CARLOS FERRARI-GARCA-SP",
                    "municipio": "GARCA"
                },
                {
                    "id": 6538,
                    "nome": "001-3776 J BONIFACIO-ITAPIRA-SP",
                    "municipio": "ITAPIRA"
                },
                {
                    "id": 6539,
                    "nome": "001 3777 BR RIO BRANCO ITAPOLIS SP",
                    "municipio": "ITAPOLIS"
                },
                {
                    "id": 6540,
                    "nome": "001 3778 FCO GLICERIO-ITATIBA-SP",
                    "municipio": "ITATIBA"
                },
                {
                    "id": 6541,
                    "nome": "PEDRA BELA",
                    "municipio": "PEDRA BELA"
                },
                {
                    "id": 6542,
                    "nome": "R 9-JALES-SP",
                    "municipio": "JALES"
                },
                {
                    "id": 6543,
                    "nome": "001 3782 JARDIM BONFIGLIOLI-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6544,
                    "nome": "001-3783 PCA DR ANISIO-MIRASSOL-SP",
                    "municipio": "MIRASSOL"
                },
                {
                    "id": 6545,
                    "nome": "001 3784 M BARRETO MOCOCA SP",
                    "municipio": "MOCOCA"
                },
                {
                    "id": 6546,
                    "nome": "001-3785 J BONIFACIO-M MIRIM-SP",
                    "municipio": "MOGI-MIRIM"
                },
                {
                    "id": 6547,
                    "nome": "LIVRAMENTO-MONTE ALTO-SP",
                    "municipio": "MONTE ALTO"
                },
                {
                    "id": 6548,
                    "nome": "PIRAPORA BOM JESUS",
                    "municipio": "PIRAPORA DO BOM JESUS"
                },
                {
                    "id": 6549,
                    "nome": "001-3790 PCA MATRIZ-OLIMPIA-SP",
                    "municipio": "OLIMPIA"
                },
                {
                    "id": 6550,
                    "nome": "RIO-R.DIAS DA CRUZ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6551,
                    "nome": "001 3798 CENTRO RIO DO SUL SC",
                    "municipio": "RIO DO SUL"
                },
                {
                    "id": 6552,
                    "nome": "MONS COUTO-SALTO-SP",
                    "municipio": "SALTO"
                },
                {
                    "id": 6553,
                    "nome": "CENTRO-TUPA-SP",
                    "municipio": "TUPA"
                },
                {
                    "id": 6554,
                    "nome": "PRESIDENTE ALVES",
                    "municipio": "PRESIDENTE ALVES"
                },
                {
                    "id": 6555,
                    "nome": "001 3800 NAVARRO SFSUL SP",
                    "municipio": "SANTA FE DO SUL"
                },
                {
                    "id": 6556,
                    "nome": "P MORAES TAQUARITINGA SP",
                    "municipio": "TAQUARITINGA"
                },
                {
                    "id": 6557,
                    "nome": "JULIO REIS-TIETE-SP",
                    "municipio": "TIETE"
                },
                {
                    "id": 6558,
                    "nome": "TREZE DE MAIO-VALINHOS-SP",
                    "municipio": "VALINHOS"
                },
                {
                    "id": 6559,
                    "nome": "001 3809 CARRAO-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6560,
                    "nome": "PRESIDENTE BERNARDES",
                    "municipio": "PRESIDENTE BERNARDES"
                },
                {
                    "id": 6561,
                    "nome": "AV SAPOPEMBA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6562,
                    "nome": "VOTORANTIM",
                    "municipio": "VOTORANTIM"
                },
                {
                    "id": 6563,
                    "nome": "ALTO R PRETO-SJRPRETO-SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 6564,
                    "nome": "PORANGABA",
                    "municipio": "PORANGABA"
                },
                {
                    "id": 6565,
                    "nome": "001 3820 N SRA CANDELARIA-CAP-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6566,
                    "nome": "001 3822 AL RIO NEGRO-INT-SP I",
                    "municipio": "BARUERI"
                },
                {
                    "id": 6567,
                    "nome": "001 3823 VL VALQUEIRE-CAP-RJ I",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6568,
                    "nome": "OURO BRANCO",
                    "municipio": "OURO BRANCO"
                },
                {
                    "id": 6569,
                    "nome": "VIEIRA MORAIS-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6570,
                    "nome": "SANTO ANTONIO DE POSSE",
                    "municipio": "SANTO ANTONIO DE POSSE"
                },
                {
                    "id": 6571,
                    "nome": "SP-USP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6572,
                    "nome": "CONTAGEM-AGUA BRANCA",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 6573,
                    "nome": "PETROPOLIS-P. ALEGRE-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 6574,
                    "nome": "001-3835 DUQUE DE CAXIAS-BELEM-PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 6575,
                    "nome": "RIO-CHARLES DE GAULLE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6576,
                    "nome": "RIO-CEASA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6577,
                    "nome": "KS-BAIRRO DA LAGOA",
                    "municipio": "NOVA ODESSA"
                },
                {
                    "id": 6578,
                    "nome": "001-3841 CENTRO-SAPUCAIA SUL-RS",
                    "municipio": "SAPUCAIA DO SUL"
                },
                {
                    "id": 6579,
                    "nome": "RIO-TELEPORTO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6580,
                    "nome": "RIO-BARRABELLA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6581,
                    "nome": "SJCAMPOS-CTA/ITA / INPE",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 6582,
                    "nome": "001 3846 DF-SETOR HOSPITALAR SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 6583,
                    "nome": "001 3848 RIO-CANDIDO MENDES",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6584,
                    "nome": "RIO-PAL.DUQUE DE CAXIAS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6585,
                    "nome": "001-3851 FRANCA-SP II",
                    "municipio": "FRANCA"
                },
                {
                    "id": 6586,
                    "nome": "SP-PARAISO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6587,
                    "nome": "J.PESSOA-EPITACIO PESSOA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 6588,
                    "nome": "001-3858 D.CAXIAS-PIRASSUNUNGA-SP",
                    "municipio": "PIRASSUNUNGA"
                },
                {
                    "id": 6589,
                    "nome": "JARDIM PLANALTO",
                    "municipio": "PAULINIA"
                },
                {
                    "id": 6590,
                    "nome": "R SERGIPE-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6591,
                    "nome": "MAMBUCABA",
                    "municipio": "PARATY"
                },
                {
                    "id": 6592,
                    "nome": "C BUENO-JAGUARIUNA-SP",
                    "municipio": "JAGUARIUNA"
                },
                {
                    "id": 6593,
                    "nome": "001 3863 BARCARENA",
                    "municipio": "BARCARENA"
                },
                {
                    "id": 6594,
                    "nome": "R JOAO PESSOA-MATAO-SP",
                    "municipio": "MATAO"
                },
                {
                    "id": 6595,
                    "nome": "BANCO DIRETO SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6596,
                    "nome": "CUNHA",
                    "municipio": "CUNHA"
                },
                {
                    "id": 6597,
                    "nome": "001 3870 BANCO DIRETO RJANEIRO RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6598,
                    "nome": "RIO-VILA MILITAR",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6599,
                    "nome": "BALNEARIO CAMBORIU",
                    "municipio": "BALNEARIO CAMBORIU"
                },
                {
                    "id": 6600,
                    "nome": "001 0388 BUTANTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6601,
                    "nome": "BASE NAVAL LADARIO",
                    "municipio": "LADARIO"
                },
                {
                    "id": 6602,
                    "nome": "001 3883 CARIACICA",
                    "municipio": "CARIACICA"
                },
                {
                    "id": 6603,
                    "nome": "CRISTIANO MACHADO-BH-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6604,
                    "nome": "001 3885 RUI BARBOSA-PIRACICABA-SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 6605,
                    "nome": "3886",
                    "municipio": ""
                },
                {
                    "id": 6606,
                    "nome": "001-3887 SP-RUA ANTONIO PRUDENTE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6607,
                    "nome": "CURITIBA-ALTO DA GLORIA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 6608,
                    "nome": "ALFONSO BOVERO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6609,
                    "nome": "001-3891 RIO-SHOPPING VILA ISABEL",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6610,
                    "nome": "001- 3892 MAGNETI MARELLI",
                    "municipio": "HORTOLANDIA"
                },
                {
                    "id": 6611,
                    "nome": "BH-PAMPULHA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6612,
                    "nome": "ESTR TRES RIOS-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6613,
                    "nome": "RIO-UNIVERSIDADE FEDERAL",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6614,
                    "nome": "001 3897 BOSQUE DA SAUDE SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6615,
                    "nome": "SUMARE-3M",
                    "municipio": "SUMARE"
                },
                {
                    "id": 6616,
                    "nome": "BOTUCATU",
                    "municipio": "BOTUCATU"
                },
                {
                    "id": 6617,
                    "nome": "GUARAPIRANGA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6618,
                    "nome": "J.FORA-DISTRITO INDUSTRIA",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 6619,
                    "nome": "001-3906 RIO-PRAIA DO FLAMENGO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6620,
                    "nome": "001 3908 V MARQUES-SJPINHAIS-PR",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 6621,
                    "nome": "Ag�ncia 3909",
                    "municipio": ""
                },
                {
                    "id": 6622,
                    "nome": "PARAIBUNA",
                    "municipio": "PARAIBUNA"
                },
                {
                    "id": 6623,
                    "nome": "001-3910 CAMPINAS-UNICAMP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 6624,
                    "nome": "001 3912 PARQUE DA UVA II-INT-SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 6625,
                    "nome": "001 3915 RIO-PRACA MAUA III",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6626,
                    "nome": "BARCELOS-GRAVATAI-RS",
                    "municipio": "GRAVATAI"
                },
                {
                    "id": 6627,
                    "nome": "001 3918 BUZIOS",
                    "municipio": "ARMACAO DOS BUZIOS"
                },
                {
                    "id": 6628,
                    "nome": "001-3919 SP-BORGES LAGOA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6629,
                    "nome": "STA MARIA SERRA",
                    "municipio": "SANTA MARIA DA SERRA"
                },
                {
                    "id": 6630,
                    "nome": "BH-DOM PEDRO II",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6631,
                    "nome": "R PAVAO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6632,
                    "nome": "SP-PUC SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6633,
                    "nome": "SANTA BRANCA",
                    "municipio": "SANTA BRANCA"
                },
                {
                    "id": 6634,
                    "nome": "IPATINGA-CIDADE NOBRE",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 6635,
                    "nome": "AV JK PALMAS-TO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 6636,
                    "nome": "001 3933 SEROPEDICA",
                    "municipio": "SEROPEDICA"
                },
                {
                    "id": 6637,
                    "nome": "001 3934 AV AMERICAS 4043-RIO-RJ I",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6638,
                    "nome": "VOL.DA P�TRIA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6639,
                    "nome": "RIO-DOWTOWN BARRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6640,
                    "nome": "SP-BIXIGA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6641,
                    "nome": "RIO-GAVEA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6642,
                    "nome": "CAFELANDIA",
                    "municipio": "CAFELANDIA"
                },
                {
                    "id": 6643,
                    "nome": "SP-VILA MADALENA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6644,
                    "nome": "SP-POMPEIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6645,
                    "nome": "AV MAZZEI-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6646,
                    "nome": "VL BARUEL-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6647,
                    "nome": "LARANJEIRAS-SERRA-ES",
                    "municipio": "SERRA"
                },
                {
                    "id": 6648,
                    "nome": "CURITIBA-CRYSTAL",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 6649,
                    "nome": "N.IGUACU-FORUM",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 6650,
                    "nome": "CAMPINAS-PUC CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 6651,
                    "nome": "MACAUBAL",
                    "municipio": "MACAUBAL"
                },
                {
                    "id": 6652,
                    "nome": "001-3956 BACACHER I-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 6653,
                    "nome": "001 3959 RIO-BARRA SQUARE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6654,
                    "nome": "DUARTINA",
                    "municipio": "DUARTINA"
                },
                {
                    "id": 6655,
                    "nome": "SP-CENTRO EMPRESARIAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6656,
                    "nome": "001-3962 FORTALEZA-WASHINGTON SOAR",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 6657,
                    "nome": "CENTRO-JARAGUA DO SUL-SC",
                    "municipio": "JARAGUA DO SUL"
                },
                {
                    "id": 6658,
                    "nome": "AV IBIRAPUERA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6659,
                    "nome": "001 3965 SOROCABA CERRADO",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 6660,
                    "nome": "001 3969 RIO-BARRABELLA I",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6661,
                    "nome": "DF-CEILANDIA",
                    "municipio": "BRASILIA (CEILANDIA)"
                },
                {
                    "id": 6662,
                    "nome": "ITUPAVA-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 6663,
                    "nome": "001 3974 COPA 6-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6664,
                    "nome": "NITEROI-SHOPPING ITAIPU",
                    "municipio": "NITEROI"
                },
                {
                    "id": 6665,
                    "nome": "RIO-PRAIA DA BARRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6666,
                    "nome": "SP-NOVA FARIA LIMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6667,
                    "nome": "001 3979 SET BELA VISTA-GOIANIA-GO I",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 6668,
                    "nome": "BH MANGABEIRAS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6669,
                    "nome": "001-3981 CLOVIS BEVILAQUA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6670,
                    "nome": "VL PRUDENTE-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6671,
                    "nome": "SP - PRACA BUENOS AIRES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6672,
                    "nome": "001 3985 SP- PARAISO II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6673,
                    "nome": "AFONSO BRAS-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6674,
                    "nome": "DIADEMA-SERRARIA",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 6675,
                    "nome": "001-3988 GUARULHOS-CUMBICA",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 6676,
                    "nome": "JD ANALIA FRANCO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6677,
                    "nome": "AV EDUARDO COTCHING-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6678,
                    "nome": "SP-LIMAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6679,
                    "nome": "001-3995 BAURU-JD. BRASIL",
                    "municipio": "BAURU"
                },
                {
                    "id": 6680,
                    "nome": "001-3997 SJRPRETO-FUNFARME",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 6681,
                    "nome": "001 3998 J.INDEPENDENCIA-RPRETO-SP I",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 6682,
                    "nome": "BAURU II",
                    "municipio": "BAURU"
                },
                {
                    "id": 6683,
                    "nome": "JUNDIA� II",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 6684,
                    "nome": "TUTOIA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6685,
                    "nome": "4001",
                    "municipio": ""
                },
                {
                    "id": 6686,
                    "nome": "GARANHUNS",
                    "municipio": "GARANHUNS"
                },
                {
                    "id": 6687,
                    "nome": "RECIFE-CASA FORTE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6688,
                    "nome": "ARARIPINA",
                    "municipio": "ARARIPINA"
                },
                {
                    "id": 6689,
                    "nome": "RECIFE-SANTO ANTONIO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6690,
                    "nome": "BELO JARDIM",
                    "municipio": "BELO JARDIM"
                },
                {
                    "id": 6691,
                    "nome": "ALTAIR",
                    "municipio": "ALTAIR"
                },
                {
                    "id": 6692,
                    "nome": "LIMOEIRO",
                    "municipio": "LIMOEIRO"
                },
                {
                    "id": 6693,
                    "nome": "TIMBAUBA",
                    "municipio": "TIMBAUBA"
                },
                {
                    "id": 6694,
                    "nome": "VITORIA DE SANTO ANTAO",
                    "municipio": "VITORIA DE SANTO ANTAO"
                },
                {
                    "id": 6695,
                    "nome": "PALMARES",
                    "municipio": "PALMARES"
                },
                {
                    "id": 6696,
                    "nome": "RECIFE-FORUM",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6697,
                    "nome": "001 4015 RECIFE-AV.CAXANGA III",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6698,
                    "nome": "RECIFE-RUA DA IMPERATRIZ",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6699,
                    "nome": "CARUARU-CENTRO",
                    "municipio": "CARUARU"
                },
                {
                    "id": 6700,
                    "nome": "402",
                    "municipio": ""
                },
                {
                    "id": 6701,
                    "nome": "001-4020 JOAO DE BARROS-RECIFE-PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6702,
                    "nome": "001 4021 RECIFE-AV.CAXANGA II",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6703,
                    "nome": "RECIFE-CEASA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6704,
                    "nome": "SANTA MARIA DA BOA VISTA",
                    "municipio": "SANTA MARIA DA BOA VISTA"
                },
                {
                    "id": 6705,
                    "nome": "PAUDALHO",
                    "municipio": "PAUDALHO"
                },
                {
                    "id": 6706,
                    "nome": "IGARASSU",
                    "municipio": "IGARASSU"
                },
                {
                    "id": 6707,
                    "nome": "BARREIROS",
                    "municipio": "BARREIROS"
                },
                {
                    "id": 6708,
                    "nome": "RIBEIRAO",
                    "municipio": "RIBEIRAO"
                },
                {
                    "id": 6709,
                    "nome": "403",
                    "municipio": ""
                },
                {
                    "id": 6710,
                    "nome": "ESCADA",
                    "municipio": "ESCADA"
                },
                {
                    "id": 6711,
                    "nome": "001 4036 JABOATAO DOS GUARARAPES",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 6712,
                    "nome": "CABROBO",
                    "municipio": "CABROBO"
                },
                {
                    "id": 6713,
                    "nome": "PETROLANDIA",
                    "municipio": "PETROLANDIA"
                },
                {
                    "id": 6714,
                    "nome": "PAULISTA",
                    "municipio": "PAULISTA"
                },
                {
                    "id": 6715,
                    "nome": "BARRA DO TURVO",
                    "municipio": "BARRA DO TURVO"
                },
                {
                    "id": 6716,
                    "nome": "IPOJUCA",
                    "municipio": "IPOJUCA"
                },
                {
                    "id": 6717,
                    "nome": "BEZERROS",
                    "municipio": "BEZERROS"
                },
                {
                    "id": 6718,
                    "nome": "ARCOVERDE",
                    "municipio": "ARCOVERDE"
                },
                {
                    "id": 6719,
                    "nome": "OLINDA",
                    "municipio": "OLINDA"
                },
                {
                    "id": 6720,
                    "nome": "RECIFE-AV.CAXANGA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6721,
                    "nome": "RECIFE-R.ANTONIO FALCAO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6722,
                    "nome": "BORA",
                    "municipio": "BORA"
                },
                {
                    "id": 6723,
                    "nome": "001 4051 LARGO DA PAZ-RECIFE-PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6724,
                    "nome": "001-4052 RECIFE-ARRUDA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6725,
                    "nome": "RECIFE-SAO JOSE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6726,
                    "nome": "OURICURI",
                    "municipio": "OURICURI"
                },
                {
                    "id": 6727,
                    "nome": "RECIFE-CASA AMARELA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6728,
                    "nome": "CARPINA",
                    "municipio": "CARPINA"
                },
                {
                    "id": 6729,
                    "nome": "SALGUEIRO",
                    "municipio": "SALGUEIRO"
                },
                {
                    "id": 6730,
                    "nome": "CAMARAGIBE",
                    "municipio": "CAMARAGIBE"
                },
                {
                    "id": 6731,
                    "nome": "406",
                    "municipio": ""
                },
                {
                    "id": 6732,
                    "nome": "BOM CONSELHO",
                    "municipio": "BOM CONSELHO"
                },
                {
                    "id": 6733,
                    "nome": "GOIANA",
                    "municipio": "GOIANA"
                },
                {
                    "id": 6734,
                    "nome": "PESQUEIRA",
                    "municipio": "PESQUEIRA"
                },
                {
                    "id": 6735,
                    "nome": "SURUBIM",
                    "municipio": "SURUBIM"
                },
                {
                    "id": 6736,
                    "nome": "Ag�ncia 4068",
                    "municipio": ""
                },
                {
                    "id": 6737,
                    "nome": "GABRIEL MONTEIRO",
                    "municipio": "GABRIEL MONTEIRO"
                },
                {
                    "id": 6738,
                    "nome": "PIRACICABA II",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 6739,
                    "nome": "MONCOES",
                    "municipio": "MONCOES"
                },
                {
                    "id": 6740,
                    "nome": "SERRA TALHADA",
                    "municipio": "SERRA TALHADA"
                },
                {
                    "id": 6741,
                    "nome": "NARANDIBA",
                    "municipio": "NARANDIBA"
                },
                {
                    "id": 6742,
                    "nome": "GRAVATA",
                    "municipio": "GRAVATA"
                },
                {
                    "id": 6743,
                    "nome": "001 4147 SANTA CRUZ DO CAPIBARIBE-PE",
                    "municipio": "SANTA CRUZ DO CAPIBARIBE"
                },
                {
                    "id": 6744,
                    "nome": "NOVA LUSITANIA",
                    "municipio": "NOVA LUZITANIA"
                },
                {
                    "id": 6745,
                    "nome": "001-4153 RECIFE-AGAMENON MAGALHAES",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6746,
                    "nome": "Ag�ncia 4154",
                    "municipio": ""
                },
                {
                    "id": 6747,
                    "nome": "001-4156 CABO DE SANTO AGOSTINHO",
                    "municipio": "CABO DE SANTO AGOSTINHO"
                },
                {
                    "id": 6748,
                    "nome": "001-4159 JOAO BARROS I-RECIFE-PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6749,
                    "nome": "001-4160 RECIFE-AV.CONS.AGUIAR",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6750,
                    "nome": "001 4164 Z RURAL-LU�S ANTONIO-SP",
                    "municipio": "LUIS ANTONIO"
                },
                {
                    "id": 6751,
                    "nome": "LONDRINA-UNOPAR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 6752,
                    "nome": "001-4168 AG.SINOP",
                    "municipio": "SINOP"
                },
                {
                    "id": 6753,
                    "nome": "AG. PIRAI",
                    "municipio": "PIRAI"
                },
                {
                    "id": 6754,
                    "nome": "ONDA VERDE",
                    "municipio": "ONDA VERDE"
                },
                {
                    "id": 6755,
                    "nome": "PRAIA-CARAGUATATUBA-SP",
                    "municipio": "CARAGUATATUBA"
                },
                {
                    "id": 6756,
                    "nome": "AG.FORTALEZA-AV.13 DE MAIO",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 6757,
                    "nome": "DIVINOPOLIS - AV. GOIAS",
                    "municipio": "DIVINOPOLIS"
                },
                {
                    "id": 6758,
                    "nome": "001 4174 LINHARES",
                    "municipio": "LINHARES"
                },
                {
                    "id": 6759,
                    "nome": "AG. 1175 - COTIA-GRANJA VIANA",
                    "municipio": "COTIA"
                },
                {
                    "id": 6760,
                    "nome": "AG.CATALAO - GO",
                    "municipio": "CATALAO"
                },
                {
                    "id": 6761,
                    "nome": "AG. IBIRITE",
                    "municipio": "IBIRITE"
                },
                {
                    "id": 6762,
                    "nome": "ALUMINIO",
                    "municipio": "ALUMINIO"
                },
                {
                    "id": 6763,
                    "nome": "AG.NIQUELANDIA",
                    "municipio": "NIQUELANDIA"
                },
                {
                    "id": 6764,
                    "nome": "ORINDIUVA",
                    "municipio": "ORINDIUVA"
                },
                {
                    "id": 6765,
                    "nome": "001 4181 CENTRO-J.PESSOA-PB I",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 6766,
                    "nome": "CAMPINA GDE.R.MARQUES HER",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 6767,
                    "nome": "J.PESSOA-B. DOS ESTADOS",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 6768,
                    "nome": "PATOS-PB",
                    "municipio": "PATOS"
                },
                {
                    "id": 6769,
                    "nome": "CAJAZEIRAS-PB",
                    "municipio": "CAJAZEIRAS"
                },
                {
                    "id": 6770,
                    "nome": "GUARABIRA-PB",
                    "municipio": "GUARABIRA"
                },
                {
                    "id": 6771,
                    "nome": "SOUSA-PB",
                    "municipio": "SOUSA"
                },
                {
                    "id": 6772,
                    "nome": "J.PESSOA-CRUZ DAS ARMAS",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 6773,
                    "nome": "AG. SOROCABA - AV. ITAVUVU",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 6774,
                    "nome": "PAULICEIA",
                    "municipio": "PAULICEIA"
                },
                {
                    "id": 6775,
                    "nome": "AG. CAMPINAS - SANTO ANTONIO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 6776,
                    "nome": "001 4192 CEL QUIRINO-CAMPINAS-SP III",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 6777,
                    "nome": "J PAULINO-PAULINIA-SP",
                    "municipio": "PAULINIA"
                },
                {
                    "id": 6778,
                    "nome": "001 4194 PONTA DA PRAIA-SANTOS-SP II",
                    "municipio": "SANTOS"
                },
                {
                    "id": 6779,
                    "nome": "AG. SANT.DE PARNAIBA-FAZENDINHA",
                    "municipio": "SANTANA DE PARNAIBA"
                },
                {
                    "id": 6780,
                    "nome": "AG. SP-VILA ANASTACIO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6781,
                    "nome": "VL YARA-OSASCO-SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 6782,
                    "nome": "001 4198 MARQUES SAO VICENTE SP SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6783,
                    "nome": "001 4199 VL MARIANA-SP-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6784,
                    "nome": "CENTRO-REGISTRO-SP",
                    "municipio": "REGISTRO"
                },
                {
                    "id": 6785,
                    "nome": "BH-PRACA MARILIA DE DIRCEU",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6786,
                    "nome": "001 4201 VL ARENS-JUNDIAI-SP I",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 6787,
                    "nome": "JUNDIAI-V.HORTOLANDIA",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 6788,
                    "nome": "LIMEIRA-RUA TIRADENTES",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 6789,
                    "nome": "RIO-GAL. POLIDORO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6790,
                    "nome": "001 4207 ENSEADA BOTAFOGO-CAP-RJ I",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6791,
                    "nome": "001 4208 VILA ISABEL - RJ CAP II",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6792,
                    "nome": "RIO-COND.MANDALA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6793,
                    "nome": "RIO-RECREIO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6794,
                    "nome": "RIO-BOSQUE DA BARRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6795,
                    "nome": "NITEROI-REG. OCEANICA",
                    "municipio": "NITEROI"
                },
                {
                    "id": 6796,
                    "nome": "NITEROI-I.DA CONCEICAO",
                    "municipio": "NITEROI"
                },
                {
                    "id": 6797,
                    "nome": "001-4220 CONS PAULINO-NFRIBURGO-RJ",
                    "municipio": "NOVA FRIBURGO"
                },
                {
                    "id": 6798,
                    "nome": "S. GONCALO - S. CATARINA",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 6799,
                    "nome": "001-4225 V.REDONDA-RETIRO",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 6800,
                    "nome": "XEREM-DCAXIAS-RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 6801,
                    "nome": "SJMERITI-VILAR DOS TELES",
                    "municipio": "SAO JOAO DE MERITI"
                },
                {
                    "id": 6802,
                    "nome": "BH-AV. FRANCISCO SA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6803,
                    "nome": "QUEIROS",
                    "municipio": "QUEIROZ"
                },
                {
                    "id": 6804,
                    "nome": "BH-RUA RIO GDE. DO NORTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6805,
                    "nome": "PCA LAGOA SECA-BH-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6806,
                    "nome": "BH-MERCADO CENTRAL",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6807,
                    "nome": "BH-BETANIA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6808,
                    "nome": "001-4236 BH-VENDA NOVA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6809,
                    "nome": "BH-CORACAO EUCARISTICO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6810,
                    "nome": "CONTAGEM-R. DAS PEDRAS",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 6811,
                    "nome": "001-4239 CONTAGEM-PETROLANDIA",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 6812,
                    "nome": "CONTAGEM-B. INDUSTRIAL",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 6813,
                    "nome": "001-4242 C.FABRICIANO-MELO VIANA",
                    "municipio": "CORONEL FABRICIANO"
                },
                {
                    "id": 6814,
                    "nome": "IPATINGA-CARIRU",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 6815,
                    "nome": "M.CLAROS-CENTER AVENIDA",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 6816,
                    "nome": "001 4249 SETE LAGOAS-CENTRO I",
                    "municipio": "SETE LAGOAS"
                },
                {
                    "id": 6817,
                    "nome": "SP-HADDOCK LOBO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6818,
                    "nome": "001 4253 HEITOR PENTEADO-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6819,
                    "nome": "LGO 13 MAIO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6820,
                    "nome": "001-4255 IMPRENSA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6821,
                    "nome": "AL DOS MARACATINS-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6822,
                    "nome": "001-4257 SHOP STA CRUZ-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6823,
                    "nome": "001 4258 TEOTONIO VILELA SP SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6824,
                    "nome": "ENG ARMANDO ARRUDA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6825,
                    "nome": "AV MERITI-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6826,
                    "nome": "RIO-PEDRA DE ITAUNA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6827,
                    "nome": "SP-CERRO CORA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6828,
                    "nome": "OSASCO AUTONOMISTAS",
                    "municipio": "OSASCO"
                },
                {
                    "id": 6829,
                    "nome": "SP-AV.FRANCISCO MATARAZZO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6830,
                    "nome": "001-4266 VL GALVAO-GUARULHOS-SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 6831,
                    "nome": "001-4267 VL FORMOSA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6832,
                    "nome": "SP-AV. BRAZ LEME",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6833,
                    "nome": "001-4269 GUARULHOS-AV.PAULO FACCIN",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 6834,
                    "nome": "SANTO EXPEDITO",
                    "municipio": "SANTO EXPEDITO"
                },
                {
                    "id": 6835,
                    "nome": "001 4270 FREGUESIA DO O-SP-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6836,
                    "nome": "RIO-CACUIA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6837,
                    "nome": "001 4273 BELO HORIZONTE-MG II",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6838,
                    "nome": "BH-FUNCIONARIOS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6839,
                    "nome": "BH-ALIPIO DE MELO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 6840,
                    "nome": "001 4277 JOSE ALVIM ATIBAIA SP",
                    "municipio": "ATIBAIA"
                },
                {
                    "id": 6841,
                    "nome": "001-4279 FORTALEZA-SANTOS DUMONT",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 6842,
                    "nome": "TARABAI",
                    "municipio": "TARABAI"
                },
                {
                    "id": 6843,
                    "nome": "CATEDRAL-CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 6844,
                    "nome": "SAO MIGUEL PTA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6845,
                    "nome": "001 4283 HORTO FLORESTAL - SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6846,
                    "nome": "RIO-MERCADO SAO SEBASTIAO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6847,
                    "nome": "001-4286 ALZIRA BRANDAO-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6848,
                    "nome": "001-4287 TRINDADE-FLORIPA-SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 6849,
                    "nome": "001 4288 EQS 408/409-DF L",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 6850,
                    "nome": "DF-LAGO SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 6851,
                    "nome": "001-4290 DF-UNB",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 6852,
                    "nome": "FOZ DO IGUACU-VILA A",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 6853,
                    "nome": "001 4293 SHOP AURORA-LONDRINA-PR I",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 6854,
                    "nome": "LONDRINA-BANDEIRANTES",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 6855,
                    "nome": "TERM DO CARMO-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 6856,
                    "nome": "CURITIBA-JOAO BETTEGA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 6857,
                    "nome": "SHOP AG VERDE-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 6858,
                    "nome": "001 4298 P.GROSSA-CENTRO II",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 6859,
                    "nome": "PRES.PRUDENTE-UNOESTE",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 6860,
                    "nome": "001-0043 CENTRO-ANDRADINA-SP",
                    "municipio": "ANDRADINA"
                },
                {
                    "id": 6861,
                    "nome": "UNIAO PAULISTA",
                    "municipio": "UNIAO PAULISTA"
                },
                {
                    "id": 6862,
                    "nome": "001-4306 SALVADOR-CABULA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 6863,
                    "nome": "Ag�ncia 4309",
                    "municipio": ""
                },
                {
                    "id": 6864,
                    "nome": "Ag�ncia 4310",
                    "municipio": ""
                },
                {
                    "id": 6865,
                    "nome": "J.PESSOA-UFPB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 6866,
                    "nome": "VILA VELHA-GLORIA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 6867,
                    "nome": "VITORIA-JD. DA PENHA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 6868,
                    "nome": "C.GRANDE-RUA CEARA",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 6869,
                    "nome": "001-4319 C.GRANDE- FOR�AS ARMADAS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 6870,
                    "nome": "001 4321 CUIABA-UFMT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 6871,
                    "nome": "NATAL CENTRO COML.",
                    "municipio": "NATAL"
                },
                {
                    "id": 6872,
                    "nome": "001-4323 FORTALEZA-MONTESE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 6873,
                    "nome": "SAO LUIS-TIRIRICAL",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 6874,
                    "nome": "SAO LUIS-RENASCENCA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 6875,
                    "nome": "TERESINA-JOCKEY",
                    "municipio": "TERESINA"
                },
                {
                    "id": 6876,
                    "nome": "001 4327 MACAPA-MARCO ZERO",
                    "municipio": "MACAPA"
                },
                {
                    "id": 6877,
                    "nome": "ATAULFO DE PAIVA-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6878,
                    "nome": "Ag�ncia 433",
                    "municipio": ""
                },
                {
                    "id": 6879,
                    "nome": "PRIVATE SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6880,
                    "nome": "NITEROI-SAO FRANCISCO",
                    "municipio": "NITEROI"
                },
                {
                    "id": 6881,
                    "nome": "001 4333 TAMBAU-J.PESSOA-PB I",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 6882,
                    "nome": "SJCAMPOS-JARDIM AQUARIUS",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 6883,
                    "nome": "ARMANDO SALES-CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 6884,
                    "nome": "BARUERI PREFEITURA",
                    "municipio": "BARUERI"
                },
                {
                    "id": 6885,
                    "nome": "AV REBOUCAS-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6886,
                    "nome": "001 0434 AV B BASSITT-SJRPRETO-SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 6887,
                    "nome": "PORTO ALEGRE OSVALDO ARANHA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 6888,
                    "nome": "001-4341 SP-AV.PENHA DE FRANCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6889,
                    "nome": "GUAPIRA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6890,
                    "nome": "BELEM-ALMIRANTE BARROSO",
                    "municipio": "BELEM"
                },
                {
                    "id": 6891,
                    "nome": "RECIFE-FORCAS ARMADAS",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6892,
                    "nome": "001-4345 CENTRO-SAO JOSE-SC",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 6893,
                    "nome": "CEAGESP-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6894,
                    "nome": "BARUERI",
                    "municipio": "BARUERI"
                },
                {
                    "id": 6895,
                    "nome": "001 0435 MOEMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6896,
                    "nome": "AG. RIO MARIZ E BARROS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6897,
                    "nome": "SP-JARDIM MARAJOARA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6898,
                    "nome": "P�A BONFIM- S ANDRE-SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 6899,
                    "nome": "B JARDIM-S ANDRE-SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 6900,
                    "nome": "AV ANA COSTA II-SANTOS-SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 6901,
                    "nome": "PCA FIGUEIRA-SCAETANO SUL",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 6902,
                    "nome": "001 4357 CENTRO-PRAIA GRANDE-SP I",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 6903,
                    "nome": "AGUA RASA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6904,
                    "nome": "RIO-PRACA MAUA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6905,
                    "nome": "PORTO REAL",
                    "municipio": "PORTO REAL"
                },
                {
                    "id": 6906,
                    "nome": "001-4362 RIO-GRAJAU",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6907,
                    "nome": "001 4363 OTTO-PORTO ALEGRE-RS II",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 6908,
                    "nome": "PRINC ISABEL-P.ALEGRE-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 6909,
                    "nome": "M CESAR-CAXIAS SUL-RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 6910,
                    "nome": "GOV.VALADARES-AV.JK",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 6911,
                    "nome": "CASA VERDE-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6912,
                    "nome": "J.PESSOA-TAMBAU",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 6913,
                    "nome": "001-4371 AV INDIANOPOLIS-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6914,
                    "nome": "NOVA TUTOIA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6915,
                    "nome": "SANTAREM",
                    "municipio": "SANTAREM"
                },
                {
                    "id": 6916,
                    "nome": "AG. RIO - LAVRADIO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6917,
                    "nome": "001 4377 MACAE-CAVALEIROS",
                    "municipio": "MACAE"
                },
                {
                    "id": 6918,
                    "nome": "ANDRADE NEVES-CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 6919,
                    "nome": "RIO - ESTR.DO MEDANHA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6920,
                    "nome": "001-4385 AV PELINCA-CAMPOS-RJ",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 6921,
                    "nome": "001-4387 PIRACICABA-CIDADE ALTA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 6922,
                    "nome": "001 4388 PORTAO I",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 6923,
                    "nome": "001-4389 AG. 4389 - FORTALEZA-DESEMB. MOREIRA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 6924,
                    "nome": "GUAPIARA",
                    "municipio": "GUAPIARA"
                },
                {
                    "id": 6925,
                    "nome": "ST SUDOESTE-BRASILIA-DF",
                    "municipio": "BRASILIA (CRUZEIRO)"
                },
                {
                    "id": 6926,
                    "nome": "AG. SJCAMPOS-PQ. INDUSTRIAL",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 6927,
                    "nome": "AG. VITORIA-UFES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 6928,
                    "nome": "CENTRO-BRUSQUE-SC",
                    "municipio": "BRUSQUE"
                },
                {
                    "id": 6929,
                    "nome": "001 4399 CENTENARIA - RS V",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 6930,
                    "nome": "ARARAQUARA II",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 6931,
                    "nome": "AGUDOS",
                    "municipio": "AGUDOS"
                },
                {
                    "id": 6932,
                    "nome": "SJCAMPOS - EMBRAER",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 6933,
                    "nome": "001-4401 BUCAREIN-JOINVILLE-SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 6934,
                    "nome": "VIA DEL VINO-BENTO G-RS",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 6935,
                    "nome": "CHAMPAGNAT-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 6936,
                    "nome": "MANOEL RIBAS-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 6937,
                    "nome": "AG. DF-AGUAS CLARAS",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 6938,
                    "nome": "AG. VARZEA GRANDE",
                    "municipio": "VARZEA GRANDE"
                },
                {
                    "id": 6939,
                    "nome": "AG. CUIABA-CPA",
                    "municipio": "CUIABA"
                },
                {
                    "id": 6940,
                    "nome": "V AMARAL-ARAUCARIA-PR",
                    "municipio": "ARAUCARIA"
                },
                {
                    "id": 6941,
                    "nome": "ANGATUBA",
                    "municipio": "ANGATUBA"
                },
                {
                    "id": 6942,
                    "nome": "001 4410 SOBRAL",
                    "municipio": "SOBRAL"
                },
                {
                    "id": 6943,
                    "nome": "AG. MANAUS - DISTRITO INDUSTRIAL",
                    "municipio": "MANAUS"
                },
                {
                    "id": 6944,
                    "nome": "AV S CAMPOS-JACAREI-SP",
                    "municipio": "JACAREI"
                },
                {
                    "id": 6945,
                    "nome": "001 4414 NOVO CENTRO-ITU-SP I",
                    "municipio": "ITU"
                },
                {
                    "id": 6946,
                    "nome": "AG. MOGI DAS CRUZES-SHOP. MOGI",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 6947,
                    "nome": "SANTA LUZIA",
                    "municipio": "SANTA LUZIA"
                },
                {
                    "id": 6948,
                    "nome": "Ag�ncia 4419",
                    "municipio": ""
                },
                {
                    "id": 6949,
                    "nome": "CAJURU",
                    "municipio": "CAJURU"
                },
                {
                    "id": 6950,
                    "nome": "DF - LAGO NORTE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 6951,
                    "nome": "ITAIPAVA-PETROPOLIS-RJ",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 6952,
                    "nome": "AG. SANTANA DO PARNAIBA",
                    "municipio": "SANTANA DE PARNAIBA"
                },
                {
                    "id": 6953,
                    "nome": "AG. CAMPINAS-EMPRES.ALPHAVILLE",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 6954,
                    "nome": "AG. SUMARE-AV. DA AMIZADE",
                    "municipio": "SUMARE"
                },
                {
                    "id": 6955,
                    "nome": "AG. TAUBATE-AV. INDEPENDENCIA",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 6956,
                    "nome": "AG. SOROCABA - CAMPOLIM",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 6957,
                    "nome": "AMERICANA - PCA. DA BIBLIA",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 6958,
                    "nome": "INDAIATUBA - AV. FCO. P. LEITE",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 6959,
                    "nome": "MOGI GUA�U - CAPELA",
                    "municipio": "MOGI-GUACU"
                },
                {
                    "id": 6960,
                    "nome": "AG. RESENDE-MANEJO",
                    "municipio": "RESENDE"
                },
                {
                    "id": 6961,
                    "nome": "AG. RIO DAS OSTRAS",
                    "municipio": "RIO DAS OSTRAS"
                },
                {
                    "id": 6962,
                    "nome": "AREA VERDE-SBCAMPO-SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 6963,
                    "nome": "001-4434 S.CARLOS-PRACA XV",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 6964,
                    "nome": "UBERLANDIA - RONDOM PACHECO",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 6965,
                    "nome": "VOLTA REDONDA - ATERRADO",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 6966,
                    "nome": "AG. POCOS DE CALDAS - A. FIGUEIREDO",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 6967,
                    "nome": "AG. MARICA",
                    "municipio": "MARICA"
                },
                {
                    "id": 6968,
                    "nome": "001 4441 CAMPO LARGO-PR",
                    "municipio": "CAMPO LARGO"
                },
                {
                    "id": 6969,
                    "nome": "AG. RIBEIRAO PRETO - ZONA SUL",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 6970,
                    "nome": "001 4443 J.FORA-MANCHESTER I",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 6971,
                    "nome": "001 4444 PRAIA DE BELAS-P.ALEGRE-RS I",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 6972,
                    "nome": "AG. SP-JUSTICA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6973,
                    "nome": "AG. BARBACENA-PONTILHAO",
                    "municipio": "BARBACENA"
                },
                {
                    "id": 6974,
                    "nome": "N.IGUACU - MIGUEL COUTO",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 6975,
                    "nome": "001 4449 CONSELHEIRO LAFAIETE-MG I",
                    "municipio": "CONSELHEIRO LAFAIETE"
                },
                {
                    "id": 6976,
                    "nome": "001-0445 CENTRO-JAGUARIUNA-SP",
                    "municipio": "JAGUARIUNA"
                },
                {
                    "id": 6977,
                    "nome": "AG. UBERABA EXPOSICAO",
                    "municipio": "UBERABA"
                },
                {
                    "id": 6978,
                    "nome": "AG. S.JOSE PINHAIS - RUI BARBOSA",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 6979,
                    "nome": "AG. J.FORA - CASCATINHA",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 6980,
                    "nome": "AG. 4456 - MOSSORO",
                    "municipio": "MOSSORO"
                },
                {
                    "id": 6981,
                    "nome": "001-4458 AG. FORTALEZA - 6 BOCAS",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 6982,
                    "nome": "NEVES PAULISTA",
                    "municipio": "NEVES PAULISTA"
                },
                {
                    "id": 6983,
                    "nome": "AG. SP-AV. MUTINGA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 6984,
                    "nome": "RIO-LARGO DO PECHINCHA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6985,
                    "nome": "001-4462 CUIABA-INDUSTRIAL",
                    "municipio": "CUIABA"
                },
                {
                    "id": 6986,
                    "nome": "ANANINDEUA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 6987,
                    "nome": "AG. 1465 - CARATINGA",
                    "municipio": "CARATINGA"
                },
                {
                    "id": 6988,
                    "nome": "RIO FATIMA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6989,
                    "nome": "001 4467 VILA ISABEL - RJ CAP I",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 6990,
                    "nome": "PE LEONARDO-PIRACAIA-SP",
                    "municipio": "PIRACAIA"
                },
                {
                    "id": 6991,
                    "nome": "001-4470 AG. MARACANA�",
                    "municipio": "MARACANAU"
                },
                {
                    "id": 6992,
                    "nome": "S.ANDRE-VILA GILDA",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 6993,
                    "nome": "001-4475 AG. MACEIO-PONTA VERDE",
                    "municipio": "MACEIO"
                },
                {
                    "id": 6994,
                    "nome": "AG. RECIFE-ARRECIFES",
                    "municipio": "RECIFE"
                },
                {
                    "id": 6995,
                    "nome": "POTIRENDABA",
                    "municipio": "POTIRENDABA"
                },
                {
                    "id": 6996,
                    "nome": "REGENTE FEIJO",
                    "municipio": "REGENTE FEIJO"
                },
                {
                    "id": 6997,
                    "nome": "CENTRO-TIETE-SP",
                    "municipio": "TIETE"
                },
                {
                    "id": 6998,
                    "nome": "TERRA ROXA",
                    "municipio": "TERRA ROXA"
                },
                {
                    "id": 6999,
                    "nome": "Urb-Recife-R.Do",
                    "municipio": ""
                },
                {
                    "id": 7000,
                    "nome": "AG. URB-ARARAQUARA-S.BENTO",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 7001,
                    "nome": "AG. URB-AMERICANA-F. CAMARGO",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 7002,
                    "nome": "001 4503 LIMA E SILVA-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7003,
                    "nome": "001 4504 PCA DO AVIAO-ANAPOLIS-GO I",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 7004,
                    "nome": "AG. URB-ALPHAVILLE-AL.ARAGUAIA",
                    "municipio": "BARUERI"
                },
                {
                    "id": 7005,
                    "nome": "AG. URB-BAURU-PRACA PORTUGAL",
                    "municipio": "BAURU"
                },
                {
                    "id": 7006,
                    "nome": "001-4509 NEREU RAMOS-BLUMENAU-SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 7007,
                    "nome": "001 0451 PQ DO IBIRAPUERA-SP-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7008,
                    "nome": "001 4511 URB BH AV  JOAO PINHEIRO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 7009,
                    "nome": "AG. URB-BELEM-CIRIO DE NAZARE",
                    "municipio": "BELEM"
                },
                {
                    "id": 7010,
                    "nome": "AG  URB BETIM PRACA TIRADENTES",
                    "municipio": "BETIM"
                },
                {
                    "id": 7011,
                    "nome": "AG. URB-BOTUCATU-COM.PEDUTTI",
                    "municipio": "BOTUCATU"
                },
                {
                    "id": 7012,
                    "nome": "001 4516 URB-CAMPINAS-GAL.OSORIO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 7013,
                    "nome": "SAMPAINHO-CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 7014,
                    "nome": "AG. URB-CAMPO GRANDE",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 7015,
                    "nome": "AG. URB-CONTAGEM-PRACA CEMIG",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 7016,
                    "nome": "AG. URB-DIADEMA-AV. SAO JOSE",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 7017,
                    "nome": "AG. URB-DOURADOS-J.C.CAMARA",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 7018,
                    "nome": "001 4522 JULIO CASTILHOS-CAXIAS SUL",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 7019,
                    "nome": "AG. URB-CUIABA-R.BR.DE MELGACO",
                    "municipio": "CUIABA"
                },
                {
                    "id": 7020,
                    "nome": "AG. URB-F. SANTANA-AV. G. VARGAS",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 7021,
                    "nome": "001-4526 AG. URB-FORTALEZA-RIO BRANCO",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 7022,
                    "nome": "AG. URB-GUARULHOS-B. MACEDO",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 7023,
                    "nome": "001 4528 TEN.SILVEIRA-FLORIPA-SCII",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 7024,
                    "nome": "AG. URB-JAU-PRACA SIQ. CAMPOS",
                    "municipio": "JAU"
                },
                {
                    "id": 7025,
                    "nome": "001-4530 FRANCA-SP I",
                    "municipio": "FRANCA"
                },
                {
                    "id": 7026,
                    "nome": "AG. URB-JOAO PESSOA-DQ.CAXIAS",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 7027,
                    "nome": "001-4533 URB-JOINVILLE-JOAO COLIN",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 7028,
                    "nome": "001 4534 RANGEL PESTANA-JUNDIA�-SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 7029,
                    "nome": "AG. URB-J.FORA-BR.RIO BRANCO",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 7030,
                    "nome": "AG. URB-LIMEIRA-BR. CAMPINAS",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 7031,
                    "nome": "AG. URB-LONDRINA-MANSAO GARCIA",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 7032,
                    "nome": "001 4538 URB-MACEIO-RUA DO SOL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 7033,
                    "nome": "001 4539 MANAUS-AV EDUARDO RIBEIRO I",
                    "municipio": "MANAUS"
                },
                {
                    "id": 7034,
                    "nome": "AG. URB-MARINGA-Z1",
                    "municipio": "MARINGA"
                },
                {
                    "id": 7035,
                    "nome": "CASARAO-MOGI-SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 7036,
                    "nome": "AG. URB-NATAL-LAGOA SECA",
                    "municipio": "NATAL"
                },
                {
                    "id": 7037,
                    "nome": "AG. URB-NOVO HAMBURGO",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 7038,
                    "nome": "001 4545 URB-OSASCO-ANTONIO AGU",
                    "municipio": "OSASCO"
                },
                {
                    "id": 7039,
                    "nome": "001 4546 OURO PRETO-CAP-MG I",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 7040,
                    "nome": "001-4547 URB-PELOTAS-FELIX DA CUNHA",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 7041,
                    "nome": "AG. URB-PIRACICABA-PRC.CATEDRAL",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 7042,
                    "nome": "001 4549 CENTENARIA - RS IV",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7043,
                    "nome": "JARDIM DO MAR",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 7044,
                    "nome": "001 4550 METRO BRIGADEIRO-SP III",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7045,
                    "nome": "001 4551 LIBERDADE II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7046,
                    "nome": "MERCADO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7047,
                    "nome": "AG. URB-SP-RUA CAP.TIAGO LUZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7048,
                    "nome": "001-4555 PRES VARGAS-BASTOS-SP",
                    "municipio": "BASTOS"
                },
                {
                    "id": 7049,
                    "nome": "JD SILVARES-BIRIGUI-SP",
                    "municipio": "BIRIGUI"
                },
                {
                    "id": 7050,
                    "nome": "001-4558 URB-CAMPINAS-B. JAGUARA",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 7051,
                    "nome": "PRES VARGAS-DRACENA-SP",
                    "municipio": "DRACENA"
                },
                {
                    "id": 7052,
                    "nome": "001-4560 G.VARGAS-GUARULHOS-SP III",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 7053,
                    "nome": "001 4562 MOGI DAS CRUZES I",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 7054,
                    "nome": "NOVE DE JULHO-OURINHOS-SP",
                    "municipio": "OURINHOS"
                },
                {
                    "id": 7055,
                    "nome": "001 4564 CENTRO-REGISTRO-SP I",
                    "municipio": "REGISTRO"
                },
                {
                    "id": 7056,
                    "nome": "SEN FLAQUER-S ANDRE-SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 7057,
                    "nome": "001-4567 URB-SUZANO-GAL.F.GLICERIO",
                    "municipio": "SUZANO"
                },
                {
                    "id": 7058,
                    "nome": "001-4568 URB-PONTA GROSSA-P.XAVIER",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 7059,
                    "nome": "VILA SANTA CATARINA II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7060,
                    "nome": "001 4570 CENTRO_ARAPONGAS-PR I",
                    "municipio": "ARAPONGAS"
                },
                {
                    "id": 7061,
                    "nome": "001 4571 NITEROI-PRACA DO RINK II",
                    "municipio": "NITEROI"
                },
                {
                    "id": 7062,
                    "nome": "AG. URB-C.PROCOPIO-R.M.AMIN",
                    "municipio": "CORNELIO PROCOPIO"
                },
                {
                    "id": 7063,
                    "nome": "001-4573 URB-LONDRINA-GINKO",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 7064,
                    "nome": "L CONEGO-PARANAGUA-PR",
                    "municipio": "PARANAGUA"
                },
                {
                    "id": 7065,
                    "nome": "001 4576 PCA A PENA-SJCAMPOS-SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 7066,
                    "nome": "AG. URB-UMUARAMA-AV. PARANA",
                    "municipio": "UMUARAMA"
                },
                {
                    "id": 7067,
                    "nome": "001 4578 RIO-PRACA MAUA II",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7068,
                    "nome": "001 4579 CEAGESP-SP-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7069,
                    "nome": "001-0458 CAMPO BELO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7070,
                    "nome": "001 4582 CAMPO GRANDE I",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 7071,
                    "nome": "001 4583 BELEM-BATISTA CAMPOS I",
                    "municipio": "BELEM"
                },
                {
                    "id": 7072,
                    "nome": "001-4584 AG. URB-MANAUS-SOLIMOES",
                    "municipio": "MANAUS"
                },
                {
                    "id": 7073,
                    "nome": "001-4585 AG. URB-FORTALEZA-D.PEDRO I",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 7074,
                    "nome": "AG. URB-CAMPINA GDE-CENTRO",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 7075,
                    "nome": "001-4587 URB-PORTO VELHO-7 SETEMBRO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 7076,
                    "nome": "001-4588 JOAO DE BARROS-RECIFE-PE II",
                    "municipio": "RECIFE"
                },
                {
                    "id": 7077,
                    "nome": "001-4590 AG. URB-SALVADOR-SAO PEDRO",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 7078,
                    "nome": "001 4593 URB RIO R DEBRET",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7079,
                    "nome": "001-4597 URB-CASCAVEL-AV. BRASIL",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 7080,
                    "nome": "AG. URB-4598-RIB. PRETO-CENTRO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 7081,
                    "nome": "AG. URB-S.CAETANO SUL-M. COELHO",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 7082,
                    "nome": "LINS II",
                    "municipio": "LINS"
                },
                {
                    "id": 7083,
                    "nome": "ALTO DO IPIRANGA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7084,
                    "nome": "001-4601 URB-SP-SANTA EFIGENIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7085,
                    "nome": "PCA BONSUCESSO-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7086,
                    "nome": "AG. URB-CUIABA-JD.DAS AMERICAS",
                    "municipio": "CUIABA"
                },
                {
                    "id": 7087,
                    "nome": "001 4605 URB ATIBAIA APRIGIO TOLEDO",
                    "municipio": "ATIBAIA"
                },
                {
                    "id": 7088,
                    "nome": "001-4607 URB-SP-AV.CONS.CARRAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7089,
                    "nome": "AV BRASIL-FOZ IGUACU-PR",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 7090,
                    "nome": "JM SIQUEIRA-JACAREI-SP",
                    "municipio": "JACAREI"
                },
                {
                    "id": 7091,
                    "nome": "001 4611 DR RUDGE-SBCAMPO-SP II",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 7092,
                    "nome": "001 4612 VL PRUDENTE-SP IV",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7093,
                    "nome": "TERM PORTAO-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7094,
                    "nome": "AG. URB-BH-TIRADENTES",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 7095,
                    "nome": "001-4615 JUMANA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7096,
                    "nome": "001 4618 BRIG L.SILVA-DCAXIAS-RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 7097,
                    "nome": "AG. URB-N.IGUACU-GOV.A.PEIXOTO",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 7098,
                    "nome": "CAIUA",
                    "municipio": "CAIUA"
                },
                {
                    "id": 7099,
                    "nome": "001 4621 VIEIRA MORAIS-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7100,
                    "nome": "AG. URB-SP-R.XAVANTES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7101,
                    "nome": "001-4624 AG. URB-JUAZEIRO",
                    "municipio": "JUAZEIRO"
                },
                {
                    "id": 7102,
                    "nome": "AG. URB-SP-AV.VITAL BRASIL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7103,
                    "nome": "001-4627 NEREU RAMOS I-BLUMENAU-SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 7104,
                    "nome": "AG. URB-SP-DR.JOAO RIBEIRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7105,
                    "nome": "AG. URB-SP-JD.PREVIDENCIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7106,
                    "nome": "001-4630 PCA CORNELIA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7107,
                    "nome": "001 4631 AV EDUARDO COTCHING-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7108,
                    "nome": "AG. URB-SBCAMPO-V. PAULICEIA",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 7109,
                    "nome": "001 4633 MATEO BEI SP SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7110,
                    "nome": "001 4634 PCA BONFIM-S ANDRE-SP II",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 7111,
                    "nome": "NOVA PAULISTA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7112,
                    "nome": "URB-BELEM-SAO BRAZ",
                    "municipio": "BELEM"
                },
                {
                    "id": 7113,
                    "nome": "AG. URB-INDAIATUBA-R.XV",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 7114,
                    "nome": "AG. URB-GUARULHOS-AV.S.DUMONT",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 7115,
                    "nome": "CENTRO-ITAQUA-SP",
                    "municipio": "ITAQUAQUECETUBA"
                },
                {
                    "id": 7116,
                    "nome": "RESTINGA",
                    "municipio": "RESTINGA"
                },
                {
                    "id": 7117,
                    "nome": "001 4641 URB-SP-RUA CUBATAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7118,
                    "nome": "LGO DO JAPONES-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7119,
                    "nome": "CENTRO I-CANOAS-RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 7120,
                    "nome": "001-4644 URB-SP-AV. JAMARIS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7121,
                    "nome": "001-4645 URB - SUMARE - P�A. BANDEIRAS",
                    "municipio": "SUMARE"
                },
                {
                    "id": 7122,
                    "nome": "4646-URB-S.J.PINHAIS-M. NOGUEIRA",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 7123,
                    "nome": "AG. URB-SP-VILA MAZZEI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7124,
                    "nome": "AG. URB-RIO CLARO-AV. 1",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 7125,
                    "nome": "AG. URB-SP-AV.G.CORBISIER",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7126,
                    "nome": "RIFAINA",
                    "municipio": "RIFAINA"
                },
                {
                    "id": 7127,
                    "nome": "AG. URB-NATAL-RIO BRANCO",
                    "municipio": "NATAL"
                },
                {
                    "id": 7128,
                    "nome": "BOULEVARD-RPRETO-SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 7129,
                    "nome": "AG. URB-R.RIO DAS PEDRAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7130,
                    "nome": "001 4655 BRAS-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7131,
                    "nome": "001-4656 CONTINENTE I-FLORIPA-SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 7132,
                    "nome": "001-4657 FERNANDES LIMA-MACEIO-AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 7133,
                    "nome": "001 4658 INDEPENDENCIA-SANTOS-SP II",
                    "municipio": "SANTOS"
                },
                {
                    "id": 7134,
                    "nome": "001 4659 TAMBAU-J.PESSOA-PB II",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 7135,
                    "nome": "001-4660 URB-BELEM-PE.EUTIQUIO",
                    "municipio": "BELEM"
                },
                {
                    "id": 7136,
                    "nome": "AG. URB-RECIFE-OSIAS CORDEIRO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 7137,
                    "nome": "URBANA CEASA-CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 7138,
                    "nome": "AG. URB-SBCAMPO-DEMARCHI",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 7139,
                    "nome": "001-4665 URB-C.GRANDE-AV. AFONSO PENA",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 7140,
                    "nome": "AG. URB-RIO-EST. BANDEIRANTES",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7141,
                    "nome": "001 4669 PORTO BARRA-SALVADOR-BA I",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 7142,
                    "nome": "TREZE DE MAIO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 7143,
                    "nome": "001-4670 URB-TERESINA-NAP.DE LIMA",
                    "municipio": "TERESINA"
                },
                {
                    "id": 7144,
                    "nome": "001 4672 VL PRUDENTE-SP III",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7145,
                    "nome": "TERM HAUER-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7146,
                    "nome": "AG. URB-RIO-MQ. DE VALENCA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7147,
                    "nome": "001 4677 RIO-CHARLES DE GAULLE I",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7148,
                    "nome": "001 4678 AG  URB RIO ARPOADOR",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7149,
                    "nome": "AMERICAS BLUE CHIP-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7150,
                    "nome": "CEAGESP SOROCABA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 7151,
                    "nome": "AG. URB-NITEROI-NOVA NITEROI",
                    "municipio": "NITEROI"
                },
                {
                    "id": 7152,
                    "nome": "001-4681 URB-RIO GRANDE-MARECHAL",
                    "municipio": "RIO GRANDE"
                },
                {
                    "id": 7153,
                    "nome": "CAM ARVORES-SALVADOR-BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 7154,
                    "nome": "001 4683 URB-S.ANDRE-CEL.OLIV.LIMA",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 7155,
                    "nome": "AG. URB-RIO-ALTO LEBLON",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7156,
                    "nome": "BADY BASSIT",
                    "municipio": "BADY BASSITT"
                },
                {
                    "id": 7157,
                    "nome": "001 4691 URB-RIO-HUMAITA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7158,
                    "nome": "001-4692 URB-RIO-BIBLIOT. NACIONAL",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7159,
                    "nome": "AG. NITEROI-CPO SAO BENTO",
                    "municipio": "NITEROI"
                },
                {
                    "id": 7160,
                    "nome": "URB-RIO-COPA POSTO 3",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7161,
                    "nome": "CENTRO-M MIRIM-SP",
                    "municipio": "MOGI-MIRIM"
                },
                {
                    "id": 7162,
                    "nome": "BOITUVA",
                    "municipio": "BOITUVA"
                },
                {
                    "id": 7163,
                    "nome": "001 4701 URB RIO ALM  BARROSO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7164,
                    "nome": "AG. URB-RIO-MQ. DE S. VICENTE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7165,
                    "nome": "001 4704 SAARA I-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7166,
                    "nome": "001 4705 URB-RIO-IPAN.OBELISCO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7167,
                    "nome": "AG. URB-VOLTA REDONDA-SHOP.33",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 7168,
                    "nome": "BR AMAZONAS-PETROPOLIS-RJ",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 7169,
                    "nome": "BORBOREMA",
                    "municipio": "BORBOREMA"
                },
                {
                    "id": 7170,
                    "nome": "R FCO SA-TERESOPOLIS-RJ",
                    "municipio": "TERESOPOLIS"
                },
                {
                    "id": 7171,
                    "nome": "URB-S.GONCALO-FEL.SODRE",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 7172,
                    "nome": "001 4713 AV RIO BRANCO-RJ II",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7173,
                    "nome": "001 4715 URB-RIO-REAL GRANDEZA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7174,
                    "nome": "001-4718 URB-SANTOS-PCA.VISC.MAUA",
                    "municipio": "SANTOS"
                },
                {
                    "id": 7175,
                    "nome": "BRODOWSKI",
                    "municipio": "BRODOWSKI"
                },
                {
                    "id": 7176,
                    "nome": "001 4720 URB-S.CAETANO SUL-R.SIMON",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 7177,
                    "nome": "AG. URB-SP-AV. SUMARE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7178,
                    "nome": "001 4722 PQ DO IBIRAPUERA-SP-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7179,
                    "nome": "VL MASCOTE-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7180,
                    "nome": "001 4724 ITAQUERA-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7181,
                    "nome": "001 4725 AV INDIANOPOLIS-SP-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7182,
                    "nome": "AG. URB-SP-PONTE RASA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7183,
                    "nome": "AG. URB-SP-R.TRES RIOS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7184,
                    "nome": "001 4728 URB-SP-IMIRIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7185,
                    "nome": "AV MAL TITO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7186,
                    "nome": "CERQUEIRA CESAR",
                    "municipio": "CERQUEIRA CESAR"
                },
                {
                    "id": 7187,
                    "nome": "001 4730 SAO CARLOS-SP I",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 7188,
                    "nome": "001-4731 URB-SP-AV.FRCO.MORATO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7189,
                    "nome": "AG. URB-SAO LUIS-RUA DA PAZ",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 7190,
                    "nome": "AG. URB-SETE LAGOAS-G. VARGAS",
                    "municipio": "SETE LAGOAS"
                },
                {
                    "id": 7191,
                    "nome": "URB-DF-TAGUATINGA SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 7192,
                    "nome": "001 4739 URB-SOROCABA-XV NOVEMBRO",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 7193,
                    "nome": "CRUZALIA",
                    "municipio": "CRUZALIA"
                },
                {
                    "id": 7194,
                    "nome": "AG. URB-NOVA LIMA-AL. SERRA",
                    "municipio": "NOVA LIMA"
                },
                {
                    "id": 7195,
                    "nome": "AG. URB-CURITIBA-AV.CAND. ABREU",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7196,
                    "nome": "PCA NICOLA-TSERRA-SP.",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 7197,
                    "nome": "001 4743 TAUBATE - SP III",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 7198,
                    "nome": "001-4744 URB-TERESINA-ALV. MENDES",
                    "municipio": "TERESINA"
                },
                {
                    "id": 7199,
                    "nome": "001 4745 AV STOS DUMONT-UBERABA-MG IV",
                    "municipio": "UBERABA"
                },
                {
                    "id": 7200,
                    "nome": "IRINEU MARINHO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7201,
                    "nome": "AG. URB-UBERLANDIA-FORUM",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 7202,
                    "nome": "001-4748 INTERLAGOS II-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7203,
                    "nome": "MARIA CANDIDA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7204,
                    "nome": "ESTRELA D'OESTE",
                    "municipio": "ESTRELA D'OESTE"
                },
                {
                    "id": 7205,
                    "nome": "AG. URB-SP-AV.NOVA CANTAREIRA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7206,
                    "nome": "001-4752 AG. URB-SP-R.EMILIA MARENGO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7207,
                    "nome": "AG. URB-SP-DR.HOMEM DE MELO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7208,
                    "nome": "AG. URB-SP-AV. JURUCE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7209,
                    "nome": "001 4755 AV REBOUCAS-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7210,
                    "nome": "001-4758 URB-SP-LINS DE VASCONCELOS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7211,
                    "nome": "001-4759 URB-SP-PCA.CHARLES MILLER",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7212,
                    "nome": "GUARA",
                    "municipio": "GUARA"
                },
                {
                    "id": 7213,
                    "nome": "JD PAULISTA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7214,
                    "nome": "R CONSTANTINO SOUZA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7215,
                    "nome": "AG. URB-SP-PIRES DA MOTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7216,
                    "nome": "AG. URB-SP-CASA VERDE BAIXA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7217,
                    "nome": "GUARACAI",
                    "municipio": "GUARACAI"
                },
                {
                    "id": 7218,
                    "nome": "CENTRO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7219,
                    "nome": "001-4773 URB-SP-MARIA MARCOLINA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7220,
                    "nome": "JUVENTUS-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7221,
                    "nome": "001-4775 CAPELA DO SOCORRO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7222,
                    "nome": "001 4776 CONSOLACAO I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7223,
                    "nome": "001-4778 URB-SP-CONS.ROD.ALVES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7224,
                    "nome": "001 4779 FARIA LIMA I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7225,
                    "nome": "GUARACI",
                    "municipio": "GUARACI"
                },
                {
                    "id": 7226,
                    "nome": "001 4780 R AUGUSTA-SP-SP III",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7227,
                    "nome": "001 4781 PERDIZES SUMARE-SP-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7228,
                    "nome": "001 4782 LARGO DA BATATA - CAP - SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7229,
                    "nome": "AG. URB-SP-ALTO DE PINHEIROS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7230,
                    "nome": "GUILHERME COTCHING-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7231,
                    "nome": "001-4787 ALFREDO GUEDES-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7232,
                    "nome": "AG. URB-SP-BERRINI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7233,
                    "nome": "IBIUNA",
                    "municipio": "IBIUNA"
                },
                {
                    "id": 7234,
                    "nome": "AG. URB-SP-JD. NOVO MUNDO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7235,
                    "nome": "001-4791 JD DA SAUDE-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7236,
                    "nome": "001 4792 PE ADELINO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7237,
                    "nome": "SP-BELA PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7238,
                    "nome": "001-4794 AV CENTENARIO-CRICIUMA-SC",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 7239,
                    "nome": "SAO SIMAO",
                    "municipio": "SAO SIMAO"
                },
                {
                    "id": 7240,
                    "nome": "IGUAPE",
                    "municipio": "IGUAPE"
                },
                {
                    "id": 7241,
                    "nome": "IRAPURU",
                    "municipio": "IRAPURU"
                },
                {
                    "id": 7242,
                    "nome": "001-4827 PLAT.CORPORATE SALVADOR",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 7243,
                    "nome": "ITAI",
                    "municipio": "ITAI"
                },
                {
                    "id": 7244,
                    "nome": "001-4841 PLAT.CORPORATE PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7245,
                    "nome": "MACATUBA",
                    "municipio": "MACATUBA"
                },
                {
                    "id": 7246,
                    "nome": "MAGDA",
                    "municipio": "MAGDA"
                },
                {
                    "id": 7247,
                    "nome": "MAIRINQUE",
                    "municipio": "MAIRINQUE"
                },
                {
                    "id": 7248,
                    "nome": "MIRASSOLANDIA",
                    "municipio": "MIRASSOLANDIA"
                },
                {
                    "id": 7249,
                    "nome": "MONGAGUA",
                    "municipio": "MONGAGUA"
                },
                {
                    "id": 7250,
                    "nome": "S JOAO DA B VISTA-INT-SP",
                    "municipio": "SAO JOAO DA BOA VISTA"
                },
                {
                    "id": 7251,
                    "nome": "PACAEMBU",
                    "municipio": "PACAEMBU"
                },
                {
                    "id": 7252,
                    "nome": "PILAR DO SUL",
                    "municipio": "PILAR DO SUL"
                },
                {
                    "id": 7253,
                    "nome": "PIRAPOZINHO",
                    "municipio": "PIRAPOZINHO"
                },
                {
                    "id": 7254,
                    "nome": "RAFARD",
                    "municipio": "RAFARD"
                },
                {
                    "id": 7255,
                    "nome": "SAO BENTO DO SAPUCAI",
                    "municipio": "SAO BENTO DO SAPUCAI"
                },
                {
                    "id": 7256,
                    "nome": "SANTA ROSA DE VITERBO",
                    "municipio": "SANTA ROSA DE VITERBO"
                },
                {
                    "id": 7257,
                    "nome": "001-0497 CENTRO-SAO PEDRO I-SP�",
                    "municipio": "SAO PEDRO"
                },
                {
                    "id": 7258,
                    "nome": "SERRANA",
                    "municipio": "SERRANA"
                },
                {
                    "id": 7259,
                    "nome": "SILVEIRAS",
                    "municipio": "SILVEIRAS"
                },
                {
                    "id": 7260,
                    "nome": "BRAS-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7261,
                    "nome": "CENTRO-ITUVERAVA-SP",
                    "municipio": "ITUVERAVA"
                },
                {
                    "id": 7262,
                    "nome": "TABATINGA",
                    "municipio": "TABATINGA"
                },
                {
                    "id": 7263,
                    "nome": "UBATUBA",
                    "municipio": "UBATUBA"
                },
                {
                    "id": 7264,
                    "nome": "URANIA",
                    "municipio": "URANIA"
                },
                {
                    "id": 7265,
                    "nome": "VIRADOURO",
                    "municipio": "VIRADOURO"
                },
                {
                    "id": 7266,
                    "nome": "001-0505 DUQUE",
                    "municipio": "BAURU"
                },
                {
                    "id": 7267,
                    "nome": "ROSANA/PORTO PRIMAVERA",
                    "municipio": "ROSANA"
                },
                {
                    "id": 7268,
                    "nome": "001 0509 PCA BONFIM-S ANDRE-SP I",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 7269,
                    "nome": "ITAPEVA",
                    "municipio": "ITAPEVA"
                },
                {
                    "id": 7270,
                    "nome": "GUARAREMA",
                    "municipio": "GUARAREMA"
                },
                {
                    "id": 7271,
                    "nome": "SALESOPOLIS",
                    "municipio": "SALESOPOLIS"
                },
                {
                    "id": 7272,
                    "nome": "APARECIDA D'OESTE",
                    "municipio": "APARECIDA D'OESTE"
                },
                {
                    "id": 7273,
                    "nome": "BANANAL",
                    "municipio": "BANANAL"
                },
                {
                    "id": 7274,
                    "nome": "BARRINHA",
                    "municipio": "BARRINHA"
                },
                {
                    "id": 7275,
                    "nome": "BOFETE",
                    "municipio": "BOFETE"
                },
                {
                    "id": 7276,
                    "nome": "BURITIZAL",
                    "municipio": "BURITIZAL"
                },
                {
                    "id": 7277,
                    "nome": "CENTRO- ES DO PINHAL-SP",
                    "municipio": "ESPIRITO SANTO DO PINHAL"
                },
                {
                    "id": 7278,
                    "nome": "CATIGUA",
                    "municipio": "CATIGUA"
                },
                {
                    "id": 7279,
                    "nome": "COSMORAMA",
                    "municipio": "COSMORAMA"
                },
                {
                    "id": 7280,
                    "nome": "CRISTAIS PAULISTA",
                    "municipio": "CRISTAIS PAULISTA"
                },
                {
                    "id": 7281,
                    "nome": "DOURADO",
                    "municipio": "DOURADO"
                },
                {
                    "id": 7282,
                    "nome": "ELDORADO",
                    "municipio": "ELDORADO"
                },
                {
                    "id": 7283,
                    "nome": "FLORINEA",
                    "municipio": "FLORINEA"
                },
                {
                    "id": 7284,
                    "nome": "GUAPIACU",
                    "municipio": "GUAPIACU"
                },
                {
                    "id": 7285,
                    "nome": "IBATE",
                    "municipio": "IBATE"
                },
                {
                    "id": 7286,
                    "nome": "ICEM",
                    "municipio": "ICEM"
                },
                {
                    "id": 7287,
                    "nome": "001 0053 MONS.FILIPPO-GUARA-SP I",
                    "municipio": "GUARATINGUETA"
                },
                {
                    "id": 7288,
                    "nome": "ILHABELA",
                    "municipio": "ILHABELA"
                },
                {
                    "id": 7289,
                    "nome": "ITIRAPINA",
                    "municipio": "ITIRAPINA"
                },
                {
                    "id": 7290,
                    "nome": "ITOBI",
                    "municipio": "ITOBI"
                },
                {
                    "id": 7291,
                    "nome": "ITUPEVA",
                    "municipio": "ITUPEVA"
                },
                {
                    "id": 7292,
                    "nome": "JUNQUEIROPOLIS",
                    "municipio": "JUNQUEIROPOLIS"
                },
                {
                    "id": 7293,
                    "nome": "JUQUIA",
                    "municipio": "JUQUIA"
                },
                {
                    "id": 7294,
                    "nome": "CENTRO-LUIS ANTONIO-SP",
                    "municipio": "LUIS ANTONIO"
                },
                {
                    "id": 7295,
                    "nome": "PRESIDENTE VENCESLAU",
                    "municipio": "PRESIDENTE VENCESLAU"
                },
                {
                    "id": 7296,
                    "nome": "MARACAI",
                    "municipio": "MARACAI"
                },
                {
                    "id": 7297,
                    "nome": "MONTE CASTELO",
                    "municipio": "MONTE CASTELO"
                },
                {
                    "id": 7298,
                    "nome": "MURUTINGA DO SUL",
                    "municipio": "MURUTINGA DO SUL"
                },
                {
                    "id": 7299,
                    "nome": "NOVA ODESSA",
                    "municipio": "NOVA ODESSA"
                },
                {
                    "id": 7300,
                    "nome": "PARANAPANEMA",
                    "municipio": "PARANAPANEMA"
                },
                {
                    "id": 7301,
                    "nome": "PARAPUA",
                    "municipio": "PARAPUA"
                },
                {
                    "id": 7302,
                    "nome": "PERUIBE",
                    "municipio": "PERUIBE"
                },
                {
                    "id": 7303,
                    "nome": "001 0055 LENCOIS PAULISTA-SP",
                    "municipio": "LENCOIS PAULISTA"
                },
                {
                    "id": 7304,
                    "nome": "PIRANGI",
                    "municipio": "PIRANGI"
                },
                {
                    "id": 7305,
                    "nome": "CENTRO-PRAIA GRANDE-SP",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 7306,
                    "nome": "QUELUZ",
                    "municipio": "QUELUZ"
                },
                {
                    "id": 7307,
                    "nome": "SALES",
                    "municipio": "SALES"
                },
                {
                    "id": 7308,
                    "nome": "SANTA ALBERTINA",
                    "municipio": "SANTA ALBERTINA"
                },
                {
                    "id": 7309,
                    "nome": "S�O LUIZ DO PARAITINGA",
                    "municipio": "SAO LUIS DO PARAITINGA"
                },
                {
                    "id": 7310,
                    "nome": "CHAVANTES",
                    "municipio": "CHAVANTES"
                },
                {
                    "id": 7311,
                    "nome": "001 0056 TAUBATE - SP I",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 7312,
                    "nome": "FREGUESIA DO O-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7313,
                    "nome": "AV SETE-GUARULHOS-SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 7314,
                    "nome": "AV NSRA SABARA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7315,
                    "nome": "NOVA CACHOEIRINHA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7316,
                    "nome": "001 0564 PCA PADRE ALEIXO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7317,
                    "nome": "AMOREIRAS-CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 7318,
                    "nome": "001 0566 GENERAL CARNEIRO",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 7319,
                    "nome": "001-0568 BOQUEIRAO",
                    "municipio": "SANTOS"
                },
                {
                    "id": 7320,
                    "nome": "001 0569 VILA MATHIAS I",
                    "municipio": "SANTOS"
                },
                {
                    "id": 7321,
                    "nome": "001 0057 RIO-PRACA MAUA I",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7322,
                    "nome": "PONTA DA PRAIA-SANTOS-SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 7323,
                    "nome": "VILA SANTA LUZIA",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 7324,
                    "nome": "VILA MATHIAS",
                    "municipio": "SANTOS"
                },
                {
                    "id": 7325,
                    "nome": "SERRA DE BRAGAN�A-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7326,
                    "nome": "CAMBUI-CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 7327,
                    "nome": "001 0576 BR RIO BRANCO JUNDIAI SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 7328,
                    "nome": "001 0577 SAO MATEUS SP SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7329,
                    "nome": "VILA DOS REMEDIOS",
                    "municipio": "OSASCO"
                },
                {
                    "id": 7330,
                    "nome": "CENTRO-PENAPOLIS-SP",
                    "municipio": "PENAPOLIS"
                },
                {
                    "id": 7331,
                    "nome": "RIO CLARO II",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 7332,
                    "nome": "CENTRO-AVARE-SP",
                    "municipio": "AVARE"
                },
                {
                    "id": 7333,
                    "nome": "S�O BERNARDO DO CAMPO II",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 7334,
                    "nome": "CENTRO-BIRIGUI-SP",
                    "municipio": "BIRIGUI"
                },
                {
                    "id": 7335,
                    "nome": "001 0062 SOROCABA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 7336,
                    "nome": "AEROP.INTERNAC.DE S.PAULO",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 7337,
                    "nome": "PROMISSAO",
                    "municipio": "PROMISSAO"
                },
                {
                    "id": 7338,
                    "nome": "CENTRO-CASA BRANCA-SP",
                    "municipio": "CASA BRANCA"
                },
                {
                    "id": 7339,
                    "nome": "APARECIDA-INT-SP",
                    "municipio": "APARECIDA"
                },
                {
                    "id": 7340,
                    "nome": "AM�RICO BRASILIENSE II",
                    "municipio": "AMERICO BRASILIENSE"
                },
                {
                    "id": 7341,
                    "nome": "CAJAMAR",
                    "municipio": "CAJAMAR"
                },
                {
                    "id": 7342,
                    "nome": "001 0637 PERDIZES SUMARE-SP-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7343,
                    "nome": "SANTA CRUZ DO RIO PARDO",
                    "municipio": "SANTA CRUZ DO RIO PARDO"
                },
                {
                    "id": 7344,
                    "nome": "IGARACU DO TIETE",
                    "municipio": "IGARACU DO TIETE"
                },
                {
                    "id": 7345,
                    "nome": "JOAO DIAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7346,
                    "nome": "MORUMBI II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7347,
                    "nome": "ALPHAVILLE COM-BARUERI-SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 7348,
                    "nome": "PARQUE SAO LUCAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7349,
                    "nome": "BARIRI",
                    "municipio": "BARIRI"
                },
                {
                    "id": 7350,
                    "nome": "TABAPUA",
                    "municipio": "TABAPUA"
                },
                {
                    "id": 7351,
                    "nome": "CONCEICAO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7352,
                    "nome": "SANTOPOLIS DO AGUAPEI",
                    "municipio": "SANTOPOLIS DO AGUAPEI"
                },
                {
                    "id": 7353,
                    "nome": "IT� II",
                    "municipio": "ITU"
                },
                {
                    "id": 7354,
                    "nome": "VALENTIM GENTIL",
                    "municipio": "VALENTIM GENTIL"
                },
                {
                    "id": 7355,
                    "nome": "HORTO FLORESTAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7356,
                    "nome": "ARTUR ALVIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7357,
                    "nome": "PIRAPORINHA",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 7358,
                    "nome": "ADOLFO",
                    "municipio": "ADOLFO"
                },
                {
                    "id": 7359,
                    "nome": "JACANA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7360,
                    "nome": "PIRITUBA II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7361,
                    "nome": "001 0658 JARDIM BONFIGLIOLI-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7362,
                    "nome": "CENTRO-BEBEDOURO-SP",
                    "municipio": "BEBEDOURO"
                },
                {
                    "id": 7363,
                    "nome": "FERRAZ DE VASCONCELOS",
                    "municipio": "FERRAZ DE VASCONCELOS"
                },
                {
                    "id": 7364,
                    "nome": "SOCORRO",
                    "municipio": "SOCORRO"
                },
                {
                    "id": 7365,
                    "nome": "CIDADE DUTRA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7366,
                    "nome": "VILA ROMANA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7367,
                    "nome": "VILA MERCES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7368,
                    "nome": "ALVARES MACHADO",
                    "municipio": "ALVARES MACHADO"
                },
                {
                    "id": 7369,
                    "nome": "001 0067 UBERLANDIA-PLATO III",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 7370,
                    "nome": "001 0670 ITAQUERA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7371,
                    "nome": "001-0671 BELENZINHO I-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7372,
                    "nome": "AGUAS DE LINDOIA",
                    "municipio": "AGUAS DE LINDOIA"
                },
                {
                    "id": 7373,
                    "nome": "FOZ DO IGUACU",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 7374,
                    "nome": "001 0674 JOSE ALENCAR-PORTO VELHO-RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 7375,
                    "nome": "PANORAMA",
                    "municipio": "PANORAMA"
                },
                {
                    "id": 7376,
                    "nome": "JARDIM ARICANDUVA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7377,
                    "nome": "ACLIMA��O II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7378,
                    "nome": "GALIA",
                    "municipio": "GALIA"
                },
                {
                    "id": 7379,
                    "nome": "ALTOS DA CIDADE",
                    "municipio": "BAURU"
                },
                {
                    "id": 7380,
                    "nome": "NOVO HAMBURGO II",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 7381,
                    "nome": "SANTANA DA PONTE PENSA",
                    "municipio": "SANTANA DA PONTE PENSA"
                },
                {
                    "id": 7382,
                    "nome": "CAIABU",
                    "municipio": "CAIABU"
                },
                {
                    "id": 7383,
                    "nome": "ARANDU",
                    "municipio": "ARANDU"
                },
                {
                    "id": 7384,
                    "nome": "C JARDIM-CPOS JORDAO-SP",
                    "municipio": "CAMPOS DO JORDAO"
                },
                {
                    "id": 7385,
                    "nome": "001 0691 VILA ESPERANCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7386,
                    "nome": "CRICI�MA II",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 7387,
                    "nome": "001 0694 INDEPEND-SLEOPOLDO-RS II",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 7388,
                    "nome": "SEBASTIANOPOLIS DO SUL",
                    "municipio": "SEBASTIANOPOLIS DO SUL"
                },
                {
                    "id": 7389,
                    "nome": "ITAIM PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7390,
                    "nome": "MACAPA-CAP-AP",
                    "municipio": "MACAPA"
                },
                {
                    "id": 7391,
                    "nome": "MIGUELOPOLIS",
                    "municipio": "MIGUELOPOLIS"
                },
                {
                    "id": 7392,
                    "nome": "LUCELIA",
                    "municipio": "LUCELIA"
                },
                {
                    "id": 7393,
                    "nome": "PCA PORTUGAL-FORTALEZA-CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 7394,
                    "nome": "VARZEA PAULISTA",
                    "municipio": "VARZEA PAULISTA"
                },
                {
                    "id": 7395,
                    "nome": "PANAMERICANA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7396,
                    "nome": "001-0706 GUAI�ARA-INT-SP",
                    "municipio": "GUAICARA"
                },
                {
                    "id": 7397,
                    "nome": "PONTAL",
                    "municipio": "PONTAL"
                },
                {
                    "id": 7398,
                    "nome": "001 0712 BERTIOGA-SP",
                    "municipio": "BERTIOGA"
                },
                {
                    "id": 7399,
                    "nome": "MACENO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 7400,
                    "nome": "CAJATI",
                    "municipio": "CAJATI"
                },
                {
                    "id": 7401,
                    "nome": "CASTELO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 7402,
                    "nome": "TAQUARAL-CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 7403,
                    "nome": "ARARAS II",
                    "municipio": "ARARAS"
                },
                {
                    "id": 7404,
                    "nome": "VILA S�NIA II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7405,
                    "nome": "CIDADE NOVA",
                    "municipio": "FRANCA"
                },
                {
                    "id": 7406,
                    "nome": "JOAO MENDES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7407,
                    "nome": "BOSQUE MAIA",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 7408,
                    "nome": "001-0729 LGO DA BATATA-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7409,
                    "nome": "ADAMANTINA",
                    "municipio": "ADAMANTINA"
                },
                {
                    "id": 7410,
                    "nome": "001 0730 PENHA I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7411,
                    "nome": "001 0731 LARGO 13 MAIO-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7412,
                    "nome": "001 0732 LAPA-SP-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7413,
                    "nome": "CANTAREIRA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7414,
                    "nome": "001 0734 STA TERESINHA-TAUBATE-SP",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 7415,
                    "nome": "GENERAL BITTENCOURT",
                    "municipio": "OSASCO"
                },
                {
                    "id": 7416,
                    "nome": "CENTRO-BRAGANCA PTA-SP",
                    "municipio": "BRAGANCA PAULISTA"
                },
                {
                    "id": 7417,
                    "nome": "RANCHARIA",
                    "municipio": "RANCHARIA"
                },
                {
                    "id": 7418,
                    "nome": "001-0761 RUA DO ALGODAO",
                    "municipio": "SANTA BARBARA D'OESTE"
                },
                {
                    "id": 7419,
                    "nome": "001 0766 BOM CLIMA",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 7420,
                    "nome": "BAIRRO IPIRANGA",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 7421,
                    "nome": "CAMPOLIM-SOROCABA-SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 7422,
                    "nome": "CENTRO-DRACENA-SP",
                    "municipio": "DRACENA"
                },
                {
                    "id": 7423,
                    "nome": "AVENIDA JO�O JORGE",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 7424,
                    "nome": "NOVA REDENTORA",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 7425,
                    "nome": "CORPORATE V",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 7426,
                    "nome": "CORPORATE VII",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7427,
                    "nome": "001-0775 R D.CAXIAS-TERESOPOLIS-RJ",
                    "municipio": "TERESOPOLIS"
                },
                {
                    "id": 7428,
                    "nome": "001-0776 HORTOLANDIA-INT-SP",
                    "municipio": "HORTOLANDIA"
                },
                {
                    "id": 7429,
                    "nome": "001-0778 VL ZELINA-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7430,
                    "nome": "001 0779 JOAO MENDES-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7431,
                    "nome": "POMPEIA",
                    "municipio": "POMPEIA"
                },
                {
                    "id": 7432,
                    "nome": "001-0780 OSCAR FREIRE-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7433,
                    "nome": "J.INDEPENDENCIA-RPRETO-SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 7434,
                    "nome": "001-0783 VL JABOTICABEIRA-INT-SP",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 7435,
                    "nome": "001-0785 BERRINI-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7436,
                    "nome": "001 0786 PARANAGUA-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7437,
                    "nome": "AV AMERICAS 4043-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7438,
                    "nome": "001 0788 GLORIA-VILA VELHA-ES",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 7439,
                    "nome": "BR CENTRO-F SANTANA-BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 7440,
                    "nome": "001 0079 CENTENARIA - RS VI",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7441,
                    "nome": "001 0790 NOVA TUTOIA II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7442,
                    "nome": "001-0791 JD FRANCA-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7443,
                    "nome": "001-0793 VIA LIGHT-N IGUACU-RJ",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 7444,
                    "nome": "001-0795 FUNDACAO-SCAETANO SUL-SP",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 7445,
                    "nome": "001-0796 CEL PEDRO DIAS-INT-SP",
                    "municipio": "ITAPETININGA"
                },
                {
                    "id": 7446,
                    "nome": "001-0797 TRADE CENTER-SALVADOR-BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 7447,
                    "nome": "001-0798 JOSE HIGINO-CAP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7448,
                    "nome": "001-0799 ANTERO DE QUENTAL-RIO-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7449,
                    "nome": "ARA�ATUBA II",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 7450,
                    "nome": "NATAL",
                    "municipio": "NATAL"
                },
                {
                    "id": 7451,
                    "nome": "001-0800 MACA�-INT-RJ",
                    "municipio": "MACAE"
                },
                {
                    "id": 7452,
                    "nome": "001-0801 TOP SHOPPING-INT-RJ",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 7453,
                    "nome": "001 0802 URB-N.IGUACU-GOV.A.PEIXOTO I",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 7454,
                    "nome": "001-0803 CONTINENTE-FLORIPA-SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 7455,
                    "nome": "001-0804 VIA NORTE-SJCAMPOS-SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 7456,
                    "nome": "001 0805 S.CRISTOVAO-CABO FRIO-RJ",
                    "municipio": "CABO FRIO"
                },
                {
                    "id": 7457,
                    "nome": "001-0806 RECREIO-CAP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7458,
                    "nome": "MERCES-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7459,
                    "nome": "ERASTO-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7460,
                    "nome": "001-0809 CAPAO RASO-CAP-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7461,
                    "nome": "HAUER-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7462,
                    "nome": "001-0811 JD DAS AMERICAS-CAP-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7463,
                    "nome": "001-0812 STA FELICIDADE-CAP-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7464,
                    "nome": "001-0813 SITIO CERCADO-CAP-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7465,
                    "nome": "001-0814 CIC-CAP-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7466,
                    "nome": "001 0815 ST SUDOESTE-BRASILIA-DF III",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 7467,
                    "nome": "PE ANCHIETA-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7468,
                    "nome": "001-0818 DR THIBAU-N.IGUACU-RJ",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 7469,
                    "nome": "001-0082 BRASILIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 7470,
                    "nome": "001 0820 AV QUARENTA E TRES INT SP",
                    "municipio": "BARRETOS"
                },
                {
                    "id": 7471,
                    "nome": "001-0821 CAIEIRAS-INT-SP",
                    "municipio": "CAIEIRAS"
                },
                {
                    "id": 7472,
                    "nome": "PQ TAMANDARE-CAMPOS-RJ",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 7473,
                    "nome": "CENTRO-ARAUCARIA-PR",
                    "municipio": "ARAUCARIA"
                },
                {
                    "id": 7474,
                    "nome": "001-0824 USP RIBEIRAO PRETO-INT-SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 7475,
                    "nome": "001-0825 BOA VISTA-SJRPRETO-INT-SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 7476,
                    "nome": "001-0826 AV RIO BRANCO-MARL-INT-SP",
                    "municipio": "MARILIA"
                },
                {
                    "id": 7477,
                    "nome": "001-0827 TEN.SILVEIRA-FLORIPA-SC I",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 7478,
                    "nome": "001-0828 AGUA VERDE-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7479,
                    "nome": "001-0829 BARRA MANSA-INT-RJ",
                    "municipio": "BARRA MANSA"
                },
                {
                    "id": 7480,
                    "nome": "REPUBLICA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7481,
                    "nome": "001 0830 PORTO BARRA-SALVADOR-BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 7482,
                    "nome": "0001-0832 JUQUITIBA-INT-SP",
                    "municipio": "JUQUITIBA"
                },
                {
                    "id": 7483,
                    "nome": "001-0833 R DA QUITANDA-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7484,
                    "nome": "001-0834 NICOLAU GAGLIARDI-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7485,
                    "nome": "001 0835 JD PRES DUTRA-GUARULHOS-SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 7486,
                    "nome": "001-0838 ITURAMA-INT-MG",
                    "municipio": "ITURAMA"
                },
                {
                    "id": 7487,
                    "nome": "001-0839 AVANHANDAVA-INT-SP",
                    "municipio": "AVANHANDAVA"
                },
                {
                    "id": 7488,
                    "nome": "MAL DEODORO-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7489,
                    "nome": "001-0840 C BOTELHO-PIRACICABA-SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 7490,
                    "nome": "001 0841 WANEL VILLE-SOROCABA-SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 7491,
                    "nome": "001 0842 TIANGUA-CE",
                    "municipio": "TIANGUA"
                },
                {
                    "id": 7492,
                    "nome": "001 0843 CENTRO_ARAPONGAS-PR II",
                    "municipio": "ARAPONGAS"
                },
                {
                    "id": 7493,
                    "nome": "001-0844 ALVARO SIMOES-INT-SP",
                    "municipio": "MARILIA"
                },
                {
                    "id": 7494,
                    "nome": "001-0845 LAVRADORES-INT-SP",
                    "municipio": "BOTUCATU"
                },
                {
                    "id": 7495,
                    "nome": "001-0846 COM MARTINS-INT-SP",
                    "municipio": "CABREUVA"
                },
                {
                    "id": 7496,
                    "nome": "001 0847 BOICUCANGA-INT-SP",
                    "municipio": "SAO SEBASTIAO"
                },
                {
                    "id": 7497,
                    "nome": "001 0848 ARMANDO SALES-CAMPINAS-SP I",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 7498,
                    "nome": "001-0849 AV EDUARDO PRADO-CAP-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7499,
                    "nome": "CENTRO-JALES-SP",
                    "municipio": "JALES"
                },
                {
                    "id": 7500,
                    "nome": "001-0087 MOGI DAS CRUZES II",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 7501,
                    "nome": "UCHOA",
                    "municipio": "UCHOA"
                },
                {
                    "id": 7502,
                    "nome": "FRANCA II",
                    "municipio": "FRANCA"
                },
                {
                    "id": 7503,
                    "nome": "AMERICANA II",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 7504,
                    "nome": "001-0900 VERBO DIVINO-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7505,
                    "nome": "001-902 CENTRO-PALMARES PTA-SP",
                    "municipio": "PALMARES PAULISTA"
                },
                {
                    "id": 7506,
                    "nome": "001-0903 CAB-CAP-BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 7507,
                    "nome": "001 0908 JOAO MENDES I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7508,
                    "nome": "001-0909 LARANJEIRAS-CAP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7509,
                    "nome": "CENTRO-VOTUPORANGA-SP",
                    "municipio": "VOTUPORANGA"
                },
                {
                    "id": 7510,
                    "nome": "001-0910 SETOR UNIVERSIT�RIO-CAP-GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 7511,
                    "nome": "001-0912 ROSOLEM-INT-SP",
                    "municipio": "HORTOLANDIA"
                },
                {
                    "id": 7512,
                    "nome": "001-0913 ITAPERUNA-INT-RJ",
                    "municipio": "ITAPERUNA"
                },
                {
                    "id": 7513,
                    "nome": "001-0914 ENSEADA-INT-SP",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 7514,
                    "nome": "001-0915 PICANCO-INT-SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 7515,
                    "nome": "001-0916 GOPOUVA-INT-SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 7516,
                    "nome": "001-0917 ANTONIO C COSTA-INT-SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 7517,
                    "nome": "AV DOS TAJURAS-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7518,
                    "nome": "001-0919 AV PRES ALTINO-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7519,
                    "nome": "CENTRO-ASSIS-SP",
                    "municipio": "ASSIS"
                },
                {
                    "id": 7520,
                    "nome": "001 0921 ALTO DE SANTANA-CAP-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7521,
                    "nome": "001-0922 JD DA GLORIA-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7522,
                    "nome": "001-0923 ANITA GARIBALDI-CAP-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7523,
                    "nome": "001-0924 FELIPE CARDOSO-CAP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7524,
                    "nome": "001-0928 AV 136-CAP-GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 7525,
                    "nome": "001-0929 JD GOIAS-CAP-GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 7526,
                    "nome": "001 0093 S�O JOS� DOS CAMPOS",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 7527,
                    "nome": "001-0930 AV CIVIT-INT-ES",
                    "municipio": "SERRA"
                },
                {
                    "id": 7528,
                    "nome": "001-0931 W3 NORTE Q513-CAP-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 7529,
                    "nome": "001-0933 VILAS DO ATLANTICO-INT-BA",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 7530,
                    "nome": "001-0934 SHOPPING ID-CAP-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 7531,
                    "nome": "001-0935 ALTO DE SANTANA-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7532,
                    "nome": "001-0936 LUXEMBURGO-CAP-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 7533,
                    "nome": "001-0937 JOHN BOYD DUNLOP-INT-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 7534,
                    "nome": "001-0938  ITOUPAVA-BLUMENAU-SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 7535,
                    "nome": "FERNANDOPOLIS-INT-SP",
                    "municipio": "FERNANDOPOLIS"
                },
                {
                    "id": 7536,
                    "nome": "001-0941 REAL PARQUE-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7537,
                    "nome": "001-0942 AEROPORTO GALEAO-CAP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7538,
                    "nome": "001 0943  PLAZA MACAE-INT-RJ",
                    "municipio": "MACAE"
                },
                {
                    "id": 7539,
                    "nome": "001-0944 HORTO-CAP-MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 7540,
                    "nome": "001 0945 FLORIANO-PI",
                    "municipio": "FLORIANO"
                },
                {
                    "id": 7541,
                    "nome": "001-0946 ANGOLA-INT-MG",
                    "municipio": "BETIM"
                },
                {
                    "id": 7542,
                    "nome": "001 0947 UBERLANDIA-CENTRO I",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 7543,
                    "nome": "001-0948 B LUIZOTE-INT-MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 7544,
                    "nome": "001-0949 PQ SAO PAULO-INT-PR",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 7545,
                    "nome": "CENTRO-ITAPOLIS-SP",
                    "municipio": "ITAPOLIS"
                },
                {
                    "id": 7546,
                    "nome": "001-0950 JD SOCIAL-CAP-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7547,
                    "nome": "001-0951 SHANGRI-LA-INT-PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 7548,
                    "nome": "001-0952 IRIRIU-JOINVILLE-SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 7549,
                    "nome": "001-0953 N SRA MEDIANEIRA-INT-RS",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 7550,
                    "nome": "001-0954 BARREIRAS-INT-BA",
                    "municipio": "BARREIRAS"
                },
                {
                    "id": 7551,
                    "nome": "001-0955 SORRISO-INT-MT",
                    "municipio": "SORRISO"
                },
                {
                    "id": 7552,
                    "nome": "001-0958 GABRIEL MONTEIRO-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7553,
                    "nome": "001-0959 VL INDUSTRIAL-INT-SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 7554,
                    "nome": "001 0096 AV STOS DUMONT-UBERABA-MG I",
                    "municipio": "UBERABA"
                },
                {
                    "id": 7555,
                    "nome": "001 0960 - CENTRO-CAMPO LIMPO PTA-SP",
                    "municipio": "CAMPO LIMPO PAULISTA"
                },
                {
                    "id": 7556,
                    "nome": "001-0961 JD LONDRES-INT-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 7557,
                    "nome": "001-0962 NOVA APARECIDA-INT-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 7558,
                    "nome": "001-0963 ALEM PONTE-INT-SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 7559,
                    "nome": "001-0964 PCA SECA-CAP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7560,
                    "nome": "001-0966 B JUNDIAI-INT-GO",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 7561,
                    "nome": "001-0967 FLAMBOYANT-CAP-GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 7562,
                    "nome": "001-0968 COLOMBO-INT-PR",
                    "municipio": "COLOMBO"
                },
                {
                    "id": 7563,
                    "nome": "001-0969 ITAPUA-CAP-BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 7564,
                    "nome": "001 0097 BELO HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 7565,
                    "nome": "001-0970 SOBRADINHO-SAT-DF",
                    "municipio": "BRASILIA (SOBRADINHO)"
                },
                {
                    "id": 7566,
                    "nome": "001-0971 AV T 7-GOIANIA-GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 7567,
                    "nome": "001-0972 FAMA-CAP-GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 7568,
                    "nome": "001 0973 PONTAL SUL AP.GOIANIA GO",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 7569,
                    "nome": "001-0974 AV CANAL-INT-PB",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 7570,
                    "nome": "001-0975 SAO BRAZ-CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7571,
                    "nome": "001-0976 ESTA��O CPO GRANDE-CAP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7572,
                    "nome": "001-0977 RAMOS-CAP-RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 7573,
                    "nome": "001-0978 NILO PE�ANHA-CAP-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 7574,
                    "nome": "001-0979 VL XAVIER-INT-SP",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 7575,
                    "nome": "001-0980 OURO VERDE-INT-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 7576,
                    "nome": "001-0981 BRAZ CUBAS-INT-SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 7577,
                    "nome": "001-0982 R ZILDA-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7578,
                    "nome": "001-0983 VL MARIA ALTA-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7579,
                    "nome": "001 0985 HENRIQUE SCHAUMANN-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7580,
                    "nome": "001-0986 KLABIN-IMIGRANTES-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7581,
                    "nome": "001 0987 PARI I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7582,
                    "nome": "001 0990 R AUGUSTA-SP-SP II",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7583,
                    "nome": "001-0991 NV PACAEMBU-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7584,
                    "nome": "001-0993 AHU-CAP-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 7585,
                    "nome": "001-0994 VL CONGONHAS-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7586,
                    "nome": "001-0995 HENRIQUE SCHAUMANN-SP I",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7587,
                    "nome": "001-0996 ABRAAO DE MORAIS-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7588,
                    "nome": "001-0997 SAO JOAQUIM-SP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7589,
                    "nome": "001-0998 PANAMBY-CAP-SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 7590,
                    "nome": "001-0999 LUCAS DO RIO VERDE-INT-MT",
                    "municipio": "LUCAS DO RIO VERDE"
                }
            ]
        },
        {
            "id": 337,
            "banco": "743",
            "nome": "BANCO SEMEAR S.A.",
            "agencias": [
                {
                    "id": 18397,
                    "nome": "MATRIZ",
                    "municipio": "BELO HORIZONTE"
                }
            ]
        },
        {
            "id": 132,
            "banco": "276",
            "nome": "BANCO SENFF S.A.",
            "agencias": [
                {
                    "id": 15405,
                    "nome": "MATRIZ",
                    "municipio": "CURITIBA"
                }
            ]
        },
        {
            "id": 345,
            "banco": "754",
            "nome": "BANCO SISTEMA S.A.",
            "agencias": [
                {
                    "id": 18490,
                    "nome": "AGENCIA 1 DO BANCO BANCO SISTEMA",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 189,
            "banco": "366",
            "nome": "BANCO SOCIETE GENERALE BRASIL S.A.",
            "agencias": [
                {
                    "id": 18053,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 327,
            "banco": "637",
            "nome": "BANCO SOFISA S.A.",
            "agencias": [
                {
                    "id": 18314,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18315,
                    "nome": "AGENCIA RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 18316,
                    "nome": "AGENCIA FORTALEZA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 18317,
                    "nome": "AG�NCIA RIBEIR�O PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 18318,
                    "nome": "AG�NCIA ALPHAVILLE",
                    "municipio": "BARUERI"
                },
                {
                    "id": 18319,
                    "nome": "CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 18320,
                    "nome": "AG�NCIA MANAUS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 18321,
                    "nome": "BELO HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 18322,
                    "nome": "AGENCIA SOROCABA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 18323,
                    "nome": "AG�NCIA LONDRINA",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 18324,
                    "nome": "AG�NCIA GUARULHOS",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 18325,
                    "nome": "AG�NCIA ABC - S�O BERNARDO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 18326,
                    "nome": "AG�NCIA BLUMENAU",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 18327,
                    "nome": "AG�NCIA S�O JOS� DO RIO PRETO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 18328,
                    "nome": "RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18329,
                    "nome": "AG�NCIA CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 18330,
                    "nome": "AG�NCIA GOIANIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 18331,
                    "nome": "AGENCIA PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                }
            ]
        },
        {
            "id": 268,
            "banco": "464",
            "nome": "BANCO SUMITOMO MITSUI BRASILEIRO S.A.",
            "agencias": [
                {
                    "id": 18249,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 39,
            "banco": "82",
            "nome": "BANCO TOPÁZIO S.A.",
            "agencias": [
                {
                    "id": 8425,
                    "nome": "MATRIZ",
                    "municipio": "PORTO ALEGRE"
                }
            ]
        },
        {
            "id": 207,
            "banco": "387",
            "nome": "BANCO TOYOTA DO BRASIL S.A.",
            "agencias": [
                {
                    "id": 18072,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 326,
            "banco": "634",
            "nome": "BANCO TRIÂNGULO S.A.",
            "agencias": [
                {
                    "id": 18313,
                    "nome": "MATRIZ",
                    "municipio": "UBERLANDIA"
                }
            ]
        },
        {
            "id": 12,
            "banco": "18",
            "nome": "BANCO TRICURY S.A.",
            "agencias": [
                {
                    "id": 4600,
                    "nome": "001-MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 329,
            "banco": "653",
            "nome": "BANCO VOITER S.A.",
            "agencias": [
                {
                    "id": 18334,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 211,
            "banco": "393",
            "nome": "BANCO VOLKSWAGEN S.A.",
            "agencias": [
                {
                    "id": 18077,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 331,
            "banco": "655",
            "nome": "BANCO VOTORANTIM S.A.",
            "agencias": [
                {
                    "id": 18338,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18339,
                    "nome": "FILIAL ROCHAVER�",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18340,
                    "nome": "FILIAL BANCO DIGITAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18341,
                    "nome": "65",
                    "municipio": ""
                },
                {
                    "id": 18342,
                    "nome": "Ag�ncia 655",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 318,
            "banco": "610",
            "nome": "BANCO VR S.A.",
            "agencias": [
                {
                    "id": 18299,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 63,
            "banco": "119",
            "nome": "BANCO WESTERN UNION DO BRASIL S.A.",
            "agencias": [
                {
                    "id": 11987,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 67,
            "banco": "124",
            "nome": "BANCO WOORI BANK DO BRASIL S.A.",
            "agencias": [
                {
                    "id": 11991,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11992,
                    "nome": "AGENCIA BOM RETIRO",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 177,
            "banco": "348",
            "nome": "BANCO XP S.A.",
            "agencias": [
                {
                    "id": 18041,
                    "nome": "MATRIZ",
                    "municipio": "RIO DE JANEIRO"
                }
            ]
        },
        {
            "id": 276,
            "banco": "475",
            "nome": "BANCO YAMAHA MOTOR DO BRASIL S.A.",
            "agencias": [
                {
                    "id": 18257,
                    "nome": "MATRIZ",
                    "municipio": "GUARULHOS"
                }
            ]
        },
        {
            "id": 38,
            "banco": "81",
            "nome": "BANCOSEGURO S.A.",
            "agencias": [
                {
                    "id": 8424,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 13,
            "banco": "21",
            "nome": "BANESTES S.A. BANCO DO ESTADO DO ESPIRITO SANTO",
            "agencias": [
                {
                    "id": 4601,
                    "nome": "GLORIA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 4602,
                    "nome": "JARDIM AMERICA",
                    "municipio": "CARIACICA"
                },
                {
                    "id": 4603,
                    "nome": "CENTRAL(MATRIZ)",
                    "municipio": "VITORIA"
                },
                {
                    "id": 4604,
                    "nome": "CAMPO GRANDE",
                    "municipio": "CARIACICA"
                },
                {
                    "id": 4605,
                    "nome": "1055",
                    "municipio": ""
                },
                {
                    "id": 4606,
                    "nome": "JUCUTUQUARA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 4607,
                    "nome": "JARDIM LIMOEIRO",
                    "municipio": "SERRA"
                },
                {
                    "id": 4608,
                    "nome": "PRAIA DO CANTO",
                    "municipio": "VITORIA"
                },
                {
                    "id": 4609,
                    "nome": "SANTA LEOPOLDINA",
                    "municipio": "SANTA LEOPOLDINA"
                },
                {
                    "id": 4610,
                    "nome": "SERRA",
                    "municipio": "SERRA"
                },
                {
                    "id": 4611,
                    "nome": "ARACRUZ",
                    "municipio": "ARACRUZ"
                },
                {
                    "id": 4612,
                    "nome": "BAIXO GUANDU",
                    "municipio": "BAIXO GUANDU"
                },
                {
                    "id": 4613,
                    "nome": "BARRA DE SAO FRANCISCO",
                    "municipio": "BARRA DE SAO FRANCISCO"
                },
                {
                    "id": 4614,
                    "nome": "BOM JESUS DO NORTE",
                    "municipio": "BOM JESUS DO NORTE"
                },
                {
                    "id": 4615,
                    "nome": "CACHOEIRO DE ITAPEMIRIM",
                    "municipio": "CACHOEIRO DE ITAPEMIRIM"
                },
                {
                    "id": 4616,
                    "nome": "CASTELO",
                    "municipio": "CASTELO"
                },
                {
                    "id": 4617,
                    "nome": "COLATINA",
                    "municipio": "COLATINA"
                },
                {
                    "id": 4618,
                    "nome": "DOMINGOS MARTINS",
                    "municipio": "DOMINGOS MARTINS"
                },
                {
                    "id": 4619,
                    "nome": "ECOPORANGA",
                    "municipio": "ECOPORANGA"
                },
                {
                    "id": 4620,
                    "nome": "GUAGUI",
                    "municipio": "GUACUI"
                },
                {
                    "id": 4621,
                    "nome": "ITARANA",
                    "municipio": "ITARANA"
                },
                {
                    "id": 4622,
                    "nome": "IUNA",
                    "municipio": "IUNA"
                },
                {
                    "id": 4623,
                    "nome": "LINHARES",
                    "municipio": "LINHARES"
                },
                {
                    "id": 4624,
                    "nome": "MIMOSO DO SUL",
                    "municipio": "MIMOSO DO SUL"
                },
                {
                    "id": 4625,
                    "nome": "MUNIZ FREIRE",
                    "municipio": "MUNIZ FREIRE"
                },
                {
                    "id": 4626,
                    "nome": "MUQUI",
                    "municipio": "MUQUI"
                },
                {
                    "id": 4627,
                    "nome": "NOVA VENECIA",
                    "municipio": "NOVA VENECIA"
                },
                {
                    "id": 4628,
                    "nome": "PINHEIROS",
                    "municipio": "PINHEIROS"
                },
                {
                    "id": 4629,
                    "nome": "SANTA MARIA DE JETIBA",
                    "municipio": "SANTA MARIA DE JETIBA"
                },
                {
                    "id": 4630,
                    "nome": "SAO JOSE DO CALCADO",
                    "municipio": "SAO JOSE DO CALCADO"
                },
                {
                    "id": 4631,
                    "nome": "SAO MATEUS",
                    "municipio": "SAO MATEUS"
                },
                {
                    "id": 4632,
                    "nome": "SAO SILVANO",
                    "municipio": "COLATINA"
                },
                {
                    "id": 4633,
                    "nome": "AFONSO CLAUDIO",
                    "municipio": "AFONSO CLAUDIO"
                },
                {
                    "id": 4634,
                    "nome": "ALEGRE",
                    "municipio": "ALEGRE"
                },
                {
                    "id": 4635,
                    "nome": "ALFREDO CHAVES",
                    "municipio": "ALFREDO CHAVES"
                },
                {
                    "id": 4636,
                    "nome": "JERONIMO MONTEIRO",
                    "municipio": "JERONIMO MONTEIRO"
                },
                {
                    "id": 4637,
                    "nome": "MANTENOPOLIS",
                    "municipio": "MANTENOPOLIS"
                },
                {
                    "id": 4638,
                    "nome": "PANCAS",
                    "municipio": "PANCAS"
                },
                {
                    "id": 4639,
                    "nome": "APIACA",
                    "municipio": "APIACA"
                },
                {
                    "id": 4640,
                    "nome": "ATILIO VIVACQUA",
                    "municipio": "ATILIO VIVACQUA"
                },
                {
                    "id": 4641,
                    "nome": "BOA ESPERANCA",
                    "municipio": "BOA ESPERANCA"
                },
                {
                    "id": 4642,
                    "nome": "CONCEICAO DO CASTELO",
                    "municipio": "CONCEICAO DO CASTELO"
                },
                {
                    "id": 4643,
                    "nome": "BERNARDO HORTA",
                    "municipio": "CACHOEIRO DE ITAPEMIRIM"
                },
                {
                    "id": 4644,
                    "nome": "IBIRACU",
                    "municipio": "IBIRACU"
                },
                {
                    "id": 4645,
                    "nome": "ICONHA",
                    "municipio": "ICONHA"
                },
                {
                    "id": 4646,
                    "nome": "ITAGUACU",
                    "municipio": "ITAGUACU"
                },
                {
                    "id": 4647,
                    "nome": "PEDRO CANARIO",
                    "municipio": "PEDRO CANARIO"
                },
                {
                    "id": 4648,
                    "nome": "PIUMA",
                    "municipio": "PIUMA"
                },
                {
                    "id": 4649,
                    "nome": "MUCURICI",
                    "municipio": "MUCURICI"
                },
                {
                    "id": 4650,
                    "nome": "ANCHIETA",
                    "municipio": "ANCHIETA"
                },
                {
                    "id": 4651,
                    "nome": "MARATAIZES",
                    "municipio": "MARATAIZES"
                },
                {
                    "id": 4652,
                    "nome": "SANTA TERESA",
                    "municipio": "SANTA TERESA"
                },
                {
                    "id": 4653,
                    "nome": "RIO BANANAL",
                    "municipio": "RIO BANANAL"
                },
                {
                    "id": 4654,
                    "nome": "EMPRESARIAL SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 4655,
                    "nome": "RIO NOVO DO SUL",
                    "municipio": "RIO NOVO DO SUL"
                },
                {
                    "id": 4656,
                    "nome": "PRESIDENTE KENNEDY",
                    "municipio": "PRESIDENTE KENNEDY"
                },
                {
                    "id": 4657,
                    "nome": "IBATIBA",
                    "municipio": "IBATIBA"
                },
                {
                    "id": 4658,
                    "nome": "FUNDAO",
                    "municipio": "FUNDAO"
                },
                {
                    "id": 4659,
                    "nome": "IBITIRAMA",
                    "municipio": "IBITIRAMA"
                },
                {
                    "id": 4660,
                    "nome": "DORES DO RIO PRETO",
                    "municipio": "DORES DO RIO PRETO"
                },
                {
                    "id": 4661,
                    "nome": "VILA VALERIO",
                    "municipio": "VILA VALERIO"
                },
                {
                    "id": 4662,
                    "nome": "JOAO NEIVA",
                    "municipio": "JOAO NEIVA"
                },
                {
                    "id": 4663,
                    "nome": "GUARAPARI",
                    "municipio": "GUARAPARI"
                },
                {
                    "id": 4664,
                    "nome": "JAGUARE",
                    "municipio": "JAGUARE"
                },
                {
                    "id": 4665,
                    "nome": "VENDA NOVA DO IMIGRANTE",
                    "municipio": "VENDA NOVA DO IMIGRANTE"
                },
                {
                    "id": 4666,
                    "nome": "AGUIA BRANCA",
                    "municipio": "AGUIA BRANCA"
                },
                {
                    "id": 4667,
                    "nome": "�GUA DOCE DO NORTE",
                    "municipio": "AGUA DOCE DO NORTE"
                },
                {
                    "id": 4668,
                    "nome": "COBILANDIA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 4669,
                    "nome": "ALTO RIO NOVO",
                    "municipio": "ALTO RIO NOVO"
                },
                {
                    "id": 4670,
                    "nome": "LARANJA DA TERRA",
                    "municipio": "LARANJA DA TERRA"
                },
                {
                    "id": 4671,
                    "nome": "VARGEM ALTA",
                    "municipio": "VARGEM ALTA"
                },
                {
                    "id": 4672,
                    "nome": "SAO ROQUE DO CANAA",
                    "municipio": "SAO ROQUE DO CANAA"
                },
                {
                    "id": 4673,
                    "nome": "ITAPEMIRIM",
                    "municipio": "ITAPEMIRIM"
                },
                {
                    "id": 4674,
                    "nome": "ITAPARICA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 4675,
                    "nome": "BENTO FERREIRA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 4676,
                    "nome": "TRIBUNAL DA JUSTICA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 4677,
                    "nome": "RETA DA PENHA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 4678,
                    "nome": "SAO PEDRO",
                    "municipio": "VITORIA"
                },
                {
                    "id": 4679,
                    "nome": "SOORETAMA",
                    "municipio": "SOORETAMA"
                },
                {
                    "id": 4680,
                    "nome": "BREJETUBA",
                    "municipio": "BREJETUBA"
                },
                {
                    "id": 4681,
                    "nome": "IRUPI",
                    "municipio": "IRUPI"
                },
                {
                    "id": 4682,
                    "nome": "JARDIM CAMBURI",
                    "municipio": "VITORIA"
                },
                {
                    "id": 4683,
                    "nome": "MARECHAL FLORIANO",
                    "municipio": "MARECHAL FLORIANO"
                },
                {
                    "id": 4684,
                    "nome": "MARUIPE",
                    "municipio": "VITORIA"
                },
                {
                    "id": 4685,
                    "nome": "CIVIT",
                    "municipio": "SERRA"
                },
                {
                    "id": 4686,
                    "nome": "LARANJEIRAS",
                    "municipio": "SERRA"
                },
                {
                    "id": 4687,
                    "nome": "EMPRESARIAL CAMPO GRANDE",
                    "municipio": "CARIACICA"
                },
                {
                    "id": 4688,
                    "nome": "VALORES ENSEADA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 4689,
                    "nome": "PEDRA AZUL",
                    "municipio": "DOMINGOS MARTINS"
                },
                {
                    "id": 4690,
                    "nome": "PONTO BELO",
                    "municipio": "PONTO BELO"
                },
                {
                    "id": 4691,
                    "nome": "EMPRESARIAL LINHARES",
                    "municipio": "LINHARES"
                },
                {
                    "id": 4692,
                    "nome": "EMPRESARIAL CACHOEIRO",
                    "municipio": "CACHOEIRO DE ITAPEMIRIM"
                },
                {
                    "id": 4693,
                    "nome": "PRAIA DO SUA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 4694,
                    "nome": "JARDIM DA PENHA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 4695,
                    "nome": "ITACIBA",
                    "municipio": "CARIACICA"
                },
                {
                    "id": 4696,
                    "nome": "JACARAIPE",
                    "municipio": "SERRA"
                },
                {
                    "id": 4697,
                    "nome": "VILA VELHA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 4698,
                    "nome": "VIANA",
                    "municipio": "VIANA"
                }
            ]
        },
        {
            "id": 346,
            "banco": "755",
            "nome": "BANK OF AMERICA MERRILL LYNCH BANCO MÚLTIPLO S.A.",
            "agencias": [
                {
                    "id": 18491,
                    "nome": "MATRIZ- SAO PAULO FARIA LIMA",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 125,
            "banco": "268",
            "nome": "BARI COMPANHIA HIPOTECÁRIA",
            "agencias": [
                {
                    "id": 15398,
                    "nome": "MATRIZ",
                    "municipio": "CURITIBA"
                }
            ]
        },
        {
            "id": 158,
            "banco": "320",
            "nome": "BCO CCB BRASIL S.A.",
            "agencias": [
                {
                    "id": 15458,
                    "nome": "RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15459,
                    "nome": "CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 15460,
                    "nome": "BELO HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15461,
                    "nome": "RIBEIRAO PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 15462,
                    "nome": "BLUMENAU",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 15463,
                    "nome": "BRASIL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15464,
                    "nome": "ALDEOTA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 15465,
                    "nome": "BRASILIA",
                    "municipio": "BRASILIA"
                }
            ]
        },
        {
            "id": 118,
            "banco": "250",
            "nome": "BCV - BANCO DE CRÉDITO E VAREJO S.A.",
            "agencias": [
                {
                    "id": 15391,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 85,
            "banco": "144",
            "nome": "BEXS BANCO DE CÂMBIO S/A",
            "agencias": [
                {
                    "id": 12012,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 119,
            "banco": "253",
            "nome": "BEXS CORRETORA DE CÂMBIO S/A",
            "agencias": [
                {
                    "id": 15392,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 77,
            "banco": "134",
            "nome": "BGC LIQUIDEZ DTVM LTDA",
            "agencias": [
                {
                    "id": 12003,
                    "nome": "SAO PAULO",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 131,
            "banco": "274",
            "nome": "BMP SCMEPP LTDA",
            "agencias": [
                {
                    "id": 15404,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 197,
            "banco": "377",
            "nome": "BMS SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18062,
                    "nome": "MATRIZ",
                    "municipio": "FORTALEZA"
                }
            ]
        },
        {
            "id": 4,
            "banco": "7",
            "nome": "BNDES",
            "agencias": [
                {
                    "id": 4590,
                    "nome": "DEPARTAMENTO REGIONAL NORDESTE (DENOR)",
                    "municipio": "RECIFE"
                },
                {
                    "id": 4591,
                    "nome": "1606",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 11,
            "banco": "17",
            "nome": "BNY MELLON BANCO S.A.",
            "agencias": [
                {
                    "id": 4598,
                    "nome": "MATRIZ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 4599,
                    "nome": "S�O PAULO",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 225,
            "banco": "408",
            "nome": "BONUSPAGO SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": []
        },
        {
            "id": 69,
            "banco": "126",
            "nome": "BR PARTNERS BANCO DE INVESTIMENTO S.A.",
            "agencias": [
                {
                    "id": 11995,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 243,
            "banco": "433",
            "nome": "BR-CAPITAL DTVM S.A.",
            "agencias": [
                {
                    "id": 18228,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 71,
            "banco": "128",
            "nome": "BRAZA BANK S.A. BANCO DE CÂMBIO",
            "agencias": [
                {
                    "id": 11997,
                    "nome": "AGENCIA 0002",
                    "municipio": "CURITIBA"
                }
            ]
        },
        {
            "id": 30,
            "banco": "70",
            "nome": "BRB - BANCO DE BRASILIA S.A.",
            "agencias": [
                {
                    "id": 8315,
                    "nome": "JK",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8316,
                    "nome": "TAGUATINGA",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 8317,
                    "nome": "GAMA",
                    "municipio": "BRASILIA (GAMA)"
                },
                {
                    "id": 8318,
                    "nome": "BANDEIRANTE",
                    "municipio": "BRASILIA (NUCLEO BANDEIRANTE)"
                },
                {
                    "id": 8319,
                    "nome": "SIA",
                    "municipio": "BRASILIA (GUARA)"
                },
                {
                    "id": 8320,
                    "nome": "SOBRADINHO",
                    "municipio": "BRASILIA (SOBRADINHO)"
                },
                {
                    "id": 8321,
                    "nome": "AG�NCIA 504 NORTE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8322,
                    "nome": "CEASA",
                    "municipio": "BRASILIA (GUARA)"
                },
                {
                    "id": 8323,
                    "nome": "PLANALTINA",
                    "municipio": "BRASILIA (PLANALTINA)"
                },
                {
                    "id": 8324,
                    "nome": "AG�NCIA PMDF/TAGUATINGA",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 8325,
                    "nome": "AG�NCIA SEF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8326,
                    "nome": "Ag�ncia 1294",
                    "municipio": ""
                },
                {
                    "id": 8327,
                    "nome": "GUARA",
                    "municipio": "BRASILIA (GUARA)"
                },
                {
                    "id": 8328,
                    "nome": "AG�NCIA METR�",
                    "municipio": "BRASILIA (AGUAS CLARAS)"
                },
                {
                    "id": 8329,
                    "nome": "AG�NCIA DPE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8330,
                    "nome": "VALPARAISO",
                    "municipio": "VALPARAISO DE GOIAS"
                },
                {
                    "id": 8331,
                    "nome": "AG�NCIA SES-DF/HRC",
                    "municipio": "BRASILIA (CEILANDIA)"
                },
                {
                    "id": 8332,
                    "nome": "SAO SEBASTIAO",
                    "municipio": "BRASILIA (SAO SEBASTIAO)"
                },
                {
                    "id": 8333,
                    "nome": "GOIANIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 8334,
                    "nome": "AG�NCIA VEN�NCIO 2000",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8335,
                    "nome": "AG�NCIA HMIB",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8336,
                    "nome": "CEIL�NDIA SUL",
                    "municipio": "BRASILIA (CEILANDIA)"
                },
                {
                    "id": 8337,
                    "nome": "Ag�ncia 1758",
                    "municipio": ""
                },
                {
                    "id": 8338,
                    "nome": "ANAPOLIS",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 8339,
                    "nome": "CONJUNTO NACIONAL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8340,
                    "nome": "W3",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8341,
                    "nome": "TIRADENTES",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8342,
                    "nome": "L2 SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8343,
                    "nome": "AG�NCIA SHOPPING POPULAR",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8344,
                    "nome": "AG�NCIA NOVACAP",
                    "municipio": "BRASILIA (GUARA)"
                },
                {
                    "id": 8345,
                    "nome": "COMERCIAL SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8346,
                    "nome": "NORTE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8347,
                    "nome": "AG�NCIA TCDF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8348,
                    "nome": "AG�NCIA BURITI",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8349,
                    "nome": "LAGO",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8350,
                    "nome": "HDB",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8351,
                    "nome": "Ag�ncia 2156",
                    "municipio": ""
                },
                {
                    "id": 8352,
                    "nome": "ALFA",
                    "municipio": "BRASILIA (GAMA)"
                },
                {
                    "id": 8353,
                    "nome": "RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8354,
                    "nome": "SAO PAULO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8355,
                    "nome": "TAGUATINGA NORTE",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 8356,
                    "nome": "RECANTO DAS EMAS",
                    "municipio": "BRASILIA (RECANTO DAS EMAS)"
                },
                {
                    "id": 8357,
                    "nome": "RIACHO FUNDO",
                    "municipio": "BRASILIA (RIACHO FUNDO)"
                },
                {
                    "id": 8358,
                    "nome": "BRAZLANDIA",
                    "municipio": "BRASILIA (BRAZLANDIA)"
                },
                {
                    "id": 8359,
                    "nome": "TAGUATINGA SHOPPING",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 8360,
                    "nome": "CEILANDIA",
                    "municipio": "BRASILIA (CEILANDIA)"
                },
                {
                    "id": 8361,
                    "nome": "AG�NCIA NOVO GAMA",
                    "municipio": "NOVO GAMA"
                },
                {
                    "id": 8362,
                    "nome": "AG�NCIA UNA�",
                    "municipio": "UNAI"
                },
                {
                    "id": 8363,
                    "nome": "AG�NCIA PLANALTINA DE GOI�S",
                    "municipio": "PLANALTINA"
                },
                {
                    "id": 8364,
                    "nome": "CENTRAL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8365,
                    "nome": "SIG",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8366,
                    "nome": "AG�NCIA SAMAMBAIA SUL",
                    "municipio": "BRASILIA (SAMAMBAIA)"
                },
                {
                    "id": 8367,
                    "nome": "AG�NCIA SES-DF/HRPA",
                    "municipio": "BRASILIA (PARANOA)"
                },
                {
                    "id": 8368,
                    "nome": "AG�NCIA ALEX�NIA",
                    "municipio": "ALEXANIA"
                },
                {
                    "id": 8369,
                    "nome": "AG�NCIA SES-DF/HRB",
                    "municipio": "BRASILIA (BRAZLANDIA)"
                },
                {
                    "id": 8370,
                    "nome": "AG�NCIA EMPRESARIAL BRAS�LIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8371,
                    "nome": "AG�NCIA EMPRESARIAL TAGUATINGA",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 8372,
                    "nome": "AG�NCIA VICENTE PIRES",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8373,
                    "nome": "AGENCIA ESTRUTURAL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8374,
                    "nome": "AG�NCIA INDEPEND�NCIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 8375,
                    "nome": "AG�NCIA JK SHOPPING",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 8376,
                    "nome": "Ag�ncia 325",
                    "municipio": ""
                },
                {
                    "id": 8377,
                    "nome": "AG�NCIA SALVADOR.",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8378,
                    "nome": "ASA SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8379,
                    "nome": "AG�NCIA NOROESTE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8380,
                    "nome": "PARKSHOPPING",
                    "municipio": "BRASILIA (GUARA)"
                },
                {
                    "id": 8381,
                    "nome": "CEILANDIA NORTE",
                    "municipio": "BRASILIA (CEILANDIA)"
                },
                {
                    "id": 8382,
                    "nome": "AG�NCIA CORPORATE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8383,
                    "nome": "TAGUATINGA SUL",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 8384,
                    "nome": "PONTANORTE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8385,
                    "nome": "SAMAMBAIA",
                    "municipio": "BRASILIA (SAMAMBAIA)"
                },
                {
                    "id": 8386,
                    "nome": "GUARA II",
                    "municipio": "BRASILIA (GUARA)"
                },
                {
                    "id": 8387,
                    "nome": "550",
                    "municipio": ""
                },
                {
                    "id": 8388,
                    "nome": "CANDANGOLANDIA",
                    "municipio": "BRASILIA (CANDANGOLANDIA)"
                },
                {
                    "id": 8389,
                    "nome": "PARANOA",
                    "municipio": "BRASILIA (PARANOA)"
                },
                {
                    "id": 8390,
                    "nome": "C N B 12",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 8391,
                    "nome": "SRTV-SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8392,
                    "nome": "SAAN",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8393,
                    "nome": "LAGO NORTE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8394,
                    "nome": "SETOR HOSPITALAR",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8395,
                    "nome": "SANTA MARIA",
                    "municipio": "BRASILIA (SANTA MARIA)"
                },
                {
                    "id": 8396,
                    "nome": "SUDOESTE",
                    "municipio": "BRASILIA (SUDOESTE/OCTOGONAL)"
                },
                {
                    "id": 8397,
                    "nome": "TERRACO SHOPPING",
                    "municipio": "BRASILIA (SUDOESTE/OCTOGONAL)"
                },
                {
                    "id": 8398,
                    "nome": "FL�RIDA MALL",
                    "municipio": "BRASILIA (GUARA)"
                },
                {
                    "id": 8399,
                    "nome": "LUZIANIA",
                    "municipio": "LUZIANIA"
                },
                {
                    "id": 8400,
                    "nome": "QNL",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 8401,
                    "nome": "CAMPO GRANDE",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 8402,
                    "nome": "FORMOSA",
                    "municipio": "FORMOSA"
                },
                {
                    "id": 8403,
                    "nome": "AGUAS CLARAS",
                    "municipio": "BRASILIA (AGUAS CLARAS)"
                },
                {
                    "id": 8404,
                    "nome": "HELIO PRATES",
                    "municipio": "BRASILIA (CEILANDIA)"
                },
                {
                    "id": 8405,
                    "nome": "8",
                    "municipio": ""
                },
                {
                    "id": 8406,
                    "nome": "CUIAB�",
                    "municipio": "CUIABA"
                },
                {
                    "id": 8407,
                    "nome": "EPNB",
                    "municipio": "BRASILIA (AGUAS CLARAS)"
                },
                {
                    "id": 8408,
                    "nome": "PRA�A DO DI",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 8409,
                    "nome": "P SUL",
                    "municipio": "BRASILIA (CEILANDIA)"
                },
                {
                    "id": 8410,
                    "nome": "�GUAS LINDAS",
                    "municipio": "AGUAS LINDAS DE GOIAS"
                },
                {
                    "id": 8411,
                    "nome": "JARDIM BOT�NICO",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8412,
                    "nome": "AG�NCIA SANTO ANT�NIO DO DESCOBERTO",
                    "municipio": "SANTO ANTONIO DO DESCOBERTO"
                },
                {
                    "id": 8413,
                    "nome": "SOBRADINHO II",
                    "municipio": "BRASILIA (SOBRADINHO)"
                }
            ]
        },
        {
            "id": 91,
            "banco": "173",
            "nome": "BRL TRUST DTVM SA",
            "agencias": [
                {
                    "id": 12020,
                    "nome": "AGENCIA 1 DO BANCO BRL TRUST DTVM SA",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 83,
            "banco": "142",
            "nome": "BROKER BRASIL CORRETORA DE CÂMBIO LTDA.",
            "agencias": [
                {
                    "id": 12010,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 142,
            "banco": "292",
            "nome": "BS2 DTVM S.A.",
            "agencias": [
                {
                    "id": 15415,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15416,
                    "nome": "BS2 DTVM - FILIAL RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                }
            ]
        },
        {
            "id": 6,
            "banco": "11",
            "nome": "C.SUISSE HEDGING-GRIFFO CV S/A",
            "agencias": [
                {
                    "id": 4593,
                    "nome": "RIO DE JANEIRO - RJ",
                    "municipio": "RIO DE JANEIRO"
                }
            ]
        },
        {
            "id": 55,
            "banco": "104",
            "nome": "CAIXA ECONOMICA FEDERAL",
            "agencias": [
                {
                    "id": 8444,
                    "nome": "AEROPORTO, RECIFE",
                    "municipio": ""
                },
                {
                    "id": 8445,
                    "nome": "1",
                    "municipio": ""
                },
                {
                    "id": 8446,
                    "nome": "105 SUDOESTE, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8447,
                    "nome": "BOA ESPERANCA, MG",
                    "municipio": "BOA ESPERANCA"
                },
                {
                    "id": 8448,
                    "nome": "CIDADE SORRISO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 8449,
                    "nome": "VILA HAUER, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 8450,
                    "nome": "AVENIDA LINS DE VASCONCELOS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8451,
                    "nome": "VITAL BRASIL, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8452,
                    "nome": "SAO BENTO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8453,
                    "nome": "PERDIZES, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8454,
                    "nome": "Ag�ncia 10050",
                    "municipio": ""
                },
                {
                    "id": 8455,
                    "nome": "VILA FORMOSA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8456,
                    "nome": "VILA GUILHERME, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8457,
                    "nome": "VILA MATILDE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8458,
                    "nome": "BURITI SHOPPING, GO",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 8459,
                    "nome": "CAMBUQUIRA, MG",
                    "municipio": "CAMBUQUIRA"
                },
                {
                    "id": 8460,
                    "nome": "ERLIE AMORIM, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 8461,
                    "nome": "UNIVERSITARIA, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 8462,
                    "nome": "VERA CRUZ, RS",
                    "municipio": "VERA CRUZ"
                },
                {
                    "id": 8463,
                    "nome": "CANDELARIA, RS",
                    "municipio": "CANDELARIA"
                },
                {
                    "id": 8464,
                    "nome": "RUDGE RAMOS, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 8465,
                    "nome": "VIA ANCHIETA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8466,
                    "nome": "PITUBA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8467,
                    "nome": "CENTRO ADMINISTRATIVO, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8468,
                    "nome": "CAMPANHA, MG",
                    "municipio": "CAMPANHA"
                },
                {
                    "id": 8469,
                    "nome": "CATEDRAL MACEIO, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 8470,
                    "nome": "ONDINA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8471,
                    "nome": "VENDA NOVA, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 8472,
                    "nome": "ALEM PARAIBA, MG",
                    "municipio": "ALEM PARAIBA"
                },
                {
                    "id": 8473,
                    "nome": "JACAREPAGUA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8474,
                    "nome": "RAMOS, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8475,
                    "nome": "CONDE DE BONFIM, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8476,
                    "nome": "LINO TEIXEIRA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8477,
                    "nome": "CAXANGA, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 8478,
                    "nome": "10281",
                    "municipio": ""
                },
                {
                    "id": 8479,
                    "nome": "1029",
                    "municipio": ""
                },
                {
                    "id": 8480,
                    "nome": "CAMPO BELO, MG",
                    "municipio": "CAMPO BELO"
                },
                {
                    "id": 8481,
                    "nome": "CONDE DA BOA VISTA, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 8482,
                    "nome": "10300",
                    "municipio": ""
                },
                {
                    "id": 8483,
                    "nome": "Ag�ncia 10301",
                    "municipio": ""
                },
                {
                    "id": 8484,
                    "nome": "Ag�ncia 10303",
                    "municipio": ""
                },
                {
                    "id": 8485,
                    "nome": "CONSELHEIRO AGUIAR, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 8486,
                    "nome": "BAIRRO CANELA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8487,
                    "nome": "CRUZ DAS ARMAS, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 8488,
                    "nome": "GOIABEIRAS, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 8489,
                    "nome": "FRANCISCO SA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 8490,
                    "nome": "CURICICA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8491,
                    "nome": "SANTA CRUZ DO CAPIBARIBE, PE",
                    "municipio": "SANTA CRUZ DO CAPIBARIBE"
                },
                {
                    "id": 8492,
                    "nome": "Ag�ncia 10380",
                    "municipio": ""
                },
                {
                    "id": 8493,
                    "nome": "TJ BRASILIA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8494,
                    "nome": "CARANDAI, MG",
                    "municipio": "CARANDAI"
                },
                {
                    "id": 8495,
                    "nome": "BRAZLANDIA, DF",
                    "municipio": "BRASILIA (BRAZLANDIA)"
                },
                {
                    "id": 8496,
                    "nome": "COMERCIAL SUL, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8497,
                    "nome": "PRACA 14, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 8498,
                    "nome": "CONGONHAS, MG",
                    "municipio": "CONGONHAS"
                },
                {
                    "id": 8499,
                    "nome": "SIQUEIRA CAMPOS, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8500,
                    "nome": "JARDIM LIMOEIRO, ES",
                    "municipio": "SERRA"
                },
                {
                    "id": 8501,
                    "nome": "GOMES DE MATOS, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 8502,
                    "nome": "JANGADA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 8503,
                    "nome": "10481",
                    "municipio": ""
                },
                {
                    "id": 8504,
                    "nome": "CARANGOLA, MG",
                    "municipio": "CARANGOLA"
                },
                {
                    "id": 8505,
                    "nome": "ANISIO TEIXEIRA, BA",
                    "municipio": "CAETITE"
                },
                {
                    "id": 8506,
                    "nome": "CAMACARI, BA",
                    "municipio": "CAMACARI"
                },
                {
                    "id": 8507,
                    "nome": "ITAPUA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8508,
                    "nome": "LIVRAMENTO NOSSA SENHORA, BA",
                    "municipio": "LIVRAMENTO DE NOSSA SENHORA"
                },
                {
                    "id": 8509,
                    "nome": "XIQUE-XIQUE, BA",
                    "municipio": "XIQUE-XIQUE"
                },
                {
                    "id": 8510,
                    "nome": "515 SUL, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8511,
                    "nome": "ABAETE, MG",
                    "municipio": "ABAETE"
                },
                {
                    "id": 8512,
                    "nome": "CARATINGA, MG",
                    "municipio": "CARATINGA"
                },
                {
                    "id": 8513,
                    "nome": "BOM DESPACHO, MG",
                    "municipio": "BOM DESPACHO"
                },
                {
                    "id": 8514,
                    "nome": "CAMBUI, MG",
                    "municipio": "CAMBUI"
                },
                {
                    "id": 8515,
                    "nome": "CAMPINA VERDE, MG",
                    "municipio": "CAMPINA VERDE"
                },
                {
                    "id": 8516,
                    "nome": "DORES DO INDAIA, MG",
                    "municipio": "DORES DO INDAIA"
                },
                {
                    "id": 8517,
                    "nome": "JACUTINGA, MG",
                    "municipio": "JACUTINGA"
                },
                {
                    "id": 8518,
                    "nome": "OURO BRANCO, MG",
                    "municipio": "OURO BRANCO"
                },
                {
                    "id": 8519,
                    "nome": "SANTA LUZIA, MG",
                    "municipio": "SANTA LUZIA"
                },
                {
                    "id": 8520,
                    "nome": "SAO JOAO NEPOMUCENO, MG",
                    "municipio": "SAO JOAO NEPOMUCENO"
                },
                {
                    "id": 8521,
                    "nome": "SHOPPING MONTE CARMO, MG",
                    "municipio": "BETIM"
                },
                {
                    "id": 8522,
                    "nome": "CEARA-MIRIM, RN",
                    "municipio": "CEARA-MIRIM"
                },
                {
                    "id": 8523,
                    "nome": "CASSIA, MG",
                    "municipio": "CASSIA"
                },
                {
                    "id": 8524,
                    "nome": "BRACO DO NORTE, SC",
                    "municipio": "BRACO DO NORTE"
                },
                {
                    "id": 8525,
                    "nome": "CAPINZAL, SC",
                    "municipio": "CAPINZAL"
                },
                {
                    "id": 8526,
                    "nome": "GASPAR, SC",
                    "municipio": "GASPAR"
                },
                {
                    "id": 8527,
                    "nome": "GUARAMIRIM, SC",
                    "municipio": "GUARAMIRIM"
                },
                {
                    "id": 8528,
                    "nome": "IMBITUBA, SC",
                    "municipio": "IMBITUBA"
                },
                {
                    "id": 8529,
                    "nome": "MARAVILHA, SC",
                    "municipio": "MARAVILHA"
                },
                {
                    "id": 8530,
                    "nome": "MAURO RAMOS, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 8531,
                    "nome": "ORLEANS, SC",
                    "municipio": "ORLEANS"
                },
                {
                    "id": 8532,
                    "nome": "CATAGUASES, MG",
                    "municipio": "CATAGUASES"
                },
                {
                    "id": 8533,
                    "nome": "PALMITOS, SC",
                    "municipio": "PALMITOS"
                },
                {
                    "id": 8534,
                    "nome": "RIO NEGRINHO, SC",
                    "municipio": "RIO NEGRINHO"
                },
                {
                    "id": 8535,
                    "nome": "SAO JOAQUIM, SC",
                    "municipio": "SAO JOAQUIM"
                },
                {
                    "id": 8536,
                    "nome": "ITAQUI BACANGA, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 8537,
                    "nome": "TURVO, SC",
                    "municipio": "TURVO"
                },
                {
                    "id": 8538,
                    "nome": "XAXIM, SC",
                    "municipio": "XAXIM"
                },
                {
                    "id": 8539,
                    "nome": "ITAQUERA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8540,
                    "nome": "HEITOR PENTEADO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8541,
                    "nome": "AGUAS LINDAS SHOPPING, GO",
                    "municipio": "AGUAS LINDAS DE GOIAS"
                },
                {
                    "id": 8542,
                    "nome": "CAUCAIA, CE",
                    "municipio": "CAUCAIA"
                },
                {
                    "id": 8543,
                    "nome": "CAXAMBU, MG",
                    "municipio": "CAXAMBU"
                },
                {
                    "id": 8544,
                    "nome": "COIMBRA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 8545,
                    "nome": "MUZAMBINHO, MG",
                    "municipio": "MUZAMBINHO"
                },
                {
                    "id": 8546,
                    "nome": "PAVUNA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8547,
                    "nome": "INHAUMA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8548,
                    "nome": "BALNEARIO PICARRAS, SC",
                    "municipio": "BALNEARIO PICARRAS"
                },
                {
                    "id": 8549,
                    "nome": "MONTESE, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8550,
                    "nome": "CONCEICAO DO RIO VERDE, MG",
                    "municipio": "CONCEICAO DO RIO VERDE"
                },
                {
                    "id": 8551,
                    "nome": "AREIA, PB",
                    "municipio": "AREIA"
                },
                {
                    "id": 8552,
                    "nome": "GOIANINHA, RN",
                    "municipio": "GOIANINHA"
                },
                {
                    "id": 8553,
                    "nome": "ITUPORANGA, SC",
                    "municipio": "ITUPORANGA"
                },
                {
                    "id": 8554,
                    "nome": "MAIRIPORA, SP",
                    "municipio": "MAIRIPORA"
                },
                {
                    "id": 8555,
                    "nome": "SANTA RITA DO PASSA QUATRO, SP",
                    "municipio": "SANTA RITA DO PASSA QUATRO"
                },
                {
                    "id": 8556,
                    "nome": "PAJUCARA, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 8557,
                    "nome": "COXIM, MS",
                    "municipio": "COXIM"
                },
                {
                    "id": 8558,
                    "nome": "AV BANDEIRANTES, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 8559,
                    "nome": "CURVELO, MG",
                    "municipio": "CURVELO"
                },
                {
                    "id": 8560,
                    "nome": "BATURITE, CE",
                    "municipio": "BATURITE"
                },
                {
                    "id": 8561,
                    "nome": "ARACRUZ, ES",
                    "municipio": "ARACRUZ"
                },
                {
                    "id": 8562,
                    "nome": "CONCEICAO DA BARRA, ES",
                    "municipio": "CONCEICAO DA BARRA"
                },
                {
                    "id": 8563,
                    "nome": "JOAO NEIVA, ES",
                    "municipio": "JOAO NEIVA"
                },
                {
                    "id": 8564,
                    "nome": "IUNA, ES",
                    "municipio": "IUNA"
                },
                {
                    "id": 8565,
                    "nome": "COLINAS DO TOCANTINS, TO",
                    "municipio": "COLINAS DO TOCANTINS"
                },
                {
                    "id": 8566,
                    "nome": "ACAILANDIA, MA",
                    "municipio": "ACAILANDIA"
                },
                {
                    "id": 8567,
                    "nome": "DIAMANTINA, MG",
                    "municipio": "DIAMANTINA"
                },
                {
                    "id": 8568,
                    "nome": "MONTE ALEGRE DE MINAS, MG",
                    "municipio": "MONTE ALEGRE DE MINAS"
                },
                {
                    "id": 8569,
                    "nome": "RIO POMBA, MG",
                    "municipio": "RIO POMBA"
                },
                {
                    "id": 8570,
                    "nome": "SANTA VITORIA, MG",
                    "municipio": "SANTA VITORIA"
                },
                {
                    "id": 8571,
                    "nome": "IBIPORA, PR",
                    "municipio": "IBIPORA"
                },
                {
                    "id": 8572,
                    "nome": "NOVA PETROPOLIS, RS",
                    "municipio": "NOVA PETROPOLIS"
                },
                {
                    "id": 8573,
                    "nome": "DIVINOPOLIS, MG",
                    "municipio": "DIVINOPOLIS"
                },
                {
                    "id": 8574,
                    "nome": "SAO MARCOS, RS",
                    "municipio": "SAO MARCOS"
                },
                {
                    "id": 8575,
                    "nome": "TEIXEIRA DE FREITAS, BA",
                    "municipio": "TEIXEIRA DE FREITAS"
                },
                {
                    "id": 8576,
                    "nome": "VICOSA DE ALAGOAS, AL",
                    "municipio": "VICOSA"
                },
                {
                    "id": 8577,
                    "nome": "PORTO CALVO, AL",
                    "municipio": "PORTO CALVO"
                },
                {
                    "id": 8578,
                    "nome": "DELMIRO GOUVEIA, AL",
                    "municipio": "DELMIRO GOUVEIA"
                },
                {
                    "id": 8579,
                    "nome": "COHATRAC, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 8580,
                    "nome": "ITAMARAJU, BA",
                    "municipio": "ITAMARAJU"
                },
                {
                    "id": 8581,
                    "nome": "ELOI MENDES, MG",
                    "municipio": "ELOI MENDES"
                },
                {
                    "id": 8582,
                    "nome": "JARAGUA, GO",
                    "municipio": "JARAGUA"
                },
                {
                    "id": 8583,
                    "nome": "PARAISO DO TOCANTINS, TO",
                    "municipio": "PARAISO DO TOCANTINS"
                },
                {
                    "id": 8584,
                    "nome": "BARRA DO BUGRES, MT",
                    "municipio": "BARRA DO BUGRES"
                },
                {
                    "id": 8585,
                    "nome": "JARDIM, MS",
                    "municipio": "JARDIM"
                },
                {
                    "id": 8586,
                    "nome": "FATIMA DO SUL, MS",
                    "municipio": "FATIMA DO SUL"
                },
                {
                    "id": 8587,
                    "nome": "PORECATU, PR",
                    "municipio": "PORECATU"
                },
                {
                    "id": 8588,
                    "nome": "BELO HORIZONTE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 8589,
                    "nome": "FORMIGA, MG",
                    "municipio": "FORMIGA"
                },
                {
                    "id": 8590,
                    "nome": "TRES COROAS, RS",
                    "municipio": "TRES COROAS"
                },
                {
                    "id": 8591,
                    "nome": "JACUHY, RS",
                    "municipio": "SOBRADINHO"
                },
                {
                    "id": 8592,
                    "nome": "RESTINGA SECA, RS",
                    "municipio": "RESTINGA SECA"
                },
                {
                    "id": 8593,
                    "nome": "AGUDOS, SP",
                    "municipio": "AGUDOS"
                },
                {
                    "id": 8594,
                    "nome": "AV IBIRAPUERA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8595,
                    "nome": "LUCELIA, SP",
                    "municipio": "LUCELIA"
                },
                {
                    "id": 8596,
                    "nome": "GOVERNADOR VALADARES, MG",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 8597,
                    "nome": "PARQUE PRADO, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 8598,
                    "nome": "RIO DAS PEDRAS, SP",
                    "municipio": "RIO DAS PEDRAS"
                },
                {
                    "id": 8599,
                    "nome": "CAJURU, SP",
                    "municipio": "CAJURU"
                },
                {
                    "id": 8600,
                    "nome": "PARI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8601,
                    "nome": "SERRA NEGRA, SP",
                    "municipio": "SERRA NEGRA"
                },
                {
                    "id": 8602,
                    "nome": "GUAXUPE, MG",
                    "municipio": "GUAXUPE"
                },
                {
                    "id": 8603,
                    "nome": "URUPES, SP",
                    "municipio": "URUPES"
                },
                {
                    "id": 8604,
                    "nome": "MORRO AGUDO, SP",
                    "municipio": "MORRO AGUDO"
                },
                {
                    "id": 8605,
                    "nome": "FARTURA, SP",
                    "municipio": "FARTURA"
                },
                {
                    "id": 8606,
                    "nome": "JOSE BONIFACIO, SP",
                    "municipio": "JOSE BONIFACIO"
                },
                {
                    "id": 8607,
                    "nome": "SOCORRO, SP",
                    "municipio": "SOCORRO"
                },
                {
                    "id": 8608,
                    "nome": "AGUAS DE LINDOIA, SP",
                    "municipio": "AGUAS DE LINDOIA"
                },
                {
                    "id": 8609,
                    "nome": "HORTO DE IPATINGA, MG",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 8610,
                    "nome": "COLINA, SP",
                    "municipio": "COLINA"
                },
                {
                    "id": 8611,
                    "nome": "PITANGUEIRAS, SP",
                    "municipio": "PITANGUEIRAS"
                },
                {
                    "id": 8612,
                    "nome": "VINHEDO, SP",
                    "municipio": "VINHEDO"
                },
                {
                    "id": 8613,
                    "nome": "ARUJA, SP",
                    "municipio": "ARUJA"
                },
                {
                    "id": 8614,
                    "nome": "BASTOS, SP",
                    "municipio": "BASTOS"
                },
                {
                    "id": 8615,
                    "nome": "CAMPO LIMPO PAULISTA, SP",
                    "municipio": "CAMPO LIMPO PAULISTA"
                },
                {
                    "id": 8616,
                    "nome": "ITABIRA, MG",
                    "municipio": "ITABIRA"
                },
                {
                    "id": 8617,
                    "nome": "CANDIDO MOTA, SP",
                    "municipio": "CANDIDO MOTA"
                },
                {
                    "id": 8618,
                    "nome": "COSMOPOLIS, SP",
                    "municipio": "COSMOPOLIS"
                },
                {
                    "id": 8619,
                    "nome": "FERRAZ DE VASCONCELOS, SP",
                    "municipio": "FERRAZ DE VASCONCELOS"
                },
                {
                    "id": 8620,
                    "nome": "JARDINOPOLIS, SP",
                    "municipio": "JARDINOPOLIS"
                },
                {
                    "id": 8621,
                    "nome": "PALMITAL, SP",
                    "municipio": "PALMITAL"
                },
                {
                    "id": 8622,
                    "nome": "SANTA CRUZ DAS PALMEIRAS, SP",
                    "municipio": "SANTA CRUZ DAS PALMEIRAS"
                },
                {
                    "id": 8623,
                    "nome": "SANTA ISABEL, SP",
                    "municipio": "SANTA ISABEL"
                },
                {
                    "id": 8624,
                    "nome": "ANHANGUERA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 8625,
                    "nome": "ITABIRITO, MG",
                    "municipio": "ITABIRITO"
                },
                {
                    "id": 8626,
                    "nome": "SAO PEDRO, SP",
                    "municipio": "SAO PEDRO"
                },
                {
                    "id": 8627,
                    "nome": "VARGEM GRANDE DO SUL, SP",
                    "municipio": "VARGEM GRANDE DO SUL"
                },
                {
                    "id": 8628,
                    "nome": "CIDADE DE GUAIRA, SP",
                    "municipio": "GUAIRA"
                },
                {
                    "id": 8629,
                    "nome": "JAGUARIUNA, SP",
                    "municipio": "JAGUARIUNA"
                },
                {
                    "id": 8630,
                    "nome": "POMPEIA, SP",
                    "municipio": "POMPEIA"
                },
                {
                    "id": 8631,
                    "nome": "UTINGA, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 8632,
                    "nome": "MAGNOLIA, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 8633,
                    "nome": "APARECIDA, SP",
                    "municipio": "APARECIDA"
                },
                {
                    "id": 8634,
                    "nome": "BARRA BONITA, SP",
                    "municipio": "BARRA BONITA"
                },
                {
                    "id": 8635,
                    "nome": "ITAJUBA, MG",
                    "municipio": "ITAJUBA"
                },
                {
                    "id": 8636,
                    "nome": "GUARARAPES, SP",
                    "municipio": "GUARARAPES"
                },
                {
                    "id": 8637,
                    "nome": "MORAES SALES, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 8638,
                    "nome": "CAPAO BONITO, SP",
                    "municipio": "CAPAO BONITO"
                },
                {
                    "id": 8639,
                    "nome": "CERQUILHO, SP",
                    "municipio": "CERQUILHO"
                },
                {
                    "id": 8640,
                    "nome": "PINDORAMA, SP",
                    "municipio": "PINDORAMA"
                },
                {
                    "id": 8641,
                    "nome": "VILA GERTY, SP",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 8642,
                    "nome": "VILA NOVA CONCEICAO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8643,
                    "nome": "ITANHANDU, MG",
                    "municipio": "ITANHANDU"
                },
                {
                    "id": 8644,
                    "nome": "LARANJAL PAULISTA, SP",
                    "municipio": "LARANJAL PAULISTA"
                },
                {
                    "id": 8645,
                    "nome": "BUTANTA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8646,
                    "nome": "JACUPIRANGA, SP",
                    "municipio": "JACUPIRANGA"
                },
                {
                    "id": 8647,
                    "nome": "IRACEMAPOLIS, SP",
                    "municipio": "IRACEMAPOLIS"
                },
                {
                    "id": 8648,
                    "nome": "EMBU DAS ARTES, SP",
                    "municipio": "EMBU DAS ARTES"
                },
                {
                    "id": 8649,
                    "nome": "MONTE MOR, SP",
                    "municipio": "MONTE MOR"
                },
                {
                    "id": 8650,
                    "nome": "ITAPEVI, SP",
                    "municipio": "ITAPEVI"
                },
                {
                    "id": 8651,
                    "nome": "ITAPECERICA, MG",
                    "municipio": "ITAPECERICA"
                },
                {
                    "id": 8652,
                    "nome": "AROUCHE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8653,
                    "nome": "BARRA FUNDA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8654,
                    "nome": "GONZAGA, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 8655,
                    "nome": "PONTE RASA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8656,
                    "nome": "PRATA, MG",
                    "municipio": "PRATA"
                },
                {
                    "id": 8657,
                    "nome": "DOM JOAO VI, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8658,
                    "nome": "URUANA, GO",
                    "municipio": "URUANA"
                },
                {
                    "id": 8659,
                    "nome": "VILA BOA DE GOIAS, GO",
                    "municipio": "GOIAS"
                },
                {
                    "id": 8660,
                    "nome": "IPAMERI, GO",
                    "municipio": "IPAMERI"
                },
                {
                    "id": 8661,
                    "nome": "ITAUNA, MG",
                    "municipio": "ITAUNA"
                },
                {
                    "id": 8662,
                    "nome": "JUSSARA, GO",
                    "municipio": "JUSSARA"
                },
                {
                    "id": 8663,
                    "nome": "TRINDADE, GO",
                    "municipio": "TRINDADE"
                },
                {
                    "id": 8664,
                    "nome": "CARPINA, PE",
                    "municipio": "CARPINA"
                },
                {
                    "id": 8665,
                    "nome": "12420",
                    "municipio": ""
                },
                {
                    "id": 8666,
                    "nome": "Ag�ncia 12421",
                    "municipio": ""
                },
                {
                    "id": 8667,
                    "nome": "SAO PEDRO DA ALDEIA, RJ",
                    "municipio": "SAO PEDRO DA ALDEIA"
                },
                {
                    "id": 8668,
                    "nome": "MARICA, RJ",
                    "municipio": "MARICA"
                },
                {
                    "id": 8669,
                    "nome": "ITAOCARA, RJ",
                    "municipio": "ITAOCARA"
                },
                {
                    "id": 8670,
                    "nome": "NATIVIDADE, RJ",
                    "municipio": "NATIVIDADE"
                },
                {
                    "id": 8671,
                    "nome": "SAO FRANCISCO, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 8672,
                    "nome": "JACIARA, MT",
                    "municipio": "JACIARA"
                },
                {
                    "id": 8673,
                    "nome": "ITUIUTABA, MG",
                    "municipio": "ITUIUTABA"
                },
                {
                    "id": 8674,
                    "nome": "INHUMAS, GO",
                    "municipio": "INHUMAS"
                },
                {
                    "id": 8675,
                    "nome": "ITAPURANGA, GO",
                    "municipio": "ITAPURANGA"
                },
                {
                    "id": 8676,
                    "nome": "PALMEIRAS DE GOIAS, GO",
                    "municipio": "PALMEIRAS DE GOIAS"
                },
                {
                    "id": 8677,
                    "nome": "SANTA HELENA DE GOIAS, GO",
                    "municipio": "SANTA HELENA DE GOIAS"
                },
                {
                    "id": 8678,
                    "nome": "VIANA, ES",
                    "municipio": "VIANA"
                },
                {
                    "id": 8679,
                    "nome": "CAPANEMA DO PARANA, PR",
                    "municipio": "CAPANEMA"
                },
                {
                    "id": 8680,
                    "nome": "MANCHESTER, MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 8681,
                    "nome": "COLORADO, PR",
                    "municipio": "COLORADO"
                },
                {
                    "id": 8682,
                    "nome": "CORBELIA, PR",
                    "municipio": "CORBELIA"
                },
                {
                    "id": 8683,
                    "nome": "JANDAIA DO SUL, PR",
                    "municipio": "JANDAIA DO SUL"
                },
                {
                    "id": 8684,
                    "nome": "MAMBORE, PR",
                    "municipio": "MAMBORE"
                },
                {
                    "id": 8685,
                    "nome": "GRALHA AZUL, PR",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 8686,
                    "nome": "MARIALVA, PR",
                    "municipio": "MARIALVA"
                },
                {
                    "id": 8687,
                    "nome": "SANTA HELENA, PR",
                    "municipio": "SANTA HELENA"
                },
                {
                    "id": 8688,
                    "nome": "CONSELHEIRO LAFAIETE, MG",
                    "municipio": "CONSELHEIRO LAFAIETE"
                },
                {
                    "id": 8689,
                    "nome": "1271",
                    "municipio": ""
                },
                {
                    "id": 8690,
                    "nome": "ANTONIO PRADO, RS",
                    "municipio": "ANTONIO PRADO"
                },
                {
                    "id": 8691,
                    "nome": "LAMBARI, MG",
                    "municipio": "LAMBARI"
                },
                {
                    "id": 8692,
                    "nome": "PRACA DO CARMO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 8693,
                    "nome": "OURO VERDE, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 8694,
                    "nome": "SEMINARIO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 8695,
                    "nome": "REALEZA, PR",
                    "municipio": "REALEZA"
                },
                {
                    "id": 8696,
                    "nome": "OUROESTE, SP",
                    "municipio": "OUROESTE"
                },
                {
                    "id": 8697,
                    "nome": "Ag�ncia 12880",
                    "municipio": ""
                },
                {
                    "id": 8698,
                    "nome": "12888",
                    "municipio": ""
                },
                {
                    "id": 8699,
                    "nome": "LAVRAS, MG",
                    "municipio": "LAVRAS"
                },
                {
                    "id": 8700,
                    "nome": "AGUDO, RS",
                    "municipio": "AGUDO"
                },
                {
                    "id": 8701,
                    "nome": "TEATRO MARROCOS, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 8702,
                    "nome": "SURUBIM, PE",
                    "municipio": "SURUBIM"
                },
                {
                    "id": 8703,
                    "nome": "Ag�ncia 12950",
                    "municipio": ""
                },
                {
                    "id": 8704,
                    "nome": "SAO JOSE DO EGITO, PE",
                    "municipio": "SAO JOSE DO EGITO"
                },
                {
                    "id": 8705,
                    "nome": "12960",
                    "municipio": ""
                },
                {
                    "id": 8706,
                    "nome": "12961",
                    "municipio": ""
                },
                {
                    "id": 8707,
                    "nome": "211 NORTE, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8708,
                    "nome": "CERES, GO",
                    "municipio": "CERES"
                },
                {
                    "id": 8709,
                    "nome": "24 DE OUTUBRO, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 8710,
                    "nome": "SHOPPING GRANDE CIRCULAR, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 8711,
                    "nome": "EDUCANDOS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 8712,
                    "nome": "ESTRELA D OESTE, SP",
                    "municipio": "ESTRELA D'OESTE"
                },
                {
                    "id": 8713,
                    "nome": "BARREIRA GRANDE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8714,
                    "nome": "IBICARAI, BA",
                    "municipio": "IBICARAI"
                },
                {
                    "id": 8715,
                    "nome": "VENDA NOVA DO IMIGRANTE, ES",
                    "municipio": "VENDA NOVA DO IMIGRANTE"
                },
                {
                    "id": 8716,
                    "nome": "SAO LUIS, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 8717,
                    "nome": "BARRA DO GARCAS, MT",
                    "municipio": "BARRA DO GARCAS"
                },
                {
                    "id": 8718,
                    "nome": "MANHUACU, MG",
                    "municipio": "MANHUACU"
                },
                {
                    "id": 8719,
                    "nome": "IVINHEMA, MS",
                    "municipio": "IVINHEMA"
                },
                {
                    "id": 8720,
                    "nome": "MARACAJU, MS",
                    "municipio": "MARACAJU"
                },
                {
                    "id": 8721,
                    "nome": "SAO BRAZ, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 8722,
                    "nome": "CABANAGEM, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 8723,
                    "nome": "BATEL, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 8724,
                    "nome": "ASTORGA, PR",
                    "municipio": "ASTORGA"
                },
                {
                    "id": 8725,
                    "nome": "PALMAS, PR",
                    "municipio": "PALMAS"
                },
                {
                    "id": 8726,
                    "nome": "MONTES CLAROS, MG",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 8727,
                    "nome": "NOSSA SENHORA DA PAZ, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8728,
                    "nome": "CATETE, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8729,
                    "nome": "MURIAE, MG",
                    "municipio": "MURIAE"
                },
                {
                    "id": 8730,
                    "nome": "SHOPPING VIA BRASIL, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8731,
                    "nome": "SAO FRANCISCO DO ITABAPOANA, RJ",
                    "municipio": "SAO FRANCISCO DE ITABAPOANA"
                },
                {
                    "id": 8732,
                    "nome": "BACAXA, RJ",
                    "municipio": "SAQUAREMA"
                },
                {
                    "id": 8733,
                    "nome": "25 DE AGOSTO, RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 8734,
                    "nome": "MIRACEMA, RJ",
                    "municipio": "MIRACEMA"
                },
                {
                    "id": 8735,
                    "nome": "PARACAMBI, RJ",
                    "municipio": "PARACAMBI"
                },
                {
                    "id": 8736,
                    "nome": "FONSECA, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 8737,
                    "nome": "IPORA, GO",
                    "municipio": "IPORA"
                },
                {
                    "id": 8738,
                    "nome": "GAVEA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8739,
                    "nome": "NOVA LIMA, MG",
                    "municipio": "NOVA LIMA"
                },
                {
                    "id": 8740,
                    "nome": "SERRA DOURADA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 8741,
                    "nome": "RUA NELSON MANDELA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8742,
                    "nome": "BARRA DA TIJUCA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8743,
                    "nome": "BAIA NORTE, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 8744,
                    "nome": "ESTACAO SAO JOAQUIM, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8745,
                    "nome": "OLIVEIRA, MG",
                    "municipio": "OLIVEIRA"
                },
                {
                    "id": 8746,
                    "nome": "LOUVEIRA, SP",
                    "municipio": "LOUVEIRA"
                },
                {
                    "id": 8747,
                    "nome": "ROCHDALE, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 8748,
                    "nome": "TAMBAU, SP",
                    "municipio": "TAMBAU"
                },
                {
                    "id": 8749,
                    "nome": "MONTE AZUL PAULISTA, SP",
                    "municipio": "MONTE AZUL PAULISTA"
                },
                {
                    "id": 8750,
                    "nome": "CIDADE DE MIRANDOPOLIS, SP",
                    "municipio": "MIRANDOPOLIS"
                },
                {
                    "id": 8751,
                    "nome": "SAO SEBASTIAO, SP",
                    "municipio": "SAO SEBASTIAO"
                },
                {
                    "id": 8752,
                    "nome": "CRAVINHOS, SP",
                    "municipio": "CRAVINHOS"
                },
                {
                    "id": 8753,
                    "nome": "SAO PEDRO DO SUL, RS",
                    "municipio": "SAO PEDRO DO SUL"
                },
                {
                    "id": 8754,
                    "nome": "OURO PRETO, MG",
                    "municipio": "OURO PRETO"
                },
                {
                    "id": 8755,
                    "nome": "JARDIM EUROPA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8756,
                    "nome": "SANTO ANASTACIO, SP",
                    "municipio": "SANTO ANASTACIO"
                },
                {
                    "id": 8757,
                    "nome": "CAMPO LIMPO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8758,
                    "nome": "UFSM, RS",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 8759,
                    "nome": "JABAQUARA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8760,
                    "nome": "IMIRIM, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8761,
                    "nome": "PARA DE MINAS, MG",
                    "municipio": "PARA DE MINAS"
                },
                {
                    "id": 8762,
                    "nome": "JARDIM PAULISTA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8763,
                    "nome": "VILA NOVA CACHOEIRINHA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8764,
                    "nome": "CLELIA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8765,
                    "nome": "METRO SANTA CRUZ, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8766,
                    "nome": "VILA PARANAGUA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8767,
                    "nome": "DOIS IRMAOS, RS",
                    "municipio": "DOIS IRMAOS"
                },
                {
                    "id": 8768,
                    "nome": "CASCA, RS",
                    "municipio": "CASCA"
                },
                {
                    "id": 8769,
                    "nome": "PARACATU, MG",
                    "municipio": "PARACATU"
                },
                {
                    "id": 8770,
                    "nome": "LAGOA DA PRATA, MG",
                    "municipio": "LAGOA DA PRATA"
                },
                {
                    "id": 8771,
                    "nome": "OEIRAS, PI",
                    "municipio": "OEIRAS"
                },
                {
                    "id": 8772,
                    "nome": "ITAPEMIRIM, ES",
                    "municipio": "ITAPEMIRIM"
                },
                {
                    "id": 8773,
                    "nome": "ALTA FLORESTA, MT",
                    "municipio": "ALTA FLORESTA"
                },
                {
                    "id": 8774,
                    "nome": "AUGUSTO MONTENEGRO, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 8775,
                    "nome": "PARAGUACU, MG",
                    "municipio": "PARAGUACU"
                },
                {
                    "id": 8776,
                    "nome": "PAROBE, RS",
                    "municipio": "PAROBE"
                },
                {
                    "id": 8777,
                    "nome": "SAO JOSE DE RIBAMAR, MA",
                    "municipio": "SAO JOSE DE RIBAMAR"
                },
                {
                    "id": 8778,
                    "nome": "ADILSON SEABRA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 8779,
                    "nome": "ITAPERUCU, PR",
                    "municipio": "ITAPERUCU"
                },
                {
                    "id": 8780,
                    "nome": "TRT BRASILIA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8781,
                    "nome": "ANAPOLIS, GO",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 8782,
                    "nome": "PASSA QUATRO, MG",
                    "municipio": "PASSA QUATRO"
                },
                {
                    "id": 8783,
                    "nome": "VILA ADYANA, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 8784,
                    "nome": "AREINHA, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 8785,
                    "nome": "1406",
                    "municipio": ""
                },
                {
                    "id": 8786,
                    "nome": "PASSOS, MG",
                    "municipio": "PASSOS"
                },
                {
                    "id": 8787,
                    "nome": "RIO NORTE, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8788,
                    "nome": "METRO ARMENIA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8789,
                    "nome": "CIDADE DOS AZULEJOS, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 8790,
                    "nome": "RELOGIO DE SAO PEDRO, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8791,
                    "nome": "PATOS DE MINAS, MG",
                    "municipio": "PATOS DE MINAS"
                },
                {
                    "id": 8792,
                    "nome": "AVENTUREIRO, SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 8793,
                    "nome": "1421",
                    "municipio": ""
                },
                {
                    "id": 8794,
                    "nome": "Ag�ncia 14210",
                    "municipio": ""
                },
                {
                    "id": 8795,
                    "nome": "BETANIA, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 8796,
                    "nome": "IPU, CE",
                    "municipio": "IPU"
                },
                {
                    "id": 8797,
                    "nome": "PIUMHI, MG",
                    "municipio": "PIUMHI"
                },
                {
                    "id": 8798,
                    "nome": "POMPEU, MG",
                    "municipio": "POMPEU"
                },
                {
                    "id": 8799,
                    "nome": "PATROCINIO, MG",
                    "municipio": "PATROCINIO"
                },
                {
                    "id": 8800,
                    "nome": "MINISTERIO DA FAZENDA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8801,
                    "nome": "AFOGADOS DA INGAZEIRA, PE",
                    "municipio": "AFOGADOS DA INGAZEIRA"
                },
                {
                    "id": 8802,
                    "nome": "14330",
                    "municipio": ""
                },
                {
                    "id": 8803,
                    "nome": "14331",
                    "municipio": ""
                },
                {
                    "id": 8804,
                    "nome": "14332",
                    "municipio": ""
                },
                {
                    "id": 8805,
                    "nome": "14338",
                    "municipio": ""
                },
                {
                    "id": 8806,
                    "nome": "ESTACAO MARECHAL, ES",
                    "municipio": "MARECHAL FLORIANO"
                },
                {
                    "id": 8807,
                    "nome": "POCOES, BA",
                    "municipio": "POCOES"
                },
                {
                    "id": 8808,
                    "nome": "MATOZINHOS, MG",
                    "municipio": "MATOZINHOS"
                },
                {
                    "id": 8809,
                    "nome": "ALVORADA, RS",
                    "municipio": "ALVORADA"
                },
                {
                    "id": 8810,
                    "nome": "PERUIBE, SP",
                    "municipio": "PERUIBE"
                },
                {
                    "id": 8811,
                    "nome": "MUCUM, RS",
                    "municipio": "MUCUM"
                },
                {
                    "id": 8812,
                    "nome": "PEDRO LEOPOLDO, MG",
                    "municipio": "PEDRO LEOPOLDO"
                },
                {
                    "id": 8813,
                    "nome": "BOM SUCESSO, MG",
                    "municipio": "BOM SUCESSO"
                },
                {
                    "id": 8814,
                    "nome": "CAETE, MG",
                    "municipio": "CAETE"
                },
                {
                    "id": 8815,
                    "nome": "CALDAS, MG",
                    "municipio": "CALDAS"
                },
                {
                    "id": 8816,
                    "nome": "PERDOES, MG",
                    "municipio": "PERDOES"
                },
                {
                    "id": 8817,
                    "nome": "VERDES CAMPOS, PR",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 8818,
                    "nome": "CONCEICAO DO COITE, BA",
                    "municipio": "CONCEICAO DO COITE"
                },
                {
                    "id": 8819,
                    "nome": "SETE PORTAS, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8820,
                    "nome": "POCOS DE CALDAS, MG",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 8821,
                    "nome": "ESTRADA DAS BARREIRAS, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8822,
                    "nome": "PAINEIRAS, SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 8823,
                    "nome": "UFPB, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 8824,
                    "nome": "TEATRO AMAZONAS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 8825,
                    "nome": "BARRA BUSINESS, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8826,
                    "nome": "PONTE NOVA, MG",
                    "municipio": "PONTE NOVA"
                },
                {
                    "id": 8827,
                    "nome": "LAGOA SANTA, MG",
                    "municipio": "LAGOA SANTA"
                },
                {
                    "id": 8828,
                    "nome": "NOVA ERA, MG",
                    "municipio": "NOVA ERA"
                },
                {
                    "id": 8829,
                    "nome": "TIMOTEO, MG",
                    "municipio": "TIMOTEO"
                },
                {
                    "id": 8830,
                    "nome": "PANTANAL, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 8831,
                    "nome": "CONJUNTO CEARA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 8832,
                    "nome": "POUSO ALEGRE, MG",
                    "municipio": "POUSO ALEGRE"
                },
                {
                    "id": 8833,
                    "nome": "CAMANDUCAIA, MG",
                    "municipio": "CAMANDUCAIA"
                },
                {
                    "id": 8834,
                    "nome": "RIO CASCA, MG",
                    "municipio": "RIO CASCA"
                },
                {
                    "id": 8835,
                    "nome": "SANTA BARBARA, MG",
                    "municipio": "SANTA BARBARA"
                },
                {
                    "id": 8836,
                    "nome": "SAN REMO, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 8837,
                    "nome": "SANTANA DO JACARE, MG",
                    "municipio": "SANTANA DO JACARE"
                },
                {
                    "id": 8838,
                    "nome": "AGUA VERDE, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 8839,
                    "nome": "ELIAS FAUSTO, SP",
                    "municipio": "ELIAS FAUSTO"
                },
                {
                    "id": 8840,
                    "nome": "SAMPA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8841,
                    "nome": "NOVA BASSANO, RS",
                    "municipio": "NOVA BASSANO"
                },
                {
                    "id": 8842,
                    "nome": "IBIRITE, MG",
                    "municipio": "IBIRITE"
                },
                {
                    "id": 8843,
                    "nome": "PIRAPETINGA, MG",
                    "municipio": "PIRAPETINGA"
                },
                {
                    "id": 8844,
                    "nome": "BICAS, MG",
                    "municipio": "BICAS"
                },
                {
                    "id": 8845,
                    "nome": "SANTOS DUMONT, MG",
                    "municipio": "SANTOS DUMONT"
                },
                {
                    "id": 8846,
                    "nome": "INHAPIM, MG",
                    "municipio": "INHAPIM"
                },
                {
                    "id": 8847,
                    "nome": "13 DE JUNHO, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 8848,
                    "nome": "CAMINHO DE AREIA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8849,
                    "nome": "MASSARANDUBA, SC",
                    "municipio": "MASSARANDUBA"
                },
                {
                    "id": 8850,
                    "nome": "ITUMBIARA, GO",
                    "municipio": "ITUMBIARA"
                },
                {
                    "id": 8851,
                    "nome": "SAO GONCALO DO SAPUCAI, MG",
                    "municipio": "SAO GONCALO DO SAPUCAI"
                },
                {
                    "id": 8852,
                    "nome": "AUGUSTO LEITE, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 8853,
                    "nome": "SUDOESTE, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8854,
                    "nome": "CIDADE DO ACO, RJ",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 8855,
                    "nome": "JOSE CLEMENTE, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 8856,
                    "nome": "TRT SALVADOR, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8857,
                    "nome": "SAO JOAO DEL REI, MG",
                    "municipio": "SAO JOAO DEL REI"
                },
                {
                    "id": 8858,
                    "nome": "SHOPPING ITAIGARA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8859,
                    "nome": "SIG, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8860,
                    "nome": "CIDADELA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8861,
                    "nome": "RIO VERMELHO, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8862,
                    "nome": "SAO LOURENCO, MG",
                    "municipio": "SAO LOURENCO"
                },
                {
                    "id": 8863,
                    "nome": "PORTO DA BARRA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8864,
                    "nome": "PRACA DEODORO, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 8865,
                    "nome": "SHOPPING PIEDADE, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 8866,
                    "nome": "SANTA CRUZ CABRALIA, BA",
                    "municipio": "SANTA CRUZ CABRALIA"
                },
                {
                    "id": 8867,
                    "nome": "BIGORRILHO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 8868,
                    "nome": "CANDIDO DE ABREU, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 8869,
                    "nome": "PEDRA GRANDE, SP",
                    "municipio": "ATIBAIA"
                },
                {
                    "id": 8870,
                    "nome": "VALE VERDE, MG",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 8871,
                    "nome": "SAO SEBASTIAO DO PARAISO, MG",
                    "municipio": "SAO SEBASTIAO DO PARAISO"
                },
                {
                    "id": 8872,
                    "nome": "LUXEMBURGO, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 8873,
                    "nome": "AV CASPER LIBERO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8874,
                    "nome": "CARMO-SION, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 8875,
                    "nome": "MINAS TENIS, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 8876,
                    "nome": "FIDELIS REIS, MG",
                    "municipio": "UBERABA"
                },
                {
                    "id": 8877,
                    "nome": "MANOEL HONORIO, MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 8878,
                    "nome": "MARTINS, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 8879,
                    "nome": "SAO BENEDITO, MG",
                    "municipio": "UBERABA"
                },
                {
                    "id": 8880,
                    "nome": "AMERICA, ES",
                    "municipio": "CARIACICA"
                },
                {
                    "id": 8881,
                    "nome": "SETE LAGOAS, MG",
                    "municipio": "SETE LAGOAS"
                },
                {
                    "id": 8882,
                    "nome": "SAO SILVANO, ES",
                    "municipio": "COLATINA"
                },
                {
                    "id": 8883,
                    "nome": "VERDE VALE, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 8884,
                    "nome": "GRACILIANO RAMOS, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 8885,
                    "nome": "CIDADE CANCAO, PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 8886,
                    "nome": "PRINCESA DOS CAMPOS, PR",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 8887,
                    "nome": "PARQUE DEZ, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 8888,
                    "nome": "AMAZONAS SHOPPING, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 8889,
                    "nome": "TEOFILO OTONI, MG",
                    "municipio": "TEOFILO OTONI"
                },
                {
                    "id": 8890,
                    "nome": "PRACA DO TRABALHADOR, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 8891,
                    "nome": "PRACA DO AVIAO, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 8892,
                    "nome": "PRACA DO MIGRANTE, PR",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 8893,
                    "nome": "IGAPO, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 8894,
                    "nome": "COLON, SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 8895,
                    "nome": "CORONEL AMERICO, SC",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 8896,
                    "nome": "CNB 12, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 8897,
                    "nome": "MACEIO, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 8898,
                    "nome": "GRAPIUNA, BA",
                    "municipio": "ITABUNA"
                },
                {
                    "id": 8899,
                    "nome": "TERRA DA LUZ, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 8900,
                    "nome": "TRES CORACOES, MG",
                    "municipio": "TRES CORACOES"
                },
                {
                    "id": 8901,
                    "nome": "NAUTICO, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 8902,
                    "nome": "PARANGABA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 8903,
                    "nome": "JARDIM DA PENHA, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 8904,
                    "nome": "CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 8905,
                    "nome": "ITINGUCU, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8906,
                    "nome": "BARAO DO RIO BRANCO, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 8907,
                    "nome": "PRAINHA, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 8908,
                    "nome": "TRES PONTAS, MG",
                    "municipio": "TRES PONTAS"
                },
                {
                    "id": 8909,
                    "nome": "PAES DE BARROS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8910,
                    "nome": "PARAISO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8911,
                    "nome": "GRAND PLAZA SHOPPING, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 8912,
                    "nome": "FLAMBOYANT, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 8913,
                    "nome": "COHAB, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 8914,
                    "nome": "CONCEICAO DOS MULATOS, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 8915,
                    "nome": "MUSEU EMILIO GOELDI, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 8916,
                    "nome": "TUPACIGUARA, MG",
                    "municipio": "TUPACIGUARA"
                },
                {
                    "id": 8917,
                    "nome": "PRAIA DA PIEDADE, PE",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 8918,
                    "nome": "JANGA, PE",
                    "municipio": "PAULISTA"
                },
                {
                    "id": 8919,
                    "nome": "RECIFE ANTIGO, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 8920,
                    "nome": "ESPINHEIRO, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 8921,
                    "nome": "AV AGAMENON MAGALHAES, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 8922,
                    "nome": "15840",
                    "municipio": ""
                },
                {
                    "id": 8923,
                    "nome": "CAMARA CASCUDO, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 8924,
                    "nome": "SHOPPING JOAO PESSOA, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8925,
                    "nome": "AVENIDA CARLOS GOMES, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8926,
                    "nome": "SAO PELEGRINO, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 8927,
                    "nome": "UBA, MG",
                    "municipio": "UBA"
                },
                {
                    "id": 8928,
                    "nome": "CAPUCHINHOS, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 8929,
                    "nome": "VOLTA DO GUERINO, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8930,
                    "nome": "BOURBON IPIRANGA, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8931,
                    "nome": "PRACA MARECHAL FLORIANO, RS",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 8932,
                    "nome": "PRINCESA DO SUL, RS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 8933,
                    "nome": "YMEMBUI, RS",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 8934,
                    "nome": "JUCA BATISTA, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8935,
                    "nome": "CLINICAS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8936,
                    "nome": "GUARAPIRANGA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8937,
                    "nome": "BARAO, SP",
                    "municipio": "MAUA"
                },
                {
                    "id": 8938,
                    "nome": "PAIAGUAS, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 8939,
                    "nome": "UBERABA, MG",
                    "municipio": "UBERABA"
                },
                {
                    "id": 8940,
                    "nome": "PARQUE DA UVA, SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 8941,
                    "nome": "VILA ALPINA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8942,
                    "nome": "JARDIM AEROPORTO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8943,
                    "nome": "PARQUE SAO JORGE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8944,
                    "nome": "TAQUARAL, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 8945,
                    "nome": "BARAO DE GURGUEIA, PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 8946,
                    "nome": "PICARRA, PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 8947,
                    "nome": "B. COUTINHO, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 8948,
                    "nome": "PARQUE DA ACLIMACAO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8949,
                    "nome": "UBERLANDIA, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 8950,
                    "nome": "DEZENOVE DE MARCO, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 8951,
                    "nome": "SUBAE, BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 8952,
                    "nome": "CAMPOS ELISEOS, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 8953,
                    "nome": "ANA COSTA, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 8954,
                    "nome": "VIEIRA DE MORAES, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8955,
                    "nome": "VILA DIVA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8956,
                    "nome": "MARIO GUIMARAES, RJ",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 8957,
                    "nome": "TUBAL VILELA, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 8958,
                    "nome": "IGUACUANO, RJ",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 8959,
                    "nome": "OLARIA, RJ",
                    "municipio": "NOVA FRIBURGO"
                },
                {
                    "id": 8960,
                    "nome": "AV CHILE, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8961,
                    "nome": "MOGI SHOPPING, SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 8962,
                    "nome": "CORA CORALINA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 8963,
                    "nome": "JOAO NEGRAO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 8964,
                    "nome": "CENTRO CIVICO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 8965,
                    "nome": "VARGINHA, MG",
                    "municipio": "VARGINHA"
                },
                {
                    "id": 8966,
                    "nome": "AHU, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 8967,
                    "nome": "NOVA LONDRES, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 8968,
                    "nome": "CAPAO DA IMBUIA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 8969,
                    "nome": "BAIRRO REBOUCAS, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 8970,
                    "nome": "JARDIM SATELITE, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 8971,
                    "nome": "VILA ESPERANCA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8972,
                    "nome": "CIDADE DAS ORQUIDEAS, SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 8973,
                    "nome": "COQUEIROS, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 8974,
                    "nome": "JARDIM INDUSTRIAL, MG",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 8975,
                    "nome": "VICOSA, MG",
                    "municipio": "VICOSA"
                },
                {
                    "id": 8976,
                    "nome": "CALAFATE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 8977,
                    "nome": "PADRE CAFE, MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 8978,
                    "nome": "IBITURUNA, MG",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 8979,
                    "nome": "GLORIA, ES",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 8980,
                    "nome": "SCHARLAU, RS",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 8981,
                    "nome": "ERICO VERISSIMO, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 8982,
                    "nome": "AEROPORTO SANTOS DUMONT, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8983,
                    "nome": "AV KENNEDY, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 8984,
                    "nome": "VIRGINIA, MG",
                    "municipio": "VIRGINIA"
                },
                {
                    "id": 8985,
                    "nome": "SHOPPING CENTER TIJUCA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8986,
                    "nome": "IMPERIAL, RJ",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 8987,
                    "nome": "HIGIENOPOLIS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8988,
                    "nome": "ITAIM PAULISTA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8989,
                    "nome": "PLANALTO PAULISTA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8990,
                    "nome": "SILVIO ROMERO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8991,
                    "nome": "CASA DE PEDRA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8992,
                    "nome": "PEDRA AFIADA, PE",
                    "municipio": "ITAMBE"
                },
                {
                    "id": 8993,
                    "nome": "Ag�ncia 16578",
                    "municipio": ""
                },
                {
                    "id": 8994,
                    "nome": "VISCONDE DO RIO BRANCO, MG",
                    "municipio": "VISCONDE DO RIO BRANCO"
                },
                {
                    "id": 8995,
                    "nome": "ITOUPAVA NORTE, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 8996,
                    "nome": "OURO NEGRO, SC",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 8997,
                    "nome": "CORAL, SC",
                    "municipio": "LAGES"
                },
                {
                    "id": 8998,
                    "nome": "NOVA TIRADENTES, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 8999,
                    "nome": "PARC ROYAL, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 9000,
                    "nome": "ESPERANCA, PB",
                    "municipio": "ESPERANCA"
                },
                {
                    "id": 9001,
                    "nome": "BEIRAMAR, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 9002,
                    "nome": "PEDRO TAQUES, PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 9003,
                    "nome": "CARMELA, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 9004,
                    "nome": "AVENIDA MAJOR NICACIO, SP",
                    "municipio": "FRANCA"
                },
                {
                    "id": 9005,
                    "nome": "CARLOS SAMPAIO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9006,
                    "nome": "ENSEADA, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 9007,
                    "nome": "COXIPO, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 9008,
                    "nome": "BORDA DA MATA, MG",
                    "municipio": "BORDA DA MATA"
                },
                {
                    "id": 9009,
                    "nome": "CONQUISTA, MG",
                    "municipio": "CONQUISTA"
                },
                {
                    "id": 9010,
                    "nome": "MARIA DA FE, MG",
                    "municipio": "MARIA DA FE"
                },
                {
                    "id": 9011,
                    "nome": "MONTE SIAO, MG",
                    "municipio": "MONTE SIAO"
                },
                {
                    "id": 9012,
                    "nome": "CESARIO LANGE, SP",
                    "municipio": "CESARIO LANGE"
                },
                {
                    "id": 9013,
                    "nome": "ALEGRE, ES",
                    "municipio": "ALEGRE"
                },
                {
                    "id": 9014,
                    "nome": "VILA ANDEYARA, SP",
                    "municipio": "FERRAZ DE VASCONCELOS"
                },
                {
                    "id": 9015,
                    "nome": "MIGUEL SUTIL, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 9016,
                    "nome": "ARCOS, MG",
                    "municipio": "ARCOS"
                },
                {
                    "id": 9017,
                    "nome": "COROMANDEL, MG",
                    "municipio": "COROMANDEL"
                },
                {
                    "id": 9018,
                    "nome": "MATEUS LEME, MG",
                    "municipio": "MATEUS LEME"
                },
                {
                    "id": 9019,
                    "nome": "PARAISOPOLIS, MG",
                    "municipio": "PARAISOPOLIS"
                },
                {
                    "id": 9020,
                    "nome": "CENTRO CAMPO GRANDE, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 9021,
                    "nome": "AFONSO CLAUDIO, ES",
                    "municipio": "AFONSO CLAUDIO"
                },
                {
                    "id": 9022,
                    "nome": "PITANGUI, MG",
                    "municipio": "PITANGUI"
                },
                {
                    "id": 9023,
                    "nome": "MARIANA, MG",
                    "municipio": "MARIANA"
                },
                {
                    "id": 9024,
                    "nome": "PRACA SECA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9025,
                    "nome": "ARROIO DO MEIO, RS",
                    "municipio": "ARROIO DO MEIO"
                },
                {
                    "id": 9026,
                    "nome": "ARVOREZINHA, RS",
                    "municipio": "ARVOREZINHA"
                },
                {
                    "id": 9027,
                    "nome": "CACHOEIRO DE ITAPEMIRIM, ES",
                    "municipio": "CACHOEIRO DE ITAPEMIRIM"
                },
                {
                    "id": 9028,
                    "nome": "SANTA ADELIA, SP",
                    "municipio": "SANTA ADELIA"
                },
                {
                    "id": 9029,
                    "nome": "CRUZEIRENSE, RS",
                    "municipio": "CRUZEIRO DO SUL"
                },
                {
                    "id": 9030,
                    "nome": "CAMPINAS DO SUL, RS",
                    "municipio": "CAMPINAS DO SUL"
                },
                {
                    "id": 9031,
                    "nome": "AV DA SAUDADE, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 9032,
                    "nome": "COLATINA, ES",
                    "municipio": "COLATINA"
                },
                {
                    "id": 9033,
                    "nome": "CAMPESTRE, MG",
                    "municipio": "CAMPESTRE"
                },
                {
                    "id": 9034,
                    "nome": "PRINCESA, MG",
                    "municipio": "VARGINHA"
                },
                {
                    "id": 9035,
                    "nome": "FRANCISCO SA DE MINAS, MG",
                    "municipio": "FRANCISCO SA"
                },
                {
                    "id": 9036,
                    "nome": "ROCA SALES, RS",
                    "municipio": "ROCA SALES"
                },
                {
                    "id": 9037,
                    "nome": "VIADUTOS, RS",
                    "municipio": "VIADUTOS"
                },
                {
                    "id": 9038,
                    "nome": "VILA VELHA, ES",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 9039,
                    "nome": "GRANJA VIANNA, SP",
                    "municipio": "COTIA"
                },
                {
                    "id": 9040,
                    "nome": "SHOPPING JARDINS, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 9041,
                    "nome": "SAO JOSE DO CALCADO, ES",
                    "municipio": "SAO JOSE DO CALCADO"
                },
                {
                    "id": 9042,
                    "nome": "BOM JESUS DE GOIAS, GO",
                    "municipio": "BOM JESUS DE GOIAS"
                },
                {
                    "id": 9043,
                    "nome": "MIRACEMA DO TOCANTINS, TO",
                    "municipio": "MIRACEMA DO TOCANTINS"
                },
                {
                    "id": 9044,
                    "nome": "TROPICAL, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 9045,
                    "nome": "NITEROI, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 9046,
                    "nome": "MEDINA, MG",
                    "municipio": "MEDINA"
                },
                {
                    "id": 9047,
                    "nome": "SABARA, MG",
                    "municipio": "SABARA"
                },
                {
                    "id": 9048,
                    "nome": "SALTO DA DIVISA, MG",
                    "municipio": "SALTO DA DIVISA"
                },
                {
                    "id": 9049,
                    "nome": "PAMPULHA, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 9050,
                    "nome": "LUZ, MG",
                    "municipio": "LUZ"
                },
                {
                    "id": 9051,
                    "nome": "PRATAPOLIS, MG",
                    "municipio": "PRATAPOLIS"
                },
                {
                    "id": 9052,
                    "nome": "ANANINDEUA, PA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 9053,
                    "nome": "ICARAI, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 9054,
                    "nome": "AV CENTER, PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 9055,
                    "nome": "NOVA RUSSIA, PR",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 9056,
                    "nome": "BARRA MANSA, RJ",
                    "municipio": "BARRA MANSA"
                },
                {
                    "id": 9057,
                    "nome": "UNISINOS, RS",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 9058,
                    "nome": "BUTIA, RS",
                    "municipio": "BUTIA"
                },
                {
                    "id": 9059,
                    "nome": "FELIZ, RS",
                    "municipio": "FELIZ"
                },
                {
                    "id": 9060,
                    "nome": "IVOTI, RS",
                    "municipio": "IVOTI"
                },
                {
                    "id": 9061,
                    "nome": "RIO AMAZONAS, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 9062,
                    "nome": "PORTAO DO SUL, RS",
                    "municipio": "PORTAO"
                },
                {
                    "id": 9063,
                    "nome": "27 DE JULHO, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 9064,
                    "nome": "ROLANTE, RS",
                    "municipio": "ROLANTE"
                },
                {
                    "id": 9065,
                    "nome": "BARRA DO PIRAI, RJ",
                    "municipio": "BARRA DO PIRAI"
                },
                {
                    "id": 9066,
                    "nome": "IGARACU DO TIETE, SP",
                    "municipio": "IGARACU DO TIETE"
                },
                {
                    "id": 9067,
                    "nome": "SANTO CRISTO, RS",
                    "municipio": "SANTO CRISTO"
                },
                {
                    "id": 9068,
                    "nome": "NOSSA SENHORA DO GUADALUPE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9069,
                    "nome": "RUA CIPRIANO TAVARES, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 9070,
                    "nome": "REGENTE FEIJO, SP",
                    "municipio": "REGENTE FEIJO"
                },
                {
                    "id": 9071,
                    "nome": "LARGO DA GLORIA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9072,
                    "nome": "MOUTONNEE, SP",
                    "municipio": "SALTO"
                },
                {
                    "id": 9073,
                    "nome": "BOM JESUS DO ITABAPOANA, RJ",
                    "municipio": "BOM JESUS DO ITABAPOANA"
                },
                {
                    "id": 9074,
                    "nome": "PANORAMA, SP",
                    "municipio": "PANORAMA"
                },
                {
                    "id": 9075,
                    "nome": "CORUPA, SC",
                    "municipio": "CORUPA"
                },
                {
                    "id": 9076,
                    "nome": "PALHOCA, SC",
                    "municipio": "PALHOCA"
                },
                {
                    "id": 9077,
                    "nome": "ICARA, SC",
                    "municipio": "ICARA"
                },
                {
                    "id": 9078,
                    "nome": "CESAR DE SOUZA, SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 9079,
                    "nome": "MORRO DA FUMACA, SC",
                    "municipio": "MORRO DA FUMACA"
                },
                {
                    "id": 9080,
                    "nome": "CABO FRIO, RJ",
                    "municipio": "CABO FRIO"
                },
                {
                    "id": 9081,
                    "nome": "FRAIBURGO, SC",
                    "municipio": "FRAIBURGO"
                },
                {
                    "id": 9082,
                    "nome": "CIDADE DE PENHA, SC",
                    "municipio": "PENHA"
                },
                {
                    "id": 9083,
                    "nome": "TIJUCAS, SC",
                    "municipio": "TIJUCAS"
                },
                {
                    "id": 9084,
                    "nome": "14 DE ABRIL, SP",
                    "municipio": "CATANDUVA"
                },
                {
                    "id": 9085,
                    "nome": "CORUMBA, MS",
                    "municipio": "CORUMBA"
                },
                {
                    "id": 9086,
                    "nome": "CAMPOS, RJ",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 9087,
                    "nome": "VILA, RJ",
                    "municipio": "TRES RIOS"
                },
                {
                    "id": 9088,
                    "nome": "ASA SUL, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 9089,
                    "nome": "AV JAPAO, SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 9090,
                    "nome": "DUQUE DE CAXIAS, RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 9091,
                    "nome": "IGUAPE, SP",
                    "municipio": "IGUAPE"
                },
                {
                    "id": 9092,
                    "nome": "METRO OSCAR FREIRE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9093,
                    "nome": "FARIA LIMA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9094,
                    "nome": "AV CILLOS, SP",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 9095,
                    "nome": "GRANJA JULIETA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9096,
                    "nome": "TREMEMBE, SP",
                    "municipio": "TREMEMBE"
                },
                {
                    "id": 9097,
                    "nome": "JOAO PINHEIRO, MG",
                    "municipio": "JOAO PINHEIRO"
                },
                {
                    "id": 9098,
                    "nome": "ITAPERUNA, RJ",
                    "municipio": "ITAPERUNA"
                },
                {
                    "id": 9099,
                    "nome": "SAO GOTARDO, MG",
                    "municipio": "SAO GOTARDO"
                },
                {
                    "id": 9100,
                    "nome": "AV MINAS GERAIS, MG",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 9101,
                    "nome": "CACOAL, RO",
                    "municipio": "CACOAL"
                },
                {
                    "id": 9102,
                    "nome": "JI-PARANA, RO",
                    "municipio": "JI-PARANA"
                },
                {
                    "id": 9103,
                    "nome": "VILHENA, RO",
                    "municipio": "VILHENA"
                },
                {
                    "id": 9104,
                    "nome": "SANTA TERESA, ES",
                    "municipio": "SANTA TERESA"
                },
                {
                    "id": 9105,
                    "nome": "PIRES DO RIO, GO",
                    "municipio": "PIRES DO RIO"
                },
                {
                    "id": 9106,
                    "nome": "PORTO NACIONAL, TO",
                    "municipio": "PORTO NACIONAL"
                },
                {
                    "id": 9107,
                    "nome": "MAGE, RJ",
                    "municipio": "MAGE"
                },
                {
                    "id": 9108,
                    "nome": "SALINAS, MG",
                    "municipio": "SALINAS"
                },
                {
                    "id": 9109,
                    "nome": "ARIQUEMES, RO",
                    "municipio": "ARIQUEMES"
                },
                {
                    "id": 9110,
                    "nome": "CERVEZAO, SP",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 9111,
                    "nome": "PEDRA BONITA, SP",
                    "municipio": "ITAPORANGA"
                },
                {
                    "id": 9112,
                    "nome": "ICONHA, ES",
                    "municipio": "ICONHA"
                },
                {
                    "id": 9113,
                    "nome": "CHAVANTES, SP",
                    "municipio": "CHAVANTES"
                },
                {
                    "id": 9114,
                    "nome": "CALDAS NOVAS, GO",
                    "municipio": "CALDAS NOVAS"
                },
                {
                    "id": 9115,
                    "nome": "MACAE, RJ",
                    "municipio": "MACAE"
                },
                {
                    "id": 9116,
                    "nome": "APINAJES, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 9117,
                    "nome": "NIQUELANDIA, GO",
                    "municipio": "NIQUELANDIA"
                },
                {
                    "id": 9118,
                    "nome": "PIRACANJUBA, GO",
                    "municipio": "PIRACANJUBA"
                },
                {
                    "id": 9119,
                    "nome": "NOVA IGUACU, RJ",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 9120,
                    "nome": "SILVANIA, GO",
                    "municipio": "SILVANIA"
                },
                {
                    "id": 9121,
                    "nome": "LUPICINIO RODRIGUES, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 9122,
                    "nome": "DOM PEDRO II, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 9123,
                    "nome": "ROCHA, RJ",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 9124,
                    "nome": "CONSTANTINA, RS",
                    "municipio": "CONSTANTINA"
                },
                {
                    "id": 9125,
                    "nome": "CRISSIUMAL, RS",
                    "municipio": "CRISSIUMAL"
                },
                {
                    "id": 9126,
                    "nome": "MACATUBA, SP",
                    "municipio": "MACATUBA"
                },
                {
                    "id": 9127,
                    "nome": "CAFELANDIA, SP",
                    "municipio": "CAFELANDIA"
                },
                {
                    "id": 9128,
                    "nome": "EXTREMOZ, RN",
                    "municipio": "EXTREMOZ"
                },
                {
                    "id": 9129,
                    "nome": "NOVA FRIBURGO, RJ",
                    "municipio": "NOVA FRIBURGO"
                },
                {
                    "id": 9130,
                    "nome": "JARDIM INDEPENDENCIA, PR",
                    "municipio": "SARANDI"
                },
                {
                    "id": 9131,
                    "nome": "POTIRENDABA, SP",
                    "municipio": "POTIRENDABA"
                },
                {
                    "id": 9132,
                    "nome": "CIDADE DO PORTO, SC",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 9133,
                    "nome": "NILOPOLIS, RJ",
                    "municipio": "NILOPOLIS"
                },
                {
                    "id": 9134,
                    "nome": "IGREJINHA, RS",
                    "municipio": "IGREJINHA"
                },
                {
                    "id": 9135,
                    "nome": "HERCILIO LUZ, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 9136,
                    "nome": "BIGUACU, SC",
                    "municipio": "BIGUACU"
                },
                {
                    "id": 9137,
                    "nome": "KOBRASOL, SC",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 9138,
                    "nome": "MIRAMAR, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 9139,
                    "nome": "CAMINHO DO MAR, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 9140,
                    "nome": "SENHORA DOS NAVEGANTES, SC",
                    "municipio": "NAVEGANTES"
                },
                {
                    "id": 9141,
                    "nome": "PETROPOLIS, RJ",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 9142,
                    "nome": "POMERODE, SC",
                    "municipio": "POMERODE"
                },
                {
                    "id": 9143,
                    "nome": "SEARA, SC",
                    "municipio": "SEARA"
                },
                {
                    "id": 9144,
                    "nome": "ICOARACY, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 9145,
                    "nome": "VIANELO, SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 9146,
                    "nome": "SAO LOURENCO DO OESTE, SC",
                    "municipio": "SAO LOURENCO D'OESTE"
                },
                {
                    "id": 9147,
                    "nome": "SAO JOSE DO CEDRO, SC",
                    "municipio": "SAO JOSE DO CEDRO"
                },
                {
                    "id": 9148,
                    "nome": "MISTER HULL, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 9149,
                    "nome": "DOM LUIZ, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 9150,
                    "nome": "CAPITAL DO CIMENTO, SP",
                    "municipio": "VOTORANTIM"
                },
                {
                    "id": 9151,
                    "nome": "RESENDE, RJ",
                    "municipio": "RESENDE"
                },
                {
                    "id": 9152,
                    "nome": "NORTH SHOPPING CARUARU, PE",
                    "municipio": "CARUARU"
                },
                {
                    "id": 9153,
                    "nome": "18900",
                    "municipio": ""
                },
                {
                    "id": 9154,
                    "nome": "18901",
                    "municipio": ""
                },
                {
                    "id": 9155,
                    "nome": "VINTE E SEIS DE MARCO, SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 9156,
                    "nome": "AV JOAO RAMALHO, SP",
                    "municipio": "MARILIA"
                },
                {
                    "id": 9157,
                    "nome": "SANANDUVA, RS",
                    "municipio": "SANANDUVA"
                },
                {
                    "id": 9158,
                    "nome": "DESBRAVADOR, SC",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 9159,
                    "nome": "XV DE NOVEMBRO, SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 9160,
                    "nome": "IPAUSSU, SP",
                    "municipio": "IPAUSSU"
                },
                {
                    "id": 9161,
                    "nome": "JARDIM INGA, GO",
                    "municipio": "LUZIANIA"
                },
                {
                    "id": 9162,
                    "nome": "FAXINAL DOS GUEDES, SC",
                    "municipio": "FAXINAL DOS GUEDES"
                },
                {
                    "id": 9163,
                    "nome": "SAO JOAO DE MERITI, RJ",
                    "municipio": "SAO JOAO DE MERITI"
                },
                {
                    "id": 9164,
                    "nome": "CARMO DO PARANAIBA, MG",
                    "municipio": "CARMO DO PARANAIBA"
                },
                {
                    "id": 9165,
                    "nome": "BAMBUI, MG",
                    "municipio": "BAMBUI"
                },
                {
                    "id": 9166,
                    "nome": "CASTRO ALVES, BA",
                    "municipio": "CASTRO ALVES"
                },
                {
                    "id": 9167,
                    "nome": "TAJURAS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9168,
                    "nome": "ENGENHEIRO CAETANO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9169,
                    "nome": "MIMOSO DO SUL, ES",
                    "municipio": "MIMOSO DO SUL"
                },
                {
                    "id": 9170,
                    "nome": "CIDADE ANTIGA, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 9171,
                    "nome": "SANTO ANTONIO DE PADUA, RJ",
                    "municipio": "SANTO ANTONIO DE PADUA"
                },
                {
                    "id": 9172,
                    "nome": "TRIANGULO, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 9173,
                    "nome": "BAYEUX, PB",
                    "municipio": "BAYEUX"
                },
                {
                    "id": 9174,
                    "nome": "SANTA RITA, PB",
                    "municipio": "SANTA RITA"
                },
                {
                    "id": 9175,
                    "nome": "MORADA DO OURO, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 9176,
                    "nome": "SAO FIDELIS, RJ",
                    "municipio": "SAO FIDELIS"
                },
                {
                    "id": 9177,
                    "nome": "QUATRO DE ABRIL, SP",
                    "municipio": "MARILIA"
                },
                {
                    "id": 9178,
                    "nome": "BENFICA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 9179,
                    "nome": "FRITZ MULLER, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 9180,
                    "nome": "CARLOS BARBOSA, RS",
                    "municipio": "CARLOS BARBOSA"
                },
                {
                    "id": 9181,
                    "nome": "VESPASIANO, MG",
                    "municipio": "VESPASIANO"
                },
                {
                    "id": 9182,
                    "nome": "TURFE CLUBE, RJ",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 9183,
                    "nome": "BOA ESPERANCA DO SUL, SP",
                    "municipio": "BOA ESPERANCA DO SUL"
                },
                {
                    "id": 9184,
                    "nome": "TERESOPOLIS, RJ",
                    "municipio": "TERESOPOLIS"
                },
                {
                    "id": 9185,
                    "nome": "CHOPINZINHO, PR",
                    "municipio": "CHOPINZINHO"
                },
                {
                    "id": 9186,
                    "nome": "PARQUE DO CARMO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9187,
                    "nome": "NOVA ODESSA, SP",
                    "municipio": "NOVA ODESSA"
                },
                {
                    "id": 9188,
                    "nome": "CORDEIROPOLIS, SP",
                    "municipio": "CORDEIROPOLIS"
                },
                {
                    "id": 9189,
                    "nome": "SAO GONCALO, RJ",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 9190,
                    "nome": "NOVE DE JULHO, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 9191,
                    "nome": "SAO LUIS DE MONTES BELOS, GO",
                    "municipio": "SAO LUIS DE MONTES BELOS"
                },
                {
                    "id": 9192,
                    "nome": "PITANGA, PR",
                    "municipio": "PITANGA"
                },
                {
                    "id": 9193,
                    "nome": "CIDADE SIQUEIRA CAMPOS, PR",
                    "municipio": "SIQUEIRA CAMPOS"
                },
                {
                    "id": 9194,
                    "nome": "TRES RIOS, RJ",
                    "municipio": "TRES RIOS"
                },
                {
                    "id": 9195,
                    "nome": "WENCESLAU BRAZ, PR",
                    "municipio": "WENCESLAU BRAZ"
                },
                {
                    "id": 9196,
                    "nome": "NOVA ORLEANS, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 9197,
                    "nome": "REIS MAGOS, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 9198,
                    "nome": "ACARAU, CE",
                    "municipio": "ACARAU"
                },
                {
                    "id": 9199,
                    "nome": "SENHORA DE FATIMA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 9200,
                    "nome": "BARBALHA, CE",
                    "municipio": "BARBALHA"
                },
                {
                    "id": 9201,
                    "nome": "CASCAVEL CEARA, CE",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 9202,
                    "nome": "VILA PEDROSO, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 9203,
                    "nome": "VASSOURAS, RJ",
                    "municipio": "VASSOURAS"
                },
                {
                    "id": 9204,
                    "nome": "ICO, CE",
                    "municipio": "ICO"
                },
                {
                    "id": 9205,
                    "nome": "MARACANAU, CE",
                    "municipio": "MARACANAU"
                },
                {
                    "id": 9206,
                    "nome": "ITAGUACU, ES",
                    "municipio": "ITAGUACU"
                },
                {
                    "id": 9207,
                    "nome": "VALE, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 9208,
                    "nome": "PIMENTAS, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 9209,
                    "nome": "VILA FRIBURGO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9210,
                    "nome": "ALPHAVILLE, SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 9211,
                    "nome": "VOLTA REDONDA, RJ",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 9212,
                    "nome": "MARMELEIRO, PR",
                    "municipio": "MARMELEIRO"
                },
                {
                    "id": 9213,
                    "nome": "AV BRASILIA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 9214,
                    "nome": "CAMPOS GERAIS, MG",
                    "municipio": "CAMPOS GERAIS"
                },
                {
                    "id": 9215,
                    "nome": "VILA EMA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9216,
                    "nome": "EDSON QUEIROZ, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 9217,
                    "nome": "PADRE ANCHIETA, ES",
                    "municipio": "ANCHIETA"
                },
                {
                    "id": 9218,
                    "nome": "AV AFONSO PENA, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 9219,
                    "nome": "LARGO DA CARIOCA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9220,
                    "nome": "NOVA LONDRINA, PR",
                    "municipio": "NOVA LONDRINA"
                },
                {
                    "id": 9221,
                    "nome": "CIDADE DE PARAIBUNA, SP",
                    "municipio": "PARAIBUNA"
                },
                {
                    "id": 9222,
                    "nome": "AV RECANTO, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 9223,
                    "nome": "PARQUE PIAUI, PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 9224,
                    "nome": "COSTA E SILVA, PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 9225,
                    "nome": "ALMIRANTE TAMANDARE, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9226,
                    "nome": "FELICITTA SHOPPING, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 9227,
                    "nome": "CENTENARIO, SP",
                    "municipio": "BAURU"
                },
                {
                    "id": 9228,
                    "nome": "VISCONDE DE INHAUMA, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 9229,
                    "nome": "ALEXANDRINA, SP",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 9230,
                    "nome": "PLANALTO, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 9231,
                    "nome": "VITORIA-REGIA, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 9232,
                    "nome": "ANCHIETA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9233,
                    "nome": "AV MANOEL GOULART, SP",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 9234,
                    "nome": "AVENIDA SAMPAIO VIDAL, SP",
                    "municipio": "MARILIA"
                },
                {
                    "id": 9235,
                    "nome": "PACAJUS, CE",
                    "municipio": "PACAJUS"
                },
                {
                    "id": 9236,
                    "nome": "CACHOEIRA PAULISTA, SP",
                    "municipio": "CACHOEIRA PAULISTA"
                },
                {
                    "id": 9237,
                    "nome": "AREOLINO DE ABREU, PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 9238,
                    "nome": "WALL STREET, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 9239,
                    "nome": "PARNAMIRIM, RN",
                    "municipio": "PARNAMIRIM"
                },
                {
                    "id": 9240,
                    "nome": "ANDARAI, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9241,
                    "nome": "POTENGI, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 9242,
                    "nome": "AUTRAN NUNES, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 9243,
                    "nome": "BERNARDO HORTA, ES",
                    "municipio": "CACHOEIRO DE ITAPEMIRIM"
                },
                {
                    "id": 9244,
                    "nome": "CIDADE ALEGRIA, RJ",
                    "municipio": "RESENDE"
                },
                {
                    "id": 9245,
                    "nome": "CASTILHO, SP",
                    "municipio": "CASTILHO"
                },
                {
                    "id": 9246,
                    "nome": "BANDEIRA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9247,
                    "nome": "LAURO DE FREITAS, BA",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 9248,
                    "nome": "BIRITIBA-MIRIM, SP",
                    "municipio": "BIRITIBA-MIRIM"
                },
                {
                    "id": 9249,
                    "nome": "TROPEIROS, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 9250,
                    "nome": "BAIRRO SANTO AGOSTINHO, RJ",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 9251,
                    "nome": "MEDEIROS NETO, BA",
                    "municipio": "MEDEIROS NETO"
                },
                {
                    "id": 9252,
                    "nome": "VOLUNTARIOS DA PATRIA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9253,
                    "nome": "BANGU, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9254,
                    "nome": "ENGENHO DE DENTRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9255,
                    "nome": "SERRA DE SANTA HELENA, MG",
                    "municipio": "SETE LAGOAS"
                },
                {
                    "id": 9256,
                    "nome": "TERRA ROXA, SP",
                    "municipio": "JAU"
                },
                {
                    "id": 9257,
                    "nome": "CONSELHEIRO CARRAO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9258,
                    "nome": "PIQUETE, SP",
                    "municipio": "PIQUETE"
                },
                {
                    "id": 9259,
                    "nome": "PRINCESA DA COLINA, SP",
                    "municipio": "ITATIBA"
                },
                {
                    "id": 9260,
                    "nome": "LAJEADO VELHO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9261,
                    "nome": "BARATA RIBEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9262,
                    "nome": "DOMINGOS MARTINS, ES",
                    "municipio": "DOMINGOS MARTINS"
                },
                {
                    "id": 9263,
                    "nome": "CARAPINA, ES",
                    "municipio": "SERRA"
                },
                {
                    "id": 9264,
                    "nome": "PRAIA DO CANTO, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 9265,
                    "nome": "LAGOA NOVA, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 9266,
                    "nome": "CAPELA DE ALAGOAS, AL",
                    "municipio": "CAPELA"
                },
                {
                    "id": 9267,
                    "nome": "MARIBONDO, AL",
                    "municipio": "MARIBONDO"
                },
                {
                    "id": 9268,
                    "nome": "MACEIO SHOPPING, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 9269,
                    "nome": "PILAR, AL",
                    "municipio": "PILAR"
                },
                {
                    "id": 9270,
                    "nome": "BONSUCESSO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9271,
                    "nome": "AV WEIMAR TORRES, MS",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 9272,
                    "nome": "JARDIM GERMANIA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9273,
                    "nome": "PIUMA, ES",
                    "municipio": "PIUMA"
                },
                {
                    "id": 9274,
                    "nome": "SERRA DA MANTIQUEIRA, MG",
                    "municipio": "ITAJUBA"
                },
                {
                    "id": 9275,
                    "nome": "BOTAFOGO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9276,
                    "nome": "BOM JARDIM, RJ",
                    "municipio": "BOM JARDIM"
                },
                {
                    "id": 9277,
                    "nome": "CACHOEIRAS DE MACACU, RJ",
                    "municipio": "CACHOEIRAS DE MACACU"
                },
                {
                    "id": 9278,
                    "nome": "PINHEIRO, MA",
                    "municipio": "PINHEIRO"
                },
                {
                    "id": 9279,
                    "nome": "MENDES, RJ",
                    "municipio": "MENDES"
                },
                {
                    "id": 9280,
                    "nome": "AV LOBO JUNIOR, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9281,
                    "nome": "SAPUCAIA, RJ",
                    "municipio": "SAPUCAIA"
                },
                {
                    "id": 9282,
                    "nome": "SENADOR FLAQUER, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 9283,
                    "nome": "PIRAI, RJ",
                    "municipio": "PIRAI"
                },
                {
                    "id": 9284,
                    "nome": "GOIANIA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 9285,
                    "nome": "FREIRE ALEMAO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9286,
                    "nome": "SHOPPING DA ILHA, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 9287,
                    "nome": "IOLANDA ASSIS, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 9288,
                    "nome": "SALES OLIVEIRA, SP",
                    "municipio": "SALES OLIVEIRA"
                },
                {
                    "id": 9289,
                    "nome": "FERROVIARIOS, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 9290,
                    "nome": "JAGUAQUARA, BA",
                    "municipio": "JAGUAQUARA"
                },
                {
                    "id": 9291,
                    "nome": "TANGARA DA SERRA, MT",
                    "municipio": "TANGARA DA SERRA"
                },
                {
                    "id": 9292,
                    "nome": "ESPLANADA CAMPOLIM, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 9293,
                    "nome": "RIO CACHOEIRA, BA",
                    "municipio": "ITABUNA"
                },
                {
                    "id": 9294,
                    "nome": "GUANABARA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9295,
                    "nome": "SAO SIMAO, SP",
                    "municipio": "SAO SIMAO"
                },
                {
                    "id": 9296,
                    "nome": "TAPEJARA, RS",
                    "municipio": "TAPEJARA"
                },
                {
                    "id": 9297,
                    "nome": "PARQUE RIZZO, SP",
                    "municipio": "EMBU DAS ARTES"
                },
                {
                    "id": 9298,
                    "nome": "IBATE, SP",
                    "municipio": "IBATE"
                },
                {
                    "id": 9299,
                    "nome": "INDIANOPOLIS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9300,
                    "nome": "IBES, ES",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 9301,
                    "nome": "21",
                    "municipio": ""
                },
                {
                    "id": 9302,
                    "nome": "CASCADURA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9303,
                    "nome": "SAO BENTO DE ARARAQUARA, SP",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 9304,
                    "nome": "PRACA XV DE NOVEMBRO, SP",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 9305,
                    "nome": "JARDIM HELENA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9306,
                    "nome": "TAPIRATIBA, SP",
                    "municipio": "TAPIRATIBA"
                },
                {
                    "id": 9307,
                    "nome": "BRODOWSKI, SP",
                    "municipio": "BRODOWSKI"
                },
                {
                    "id": 9308,
                    "nome": "CAIEIRAS, SP",
                    "municipio": "CAIEIRAS"
                },
                {
                    "id": 9309,
                    "nome": "VARZEA PAULISTA, SP",
                    "municipio": "VARZEA PAULISTA"
                },
                {
                    "id": 9310,
                    "nome": "LARANJEIRAS, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9311,
                    "nome": "VILA CARMOSINA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9312,
                    "nome": "YPE CENTER, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 9313,
                    "nome": "PREFEITURA MUNICIPAL DE MAUA, SP",
                    "municipio": "MAUA"
                },
                {
                    "id": 9314,
                    "nome": "SAO GUALTER, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9315,
                    "nome": "CORURIPE, AL",
                    "municipio": "CORURIPE"
                },
                {
                    "id": 9316,
                    "nome": "CATU, BA",
                    "municipio": "CATU"
                },
                {
                    "id": 9317,
                    "nome": "COPACABANA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9318,
                    "nome": "COLOMBO, PR",
                    "municipio": "COLOMBO"
                },
                {
                    "id": 9319,
                    "nome": "RUA UBALDINO DO AMARAL, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9320,
                    "nome": "BARREIROS, PE",
                    "municipio": "BARREIROS"
                },
                {
                    "id": 9321,
                    "nome": "21240",
                    "municipio": ""
                },
                {
                    "id": 9322,
                    "nome": "21241",
                    "municipio": ""
                },
                {
                    "id": 9323,
                    "nome": "21242",
                    "municipio": ""
                },
                {
                    "id": 9324,
                    "nome": "ESCADA, PE",
                    "municipio": "ESCADA"
                },
                {
                    "id": 9325,
                    "nome": "21250",
                    "municipio": ""
                },
                {
                    "id": 9326,
                    "nome": "FAXINAL DO SOTURNO, RS",
                    "municipio": "FAXINAL DO SOTURNO"
                },
                {
                    "id": 9327,
                    "nome": "DEODORO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9328,
                    "nome": "OURICURI, PE",
                    "municipio": "OURICURI"
                },
                {
                    "id": 9329,
                    "nome": "21300",
                    "municipio": ""
                },
                {
                    "id": 9330,
                    "nome": "21301",
                    "municipio": ""
                },
                {
                    "id": 9331,
                    "nome": "Ag�ncia 21302",
                    "municipio": ""
                },
                {
                    "id": 9332,
                    "nome": "JAPERI, RJ",
                    "municipio": "JAPERI"
                },
                {
                    "id": 9333,
                    "nome": "BENEVIDES, PA",
                    "municipio": "BENEVIDES"
                },
                {
                    "id": 9334,
                    "nome": "JARDIM MARINGA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9335,
                    "nome": "JARDIM SANTA TEREZA, SP",
                    "municipio": "EMBU DAS ARTES"
                },
                {
                    "id": 9336,
                    "nome": "NOVA PARAISOPOLIS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9337,
                    "nome": "PRADOPOLIS, SP",
                    "municipio": "PRADOPOLIS"
                },
                {
                    "id": 9338,
                    "nome": "BARAO DE JUNDIAI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9339,
                    "nome": "SANTA ERNESTINA, SP",
                    "municipio": "SANTA ERNESTINA"
                },
                {
                    "id": 9340,
                    "nome": "ALTOS DA CIDADE, SP",
                    "municipio": "BAURU"
                },
                {
                    "id": 9341,
                    "nome": "SANTA ROSA DE VITERBO, SP",
                    "municipio": "SANTA ROSA DE VITERBO"
                },
                {
                    "id": 9342,
                    "nome": "MONTE CASTELO, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 9343,
                    "nome": "SANTA GERTRUDES, SP",
                    "municipio": "SANTA GERTRUDES"
                },
                {
                    "id": 9344,
                    "nome": "JACARAIPE, ES",
                    "municipio": "SERRA"
                },
                {
                    "id": 9345,
                    "nome": "FOZ DO ITAJAI, SC",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 9346,
                    "nome": "ESTRADA DO GALEAO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9347,
                    "nome": "SIMOES FILHO, BA",
                    "municipio": "SIMOES FILHO"
                },
                {
                    "id": 9348,
                    "nome": "PRESIDENTE DUTRA, MA",
                    "municipio": "PRESIDENTE DUTRA"
                },
                {
                    "id": 9349,
                    "nome": "SAO MATEUS DO SUL, PR",
                    "municipio": "SAO MATEUS DO SUL"
                },
                {
                    "id": 9350,
                    "nome": "OSTERNACK, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 9351,
                    "nome": "JUSTICA FEDERAL AMERICANA, SP",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 9352,
                    "nome": "MONGAGUA, SP",
                    "municipio": "MONGAGUA"
                },
                {
                    "id": 9353,
                    "nome": "PROSPERIDADE, SP",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 9354,
                    "nome": "COCOTA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9355,
                    "nome": "ALTEROSAS, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 9356,
                    "nome": "GUARIBA, SP",
                    "municipio": "GUARIBA"
                },
                {
                    "id": 9357,
                    "nome": "PERIMETRAL, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 9358,
                    "nome": "ALCOBACA, BA",
                    "municipio": "ALCOBACA"
                },
                {
                    "id": 9359,
                    "nome": "JARDIM BONFIGLIOLI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9360,
                    "nome": "INHANGA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9361,
                    "nome": "LAJEDO, PE",
                    "municipio": "LAJEDO"
                },
                {
                    "id": 9362,
                    "nome": "Ag�ncia 21700",
                    "municipio": ""
                },
                {
                    "id": 9363,
                    "nome": "21701",
                    "municipio": ""
                },
                {
                    "id": 9364,
                    "nome": "PINHEIRAL, RJ",
                    "municipio": "PINHEIRAL"
                },
                {
                    "id": 9365,
                    "nome": "FRANCISCO PORTO, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 9366,
                    "nome": "SIMAO DIAS, SE",
                    "municipio": "SIMAO DIAS"
                },
                {
                    "id": 9367,
                    "nome": "HEBRAICA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9368,
                    "nome": "MAIRINQUE, SP",
                    "municipio": "MAIRINQUE"
                },
                {
                    "id": 9369,
                    "nome": "MAITINGA, SP",
                    "municipio": "BERTIOGA"
                },
                {
                    "id": 9370,
                    "nome": "LEBLON, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9371,
                    "nome": "LARGO DO MARRAO, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 9372,
                    "nome": "CORONEL VICENTE, RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 9373,
                    "nome": "PRACA DO FERREIRA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 9374,
                    "nome": "AV BADY BASSITT, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 9375,
                    "nome": "FAUSTO CARDOSO, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 9376,
                    "nome": "21 DE ABRIL, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 9377,
                    "nome": "NHAMBIQUARAS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9378,
                    "nome": "MADUREIRA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9379,
                    "nome": "IGARASSU, PE",
                    "municipio": "IGARASSU"
                },
                {
                    "id": 9380,
                    "nome": "Ag�ncia 21910",
                    "municipio": ""
                },
                {
                    "id": 9381,
                    "nome": "21911",
                    "municipio": ""
                },
                {
                    "id": 9382,
                    "nome": "Ag�ncia 21913",
                    "municipio": ""
                },
                {
                    "id": 9383,
                    "nome": "BEZERROS, PE",
                    "municipio": "BEZERROS"
                },
                {
                    "id": 9384,
                    "nome": "21920",
                    "municipio": ""
                },
                {
                    "id": 9385,
                    "nome": "21921",
                    "municipio": ""
                },
                {
                    "id": 9386,
                    "nome": "AV HERCULANO BANDEIRA, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 9387,
                    "nome": "Ag�ncia 21930",
                    "municipio": ""
                },
                {
                    "id": 9388,
                    "nome": "AV REPUBLICA DO LIBANO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9389,
                    "nome": "JANDIRA, SP",
                    "municipio": "JANDIRA"
                },
                {
                    "id": 9390,
                    "nome": "VOTORANTIM, SP",
                    "municipio": "VOTORANTIM"
                },
                {
                    "id": 9391,
                    "nome": "JARDIM CIPAVA, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 9392,
                    "nome": "VILA GALVAO, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 9393,
                    "nome": "VILA REZENDE, SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 9394,
                    "nome": "CIRIO, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 9395,
                    "nome": "BAIRRO JAGUARIBE, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 9396,
                    "nome": "JARDIM NORMA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9397,
                    "nome": "JARDIM ABC, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 9398,
                    "nome": "JOAO BETTEGA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 9399,
                    "nome": "ALBERTO ANDALO, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 9400,
                    "nome": "PORTO REAL, RJ",
                    "municipio": "PORTO REAL"
                },
                {
                    "id": 9401,
                    "nome": "ITATINGA, SP",
                    "municipio": "ITATINGA"
                },
                {
                    "id": 9402,
                    "nome": "VILA ARENS, SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 9403,
                    "nome": "MEIER, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9404,
                    "nome": "GRACA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 9405,
                    "nome": "BRIGADEIRO PAULISTA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9406,
                    "nome": "QUINTA DAS PAINEIRAS, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 9407,
                    "nome": "MARUIM, SE",
                    "municipio": "MARUIM"
                },
                {
                    "id": 9408,
                    "nome": "SERRA DOS CRISTAIS, SP",
                    "municipio": "FRANCO DA ROCHA"
                },
                {
                    "id": 9409,
                    "nome": "ALTO DA SERRA, RJ",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 9410,
                    "nome": "SHOPPING BARRA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 9411,
                    "nome": "PALACIO DA FAZENDA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9412,
                    "nome": "FIEP, PB",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 9413,
                    "nome": "AV ZAHRAN, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 9414,
                    "nome": "VENETO, SC",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 9415,
                    "nome": "AV MATO GROSSO, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 9416,
                    "nome": "NOVA SETE DE SETEMBRO, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 9417,
                    "nome": "2230",
                    "municipio": ""
                },
                {
                    "id": 9418,
                    "nome": "MARECHAL MALLET, RS",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 9419,
                    "nome": "MONTE CRISTO, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 9420,
                    "nome": "MARISTA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 9421,
                    "nome": "PENHA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9422,
                    "nome": "PORTO VELHO, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 9423,
                    "nome": "RIO COMPRIDO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9424,
                    "nome": "NILOPOLITANA, RJ",
                    "municipio": "NILOPOLIS"
                },
                {
                    "id": 9425,
                    "nome": "PILARES, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9426,
                    "nome": "ABC, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 9427,
                    "nome": "VILA NOVA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 9428,
                    "nome": "NOVA SERRANA, MG",
                    "municipio": "NOVA SERRANA"
                },
                {
                    "id": 9429,
                    "nome": "URCA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9430,
                    "nome": "PRINCESA DA SERRA, SE",
                    "municipio": "ITABAIANA"
                },
                {
                    "id": 9431,
                    "nome": "CENTRO OESTE, GO",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 9432,
                    "nome": "DIAS DA CRUZ, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9433,
                    "nome": "2265",
                    "municipio": ""
                },
                {
                    "id": 9434,
                    "nome": "CAPAO DA CANOA, RS",
                    "municipio": "CAPAO DA CANOA"
                },
                {
                    "id": 9435,
                    "nome": "SAO LUIS REI DE FRANCA, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 9436,
                    "nome": "JARDIM BOTANICO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9437,
                    "nome": "CEILANDIA, DF",
                    "municipio": "BRASILIA (CEILANDIA)"
                },
                {
                    "id": 9438,
                    "nome": "JARDIM AGUA BOA, MS",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 9439,
                    "nome": "T-9, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 9440,
                    "nome": "CONCEICAO DO MATO DENTRO, MG",
                    "municipio": "CONCEICAO DO MATO DENTRO"
                },
                {
                    "id": 9441,
                    "nome": "AQUIRI, AC",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 9442,
                    "nome": "BAIRRO CEU AZUL, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 9443,
                    "nome": "SAENS PENA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9444,
                    "nome": "PEDRO LUDOVICO, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 9445,
                    "nome": "SERTAO SANTANA, RS",
                    "municipio": "SERTAO SANTANA"
                },
                {
                    "id": 9446,
                    "nome": "MONTE BELO, RS",
                    "municipio": "GRAVATAI"
                },
                {
                    "id": 9447,
                    "nome": "MIRANDOPOLIS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9448,
                    "nome": "MOZART SOARES, GO",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 9449,
                    "nome": "SANTA CRUZ, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9450,
                    "nome": "CIDADE VERDE, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 9451,
                    "nome": "ACESITA, MG",
                    "municipio": "TIMOTEO"
                },
                {
                    "id": 9452,
                    "nome": "AV IMPERADOR, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9453,
                    "nome": "ABAETETUBA, PA",
                    "municipio": "ABAETETUBA"
                },
                {
                    "id": 9454,
                    "nome": "VILA ESPANHOLA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9455,
                    "nome": "CASAPARK SHOPPING, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 9456,
                    "nome": "POPULAR, GO",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 9457,
                    "nome": "14 BIS, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9458,
                    "nome": "HOSPITAL UNIVERSITARIO, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 9459,
                    "nome": "ATENAS PAULISTA, SP",
                    "municipio": "JABOTICABAL"
                },
                {
                    "id": 9460,
                    "nome": "SAO CRISTOVAO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9461,
                    "nome": "TRES COLINAS, SP",
                    "municipio": "FRANCA"
                },
                {
                    "id": 9462,
                    "nome": "TINDIBA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9463,
                    "nome": "VILA ISABEL, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9464,
                    "nome": "IPATINGA, MG",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 9465,
                    "nome": "JARDIM PRIMAVERA, RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 9466,
                    "nome": "234",
                    "municipio": ""
                },
                {
                    "id": 9467,
                    "nome": "TAQUARICHIM, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9468,
                    "nome": "HOLAMBRA, SP",
                    "municipio": "HOLAMBRA"
                },
                {
                    "id": 9469,
                    "nome": "BOA VIAGEM, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 9470,
                    "nome": "23460",
                    "municipio": ""
                },
                {
                    "id": 9471,
                    "nome": "ITAPARK, SP",
                    "municipio": "MAUA"
                },
                {
                    "id": 9472,
                    "nome": "ILHA DO LEITE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 9473,
                    "nome": "Ag�ncia 23480",
                    "municipio": ""
                },
                {
                    "id": 9474,
                    "nome": "SE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9475,
                    "nome": "SAO SEBASTIAO DA GRAMA, SP",
                    "municipio": "SAO SEBASTIAO DA GRAMA"
                },
                {
                    "id": 9476,
                    "nome": "JARDIM TIETE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9477,
                    "nome": "DEZESSEIS DE DEZEMBRO, SP",
                    "municipio": "SUMARE"
                },
                {
                    "id": 9478,
                    "nome": "ALTO DA MOOCA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9479,
                    "nome": "CAPIVARI DE BAIXO, SC",
                    "municipio": "CAPIVARI DE BAIXO"
                },
                {
                    "id": 9480,
                    "nome": "TAILANDIA, PA",
                    "municipio": "TAILANDIA"
                },
                {
                    "id": 9481,
                    "nome": "VILA LIVIERO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9482,
                    "nome": "PORTO GERAL, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9483,
                    "nome": "GERMANIA, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 9484,
                    "nome": "SEPETIBA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9485,
                    "nome": "AV PAULISTA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9486,
                    "nome": "TERRA DA LIBERDADE, RN",
                    "municipio": "MOSSORO"
                },
                {
                    "id": 9487,
                    "nome": "SISTEMA FIEMG, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 9488,
                    "nome": "DISTRITO INDUSTRIAL, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 9489,
                    "nome": "NOVA ALIANCA, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 9490,
                    "nome": "RIACHO GRANDE, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 9491,
                    "nome": "PRESIDENTE VARGAS, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9492,
                    "nome": "AUGUSTA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9493,
                    "nome": "GRUTA DE LOURDES, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 9494,
                    "nome": "JATIUCA, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 9495,
                    "nome": "TOMAS ESPINDOLA, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 9496,
                    "nome": "2394",
                    "municipio": ""
                },
                {
                    "id": 9497,
                    "nome": "CIDADE DE PRESIDENTE KENNEDY, ES",
                    "municipio": "PRESIDENTE KENNEDY"
                },
                {
                    "id": 9498,
                    "nome": "TAGUASUL, DF",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 9499,
                    "nome": "BRAGANCA, PA",
                    "municipio": "BRAGANCA"
                },
                {
                    "id": 9500,
                    "nome": "BELA VISTA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9501,
                    "nome": "BRASILIA SHOPPING, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 9502,
                    "nome": "SHOPPING MIRAMAR, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 9503,
                    "nome": "SHOPPING RIOMAR, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 9504,
                    "nome": "SIA, DF",
                    "municipio": "BRASILIA (GUARA)"
                },
                {
                    "id": 9505,
                    "nome": "BELENZINHO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9506,
                    "nome": "MARIANO PROCOPIO, MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 9507,
                    "nome": "BRAS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9508,
                    "nome": "MERCADO SAO SEBASTIAO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9509,
                    "nome": "ITACOLOMI, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 9510,
                    "nome": "ALIPIO DE MELO, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 9511,
                    "nome": "CAMBUCI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9512,
                    "nome": "VILA RICA, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 9513,
                    "nome": "VALPARAISO, GO",
                    "municipio": "VALPARAISO DE GOIAS"
                },
                {
                    "id": 9514,
                    "nome": "DOCA, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 9515,
                    "nome": "CASA VERDE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9516,
                    "nome": "BENTO FERREIRA, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 9517,
                    "nome": "TIMON, MA",
                    "municipio": "TIMON"
                },
                {
                    "id": 9518,
                    "nome": "CENTRO ADMINISTRATIVO, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 9519,
                    "nome": "CUSTODIA, PE",
                    "municipio": "CUSTODIA"
                },
                {
                    "id": 9520,
                    "nome": "AUGUSTO MAYNARD, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 9521,
                    "nome": "VILLA LOBOS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9522,
                    "nome": "CORPORATE CENTER, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 9523,
                    "nome": "JOAO DE LUCA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9524,
                    "nome": "CAPELA NOVA, MG",
                    "municipio": "BETIM"
                },
                {
                    "id": 9525,
                    "nome": "CUMBICA, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 9526,
                    "nome": "CURSINO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9527,
                    "nome": "CANAAN, MG",
                    "municipio": "SETE LAGOAS"
                },
                {
                    "id": 9528,
                    "nome": "DIADEMA, SP",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 9529,
                    "nome": "AGUA FRIA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9530,
                    "nome": "AERO RANCHO, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 9531,
                    "nome": "SETE DE ABRIL, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9532,
                    "nome": "TCU BRASILIA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 9533,
                    "nome": "SERGIO PACHECO, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 9534,
                    "nome": "CAPANEMA, PA",
                    "municipio": "CAPANEMA"
                },
                {
                    "id": 9535,
                    "nome": "GUARULHOS, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 9536,
                    "nome": "RUA DA ALFANDEGA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9537,
                    "nome": "FINDES, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 9538,
                    "nome": "MOEMA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9539,
                    "nome": "HALFELD, MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 9540,
                    "nome": "IPIRANGA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9541,
                    "nome": "JARDIM ITAPOA, ES",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 9542,
                    "nome": "BENTA PEREIRA, RJ",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 9543,
                    "nome": "PALMAS DE TOCANTINS, TO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 9544,
                    "nome": "SENADOR QUEIROS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9545,
                    "nome": "GRANDE RIO, RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 9546,
                    "nome": "ITAIM, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9547,
                    "nome": "CATARATAS, PR",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 9548,
                    "nome": "2544",
                    "municipio": ""
                },
                {
                    "id": 9549,
                    "nome": "ITAMARACA, PE",
                    "municipio": "ILHA DE ITAMARACA"
                },
                {
                    "id": 9550,
                    "nome": "25461",
                    "municipio": ""
                },
                {
                    "id": 9551,
                    "nome": "SANHARO, PE",
                    "municipio": "SANHARO"
                },
                {
                    "id": 9552,
                    "nome": "PRACA DA ARVORE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9553,
                    "nome": "TORITAMA, PE",
                    "municipio": "TORITAMA"
                },
                {
                    "id": 9554,
                    "nome": "Ag�ncia 25511",
                    "municipio": ""
                },
                {
                    "id": 9555,
                    "nome": "NOVO MUNDO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 9556,
                    "nome": "MESSEJANA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 9557,
                    "nome": "RUA CLEMENTE ALVARES, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9558,
                    "nome": "GUAICURUS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9559,
                    "nome": "SHOPPING CAMPO GRANDE, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 9560,
                    "nome": "MOOCA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9561,
                    "nome": "SANTAREM, PA",
                    "municipio": "SANTAREM"
                },
                {
                    "id": 9562,
                    "nome": "NOSSA SENHORA DO O, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9563,
                    "nome": "M BOI MIRIM, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9564,
                    "nome": "PENHA DE FRANCA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9565,
                    "nome": "PEDROSO DE MORAES, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9566,
                    "nome": "CLEVELANDIA, PR",
                    "municipio": "CLEVELANDIA"
                },
                {
                    "id": 9567,
                    "nome": "SANTA CECILIA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9568,
                    "nome": "SANTANA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9569,
                    "nome": "BORBA GATO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9570,
                    "nome": "GONCALVES DIAS, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 9571,
                    "nome": "TATUAPE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9572,
                    "nome": "PACO MUN SAO BERNARDO CAMPO, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 9573,
                    "nome": "SAUL ELKIND, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 9574,
                    "nome": "2708",
                    "municipio": ""
                },
                {
                    "id": 9575,
                    "nome": "MAZZEI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9576,
                    "nome": "DIAMANTINO, MT",
                    "municipio": "DIAMANTINO"
                },
                {
                    "id": 9577,
                    "nome": "GARAVELO, GO",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 9578,
                    "nome": "EXTREMA, MG",
                    "municipio": "EXTREMA"
                },
                {
                    "id": 9579,
                    "nome": "2717",
                    "municipio": ""
                },
                {
                    "id": 9580,
                    "nome": "2719",
                    "municipio": ""
                },
                {
                    "id": 9581,
                    "nome": "Ag�ncia 27190",
                    "municipio": ""
                },
                {
                    "id": 9582,
                    "nome": "VILA CARRAO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9583,
                    "nome": "BERTIOGA, SP",
                    "municipio": "BERTIOGA"
                },
                {
                    "id": 9584,
                    "nome": "VILA MARIA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9585,
                    "nome": "PREF MUN LONDRINA, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 9586,
                    "nome": "LUIS EDUARDO MAGALHAES, BA",
                    "municipio": "LUIS EDUARDO MAGALHAES"
                },
                {
                    "id": 9587,
                    "nome": "ITAU DE MINAS, MG",
                    "municipio": "ITAU DE MINAS"
                },
                {
                    "id": 9588,
                    "nome": "RIO DAS OSTRAS, RJ",
                    "municipio": "RIO DAS OSTRAS"
                },
                {
                    "id": 9589,
                    "nome": "ALFONSO BOVERO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9590,
                    "nome": "CASSIANO RICARDO, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 9591,
                    "nome": "SANTO ANTONIO DO MONTE, MG",
                    "municipio": "SANTO ANTONIO DO MONTE"
                },
                {
                    "id": 9592,
                    "nome": "JATUARANA, RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 9593,
                    "nome": "VILA PRUDENTE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9594,
                    "nome": "ROLIM DE MOURA, RO",
                    "municipio": "ROLIM DE MOURA"
                },
                {
                    "id": 9595,
                    "nome": "SORRISO, MT",
                    "municipio": "SORRISO"
                },
                {
                    "id": 9596,
                    "nome": "27561",
                    "municipio": ""
                },
                {
                    "id": 9597,
                    "nome": "CAMPOLIM, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 9598,
                    "nome": "MACAIBA, RN",
                    "municipio": "MACAIBA"
                },
                {
                    "id": 9599,
                    "nome": "ADAMANTINA, SP",
                    "municipio": "ADAMANTINA"
                },
                {
                    "id": 9600,
                    "nome": "AGUAS DE SAO PEDRO, SP",
                    "municipio": "AGUAS DE SAO PEDRO"
                },
                {
                    "id": 9601,
                    "nome": "IBIRAMA, SC",
                    "municipio": "IBIRAMA"
                },
                {
                    "id": 9602,
                    "nome": "CORRENTE, PI",
                    "municipio": "CORRENTE"
                },
                {
                    "id": 9603,
                    "nome": "BOM JESUS DOS PERDOES, SP",
                    "municipio": "BOM JESUS DOS PERDOES"
                },
                {
                    "id": 9604,
                    "nome": "MESTRE VITALINO, PE",
                    "municipio": "CARUARU"
                },
                {
                    "id": 9605,
                    "nome": "27780",
                    "municipio": ""
                },
                {
                    "id": 9606,
                    "nome": "27781",
                    "municipio": ""
                },
                {
                    "id": 9607,
                    "nome": "BOCAIUVA, MG",
                    "municipio": "BOCAIUVA"
                },
                {
                    "id": 9608,
                    "nome": "AMERICANA, SP",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 9609,
                    "nome": "BOM JESUS, PI",
                    "municipio": "BOM JESUS"
                },
                {
                    "id": 9610,
                    "nome": "ESMERALDAS, MG",
                    "municipio": "ESMERALDAS"
                },
                {
                    "id": 9611,
                    "nome": "PIMENTA BUENO, RO",
                    "municipio": "PIMENTA BUENO"
                },
                {
                    "id": 9612,
                    "nome": "PROMISSAO, SP",
                    "municipio": "PROMISSAO"
                },
                {
                    "id": 9613,
                    "nome": "AMPARO, SP",
                    "municipio": "AMPARO"
                },
                {
                    "id": 9614,
                    "nome": "CAXIAS, MA",
                    "municipio": "CAXIAS"
                },
                {
                    "id": 9615,
                    "nome": "ANDRADINA, SP",
                    "municipio": "ANDRADINA"
                },
                {
                    "id": 9616,
                    "nome": "SAO JOSE, AP",
                    "municipio": "MACAPA"
                },
                {
                    "id": 9617,
                    "nome": "BRUMADINHO, MG",
                    "municipio": "BRUMADINHO"
                },
                {
                    "id": 9618,
                    "nome": "SENADOR DANTAS, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9619,
                    "nome": "ARACATUBA, SP",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 9620,
                    "nome": "ITATIAIA, RJ",
                    "municipio": "ITATIAIA"
                },
                {
                    "id": 9621,
                    "nome": "ARAGUATINS, TO",
                    "municipio": "ARAGUATINS"
                },
                {
                    "id": 9622,
                    "nome": "TAIO, SC",
                    "municipio": "TAIO"
                },
                {
                    "id": 9623,
                    "nome": "BARRA VELHA, SC",
                    "municipio": "BARRA VELHA"
                },
                {
                    "id": 9624,
                    "nome": "ARARAQUARA, SP",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 9625,
                    "nome": "SAO FRANCISCO DO CONDE, BA",
                    "municipio": "SAO FRANCISCO DO CONDE"
                },
                {
                    "id": 9626,
                    "nome": "ARARAS, SP",
                    "municipio": "ARARAS"
                },
                {
                    "id": 9627,
                    "nome": "ROSARIO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9628,
                    "nome": "PORTAL DOS SERTOES, MG",
                    "municipio": "BETIM"
                },
                {
                    "id": 9629,
                    "nome": "BARAO DE COCAIS, MG",
                    "municipio": "BARAO DE COCAIS"
                },
                {
                    "id": 9630,
                    "nome": "BOITUVA, SP",
                    "municipio": "BOITUVA"
                },
                {
                    "id": 9631,
                    "nome": "ASSIS, SP",
                    "municipio": "ASSIS"
                },
                {
                    "id": 9632,
                    "nome": "TRES VENDAS, RS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 9633,
                    "nome": "QUIXERAMOBIM, CE",
                    "municipio": "QUIXERAMOBIM"
                },
                {
                    "id": 9634,
                    "nome": "NACOES, RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 9635,
                    "nome": "ATIBAIA, SP",
                    "municipio": "ATIBAIA"
                },
                {
                    "id": 9636,
                    "nome": "DIAS D AVILA, BA",
                    "municipio": "DIAS D'AVILA"
                },
                {
                    "id": 9637,
                    "nome": "BAIRRO CIDADE NOVA, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 9638,
                    "nome": "SERRARIA, SP",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 9639,
                    "nome": "AVARE, SP",
                    "municipio": "AVARE"
                },
                {
                    "id": 9640,
                    "nome": "JARDIM DO TREVO, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 9641,
                    "nome": "BERRINI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9642,
                    "nome": "PEDRA BRANCA, PR",
                    "municipio": "ALMIRANTE TAMANDARE"
                },
                {
                    "id": 9643,
                    "nome": "FAZENDA RIO GRANDE, PR",
                    "municipio": "FAZENDA RIO GRANDE"
                },
                {
                    "id": 9644,
                    "nome": "BRAZ CUBAS, SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 9645,
                    "nome": "BARIRI, SP",
                    "municipio": "BARIRI"
                },
                {
                    "id": 9646,
                    "nome": "EDEN, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 9647,
                    "nome": "GLICERIO, SP",
                    "municipio": "SUZANO"
                },
                {
                    "id": 9648,
                    "nome": "VILA GILDA, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 9649,
                    "nome": "PATIO DO COLEGIO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9650,
                    "nome": "ENCRUZILHADA DO SUL, RS",
                    "municipio": "ENCRUZILHADA DO SUL"
                },
                {
                    "id": 9651,
                    "nome": "SHOPPING FREI CANECA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9652,
                    "nome": "BARRETOS, SP",
                    "municipio": "BARRETOS"
                },
                {
                    "id": 9653,
                    "nome": "NOVA TIETE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9654,
                    "nome": "AVENIDA PRESIDENTE VARGAS, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 9655,
                    "nome": "CIDADE ALTA, SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 9656,
                    "nome": "SOUSAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 9657,
                    "nome": "JARDIM PEROLA, SP",
                    "municipio": "SANTA BARBARA D'OESTE"
                },
                {
                    "id": 9658,
                    "nome": "ANHANGUERA DE SUMARE, SP",
                    "municipio": "SUMARE"
                },
                {
                    "id": 9659,
                    "nome": "SHOPPING UNIMART, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 9660,
                    "nome": "ESTADOS UNIDOS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9661,
                    "nome": "JARDIM FRANCA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9662,
                    "nome": "VARZEA DA PALMA, MG",
                    "municipio": "VARZEA DA PALMA"
                },
                {
                    "id": 9663,
                    "nome": "BATATAIS, SP",
                    "municipio": "BATATAIS"
                },
                {
                    "id": 9664,
                    "nome": "JT RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9665,
                    "nome": "JAGUARUNA, SC",
                    "municipio": "JAGUARUNA"
                },
                {
                    "id": 9666,
                    "nome": "SOMBRIO, SC",
                    "municipio": "SOMBRIO"
                },
                {
                    "id": 9667,
                    "nome": "LUCIO COSTA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 9668,
                    "nome": "PINHALZINHO, SC",
                    "municipio": "PINHALZINHO"
                },
                {
                    "id": 9669,
                    "nome": "DIONISIO CERQUEIRA, SC",
                    "municipio": "DIONISIO CERQUEIRA"
                },
                {
                    "id": 9670,
                    "nome": "FRANCESES, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 9671,
                    "nome": "MAZZAROPI, SP",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 9672,
                    "nome": "BRIGADEIRO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9673,
                    "nome": "CONSELHEIRO SARAIVA, PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 9674,
                    "nome": "BAURU, SP",
                    "municipio": "BAURU"
                },
                {
                    "id": 9675,
                    "nome": "JACATUBA, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 9676,
                    "nome": "BAETA NEVES, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 9677,
                    "nome": "VISTA VERDE, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 9678,
                    "nome": "PRACA DA LIBERDADE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9679,
                    "nome": "BARAO DE MESQUITA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9680,
                    "nome": "NEW YORK CITY CENTER, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9681,
                    "nome": "TIJUCA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9682,
                    "nome": "MIRANTE DO CASTELO, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 9683,
                    "nome": "ARTUR NOGUEIRA, SP",
                    "municipio": "ARTUR NOGUEIRA"
                },
                {
                    "id": 9684,
                    "nome": "BEBEDOURO, SP",
                    "municipio": "BEBEDOURO"
                },
                {
                    "id": 9685,
                    "nome": "CIDADE AZUL, SP",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 9686,
                    "nome": "RUA HENRIQUE SCHAUMANN, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9687,
                    "nome": "CARDEAL ARCOVERDE, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9688,
                    "nome": "AMERICAS, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9689,
                    "nome": "PARATY, RJ",
                    "municipio": "PARATY"
                },
                {
                    "id": 9690,
                    "nome": "PIO X, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9691,
                    "nome": "ITABAIANINHA, SE",
                    "municipio": "ITABAIANINHA"
                },
                {
                    "id": 9692,
                    "nome": "CANUDOS, RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 9693,
                    "nome": "AGUAS DE SARANDI, PR",
                    "municipio": "SARANDI"
                },
                {
                    "id": 9694,
                    "nome": "BOTUCATU, SP",
                    "municipio": "BOTUCATU"
                },
                {
                    "id": 9695,
                    "nome": "VILA YARA, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 9696,
                    "nome": "CATEDRAL OSASCO, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 9697,
                    "nome": "BELVEDERE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 9698,
                    "nome": "BURITIS, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 9699,
                    "nome": "ANALIA FRANCO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9700,
                    "nome": "CAMPO DE MARTE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9701,
                    "nome": "VILA OLIMPIA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9702,
                    "nome": "GOPOUVA, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 9703,
                    "nome": "JOAO DIAS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9704,
                    "nome": "LARGO SAO MATEUS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9705,
                    "nome": "BRAGANCA PAULISTA, SP",
                    "municipio": "BRAGANCA PAULISTA"
                },
                {
                    "id": 9706,
                    "nome": "PEDRO LESSA, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 9707,
                    "nome": "MIGUEL DE FRIAS, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 9708,
                    "nome": "PRACA DA BIBLIA, SP",
                    "municipio": "MAUA"
                },
                {
                    "id": 9709,
                    "nome": "PARQUE INDUSTRIAL, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 9710,
                    "nome": "CARIJOS, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 9711,
                    "nome": "ECOVILLE, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 9712,
                    "nome": "BROTAS, SP",
                    "municipio": "BROTAS"
                },
                {
                    "id": 9713,
                    "nome": "JOAQUIM DE OLIVEIRA, MG",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 9714,
                    "nome": "TURIASSU, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9715,
                    "nome": "PARQUE DA MOOCA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9716,
                    "nome": "NOVO SHOP CENTER RIBEIRAO PRETO, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 9717,
                    "nome": "MOGIANA, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 9718,
                    "nome": "VILA TIBERIO, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 9719,
                    "nome": "AVENIDA DOM PEDRO I, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 9720,
                    "nome": "CACAPAVA, SP",
                    "municipio": "CACAPAVA"
                },
                {
                    "id": 9721,
                    "nome": "TRF JUNDIAI, SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 9722,
                    "nome": "FRANCISCO MORATO, SP",
                    "municipio": "FRANCISCO MORATO"
                },
                {
                    "id": 9723,
                    "nome": "NORTE-SUL, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 9724,
                    "nome": "AVENIDA ZELINA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9725,
                    "nome": "ARMANDO LOMBARDI, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9726,
                    "nome": "RUA AMARAL COSTA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9727,
                    "nome": "PRACA MAUA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9728,
                    "nome": "UVARANAS, PR",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 9729,
                    "nome": "CAMPINAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 9730,
                    "nome": "PRESIDENTE KENNEDY, SP",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 9731,
                    "nome": "IGUATEMI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9732,
                    "nome": "AMADOR BUENO, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 9733,
                    "nome": "JARDIM BRASIL, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9734,
                    "nome": "VILA DOS LAVRADORES, SP",
                    "municipio": "BOTUCATU"
                },
                {
                    "id": 9735,
                    "nome": "BARAO GERALDO, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 9736,
                    "nome": "MONSENHOR ALBINO, SP",
                    "municipio": "CATANDUVA"
                },
                {
                    "id": 9737,
                    "nome": "SERRA DO JAPI, SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 9738,
                    "nome": "AV PORTUGAL, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 9739,
                    "nome": "CAMPOS DO JORDAO, SP",
                    "municipio": "CAMPOS DO JORDAO"
                },
                {
                    "id": 9740,
                    "nome": "FAMA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 9741,
                    "nome": "MANACAPURU, AM",
                    "municipio": "MANACAPURU"
                },
                {
                    "id": 9742,
                    "nome": "SHOPPING GRANDE RIO, RJ",
                    "municipio": "SAO JOAO DE MERITI"
                },
                {
                    "id": 9743,
                    "nome": "ALTO MARACANA, PR",
                    "municipio": "COLOMBO"
                },
                {
                    "id": 9744,
                    "nome": "TINGUI, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 9745,
                    "nome": "JARU, RO",
                    "municipio": "JARU"
                },
                {
                    "id": 9746,
                    "nome": "PRADA, SP",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 9747,
                    "nome": "VILA ASSIS, SP",
                    "municipio": "MAUA"
                },
                {
                    "id": 9748,
                    "nome": "RIO MAINA, SC",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 9749,
                    "nome": "CAPIVARI, SP",
                    "municipio": "CAPIVARI"
                },
                {
                    "id": 9750,
                    "nome": "COMPENSA, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 9751,
                    "nome": "ARAGUAIA, GO",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 9752,
                    "nome": "AVENIDA GUILHERME FERREIRA, MG",
                    "municipio": "UBERABA"
                },
                {
                    "id": 9753,
                    "nome": "LAGOA DO NADO, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 9754,
                    "nome": "CELSO FURTADO, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 9755,
                    "nome": "PANTANEIRA, MT",
                    "municipio": "VARZEA GRANDE"
                },
                {
                    "id": 9756,
                    "nome": "POLO DA MODA, MG",
                    "municipio": "DIVINOPOLIS"
                },
                {
                    "id": 9757,
                    "nome": "RAIZ, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 9758,
                    "nome": "EXPEDICIONARIOS, SP",
                    "municipio": "OURINHOS"
                },
                {
                    "id": 9759,
                    "nome": "AVENIDA DUQUE, SP",
                    "municipio": "BAURU"
                },
                {
                    "id": 9760,
                    "nome": "CATANDUVA, SP",
                    "municipio": "CATANDUVA"
                },
                {
                    "id": 9761,
                    "nome": "AVENIDA ZELIA, SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 9762,
                    "nome": "SHOPPING PETROLINA, PE",
                    "municipio": "PETROLINA"
                },
                {
                    "id": 9763,
                    "nome": "29910",
                    "municipio": ""
                },
                {
                    "id": 9764,
                    "nome": "29911",
                    "municipio": ""
                },
                {
                    "id": 9765,
                    "nome": "ALAMEDA PAULISTA, SP",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 9766,
                    "nome": "AVENIDA NOSSA SENHORA, SP",
                    "municipio": "SERTAOZINHO"
                },
                {
                    "id": 9767,
                    "nome": "DOMINGOS DE MORAES, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9768,
                    "nome": "MARACATINS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9769,
                    "nome": "CIDADE DO SOL, SP",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 9770,
                    "nome": "CIDADE INDUSTRIAL, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 9771,
                    "nome": "SERGIPE DEL REY, SE",
                    "municipio": "SAO CRISTOVAO"
                },
                {
                    "id": 9772,
                    "nome": "AEROPORTO PRESIDENTE JK, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 9773,
                    "nome": "PARNAIBA, PI",
                    "municipio": "PARNAIBA"
                },
                {
                    "id": 9774,
                    "nome": "CRUZEIRO, SP",
                    "municipio": "CRUZEIRO"
                },
                {
                    "id": 9775,
                    "nome": "GOYAZES, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 9776,
                    "nome": "CIDADE DE SANTA MARIA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 9777,
                    "nome": "GUARA II, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 9778,
                    "nome": "PRACA DA REVOLUCAO, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 9779,
                    "nome": "SENADOR VERGUEIRO, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 9780,
                    "nome": "SHOPPING SUZANO, SP",
                    "municipio": "SUZANO"
                },
                {
                    "id": 9781,
                    "nome": "BORGES LAGOA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9782,
                    "nome": "REAL PARQUE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9783,
                    "nome": "AVENIDA CARLOS BOTELHO, SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 9784,
                    "nome": "CUBATAO, SP",
                    "municipio": "CUBATAO"
                },
                {
                    "id": 9785,
                    "nome": "BRIGADEIRO LUIS ANTONIO-JARDINS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9786,
                    "nome": "FORUM RUY BARBOSA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9787,
                    "nome": "PARQUE SAO DOMINGOS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9788,
                    "nome": "AVENIDA RUI BARBOSA, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 9789,
                    "nome": "IPOJUCA, PE",
                    "municipio": "IPOJUCA"
                },
                {
                    "id": 9790,
                    "nome": "30141",
                    "municipio": ""
                },
                {
                    "id": 9791,
                    "nome": "PRAZERES, PE",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 9792,
                    "nome": "Ag�ncia 30151",
                    "municipio": ""
                },
                {
                    "id": 9793,
                    "nome": "CAPITAL DO FORRO, PE",
                    "municipio": "CARUARU"
                },
                {
                    "id": 9794,
                    "nome": "30160",
                    "municipio": ""
                },
                {
                    "id": 9795,
                    "nome": "CAMARAGIBE, PE",
                    "municipio": "CAMARAGIBE"
                },
                {
                    "id": 9796,
                    "nome": "30171",
                    "municipio": ""
                },
                {
                    "id": 9797,
                    "nome": "ARRECIFES, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 9798,
                    "nome": "SERRA DA CANTAREIRA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9799,
                    "nome": "DRACENA, SP",
                    "municipio": "DRACENA"
                },
                {
                    "id": 9800,
                    "nome": "ANTONIO AGU, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 9801,
                    "nome": "PAULICEIA, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 9802,
                    "nome": "PIRATININGA, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 9803,
                    "nome": "ALMIRANTE GONCALVES, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9804,
                    "nome": "DOWNTOWN, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9805,
                    "nome": "ITAPARICA, ES",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 9806,
                    "nome": "QUINTINO BOCAIUVA, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 9807,
                    "nome": "ASA BRANCA, RR",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 9808,
                    "nome": "SHOPPING SAO GONCALO, RJ",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 9809,
                    "nome": "OSCAR VIDAL, MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 9810,
                    "nome": "FERNANDOPOLIS, SP",
                    "municipio": "FERNANDOPOLIS"
                },
                {
                    "id": 9811,
                    "nome": "AV BRASIL, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9812,
                    "nome": "TUTOIA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9813,
                    "nome": "RIACHO FUNDO, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 9814,
                    "nome": "CERRADO, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 9815,
                    "nome": "ALVARES PENTEADO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9816,
                    "nome": "FRANCA, SP",
                    "municipio": "FRANCA"
                },
                {
                    "id": 9817,
                    "nome": "BOULEVARD, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 9818,
                    "nome": "SANTA MENA, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 9819,
                    "nome": "ESTACAO, SP",
                    "municipio": "FRANCA"
                },
                {
                    "id": 9820,
                    "nome": "SUL DAS GERAES, MG",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 9821,
                    "nome": "VEREDAS, MG",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 9822,
                    "nome": "NOVA AUGUSTA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9823,
                    "nome": "PAULINIA SHOPPING, SP",
                    "municipio": "PAULINIA"
                },
                {
                    "id": 9824,
                    "nome": "CONDE DO PINHAL, SP",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 9825,
                    "nome": "AFONSO PENA, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 9826,
                    "nome": "NOVA FARIA LIMA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9827,
                    "nome": "GARCA, SP",
                    "municipio": "GARCA"
                },
                {
                    "id": 9828,
                    "nome": "HELENA MARIA, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 9829,
                    "nome": "MONTEIRO DE MELO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9830,
                    "nome": "AGUAS LINDAS, GO",
                    "municipio": "AGUAS LINDAS DE GOIAS"
                },
                {
                    "id": 9831,
                    "nome": "30521",
                    "municipio": ""
                },
                {
                    "id": 9832,
                    "nome": "LIBERO BADARO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9833,
                    "nome": "CHACARA SANTO ANTONIO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9834,
                    "nome": "RUA DIREITA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9835,
                    "nome": "MADUREIRA SHOPPING, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9836,
                    "nome": "VILA DOS REMEDIOS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9837,
                    "nome": "GUARATINGUETA, SP",
                    "municipio": "GUARATINGUETA"
                },
                {
                    "id": 9838,
                    "nome": "BAIRRO CIDADE ALTA, RS",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 9839,
                    "nome": "VINTE DE SETEMBRO, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 9840,
                    "nome": "30611",
                    "municipio": ""
                },
                {
                    "id": 9841,
                    "nome": "PLANALTO GAUCHO, RS",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 9842,
                    "nome": "TERRA DO SAL, RN",
                    "municipio": "MOSSORO"
                },
                {
                    "id": 9843,
                    "nome": "JUIZ DE FORA, MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 9844,
                    "nome": "MADRE LEONIA, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 9845,
                    "nome": "ITAPETININGA, SP",
                    "municipio": "ITAPETININGA"
                },
                {
                    "id": 9846,
                    "nome": "SEROPEDICA, RJ",
                    "municipio": "SEROPEDICA"
                },
                {
                    "id": 9847,
                    "nome": "TIRADENTES, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9848,
                    "nome": "TORRE ALMIRANTE, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9849,
                    "nome": "UEL, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 9850,
                    "nome": "ATIRADORES, SC",
                    "municipio": "JARAGUA DO SUL"
                },
                {
                    "id": 9851,
                    "nome": "Ag�ncia 30771",
                    "municipio": ""
                },
                {
                    "id": 9852,
                    "nome": "SAO JOSE DA TERRA FIRME, SC",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 9853,
                    "nome": "PEDRO MIRANDA, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 9854,
                    "nome": "ITAPIRA, SP",
                    "municipio": "ITAPIRA"
                },
                {
                    "id": 9855,
                    "nome": "LITORAL PLAZA SHOPPING, SP",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 9856,
                    "nome": "OTACILIO COSTA, SC",
                    "municipio": "OTACILIO COSTA"
                },
                {
                    "id": 9857,
                    "nome": "JARDIM CAMBURI, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 9858,
                    "nome": "30841",
                    "municipio": ""
                },
                {
                    "id": 9859,
                    "nome": "CIDADE OCIAN, SP",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 9860,
                    "nome": "INTERNACIONAL SHOP GUARULHOS, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 9861,
                    "nome": "CHACARA FLORA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9862,
                    "nome": "DIANOPOLIS, TO",
                    "municipio": "DIANOPOLIS"
                },
                {
                    "id": 9863,
                    "nome": "ITAPOLIS, SP",
                    "municipio": "ITAPOLIS"
                },
                {
                    "id": 9864,
                    "nome": "SHOPPING BAY MARKET, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 9865,
                    "nome": "PEREIRA PASSOS, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9866,
                    "nome": "DISTRITO DE MOREIRA CESAR, SP",
                    "municipio": "PINDAMONHANGABA"
                },
                {
                    "id": 9867,
                    "nome": "FUNCHAL, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9868,
                    "nome": "NOVA PACAEMBU, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9869,
                    "nome": "IRACEMA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 9870,
                    "nome": "ITARARE, SP",
                    "municipio": "ITARARE"
                },
                {
                    "id": 9871,
                    "nome": "SAO QUIRINO, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 9872,
                    "nome": "BURITIZAL, AP",
                    "municipio": "MACAPA"
                },
                {
                    "id": 9873,
                    "nome": "SANTA ANA, AP",
                    "municipio": "SANTANA"
                },
                {
                    "id": 9874,
                    "nome": "PECHINCHA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9875,
                    "nome": "RUA DA PASSAGEM, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9876,
                    "nome": "NOVA ACLIMACAO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9877,
                    "nome": "AVENIDA ORATORIO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9878,
                    "nome": "ITATIBA, SP",
                    "municipio": "ITATIBA"
                },
                {
                    "id": 9879,
                    "nome": "JORNALISTA ROBERTO MARINHO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9880,
                    "nome": "NOSSA SENHORA DE LOURDES, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 9881,
                    "nome": "ALTO URUGUAI, RS",
                    "municipio": "ERECHIM"
                },
                {
                    "id": 9882,
                    "nome": "OURO PRETO DO OESTE, RO",
                    "municipio": "OURO PRETO DO OESTE"
                },
                {
                    "id": 9883,
                    "nome": "SHOPPING MONTES CLAROS, MG",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 9884,
                    "nome": "VICENTE RAO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9885,
                    "nome": "METRO SAUDE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9886,
                    "nome": "BORDA DO CAMPO, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 9887,
                    "nome": "TUIUIU, MT",
                    "municipio": "RONDONOPOLIS"
                },
                {
                    "id": 9888,
                    "nome": "ITU, SP",
                    "municipio": "ITU"
                },
                {
                    "id": 9889,
                    "nome": "PACO DO LUMIAR, MA",
                    "municipio": "PACO DO LUMIAR"
                },
                {
                    "id": 9890,
                    "nome": "BALSAS, MA",
                    "municipio": "BALSAS"
                },
                {
                    "id": 9891,
                    "nome": "ABREU E LIMA, PE",
                    "municipio": "ABREU E LIMA"
                },
                {
                    "id": 9892,
                    "nome": "PIONEIROS, PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 9893,
                    "nome": "SAO JOAO CLIMACO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9894,
                    "nome": "JARDIM SANTO ANTONIO, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 9895,
                    "nome": "ZE DOCA, MA",
                    "municipio": "ZE DOCA"
                },
                {
                    "id": 9896,
                    "nome": "PARQUE DO POVO, SP",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 9897,
                    "nome": "VILA MANCHESTER, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9898,
                    "nome": "JABOTICABAL, SP",
                    "municipio": "JABOTICABAL"
                },
                {
                    "id": 9899,
                    "nome": "BOEHMERWALD, SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 9900,
                    "nome": "ATAULFO DE PAIVA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9901,
                    "nome": "COBILANDIA, ES",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 9902,
                    "nome": "MORADA NOVA, CE",
                    "municipio": "MORADA NOVA"
                },
                {
                    "id": 9903,
                    "nome": "SENADOR CANEDO, GO",
                    "municipio": "SENADOR CANEDO"
                },
                {
                    "id": 9904,
                    "nome": "VASCO DA GAMA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 9905,
                    "nome": "PRINCESA DO SERTAO, BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 9906,
                    "nome": "LARANJEIRAS DA SERRA, ES",
                    "municipio": "SERRA"
                },
                {
                    "id": 9907,
                    "nome": "JACAREI, SP",
                    "municipio": "JACAREI"
                },
                {
                    "id": 9908,
                    "nome": "PATRIA NOVA, RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 9909,
                    "nome": "25 DE JULHO, RS",
                    "municipio": "SANTA CRUZ DO SUL"
                },
                {
                    "id": 9910,
                    "nome": "IGARA, RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 9911,
                    "nome": "BARCARENA, PA",
                    "municipio": "BARCARENA"
                },
                {
                    "id": 9912,
                    "nome": "VIA PARK, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 9913,
                    "nome": "PARAUAPEBAS, PA",
                    "municipio": "PARAUAPEBAS"
                },
                {
                    "id": 9914,
                    "nome": "NORTE SHOPPING, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9915,
                    "nome": "03 DE OUTUBRO, RJ",
                    "municipio": "BARRA MANSA"
                },
                {
                    "id": 9916,
                    "nome": "CIDADE NOBRE, MG",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 9917,
                    "nome": "BIXIGA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9918,
                    "nome": "JAU, SP",
                    "municipio": "JAU"
                },
                {
                    "id": 9919,
                    "nome": "VARGEM GRANDE PAULISTA, SP",
                    "municipio": "VARGEM GRANDE PAULISTA"
                },
                {
                    "id": 9920,
                    "nome": "RIO TOCANTINS, MA",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 9921,
                    "nome": "RONDON PACHECO, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 9922,
                    "nome": "GOVERNO DO ESTADO DO PARANA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 9923,
                    "nome": "SHOPPING ESTACAO BH, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 9924,
                    "nome": "JUNDIAI, SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 9925,
                    "nome": "GARCIA, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 9926,
                    "nome": "PARQUE MARIA HELENA, SP",
                    "municipio": "SUZANO"
                },
                {
                    "id": 9927,
                    "nome": "MATINHOS, PR",
                    "municipio": "MATINHOS"
                },
                {
                    "id": 9928,
                    "nome": "PIRAI DO SUL, PR",
                    "municipio": "PIRAI DO SUL"
                },
                {
                    "id": 9929,
                    "nome": "LIMEIRA, SP",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 9930,
                    "nome": "CIDADE GAUCHA, PR",
                    "municipio": "CIDADE GAUCHA"
                },
                {
                    "id": 9931,
                    "nome": "PONTAL DO CERRADO, MG",
                    "municipio": "ITUIUTABA"
                },
                {
                    "id": 9932,
                    "nome": "IMBITUVA, PR",
                    "municipio": "IMBITUVA"
                },
                {
                    "id": 9933,
                    "nome": "CORDEIRO, RJ",
                    "municipio": "CORDEIRO"
                },
                {
                    "id": 9934,
                    "nome": "ARAPOTI, PR",
                    "municipio": "ARAPOTI"
                },
                {
                    "id": 9935,
                    "nome": "UEM, PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 9936,
                    "nome": "CIDADE DAS FONTES, MG",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 9937,
                    "nome": "LINS, SP",
                    "municipio": "LINS"
                },
                {
                    "id": 9938,
                    "nome": "JARDIM GIANETTI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9939,
                    "nome": "PAULO VI, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 9940,
                    "nome": "SHOPPING BOULEVARD RIO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9941,
                    "nome": "SHOPPING PENHA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9942,
                    "nome": "NOVO GAMA, GO",
                    "municipio": "NOVO GAMA"
                },
                {
                    "id": 9943,
                    "nome": "LORENA, SP",
                    "municipio": "LORENA"
                },
                {
                    "id": 9944,
                    "nome": "MUIRAQUITA, PA",
                    "municipio": "SANTAREM"
                },
                {
                    "id": 9945,
                    "nome": "METRO CONCEICAO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9946,
                    "nome": "PARAGOMINAS, PA",
                    "municipio": "PARAGOMINAS"
                },
                {
                    "id": 9947,
                    "nome": "VEREADOR JOSE DINIZ, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9948,
                    "nome": "BREVES, PA",
                    "municipio": "BREVES"
                },
                {
                    "id": 9949,
                    "nome": "TABATINGA, AM",
                    "municipio": "TABATINGA"
                },
                {
                    "id": 9950,
                    "nome": "PONTE SAO JOAO, SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 9951,
                    "nome": "JARDIM IGUATEMI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9952,
                    "nome": "JUAZEIRO DO NORTE, CE",
                    "municipio": "JUAZEIRO DO NORTE"
                },
                {
                    "id": 9953,
                    "nome": "MARILIA, SP",
                    "municipio": "MARILIA"
                },
                {
                    "id": 9954,
                    "nome": "MARITUBA, PA",
                    "municipio": "MARITUBA"
                },
                {
                    "id": 9955,
                    "nome": "EUCLIDES DA CUNHA, BA",
                    "municipio": "EUCLIDES DA CUNHA"
                },
                {
                    "id": 9956,
                    "nome": "SACRAMENTA, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 9957,
                    "nome": "JORGE AMADO, BA",
                    "municipio": "ILHEUS"
                },
                {
                    "id": 9958,
                    "nome": "SEABRA, BA",
                    "municipio": "SEABRA"
                },
                {
                    "id": 9959,
                    "nome": "ALEIXO, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 9960,
                    "nome": "SHOPPING CAMACARI, BA",
                    "municipio": "CAMACARI"
                },
                {
                    "id": 9961,
                    "nome": "SERRA DE BRAGANCA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9962,
                    "nome": "CAPITAL DO AGRESTE, AL",
                    "municipio": "ARAPIRACA"
                },
                {
                    "id": 9963,
                    "nome": "MIRASSOL, SP",
                    "municipio": "MIRASSOL"
                },
                {
                    "id": 9964,
                    "nome": "DEODATO, SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 9965,
                    "nome": "LUIS GOIS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9966,
                    "nome": "ILHA DE SANTO AMARO, SP",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 9967,
                    "nome": "BREU BRANCO, PA",
                    "municipio": "BREU BRANCO"
                },
                {
                    "id": 9968,
                    "nome": "GRAJAU, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9969,
                    "nome": "SILVA TELES, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9970,
                    "nome": "SANTO EDUARDO DE EMBU, SP",
                    "municipio": "EMBU DAS ARTES"
                },
                {
                    "id": 9971,
                    "nome": "CARVALHO LEAL, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 9972,
                    "nome": "CIDADE DE MOCOCA, SP",
                    "municipio": "MOCOCA"
                },
                {
                    "id": 9973,
                    "nome": "OLINDA, PE",
                    "municipio": "OLINDA"
                },
                {
                    "id": 9974,
                    "nome": "Ag�ncia 32201",
                    "municipio": ""
                },
                {
                    "id": 9975,
                    "nome": "CANDIDES, MG",
                    "municipio": "DIVINOPOLIS"
                },
                {
                    "id": 9976,
                    "nome": "PACO IMPERIAL, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9977,
                    "nome": "3224",
                    "municipio": ""
                },
                {
                    "id": 9978,
                    "nome": "CINELANDIA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9979,
                    "nome": "3228",
                    "municipio": ""
                },
                {
                    "id": 9980,
                    "nome": "CASTANHEIRA, PA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 9981,
                    "nome": "MOGI-MIRIM, SP",
                    "municipio": "MOGI-MIRIM"
                },
                {
                    "id": 9982,
                    "nome": "CAMPO FORMOSO, BA",
                    "municipio": "CAMPO FORMOSO"
                },
                {
                    "id": 9983,
                    "nome": "SHOPPING BONSUCESSO, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 9984,
                    "nome": "TAMANDARE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9985,
                    "nome": "IPIRA, BA",
                    "municipio": "IPIRA"
                },
                {
                    "id": 9986,
                    "nome": "BAIRRO SANTA RITA, MG",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 9987,
                    "nome": "TEFE, AM",
                    "municipio": "TEFE"
                },
                {
                    "id": 9988,
                    "nome": "ALBERTO BYINGTON, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9989,
                    "nome": "TOP SHOPPING, RJ",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 9990,
                    "nome": "PELINCA, RJ",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 9991,
                    "nome": "OLIMPIA, SP",
                    "municipio": "OLIMPIA"
                },
                {
                    "id": 9992,
                    "nome": "CANOAS SHOPPING, RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 9993,
                    "nome": "28 DE SETEMBRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9994,
                    "nome": "MIDWAY SHOPPING, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 9995,
                    "nome": "AV JUSCELINO KUBITSCHEK, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 9996,
                    "nome": "PARQUE CHICO MENDES, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 9997,
                    "nome": "MACENO, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 9998,
                    "nome": "RUA SACADURA CABRAL, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 9999,
                    "nome": "CAMINHO DAS ARVORES, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10000,
                    "nome": "BOSQUE RODRIGUES ALVES, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 10001,
                    "nome": "ORLANDIA, SP",
                    "municipio": "ORLANDIA"
                },
                {
                    "id": 10002,
                    "nome": "TACARUNA, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 10003,
                    "nome": "RODOVIARIA, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 10004,
                    "nome": "EMBU GUACU, SP",
                    "municipio": "EMBU-GUACU"
                },
                {
                    "id": 10005,
                    "nome": "JOAO RIBEIRO DE BARROS, SP",
                    "municipio": "JAU"
                },
                {
                    "id": 10006,
                    "nome": "GENERAL OSORIO, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 10007,
                    "nome": "PORTAL DO MORUMBI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10008,
                    "nome": "JAIARA, GO",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 10009,
                    "nome": "OSASCO, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 10010,
                    "nome": "MARCO DE BELEM, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 10011,
                    "nome": "SHOPPING FORMOSA, PA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 10012,
                    "nome": "VILA ANASTACIO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10013,
                    "nome": "MATRINXA, MT",
                    "municipio": "SINOP"
                },
                {
                    "id": 10014,
                    "nome": "GUAMA, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 10015,
                    "nome": "CONVENCAO, SP",
                    "municipio": "ITU"
                },
                {
                    "id": 10016,
                    "nome": "OURINHOS, SP",
                    "municipio": "OURINHOS"
                },
                {
                    "id": 10017,
                    "nome": "ANISIO HADDAD, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 10018,
                    "nome": "RAPOSO TAVARES, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10019,
                    "nome": "VILA SAO JOSE, SP",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 10020,
                    "nome": "AVENIDA GUAJAJARAS, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 10021,
                    "nome": "LUIZOTE, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 10022,
                    "nome": "MANOEL URBANO, AC",
                    "municipio": "MANOEL URBANO"
                },
                {
                    "id": 10023,
                    "nome": "BOM JESUS DE CUIABA, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 10024,
                    "nome": "VILA MADALENA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10025,
                    "nome": "AVENIDA FRANCISCO MATARAZZO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10026,
                    "nome": "JARDIM PRESIDENTE DUTRA, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 10027,
                    "nome": "PEDERNEIRAS, SP",
                    "municipio": "PEDERNEIRAS"
                },
                {
                    "id": 10028,
                    "nome": "JARDIM ANGELA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10029,
                    "nome": "JUREMA, CE",
                    "municipio": "CAUCAIA"
                },
                {
                    "id": 10030,
                    "nome": "PIRABEIRABA, SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 10031,
                    "nome": "PORTO DE GALINHAS, PE",
                    "municipio": "IPOJUCA"
                },
                {
                    "id": 10032,
                    "nome": "Ag�ncia 32830",
                    "municipio": ""
                },
                {
                    "id": 10033,
                    "nome": "32831",
                    "municipio": ""
                },
                {
                    "id": 10034,
                    "nome": "AVENIDA DAS CEREJEIRAS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10035,
                    "nome": "ALTO DA PENHA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10036,
                    "nome": "BERNARDINO DE CAMPOS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10037,
                    "nome": "AGUIA DE HAIA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10038,
                    "nome": "PENAPOLIS, SP",
                    "municipio": "PENAPOLIS"
                },
                {
                    "id": 10039,
                    "nome": "AGUAS DO PANTANAL, MT",
                    "municipio": "CACERES"
                },
                {
                    "id": 10040,
                    "nome": "CORIFEU DE AZEVEDO MARQUES, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10041,
                    "nome": "ILHA DO MEL, PR",
                    "municipio": "PARANAGUA"
                },
                {
                    "id": 10042,
                    "nome": "FRAGATA, RS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 10043,
                    "nome": "AVENIDA SANTOS DUMONT, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 10044,
                    "nome": "SAO VITO, SP",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 10045,
                    "nome": "ITAPEMA, SC",
                    "municipio": "ITAPEMA"
                },
                {
                    "id": 10046,
                    "nome": "BAIRRO COSTA E SILVA, SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 10047,
                    "nome": "RIBEIRA, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 10048,
                    "nome": "PINDAMONHANGABA, SP",
                    "municipio": "PINDAMONHANGABA"
                },
                {
                    "id": 10049,
                    "nome": "CANHEMA, SP",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 10050,
                    "nome": "CIDADE DOS ARACAS, SP",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 10051,
                    "nome": "NOSSA SENHORA DA GLORIA, SE",
                    "municipio": "NOSSA SENHORA DA GLORIA"
                },
                {
                    "id": 10052,
                    "nome": "LAGOA DOURADA, PR",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 10053,
                    "nome": "LAGO DO TABOAO, SP",
                    "municipio": "BRAGANCA PAULISTA"
                },
                {
                    "id": 10054,
                    "nome": "SUMAREZINHO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10055,
                    "nome": "PRAIA DE BOTAFOGO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10056,
                    "nome": "ITACIBA, ES",
                    "municipio": "CARIACICA"
                },
                {
                    "id": 10057,
                    "nome": "PINHAL, SP",
                    "municipio": "ESPIRITO SANTO DO PINHAL"
                },
                {
                    "id": 10058,
                    "nome": "LAGO NORTE, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 10059,
                    "nome": "SHOPPING DEL REY, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 10060,
                    "nome": "JARDIM SAO LUIZ, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10061,
                    "nome": "TOCANTINS, TO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 10062,
                    "nome": "CARIRI, PB",
                    "municipio": "MONTEIRO"
                },
                {
                    "id": 10063,
                    "nome": "AEROPORTO DE CONGONHAS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10064,
                    "nome": "ITIRAPINA, SP",
                    "municipio": "ITIRAPINA"
                },
                {
                    "id": 10065,
                    "nome": "PIRACICABA, SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 10066,
                    "nome": "ESTACAO EXPERIMENTAL, AC",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 10067,
                    "nome": "JUREIA, SP",
                    "municipio": "PERUIBE"
                },
                {
                    "id": 10068,
                    "nome": "FRANCISCO DEROSSO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10069,
                    "nome": "AV CARLOS LACERDA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10070,
                    "nome": "VILA REGENTE FEIJO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10071,
                    "nome": "UBIRATA, PR",
                    "municipio": "UBIRATA"
                },
                {
                    "id": 10072,
                    "nome": "ALTONIA, PR",
                    "municipio": "ALTONIA"
                },
                {
                    "id": 10073,
                    "nome": "LARGO DE PINHEIROS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10074,
                    "nome": "VILA SOCORRO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10075,
                    "nome": "PIRAJU, SP",
                    "municipio": "PIRAJU"
                },
                {
                    "id": 10076,
                    "nome": "VILA MASCOTE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10077,
                    "nome": "ILHABELA, SP",
                    "municipio": "ILHABELA"
                },
                {
                    "id": 10078,
                    "nome": "SANTANA DE PARNAIBA, SP",
                    "municipio": "SANTANA DE PARNAIBA"
                },
                {
                    "id": 10079,
                    "nome": "AGUAS DO ARAGUAIA, MT",
                    "municipio": "BARRA DO GARCAS"
                },
                {
                    "id": 10080,
                    "nome": "TARAUACA, AC",
                    "municipio": "TARAUACA"
                },
                {
                    "id": 10081,
                    "nome": "PIRASSUNUNGA, SP",
                    "municipio": "PIRASSUNUNGA"
                },
                {
                    "id": 10082,
                    "nome": "SENA MADUREIRA, AC",
                    "municipio": "SENA MADUREIRA"
                },
                {
                    "id": 10083,
                    "nome": "RUA DOS ITALIANOS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10084,
                    "nome": "BARREIRINHA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10085,
                    "nome": "AVENIDA PROFESSOR OSCAR PEREIRA, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10086,
                    "nome": "PRESIDENTE WILSON, SP",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 10087,
                    "nome": "CINCINATO BRAGA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10088,
                    "nome": "TIBIRI, PB",
                    "municipio": "SANTA RITA"
                },
                {
                    "id": 10089,
                    "nome": "MANAUARA SHOPPING, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 10090,
                    "nome": "335",
                    "municipio": ""
                },
                {
                    "id": 10091,
                    "nome": "ITAMONTE, MG",
                    "municipio": "ITAMONTE"
                },
                {
                    "id": 10092,
                    "nome": "SALVADOR SHOPPING, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10093,
                    "nome": "CRUZEIRO DO OESTE, PR",
                    "municipio": "CRUZEIRO DO OESTE"
                },
                {
                    "id": 10094,
                    "nome": "MUTINGA, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 10095,
                    "nome": "JUNDIAPEBA, SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 10096,
                    "nome": "RIO DO A, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10097,
                    "nome": "PRESIDENTE EPITACIO, SP",
                    "municipio": "PRESIDENTE EPITACIO"
                },
                {
                    "id": 10098,
                    "nome": "PAICANDU, PR",
                    "municipio": "PAICANDU"
                },
                {
                    "id": 10099,
                    "nome": "ITAPOA, SC",
                    "municipio": "ITAPOA"
                },
                {
                    "id": 10100,
                    "nome": "ALTO DO TATUAPE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10101,
                    "nome": "CIDADE DE PINHEIROS, ES",
                    "municipio": "PINHEIROS"
                },
                {
                    "id": 10102,
                    "nome": "PONTE DOS CARVALHOS, PE",
                    "municipio": "CABO DE SANTO AGOSTINHO"
                },
                {
                    "id": 10103,
                    "nome": "CRISTALINA, GO",
                    "municipio": "CRISTALINA"
                },
                {
                    "id": 10104,
                    "nome": "PRESIDENTE PRUDENTE, SP",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 10105,
                    "nome": "GRACIOSA, PR",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 10106,
                    "nome": "3372",
                    "municipio": ""
                },
                {
                    "id": 10107,
                    "nome": "3374",
                    "municipio": ""
                },
                {
                    "id": 10108,
                    "nome": "CIPO GUACU, SP",
                    "municipio": "EMBU-GUACU"
                },
                {
                    "id": 10109,
                    "nome": "SAO FRANCISCO DAS PEDRAS, MG",
                    "municipio": "SAO FRANCISCO"
                },
                {
                    "id": 10110,
                    "nome": "SAO GONCALO DO RIO ABAIXO, MG",
                    "municipio": "SAO GONCALO DO RIO ABAIXO"
                },
                {
                    "id": 10111,
                    "nome": "CAPELINHA, MG",
                    "municipio": "CAPELINHA"
                },
                {
                    "id": 10112,
                    "nome": "SITIO CERCADO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10113,
                    "nome": "PRESIDENTE VENCESLAU, SP",
                    "municipio": "PRESIDENTE VENCESLAU"
                },
                {
                    "id": 10114,
                    "nome": "AV COM ALEXANDRINO GARCIA, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 10115,
                    "nome": "LUCAS DO RIO VERDE, MT",
                    "municipio": "LUCAS DO RIO VERDE"
                },
                {
                    "id": 10116,
                    "nome": "CAMPO VERDE, MT",
                    "municipio": "CAMPO VERDE"
                },
                {
                    "id": 10117,
                    "nome": "TOCANTINOPOLIS, TO",
                    "municipio": "TOCANTINOPOLIS"
                },
                {
                    "id": 10118,
                    "nome": "JARDIM DAS AMERICAS, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10119,
                    "nome": "DIRCEU ARCOVERDE, PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 10120,
                    "nome": "RANCHARIA, SP",
                    "municipio": "RANCHARIA"
                },
                {
                    "id": 10121,
                    "nome": "SARAPUI, RJ",
                    "municipio": "BELFORD ROXO"
                },
                {
                    "id": 10122,
                    "nome": "CAVALEIROS, RJ",
                    "municipio": "MACAE"
                },
                {
                    "id": 10123,
                    "nome": "INGLESES, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 10124,
                    "nome": "DEMARCHI, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 10125,
                    "nome": "ESPLANADA, BA",
                    "municipio": "ESPLANADA"
                },
                {
                    "id": 10126,
                    "nome": "REMANSO, BA",
                    "municipio": "REMANSO"
                },
                {
                    "id": 10127,
                    "nome": "USP, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10128,
                    "nome": "BAIRRO FAZENDINHA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10129,
                    "nome": "PARAIBUNA, MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 10130,
                    "nome": "ALECRIM, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 10131,
                    "nome": "RIBEIRAO PRETO, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 10132,
                    "nome": "CARMO DO RIO CLARO, MG",
                    "municipio": "CARMO DO RIO CLARO"
                },
                {
                    "id": 10133,
                    "nome": "TRIUNFO, RS",
                    "municipio": "TRIUNFO"
                },
                {
                    "id": 10134,
                    "nome": "ITAPACI, GO",
                    "municipio": "ITAPACI"
                },
                {
                    "id": 10135,
                    "nome": "AVENIDA UM, SP",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 10136,
                    "nome": "GOIANIRA, GO",
                    "municipio": "GOIANIRA"
                },
                {
                    "id": 10137,
                    "nome": "MESQUITA, RJ",
                    "municipio": "MESQUITA"
                },
                {
                    "id": 10138,
                    "nome": "ABELARDO LUZ, SC",
                    "municipio": "ABELARDO LUZ"
                },
                {
                    "id": 10139,
                    "nome": "RIO CLARO, SP",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 10140,
                    "nome": "TAIOBEIRAS, MG",
                    "municipio": "TAIOBEIRAS"
                },
                {
                    "id": 10141,
                    "nome": "SHOPPING PARALELA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10142,
                    "nome": "BAIRRO ALTO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10143,
                    "nome": "NOVA FORQUILHINHA, SC",
                    "municipio": "FORQUILHINHA"
                },
                {
                    "id": 10144,
                    "nome": "BRASILEIA, AC",
                    "municipio": "BRASILEIA"
                },
                {
                    "id": 10145,
                    "nome": "OLIVEIRA PAIVA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 10146,
                    "nome": "SUDOESTE GOIANO, GO",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 10147,
                    "nome": "SALTO, SP",
                    "municipio": "SALTO"
                },
                {
                    "id": 10148,
                    "nome": "MOJU, PA",
                    "municipio": "MOJU"
                },
                {
                    "id": 10149,
                    "nome": "ILHA DE ITAPARICA, BA",
                    "municipio": "ITAPARICA"
                },
                {
                    "id": 10150,
                    "nome": "PORTO ACRE, AC",
                    "municipio": "PORTO ACRE"
                },
                {
                    "id": 10151,
                    "nome": "BUJARI, AC",
                    "municipio": "BUJARI"
                },
                {
                    "id": 10152,
                    "nome": "GUAPIACU, SP",
                    "municipio": "GUAPIACU"
                },
                {
                    "id": 10153,
                    "nome": "AGUAI, SP",
                    "municipio": "AGUAI"
                },
                {
                    "id": 10154,
                    "nome": "NOIVA DA COLINA, SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 10155,
                    "nome": "VALE DO GUAPORE, RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 10156,
                    "nome": "SANTA CRUZ DO RIO PARDO, SP",
                    "municipio": "SANTA CRUZ DO RIO PARDO"
                },
                {
                    "id": 10157,
                    "nome": "PORTO VELHO SHOPPING, RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 10158,
                    "nome": "ALTO ARAGUAIA, MT",
                    "municipio": "ALTO ARAGUAIA"
                },
                {
                    "id": 10159,
                    "nome": "ALTA FLORESTA DO OESTE, RO",
                    "municipio": "ALTA FLORESTA D'OESTE"
                },
                {
                    "id": 10160,
                    "nome": "GUARANTA DO NORTE, MT",
                    "municipio": "GUARANTA DO NORTE"
                },
                {
                    "id": 10161,
                    "nome": "CANDEIAS DO JAMARI, RO",
                    "municipio": "CANDEIAS DO JAMARI"
                },
                {
                    "id": 10162,
                    "nome": "JUINA, MT",
                    "municipio": "JUINA"
                },
                {
                    "id": 10163,
                    "nome": "BARRAS, PI",
                    "municipio": "BARRAS"
                },
                {
                    "id": 10164,
                    "nome": "CONFRESA, MT",
                    "municipio": "CONFRESA"
                },
                {
                    "id": 10165,
                    "nome": "NEROPOLIS, GO",
                    "municipio": "NEROPOLIS"
                },
                {
                    "id": 10166,
                    "nome": "PONTES E LACERDA, MT",
                    "municipio": "PONTES E LACERDA"
                },
                {
                    "id": 10167,
                    "nome": "SANTO ANDRE, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 10168,
                    "nome": "CHAPADAO DO SUL, MS",
                    "municipio": "CHAPADAO DO SUL"
                },
                {
                    "id": 10169,
                    "nome": "AMAMBAI, MS",
                    "municipio": "AMAMBAI"
                },
                {
                    "id": 10170,
                    "nome": "CAMPO NOVO PARECIS, MT",
                    "municipio": "CAMPO NOVO DO PARECIS"
                },
                {
                    "id": 10171,
                    "nome": "TAUA, CE",
                    "municipio": "TAUA"
                },
                {
                    "id": 10172,
                    "nome": "PLANALTINA DE GOIAS, GO",
                    "municipio": "PLANALTINA"
                },
                {
                    "id": 10173,
                    "nome": "CRISTAL, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10174,
                    "nome": "ELDORADO DO SUL, RS",
                    "municipio": "ELDORADO DO SUL"
                },
                {
                    "id": 10175,
                    "nome": "JARDIM PLANALTO, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10176,
                    "nome": "AV JOAO CORREA, RS",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 10177,
                    "nome": "FERRABRAZ, RS",
                    "municipio": "SAPIRANGA"
                },
                {
                    "id": 10178,
                    "nome": "SANTOS, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 10179,
                    "nome": "PARQUE DOS ANJOS, RS",
                    "municipio": "GRAVATAI"
                },
                {
                    "id": 10180,
                    "nome": "VALE DO SOL, RS",
                    "municipio": "CACHOEIRINHA"
                },
                {
                    "id": 10181,
                    "nome": "MATHIAS VELHO, RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 10182,
                    "nome": "SERTORIO, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10183,
                    "nome": "SANTOS FERREIRA, RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 10184,
                    "nome": "AV JULIO DE CASTILHO, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 10185,
                    "nome": "COLIDER, MT",
                    "municipio": "COLIDER"
                },
                {
                    "id": 10186,
                    "nome": "VILA SANTA ISABEL, RS",
                    "municipio": "VIAMAO"
                },
                {
                    "id": 10187,
                    "nome": "JALAPAO, TO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 10188,
                    "nome": "SERRA DO CARMO, TO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 10189,
                    "nome": "SAO BERNARDO DO CAMPO, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 10190,
                    "nome": "INTERCAP, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10191,
                    "nome": "METROPOLITANA, RS",
                    "municipio": "ALVORADA"
                },
                {
                    "id": 10192,
                    "nome": "VILLAS DO ATLANTICO, BA",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 10193,
                    "nome": "ITINGA, BA",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 10194,
                    "nome": "RIO LONTRA, TO",
                    "municipio": "ARAGUAINA"
                },
                {
                    "id": 10195,
                    "nome": "34646",
                    "municipio": ""
                },
                {
                    "id": 10196,
                    "nome": "MINACU, GO",
                    "municipio": "MINACU"
                },
                {
                    "id": 10197,
                    "nome": "JOSE WALTER, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 10198,
                    "nome": "PAULISTANA, PI",
                    "municipio": "PAULISTANA"
                },
                {
                    "id": 10199,
                    "nome": "MAUES, AM",
                    "municipio": "MAUES"
                },
                {
                    "id": 10200,
                    "nome": "SAO CAETANO DO SUL, SP",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 10201,
                    "nome": "SAO GONCALO DO AMARANTE, RN",
                    "municipio": "SAO GONCALO DO AMARANTE"
                },
                {
                    "id": 10202,
                    "nome": "PONTAL, SP",
                    "municipio": "PONTAL"
                },
                {
                    "id": 10203,
                    "nome": "ILHA SOLTEIRA, SP",
                    "municipio": "ILHA SOLTEIRA"
                },
                {
                    "id": 10204,
                    "nome": "AV CASTRO ALVES, SP",
                    "municipio": "MARILIA"
                },
                {
                    "id": 10205,
                    "nome": "FREI GALVAO, SP",
                    "municipio": "GUARATINGUETA"
                },
                {
                    "id": 10206,
                    "nome": "ITUPEVA, SP",
                    "municipio": "ITUPEVA"
                },
                {
                    "id": 10207,
                    "nome": "PIRAJUI, SP",
                    "municipio": "PIRAJUI"
                },
                {
                    "id": 10208,
                    "nome": "TAQUARITUBA, SP",
                    "municipio": "TAQUARITUBA"
                },
                {
                    "id": 10209,
                    "nome": "SERRANA, SP",
                    "municipio": "SERRANA"
                },
                {
                    "id": 10210,
                    "nome": "SAO CARLOS, SP",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 10211,
                    "nome": "LOMBA DO PINHEIRO, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10212,
                    "nome": "ABERTA DOS MORROS, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10213,
                    "nome": "LUIS DE CAMOES, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10214,
                    "nome": "APODI, RN",
                    "municipio": "APODI"
                },
                {
                    "id": 10215,
                    "nome": "ROSA E SILVA, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 10216,
                    "nome": "SANTA LUZIA DO SABUGI, PB",
                    "municipio": "SANTA LUZIA"
                },
                {
                    "id": 10217,
                    "nome": "PADRE REUS, RS",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 10218,
                    "nome": "BAIRRO DE MANGABEIRA, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 10219,
                    "nome": "MAG SHOPPING, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 10220,
                    "nome": "CONCEICAO DE LINHARES, ES",
                    "municipio": "LINHARES"
                },
                {
                    "id": 10221,
                    "nome": "SAO JOAO DA BOA VISTA, SP",
                    "municipio": "SAO JOAO DA BOA VISTA"
                },
                {
                    "id": 10222,
                    "nome": "SETE COLINAS, PE",
                    "municipio": "GARANHUNS"
                },
                {
                    "id": 10223,
                    "nome": "34900",
                    "municipio": ""
                },
                {
                    "id": 10224,
                    "nome": "34901",
                    "municipio": ""
                },
                {
                    "id": 10225,
                    "nome": "CABROBO, PE",
                    "municipio": "CABROBO"
                },
                {
                    "id": 10226,
                    "nome": "34911",
                    "municipio": ""
                },
                {
                    "id": 10227,
                    "nome": "PINHEIRO DO PARANA, PR",
                    "municipio": "ARAUCARIA"
                },
                {
                    "id": 10228,
                    "nome": "ZILDA ARNS, PR",
                    "municipio": "CAMPO LARGO"
                },
                {
                    "id": 10229,
                    "nome": "AGUAS CLARAS, DF",
                    "municipio": "BRASILIA (AGUAS CLARAS)"
                },
                {
                    "id": 10230,
                    "nome": "CIDADE DOS LAGOS, MA",
                    "municipio": "VIANA"
                },
                {
                    "id": 10231,
                    "nome": "AVENIDA SIQUEIRA CAMPOS, SP",
                    "municipio": "JACAREI"
                },
                {
                    "id": 10232,
                    "nome": "CIDADE DE NOVA GRANADA, SP",
                    "municipio": "NOVA GRANADA"
                },
                {
                    "id": 10233,
                    "nome": "JARDIM ODETE, SP",
                    "municipio": "ITAQUAQUECETUBA"
                },
                {
                    "id": 10234,
                    "nome": "ITAVUVU, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 10235,
                    "nome": "POTIGUAR, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 10236,
                    "nome": "MOGI DAS CRUZES, SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 10237,
                    "nome": "LAVAPES, SP",
                    "municipio": "BRAGANCA PAULISTA"
                },
                {
                    "id": 10238,
                    "nome": "MONTE APRAZIVEL, SP",
                    "municipio": "MONTE APRAZIVEL"
                },
                {
                    "id": 10239,
                    "nome": "CIDADE PEROLA, SP",
                    "municipio": "BIRIGUI"
                },
                {
                    "id": 10240,
                    "nome": "ORQUIDEA DE SUMARE, SP",
                    "municipio": "SUMARE"
                },
                {
                    "id": 10241,
                    "nome": "RUA DO FICO, SP",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 10242,
                    "nome": "AVENIDA MIRASSOLANDIA, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 10243,
                    "nome": "LUCAS GARCEZ, SP",
                    "municipio": "ATIBAIA"
                },
                {
                    "id": 10244,
                    "nome": "VILA FALCAO, SP",
                    "municipio": "BAURU"
                },
                {
                    "id": 10245,
                    "nome": "IBOTIRAMA, BA",
                    "municipio": "IBOTIRAMA"
                },
                {
                    "id": 10246,
                    "nome": "AVENIDA IRAI, PR",
                    "municipio": "PINHAIS"
                },
                {
                    "id": 10247,
                    "nome": "SAO JOSE DOS CAMPOS, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 10248,
                    "nome": "GUARAITUBA, PR",
                    "municipio": "COLOMBO"
                },
                {
                    "id": 10249,
                    "nome": "CAMPINA GRANDE DO SUL, PR",
                    "municipio": "CAMPINA GRANDE DO SUL"
                },
                {
                    "id": 10250,
                    "nome": "GUARATUBA, PR",
                    "municipio": "GUARATUBA"
                },
                {
                    "id": 10251,
                    "nome": "PARANOA, DF",
                    "municipio": "BRASILIA (PARANOA)"
                },
                {
                    "id": 10252,
                    "nome": "CATUAI SHOPPING LONDRINA, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 10253,
                    "nome": "SUAPE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 10254,
                    "nome": "MACAUBAS, BA",
                    "municipio": "MACAUBAS"
                },
                {
                    "id": 10255,
                    "nome": "ESPERA FELIZ, MG",
                    "municipio": "ESPERA FELIZ"
                },
                {
                    "id": 10256,
                    "nome": "CATOLE DO ROCHA, PB",
                    "municipio": "CATOLE DO ROCHA"
                },
                {
                    "id": 10257,
                    "nome": "CHAPADINHA, MA",
                    "municipio": "CHAPADINHA"
                },
                {
                    "id": 10258,
                    "nome": "SAO JOSE DO RIO PARDO, SP",
                    "municipio": "SAO JOSE DO RIO PARDO"
                },
                {
                    "id": 10259,
                    "nome": "NOSSA SENHORA DAS DORES, SE",
                    "municipio": "NOSSA SENHORA DAS DORES"
                },
                {
                    "id": 10260,
                    "nome": "CAMBIRELA, SC",
                    "municipio": "PALHOCA"
                },
                {
                    "id": 10261,
                    "nome": "BAIRRO FORQUILHINHA, SC",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 10262,
                    "nome": "CAMBORIU, SC",
                    "municipio": "CAMBORIU"
                },
                {
                    "id": 10263,
                    "nome": "CAMPECHE, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 10264,
                    "nome": "POETA ZININHO, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 10265,
                    "nome": "NEPOMUCENO, MG",
                    "municipio": "NEPOMUCENO"
                },
                {
                    "id": 10266,
                    "nome": "CAMAMU, BA",
                    "municipio": "CAMAMU"
                },
                {
                    "id": 10267,
                    "nome": "CAMACAN, BA",
                    "municipio": "CAMACAN"
                },
                {
                    "id": 10268,
                    "nome": "SAO JOSE DO RIO PRETO, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 10269,
                    "nome": "UBAITABA, BA",
                    "municipio": "UBAITABA"
                },
                {
                    "id": 10270,
                    "nome": "KAKOGAWA, PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 10271,
                    "nome": "NOSSA SENHORA DO SOCORRO, SE",
                    "municipio": "NOSSA SENHORA DO SOCORRO"
                },
                {
                    "id": 10272,
                    "nome": "SAO JOAO BATISTA, SC",
                    "municipio": "SAO JOAO BATISTA"
                },
                {
                    "id": 10273,
                    "nome": "GANDU, BA",
                    "municipio": "GANDU"
                },
                {
                    "id": 10274,
                    "nome": "HORIZONTE, CE",
                    "municipio": "HORIZONTE"
                },
                {
                    "id": 10275,
                    "nome": "MONTE DAS TABOCAS, PE",
                    "municipio": "VITORIA DE SANTO ANTAO"
                },
                {
                    "id": 10276,
                    "nome": "Ag�ncia 35360",
                    "municipio": ""
                },
                {
                    "id": 10277,
                    "nome": "35361",
                    "municipio": ""
                },
                {
                    "id": 10278,
                    "nome": "Ag�ncia 35364",
                    "municipio": ""
                },
                {
                    "id": 10279,
                    "nome": "CONCEICAO DO ARAGUAIA, PA",
                    "municipio": "CONCEICAO DO ARAGUAIA"
                },
                {
                    "id": 10280,
                    "nome": "CONCEICAO DAS ALAGOAS, MG",
                    "municipio": "CONCEICAO DAS ALAGOAS"
                },
                {
                    "id": 10281,
                    "nome": "FERNAO DIAS, MG",
                    "municipio": "POUSO ALEGRE"
                },
                {
                    "id": 10282,
                    "nome": "SAO VICENTE, SP",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 10283,
                    "nome": "CAPITAL DO MILHO, MG",
                    "municipio": "PATOS DE MINAS"
                },
                {
                    "id": 10284,
                    "nome": "TEOTONIO VILELA, AL",
                    "municipio": "TEOTONIO VILELA"
                },
                {
                    "id": 10285,
                    "nome": "MUCURI, BA",
                    "municipio": "MUCURI"
                },
                {
                    "id": 10286,
                    "nome": "BAIRRO BRASIL, BA",
                    "municipio": "VITORIA DA CONQUISTA"
                },
                {
                    "id": 10287,
                    "nome": "MARAGOGI, AL",
                    "municipio": "MARAGOGI"
                },
                {
                    "id": 10288,
                    "nome": "ATALAIA, AL",
                    "municipio": "ATALAIA"
                },
                {
                    "id": 10289,
                    "nome": "SANTA MARIA DA VITORIA, BA",
                    "municipio": "SANTA MARIA DA VITORIA"
                },
                {
                    "id": 10290,
                    "nome": "BOM CONSELHO, PE",
                    "municipio": "BOM CONSELHO"
                },
                {
                    "id": 10291,
                    "nome": "35470",
                    "municipio": ""
                },
                {
                    "id": 10292,
                    "nome": "35471",
                    "municipio": ""
                },
                {
                    "id": 10293,
                    "nome": "AV SETE DE SETEMBRO, PE",
                    "municipio": "PETROLINA"
                },
                {
                    "id": 10294,
                    "nome": "35480",
                    "municipio": ""
                },
                {
                    "id": 10295,
                    "nome": "35481",
                    "municipio": ""
                },
                {
                    "id": 10296,
                    "nome": "MURICI, AL",
                    "municipio": "MURICI"
                },
                {
                    "id": 10297,
                    "nome": "SERTAOZINHO, SP",
                    "municipio": "SERTAOZINHO"
                },
                {
                    "id": 10298,
                    "nome": "JUATUBA, MG",
                    "municipio": "JUATUBA"
                },
                {
                    "id": 10299,
                    "nome": "MANEJO, RJ",
                    "municipio": "RESENDE"
                },
                {
                    "id": 10300,
                    "nome": "JOAO GUIMARAES ROSA, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 10301,
                    "nome": "SINFRONIO BROCHADO, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 10302,
                    "nome": "CIDADE DE CATANDUVAS, SC",
                    "municipio": "CATANDUVAS"
                },
                {
                    "id": 10303,
                    "nome": "TAMARINDO, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 10304,
                    "nome": "RUA ANDRE DE BARROS, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10305,
                    "nome": "CAPAO RASO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10306,
                    "nome": "NOVA VICOSA, BA",
                    "municipio": "NOVA VICOSA"
                },
                {
                    "id": 10307,
                    "nome": "CARACARAI, RR",
                    "municipio": "CARACARAI"
                },
                {
                    "id": 10308,
                    "nome": "SOROCABA, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 10309,
                    "nome": "ITUBERA, BA",
                    "municipio": "ITUBERA"
                },
                {
                    "id": 10310,
                    "nome": "NOVA COTIA, SP",
                    "municipio": "COTIA"
                },
                {
                    "id": 10311,
                    "nome": "PIRENOPOLIS, GO",
                    "municipio": "PIRENOPOLIS"
                },
                {
                    "id": 10312,
                    "nome": "URUCUI, PI",
                    "municipio": "URUCUI"
                },
                {
                    "id": 10313,
                    "nome": "BURITIS DE RONDONIA, RO",
                    "municipio": "BURITIS"
                },
                {
                    "id": 10314,
                    "nome": "SAO JOAO DOS PATOS, MA",
                    "municipio": "SAO JOAO DOS PATOS"
                },
                {
                    "id": 10315,
                    "nome": "SETE DE SETEMBRO, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10316,
                    "nome": "AREIA BRANCA, RN",
                    "municipio": "AREIA BRANCA"
                },
                {
                    "id": 10317,
                    "nome": "QUARTA AVENIDA, SC",
                    "municipio": "BALNEARIO CAMBORIU"
                },
                {
                    "id": 10318,
                    "nome": "TABOAO DA SERRA, SP",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 10319,
                    "nome": "MELICIO MACHADO, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 10320,
                    "nome": "ITAPORANGA, PB",
                    "municipio": "ITAPORANGA"
                },
                {
                    "id": 10321,
                    "nome": "DOM JOSE, CE",
                    "municipio": "SOBRAL"
                },
                {
                    "id": 10322,
                    "nome": "SAO JOAO DA BARRA, RJ",
                    "municipio": "SAO JOAO DA BARRA"
                },
                {
                    "id": 10323,
                    "nome": "LARANJAL DO JARI, AP",
                    "municipio": "LARANJAL DO JARI"
                },
                {
                    "id": 10324,
                    "nome": "OURILANDIA DO NORTE, PA",
                    "municipio": "OURILANDIA DO NORTE"
                },
                {
                    "id": 10325,
                    "nome": "XINGUARA, PA",
                    "municipio": "XINGUARA"
                },
                {
                    "id": 10326,
                    "nome": "COARI, AM",
                    "municipio": "COARI"
                },
                {
                    "id": 10327,
                    "nome": "PARELHEIROS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10328,
                    "nome": "TAQUARITINGA, SP",
                    "municipio": "TAQUARITINGA"
                },
                {
                    "id": 10329,
                    "nome": "PINHEIRO MACHADO, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 10330,
                    "nome": "PRACA DA MOCA, SP",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 10331,
                    "nome": "PARADA DE TAIPAS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10332,
                    "nome": "MONSENHOR PAULO, MG",
                    "municipio": "MONSENHOR PAULO"
                },
                {
                    "id": 10333,
                    "nome": "TOME-ACU, PA",
                    "municipio": "TOME-ACU"
                },
                {
                    "id": 10334,
                    "nome": "HOLANDESES, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 10335,
                    "nome": "VELHO CHICO, BA",
                    "municipio": "JUAZEIRO"
                },
                {
                    "id": 10336,
                    "nome": "35860",
                    "municipio": ""
                },
                {
                    "id": 10337,
                    "nome": "PIRAJA, CE",
                    "municipio": "JUAZEIRO DO NORTE"
                },
                {
                    "id": 10338,
                    "nome": "VILLE ROY, RR",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 10339,
                    "nome": "INTEGRACAO, AC",
                    "municipio": "ASSIS BRASIL"
                },
                {
                    "id": 10340,
                    "nome": "TATUI, SP",
                    "municipio": "TATUI"
                },
                {
                    "id": 10341,
                    "nome": "LEOPOLDINENSE, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10342,
                    "nome": "NOVA MARABA, PA",
                    "municipio": "MARABA"
                },
                {
                    "id": 10343,
                    "nome": "EFAPI, SC",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 10344,
                    "nome": "EMPRESARIAL MANGABEIRAS, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 10345,
                    "nome": "RAUL VEIGA, RJ",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 10346,
                    "nome": "APARECIDA DE GOIANIA, GO",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 10347,
                    "nome": "ESTACAO NOVA IGUACU, RJ",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 10348,
                    "nome": "SCHROEDER, SC",
                    "municipio": "SCHROEDER"
                },
                {
                    "id": 10349,
                    "nome": "CABO BRANCO, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 10350,
                    "nome": "TAUBATE, SP",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 10351,
                    "nome": "BOSQUE DOS EUCALIPTOS, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 10352,
                    "nome": "CABREUVA, SP",
                    "municipio": "CABREUVA"
                },
                {
                    "id": 10353,
                    "nome": "INDUSTRIAL MARACANAU, CE",
                    "municipio": "MARACANAU"
                },
                {
                    "id": 10354,
                    "nome": "BAIRRO BOA VISTA, SP",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 10355,
                    "nome": "NOVA BRASILIA, RO",
                    "municipio": "JI-PARANA"
                },
                {
                    "id": 10356,
                    "nome": "TIETE, SP",
                    "municipio": "TIETE"
                },
                {
                    "id": 10357,
                    "nome": "PRESIDENTE JOSE ALENCAR, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 10358,
                    "nome": "AGUAS FORMOSAS, MG",
                    "municipio": "AGUAS FORMOSAS"
                },
                {
                    "id": 10359,
                    "nome": "RUA DE SANTANA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10360,
                    "nome": "CORDEIROS, SC",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 10361,
                    "nome": "RIBEIRAO DAS NEVES, MG",
                    "municipio": "RIBEIRAO DAS NEVES"
                },
                {
                    "id": 10362,
                    "nome": "ORIXIMINA, PA",
                    "municipio": "ORIXIMINA"
                },
                {
                    "id": 10363,
                    "nome": "NOVA CAJAZEIRAS, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10364,
                    "nome": "SALVADOR NORTE SHOPPING, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10365,
                    "nome": "POMERANOS, ES",
                    "municipio": "SANTA MARIA DE JETIBA"
                },
                {
                    "id": 10366,
                    "nome": "TUPA, SP",
                    "municipio": "TUPA"
                },
                {
                    "id": 10367,
                    "nome": "ALEXANIA, GO",
                    "municipio": "ALEXANIA"
                },
                {
                    "id": 10368,
                    "nome": "CIDADE LIVRE, GO",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 10369,
                    "nome": "102 SUDOESTE, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 10370,
                    "nome": "PORTAL DE SAO JOSE, PR",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 10371,
                    "nome": "CAPITAL DO BONE, PR",
                    "municipio": "APUCARANA"
                },
                {
                    "id": 10372,
                    "nome": "BRASIL SUL, GO",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 10373,
                    "nome": "VALINHOS, SP",
                    "municipio": "VALINHOS"
                },
                {
                    "id": 10374,
                    "nome": "TREVO, ES",
                    "municipio": "CACHOEIRO DE ITAPEMIRIM"
                },
                {
                    "id": 10375,
                    "nome": "RUBIATABA, GO",
                    "municipio": "RUBIATABA"
                },
                {
                    "id": 10376,
                    "nome": "SALINOPOLIS, PA",
                    "municipio": "SALINOPOLIS"
                },
                {
                    "id": 10377,
                    "nome": "SAO SEBASTIAO DO PASSE, BA",
                    "municipio": "SAO SEBASTIAO DO PASSE"
                },
                {
                    "id": 10378,
                    "nome": "SERTANOPOLIS, PR",
                    "municipio": "SERTANOPOLIS"
                },
                {
                    "id": 10379,
                    "nome": "PE VERMELHO, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 10380,
                    "nome": "FAXINAL, PR",
                    "municipio": "FAXINAL"
                },
                {
                    "id": 10381,
                    "nome": "PARQUE DE MARAPENDI, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10382,
                    "nome": "CELINA PARK, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 10383,
                    "nome": "ANICUNS, GO",
                    "municipio": "ANICUNS"
                },
                {
                    "id": 10384,
                    "nome": "VOTUPORANGA, SP",
                    "municipio": "VOTUPORANGA"
                },
                {
                    "id": 10385,
                    "nome": "RUI BARBOSA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10386,
                    "nome": "BALNEARIO MEIA PONTE, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 10387,
                    "nome": "PARQUE AMAZONIA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 10388,
                    "nome": "MOZARLANDIA, GO",
                    "municipio": "MOZARLANDIA"
                },
                {
                    "id": 10389,
                    "nome": "RIACHAO DO JACUIPE, BA",
                    "municipio": "RIACHAO DO JACUIPE"
                },
                {
                    "id": 10390,
                    "nome": "SUL MARANHENSE, MA",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 10391,
                    "nome": "ITAIOPOLIS, SC",
                    "municipio": "ITAIOPOLIS"
                },
                {
                    "id": 10392,
                    "nome": "NOVA MUTUM, MT",
                    "municipio": "NOVA MUTUM"
                },
                {
                    "id": 10393,
                    "nome": "RIO BRILHANTE, MS",
                    "municipio": "RIO BRILHANTE"
                },
                {
                    "id": 10394,
                    "nome": "VICENTE DE CARVALHO, SP",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 10395,
                    "nome": "TOCANTINENSE, MG",
                    "municipio": "TOCANTINS"
                },
                {
                    "id": 10396,
                    "nome": "CAPINOPOLIS, MG",
                    "municipio": "CAPINOPOLIS"
                },
                {
                    "id": 10397,
                    "nome": "ABADIA, MG",
                    "municipio": "UBERABA"
                },
                {
                    "id": 10398,
                    "nome": "IGARAPE, MG",
                    "municipio": "IGARAPE"
                },
                {
                    "id": 10399,
                    "nome": "CONTESTADO, SC",
                    "municipio": "CACADOR"
                },
                {
                    "id": 10400,
                    "nome": "TERERE, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 10401,
                    "nome": "JARDIM DOS ESTADOS, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 10402,
                    "nome": "PRAIA DA COSTA, ES",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 10403,
                    "nome": "BOQUEIRAO, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 10404,
                    "nome": "SANTA RITA DE BRUSQUE, SC",
                    "municipio": "BRUSQUE"
                },
                {
                    "id": 10405,
                    "nome": "VALE DO MUCURI, MG",
                    "municipio": "TEOFILO OTONI"
                },
                {
                    "id": 10406,
                    "nome": "BARONESA, MG",
                    "municipio": "SANTA LUZIA"
                },
                {
                    "id": 10407,
                    "nome": "PRESIDENTE MEDICI, RO",
                    "municipio": "PRESIDENTE MEDICI"
                },
                {
                    "id": 10408,
                    "nome": "PRESIDENTE JK, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 10409,
                    "nome": "JUARA, MT",
                    "municipio": "JUARA"
                },
                {
                    "id": 10410,
                    "nome": "BOM PRINCIPIO, RS",
                    "municipio": "BOM PRINCIPIO"
                },
                {
                    "id": 10411,
                    "nome": "AREAL, RS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 10412,
                    "nome": "ALEM PONTE, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 10413,
                    "nome": "COLMEIA DO TRABALHO, RS",
                    "municipio": "IJUI"
                },
                {
                    "id": 10414,
                    "nome": "PERIMETRAL SUL, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 10415,
                    "nome": "BOM JESUS DA SERRA, RS",
                    "municipio": "BOM JESUS"
                },
                {
                    "id": 10416,
                    "nome": "NOVA SAPUCAIA, RS",
                    "municipio": "SAPUCAIA DO SUL"
                },
                {
                    "id": 10417,
                    "nome": "OSVALDO ARANHA, RS",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 10418,
                    "nome": "QUEDAS DO IGUACU, PR",
                    "municipio": "QUEDAS DO IGUACU"
                },
                {
                    "id": 10419,
                    "nome": "ESPIGAO D OESTE, RO",
                    "municipio": "ESPIGAO D'OESTE"
                },
                {
                    "id": 10420,
                    "nome": "COMENDADOR, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10421,
                    "nome": "SANTO AMARO DA IMPERATRIZ, SC",
                    "municipio": "SANTO AMARO DA IMPERATRIZ"
                },
                {
                    "id": 10422,
                    "nome": "FLORESTAL, RS",
                    "municipio": "LAJEADO"
                },
                {
                    "id": 10423,
                    "nome": "CARLOS GOMES, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10424,
                    "nome": "RIO GRAJAU, MA",
                    "municipio": "GRAJAU"
                },
                {
                    "id": 10425,
                    "nome": "PONTE DO IMARUIM, SC",
                    "municipio": "PALHOCA"
                },
                {
                    "id": 10426,
                    "nome": "AREIAS, SC",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 10427,
                    "nome": "LAGOA MANGUABA, AL",
                    "municipio": "MARECHAL DEODORO"
                },
                {
                    "id": 10428,
                    "nome": "COSTA DOS CORAIS, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 10429,
                    "nome": "JACINTINHO, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 10430,
                    "nome": "ACROPOLE, MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 10431,
                    "nome": "VAZANTE, MG",
                    "municipio": "VAZANTE"
                },
                {
                    "id": 10432,
                    "nome": "TRINCHEIRAS, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 10433,
                    "nome": "BARAO DO SERRO AZUL, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10434,
                    "nome": "CAJATI, SP",
                    "municipio": "CAJATI"
                },
                {
                    "id": 10435,
                    "nome": "MELO VIANA, MG",
                    "municipio": "CORONEL FABRICIANO"
                },
                {
                    "id": 10436,
                    "nome": "IMPERADOR GALVEZ, AC",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 10437,
                    "nome": "SENADOR GUIOMARD, AC",
                    "municipio": "SENADOR GUIOMARD"
                },
                {
                    "id": 10438,
                    "nome": "FEIJO, AC",
                    "municipio": "FEIJO"
                },
                {
                    "id": 10439,
                    "nome": "HUGO SIMAS, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10440,
                    "nome": "PORTO DE SAO SIMAO, GO",
                    "municipio": "SAO SIMAO"
                },
                {
                    "id": 10441,
                    "nome": "BACACHERI, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10442,
                    "nome": "BAIRRO BOQUEIRAO, RS",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 10443,
                    "nome": "CHARQUEADAS, RS",
                    "municipio": "CHARQUEADAS"
                },
                {
                    "id": 10444,
                    "nome": "JARDIM DO SHOPPING, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 10445,
                    "nome": "NOIVA DO MAR, RS",
                    "municipio": "RIO GRANDE"
                },
                {
                    "id": 10446,
                    "nome": "NOVA SANTA RITA, RS",
                    "municipio": "NOVA SANTA RITA"
                },
                {
                    "id": 10447,
                    "nome": "PERIMETRAL NORTE, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 10448,
                    "nome": "JARDIM NOVO MUNDO, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 10449,
                    "nome": "ALTO PARAISO, RO",
                    "municipio": "ALTO PARAISO"
                },
                {
                    "id": 10450,
                    "nome": "CRISTO REI, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10451,
                    "nome": "POSSE, GO",
                    "municipio": "POSSE"
                },
                {
                    "id": 10452,
                    "nome": "CAMPOS BELOS, GO",
                    "municipio": "CAMPOS BELOS"
                },
                {
                    "id": 10453,
                    "nome": "PARQUE DAS LARANJEIRAS, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 10454,
                    "nome": "JARDIM GUANABARA, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 10455,
                    "nome": "NOROESTE, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 10456,
                    "nome": "37251",
                    "municipio": ""
                },
                {
                    "id": 10457,
                    "nome": "JUQUITIBA, SP",
                    "municipio": "JUQUITIBA"
                },
                {
                    "id": 10458,
                    "nome": "LITORAL NORTE, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 10459,
                    "nome": "PATIO, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 10460,
                    "nome": "MARECHAL DEODORO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10461,
                    "nome": "CONGADAS, GO",
                    "municipio": "CATALAO"
                },
                {
                    "id": 10462,
                    "nome": "AVENIDA INGLATERRA, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 10463,
                    "nome": "ENGENHEIRO BELTRAO, PR",
                    "municipio": "ENGENHEIRO BELTRAO"
                },
                {
                    "id": 10464,
                    "nome": "BATAGUASSU, MS",
                    "municipio": "BATAGUASSU"
                },
                {
                    "id": 10465,
                    "nome": "SAO GABRIEL D OESTE, MS",
                    "municipio": "SAO GABRIEL DO OESTE"
                },
                {
                    "id": 10466,
                    "nome": "SERRA GERAL, TO",
                    "municipio": "TAGUATINGA"
                },
                {
                    "id": 10467,
                    "nome": "GUAIRACA, PR",
                    "municipio": "GUARAPUAVA"
                },
                {
                    "id": 10468,
                    "nome": "MERCES, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10469,
                    "nome": "PARQUE ECOLOGICO, PR",
                    "municipio": "TOLEDO"
                },
                {
                    "id": 10470,
                    "nome": "CAPIM GROSSO, BA",
                    "municipio": "CAPIM GROSSO"
                },
                {
                    "id": 10471,
                    "nome": "PRINCESA ISABEL, SP",
                    "municipio": "CUBATAO"
                },
                {
                    "id": 10472,
                    "nome": "MARQUES DE SAO VICENTE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10473,
                    "nome": "MANGUEIRINHA, PR",
                    "municipio": "MANGUEIRINHA"
                },
                {
                    "id": 10474,
                    "nome": "CIDADE DAS ROSAS, MG",
                    "municipio": "BARBACENA"
                },
                {
                    "id": 10475,
                    "nome": "CARMO DO CAJURU, MG",
                    "municipio": "CARMO DO CAJURU"
                },
                {
                    "id": 10476,
                    "nome": "PORTAO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10477,
                    "nome": "POLO MOVELEIRO, MG",
                    "municipio": "UBA"
                },
                {
                    "id": 10478,
                    "nome": "GUARANESIA, MG",
                    "municipio": "GUARANESIA"
                },
                {
                    "id": 10479,
                    "nome": "MANDAGUACU, PR",
                    "municipio": "MANDAGUACU"
                },
                {
                    "id": 10480,
                    "nome": "MANDACARU, PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 10481,
                    "nome": "PARANACITY, PR",
                    "municipio": "PARANACITY"
                },
                {
                    "id": 10482,
                    "nome": "SANTA FELICIDADE, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10483,
                    "nome": "RUA PAULA SOUSA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10484,
                    "nome": "RUA DAS FLORES, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10485,
                    "nome": "AVENIDA RANGEL PESTANA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10486,
                    "nome": "LARGO DO TANQUE, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10487,
                    "nome": "NEUDORF, SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 10488,
                    "nome": "VITORIA PRAIA, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 10489,
                    "nome": "ANTONINA, PR",
                    "municipio": "ANTONINA"
                },
                {
                    "id": 10490,
                    "nome": "ZECA PRUDENTE, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 10491,
                    "nome": "GUAJARA MIRIM, RO",
                    "municipio": "GUAJARA-MIRIM"
                },
                {
                    "id": 10492,
                    "nome": "MAR GRANDE, BA",
                    "municipio": "VERA CRUZ"
                },
                {
                    "id": 10493,
                    "nome": "CANAL 3, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 10494,
                    "nome": "ALAMEDA ARAGUAIA, SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 10495,
                    "nome": "PORTO SECO PIRAJA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10496,
                    "nome": "APUCARANA, PR",
                    "municipio": "APUCARANA"
                },
                {
                    "id": 10497,
                    "nome": "MUNDO PLAZA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10498,
                    "nome": "SANTO ESTEVAO, BA",
                    "municipio": "SANTO ESTEVAO"
                },
                {
                    "id": 10499,
                    "nome": "JARDIM VITORIA, BA",
                    "municipio": "ITABUNA"
                },
                {
                    "id": 10500,
                    "nome": "COSTA DO DESCOBRIMENTO, BA",
                    "municipio": "EUNAPOLIS"
                },
                {
                    "id": 10501,
                    "nome": "CORRENTINA, BA",
                    "municipio": "CORRENTINA"
                },
                {
                    "id": 10502,
                    "nome": "RIO DE ONDAS, BA",
                    "municipio": "BARREIRAS"
                },
                {
                    "id": 10503,
                    "nome": "BARRA DO RIO GRANDE, BA",
                    "municipio": "BARRA"
                },
                {
                    "id": 10504,
                    "nome": "RESSACA, MG",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 10505,
                    "nome": "LIMA DUARTE, MG",
                    "municipio": "LIMA DUARTE"
                },
                {
                    "id": 10506,
                    "nome": "BARRA DA ESTIVA, BA",
                    "municipio": "BARRA DA ESTIVA"
                },
                {
                    "id": 10507,
                    "nome": "BANANEIRAS, PB",
                    "municipio": "BANANEIRAS"
                },
                {
                    "id": 10508,
                    "nome": "ARAPONGAS, PR",
                    "municipio": "ARAPONGAS"
                },
                {
                    "id": 10509,
                    "nome": "AVENIDA FRAGA MAIA, BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 10510,
                    "nome": "FROES DA MOTA, BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 10511,
                    "nome": "SANTA MONICA, BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 10512,
                    "nome": "TUCANO, BA",
                    "municipio": "TUCANO"
                },
                {
                    "id": 10513,
                    "nome": "POJUCA, BA",
                    "municipio": "POJUCA"
                },
                {
                    "id": 10514,
                    "nome": "PORTICO DE OURO, BA",
                    "municipio": "ALAGOINHAS"
                },
                {
                    "id": 10515,
                    "nome": "AV TANCREDO NEVES, PR",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 10516,
                    "nome": "CAJUINA, PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 10517,
                    "nome": "JARDIM COLONIAL, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10518,
                    "nome": "ARAUCARIA, PR",
                    "municipio": "ARAUCARIA"
                },
                {
                    "id": 10519,
                    "nome": "VILA VIRGINIA, SP",
                    "municipio": "ITAQUAQUECETUBA"
                },
                {
                    "id": 10520,
                    "nome": "ITAPAJE, CE",
                    "municipio": "ITAPAGE"
                },
                {
                    "id": 10521,
                    "nome": "TRES MARIAS, MG",
                    "municipio": "TRES MARIAS"
                },
                {
                    "id": 10522,
                    "nome": "SAO CAETANO, MG",
                    "municipio": "BETIM"
                },
                {
                    "id": 10523,
                    "nome": "CARMOPOLIS DE MINAS, MG",
                    "municipio": "CARMOPOLIS DE MINAS"
                },
                {
                    "id": 10524,
                    "nome": "MARTINHO CAMPOS, MG",
                    "municipio": "MARTINHO CAMPOS"
                },
                {
                    "id": 10525,
                    "nome": "BANDEIRANTES, PR",
                    "municipio": "BANDEIRANTES"
                },
                {
                    "id": 10526,
                    "nome": "9 DE MAIO, BA",
                    "municipio": "TEIXEIRA DE FREITAS"
                },
                {
                    "id": 10527,
                    "nome": "MIRASSOL D OESTE, MT",
                    "municipio": "MIRASSOL D'OESTE"
                },
                {
                    "id": 10528,
                    "nome": "ARMACAO DOS BUZIOS, RJ",
                    "municipio": "ARMACAO DOS BUZIOS"
                },
                {
                    "id": 10529,
                    "nome": "SAPEZAL, MT",
                    "municipio": "SAPEZAL"
                },
                {
                    "id": 10530,
                    "nome": "AGUA BRANCA, PI",
                    "municipio": "AGUA BRANCA"
                },
                {
                    "id": 10531,
                    "nome": "TERESINA NORTE, PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 10532,
                    "nome": "TERESINA LESTE, PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 10533,
                    "nome": "CAMBARA, PR",
                    "municipio": "CAMBARA"
                },
                {
                    "id": 10534,
                    "nome": "FATIMA, SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 10535,
                    "nome": "CONDA, SC",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 10536,
                    "nome": "TERRA DO MEL, PI",
                    "municipio": "PICOS"
                },
                {
                    "id": 10537,
                    "nome": "HERVAL D OESTE, SC",
                    "municipio": "HERVAL D'OESTE"
                },
                {
                    "id": 10538,
                    "nome": "ESPERANTINA, PI",
                    "municipio": "ESPERANTINA"
                },
                {
                    "id": 10539,
                    "nome": "MARCO, CE",
                    "municipio": "MARCO"
                },
                {
                    "id": 10540,
                    "nome": "ARACAJU NORTE, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 10541,
                    "nome": "ACOPIARA, CE",
                    "municipio": "ACOPIARA"
                },
                {
                    "id": 10542,
                    "nome": "CAMPOS SALES, CE",
                    "municipio": "CAMPOS SALES"
                },
                {
                    "id": 10543,
                    "nome": "CAMBE, PR",
                    "municipio": "CAMBE"
                },
                {
                    "id": 10544,
                    "nome": "CIDADE SOL, BA",
                    "municipio": "JEQUIE"
                },
                {
                    "id": 10545,
                    "nome": "VILA IMPERIAL, BA",
                    "municipio": "VITORIA DA CONQUISTA"
                },
                {
                    "id": 10546,
                    "nome": "SAO MIGUEL DO IGUACU, PR",
                    "municipio": "SAO MIGUEL DO IGUACU"
                },
                {
                    "id": 10547,
                    "nome": "SALVADOR PRIME, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10548,
                    "nome": "CAPITAO LEONIDAS MARQUES, PR",
                    "municipio": "CAPITAO LEONIDAS MARQUES"
                },
                {
                    "id": 10549,
                    "nome": "SERRA GRANDE, CE",
                    "municipio": "SAO BENEDITO"
                },
                {
                    "id": 10550,
                    "nome": "ITAMARANDIBA, MG",
                    "municipio": "ITAMARANDIBA"
                },
                {
                    "id": 10551,
                    "nome": "CAPITAO INDIO BANDEIRA, PR",
                    "municipio": "CAMPO MOURAO"
                },
                {
                    "id": 10552,
                    "nome": "SAO JOAO DO PIAUI, PI",
                    "municipio": "SAO JOAO DO PIAUI"
                },
                {
                    "id": 10553,
                    "nome": "CATEDRAL MARINGA, PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 10554,
                    "nome": "CAMPO LARGO, PR",
                    "municipio": "CAMPO LARGO"
                },
                {
                    "id": 10555,
                    "nome": "SAO LUDGERO, SC",
                    "municipio": "SAO LUDGERO"
                },
                {
                    "id": 10556,
                    "nome": "VEST MODA, PR",
                    "municipio": "CIANORTE"
                },
                {
                    "id": 10557,
                    "nome": "NOSSA SENHORA DE FATIMA, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 10558,
                    "nome": "SAO MIGUEL ARCANJO, SP",
                    "municipio": "SAO MIGUEL ARCANJO"
                },
                {
                    "id": 10559,
                    "nome": "APIAI, SP",
                    "municipio": "APIAI"
                },
                {
                    "id": 10560,
                    "nome": "VILA PRADO, SP",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 10561,
                    "nome": "VILA TUPI, SP",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 10562,
                    "nome": "AMPERE, PR",
                    "municipio": "AMPERE"
                },
                {
                    "id": 10563,
                    "nome": "FREI GASPAR, SP",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 10564,
                    "nome": "SANTA FILOMENA, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 10565,
                    "nome": "CAMPO MOURAO, PR",
                    "municipio": "CAMPO MOURAO"
                },
                {
                    "id": 10566,
                    "nome": "JARDIM SAO JOAO, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 10567,
                    "nome": "CIDADE DAS AGUAS, MS",
                    "municipio": "TRES LAGOAS"
                },
                {
                    "id": 10568,
                    "nome": "JAVAE, TO",
                    "municipio": "GURUPI"
                },
                {
                    "id": 10569,
                    "nome": "JARDIM SABARA, PR",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 10570,
                    "nome": "CAARAPO, MS",
                    "municipio": "CAARAPO"
                },
                {
                    "id": 10571,
                    "nome": "PIRAQUARA, PR",
                    "municipio": "PIRAQUARA"
                },
                {
                    "id": 10572,
                    "nome": "AGUA BOA, MT",
                    "municipio": "AGUA BOA"
                },
                {
                    "id": 10573,
                    "nome": "CAPITAL DA AMIZADE, PR",
                    "municipio": "UMUARAMA"
                },
                {
                    "id": 10574,
                    "nome": "ITAPIRANGA, SC",
                    "municipio": "ITAPIRANGA"
                },
                {
                    "id": 10575,
                    "nome": "CASTRO, PR",
                    "municipio": "CASTRO"
                },
                {
                    "id": 10576,
                    "nome": "STELLA MARIS, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10577,
                    "nome": "AV HELIO PRATES, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 10578,
                    "nome": "NEREU RAMOS, SC",
                    "municipio": "LAGES"
                },
                {
                    "id": 10579,
                    "nome": "HUGO LANGE, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10580,
                    "nome": "KENNEDY, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10581,
                    "nome": "CORNELIO PROCOPIO, PR",
                    "municipio": "CORNELIO PROCOPIO"
                },
                {
                    "id": 10582,
                    "nome": "3880",
                    "municipio": ""
                },
                {
                    "id": 10583,
                    "nome": "38801",
                    "municipio": ""
                },
                {
                    "id": 10584,
                    "nome": "BAIRRO TRES VENDAS, RS",
                    "municipio": "ERECHIM"
                },
                {
                    "id": 10585,
                    "nome": "VICENTE DA FONTOURA, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10586,
                    "nome": "PRACA INDEPENDENCIA, RS",
                    "municipio": "SANTA ROSA"
                },
                {
                    "id": 10587,
                    "nome": "VINTE E TRES DE SETEMBRO, SC",
                    "municipio": "SAO BENTO DO SUL"
                },
                {
                    "id": 10588,
                    "nome": "IMIGRANTES DE CONCORDIA, SC",
                    "municipio": "CONCORDIA"
                },
                {
                    "id": 10589,
                    "nome": "VALENCA DO PIAUI, PI",
                    "municipio": "VALENCA DO PIAUI"
                },
                {
                    "id": 10590,
                    "nome": "AVENIDA BARROS REIS, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10591,
                    "nome": "GUARAPUAVA, PR",
                    "municipio": "GUARAPUAVA"
                },
                {
                    "id": 10592,
                    "nome": "CANINDE DE SAO FRANCISCO, SE",
                    "municipio": "CANINDE DE SAO FRANCISCO"
                },
                {
                    "id": 10593,
                    "nome": "LESTE MANAUARA, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 10594,
                    "nome": "CABEDELO, PB",
                    "municipio": "CABEDELO"
                },
                {
                    "id": 10595,
                    "nome": "IRATI, PR",
                    "municipio": "IRATI"
                },
                {
                    "id": 10596,
                    "nome": "JAPIIM, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 10597,
                    "nome": "CIDADE DA ENERGIA, PA",
                    "municipio": "TUCURUI"
                },
                {
                    "id": 10598,
                    "nome": "RAIAR DO SOL, RR",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 10599,
                    "nome": "CRUVIANA, RR",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 10600,
                    "nome": "RONDON DO PARA, PA",
                    "municipio": "RONDON DO PARA"
                },
                {
                    "id": 10601,
                    "nome": "JACAREZINHO, PR",
                    "municipio": "JACAREZINHO"
                },
                {
                    "id": 10602,
                    "nome": "CAMBUI DE CAMPINAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 10603,
                    "nome": "PINHAIS, PR",
                    "municipio": "PINHAIS"
                },
                {
                    "id": 10604,
                    "nome": "TEUTONIA, RS",
                    "municipio": "TEUTONIA"
                },
                {
                    "id": 10605,
                    "nome": "JAGUARIAIVA, PR",
                    "municipio": "JAGUARIAIVA"
                },
                {
                    "id": 10606,
                    "nome": "UNIVERSIDADE DE BRASILIA - UNB, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 10607,
                    "nome": "PRIMAVERA DO LESTE, MT",
                    "municipio": "PRIMAVERA DO LESTE"
                },
                {
                    "id": 10608,
                    "nome": "LAPA, PR",
                    "municipio": "LAPA"
                },
                {
                    "id": 10609,
                    "nome": "TAQUARALTO, TO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 10610,
                    "nome": "LONDRINA, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 10611,
                    "nome": "CEFET - ARACAJU - SE",
                    "municipio": ""
                },
                {
                    "id": 10612,
                    "nome": "PORTO SEGURO, BA",
                    "municipio": "PORTO SEGURO"
                },
                {
                    "id": 10613,
                    "nome": "MARINGA, PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 10614,
                    "nome": "JARACATY, MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 10615,
                    "nome": "MORRETES, PR",
                    "municipio": "MORRETES"
                },
                {
                    "id": 10616,
                    "nome": "VIRGILIO GALASSI, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 10617,
                    "nome": "IMIGRANTE, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 10618,
                    "nome": "TATUIBI, SP",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 10619,
                    "nome": "PALMEIRA, PR",
                    "municipio": "PALMEIRA"
                },
                {
                    "id": 10620,
                    "nome": "VILA A, PR",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 10621,
                    "nome": "PARANAGUA, PR",
                    "municipio": "PARANAGUA"
                },
                {
                    "id": 10622,
                    "nome": "FORUM CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 10623,
                    "nome": "PARANAVAI, PR",
                    "municipio": "PARANAVAI"
                },
                {
                    "id": 10624,
                    "nome": "NOSSA SENHORA DAS MERCES, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10625,
                    "nome": "BERNARDO SAYAO, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 10626,
                    "nome": "CAJAZEIRAS, PB",
                    "municipio": "CAJAZEIRAS"
                },
                {
                    "id": 10627,
                    "nome": "PONTA GROSSA, PR",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 10628,
                    "nome": "AV DAS AMOREIRAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 10629,
                    "nome": "ARICANDUVA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10630,
                    "nome": "ARTUR ALVIM, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10631,
                    "nome": "MATEO BEI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10632,
                    "nome": "PRUDENTOPOLIS, PR",
                    "municipio": "PRUDENTOPOLIS"
                },
                {
                    "id": 10633,
                    "nome": "INTERLAGOS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10634,
                    "nome": "SAPOPEMBA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10635,
                    "nome": "RETIRO, RJ",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 10636,
                    "nome": "RIBEIRAO CLARO, PR",
                    "municipio": "RIBEIRAO CLARO"
                },
                {
                    "id": 10637,
                    "nome": "PETROBRAS IMBETIBA, RJ",
                    "municipio": "MACAE"
                },
                {
                    "id": 10638,
                    "nome": "Ag�ncia 4025",
                    "municipio": ""
                },
                {
                    "id": 10639,
                    "nome": "PIRAPORINHA, SP",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 10640,
                    "nome": "4028",
                    "municipio": ""
                },
                {
                    "id": 10641,
                    "nome": "RIO NEGRO, PR",
                    "municipio": "RIO NEGRO"
                },
                {
                    "id": 10642,
                    "nome": "GUAIANASES, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10643,
                    "nome": "PARQUE SAO LUCAS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10644,
                    "nome": "TUCURUVI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10645,
                    "nome": "GIOVANNI BREDA, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 10646,
                    "nome": "RUA SCHILLING, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10647,
                    "nome": "PIRAJUSSARA, SP",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 10648,
                    "nome": "ROLANDIA, PR",
                    "municipio": "ROLANDIA"
                },
                {
                    "id": 10649,
                    "nome": "QUITAUNA, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 10650,
                    "nome": "JARDIM OCEANICO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10651,
                    "nome": "PARQUE NOVO MUNDO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10652,
                    "nome": "ERMELINO MATARAZZO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10653,
                    "nome": "PIRITUBA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10654,
                    "nome": "SANTO ANTONIO DA PLATINA, PR",
                    "municipio": "SANTO ANTONIO DA PLATINA"
                },
                {
                    "id": 10655,
                    "nome": "BELAS ARTES, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10656,
                    "nome": "AYRTON SENNA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10657,
                    "nome": "VILA DIRCE, SP",
                    "municipio": "CARAPICUIBA"
                },
                {
                    "id": 10658,
                    "nome": "ADONIRAN BARBOSA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10659,
                    "nome": "PARAPUA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10660,
                    "nome": "FORUM TRABALHISTA DE CAMPINAS, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 10661,
                    "nome": "VILA PIRES, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 10662,
                    "nome": "SAO JOSE DOS PINHAIS, PR",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 10663,
                    "nome": "HADDOCK LOBO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10664,
                    "nome": "FREGUESIA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10665,
                    "nome": "TELEPORTO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10666,
                    "nome": "CANGAIBA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10667,
                    "nome": "BEIRA RIO, SP",
                    "municipio": "JACAREI"
                },
                {
                    "id": 10668,
                    "nome": "LIMAO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10669,
                    "nome": "UNIAO DA VITORIA, PR",
                    "municipio": "UNIAO DA VITORIA"
                },
                {
                    "id": 10670,
                    "nome": "PRACA DA REPUBLICA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10671,
                    "nome": "CAPAO REDONDO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10672,
                    "nome": "AV SANTA CATARINA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10673,
                    "nome": "VIA BRASIL, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 10674,
                    "nome": "MANDAQUI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10675,
                    "nome": "JARDIM DAS OLIVEIRAS, SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 10676,
                    "nome": "VILA SONIA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10677,
                    "nome": "BOM RETIRO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10678,
                    "nome": "NACOES UNIDAS, SP",
                    "municipio": "BAURU"
                },
                {
                    "id": 10679,
                    "nome": "BOSQUE MAIA, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 10680,
                    "nome": "ANITA GARIBALDI, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 10681,
                    "nome": "OTAVIO BRAGA, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 10682,
                    "nome": "AV INDEPENDENCIA, SP",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 10683,
                    "nome": "JARDIM MOSTEIRO, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 10684,
                    "nome": "BONFIM, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 10685,
                    "nome": "JOAO JORGE, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 10686,
                    "nome": "JAGUARE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10687,
                    "nome": "VILA VALQUEIRE, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10688,
                    "nome": "RIO OESTE, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10689,
                    "nome": "HORTOLANDIA, SP",
                    "municipio": "HORTOLANDIA"
                },
                {
                    "id": 10690,
                    "nome": "JARDIM OURO VERDE, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 10691,
                    "nome": "NEWTON MACUCO, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 10692,
                    "nome": "SOROCABA NORTE, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 10693,
                    "nome": "VILA INDUSTRIAL, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 10694,
                    "nome": "PARQUE ANCHIETA, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 10695,
                    "nome": "PARQUE DAS NACOES, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 10696,
                    "nome": "CURUCA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10697,
                    "nome": "BELFORD ROXO, RJ",
                    "municipio": "BELFORD ROXO"
                },
                {
                    "id": 10698,
                    "nome": "BAIRRO CASTELO BRANCO, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10699,
                    "nome": "QUEIMADOS, RJ",
                    "municipio": "QUEIMADOS"
                },
                {
                    "id": 10700,
                    "nome": "4099",
                    "municipio": ""
                },
                {
                    "id": 10701,
                    "nome": "CAMPINA GRANDE, PB",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 10702,
                    "nome": "HERIBERTO HULSE, SC",
                    "municipio": "TUBARAO"
                },
                {
                    "id": 10703,
                    "nome": "MORADA DO SOL, SP",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 10704,
                    "nome": "PIRACICAMIRIM, SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 10705,
                    "nome": "VILA SABRINA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10706,
                    "nome": "BOULEVARD FEIRA, BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 10707,
                    "nome": "BLUMENAU, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 10708,
                    "nome": "SENADOR LEMOS, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 10709,
                    "nome": "CABULA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10710,
                    "nome": "BAIRRO ARMACAO, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10711,
                    "nome": "AV TIRADENTES, SP",
                    "municipio": "MARILIA"
                },
                {
                    "id": 10712,
                    "nome": "OESTE PAULISTA, SP",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 10713,
                    "nome": "AV GOIAS, SP",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 10714,
                    "nome": "LARGO 13 DE MAIO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10715,
                    "nome": "BRIGADEIRO LIMA E SILVA, RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 10716,
                    "nome": "CONSELHEIRO PAULINO, RJ",
                    "municipio": "NOVA FRIBURGO"
                },
                {
                    "id": 10717,
                    "nome": "BRUSQUE, SC",
                    "municipio": "BRUSQUE"
                },
                {
                    "id": 10718,
                    "nome": "GUARUS, RJ",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 10719,
                    "nome": "IMBUI, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10720,
                    "nome": "RUA BRASIL, SP",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 10721,
                    "nome": "IRIRIU, SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 10722,
                    "nome": "PARQUE SAO PAULO, PR",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 10723,
                    "nome": "MORUMBI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10724,
                    "nome": "PERUS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10725,
                    "nome": "DR ZUQUIM, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10726,
                    "nome": "MARTIM AFONSO, SP",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 10727,
                    "nome": "CANOINHAS, SC",
                    "municipio": "CANOINHAS"
                },
                {
                    "id": 10728,
                    "nome": "NOVA GRANADA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10729,
                    "nome": "ROMEIROS, SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 10730,
                    "nome": "JARDIM SUL, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10731,
                    "nome": "NOVA FIESTA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10732,
                    "nome": "TIBURCIO DE SOUZA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10733,
                    "nome": "VILA PROGRESSO, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 10734,
                    "nome": "AV RIO PEQUENO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10735,
                    "nome": "SP MARKET, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10736,
                    "nome": "CHAPECO, SC",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 10737,
                    "nome": "SHOPPING PRAIAMAR, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 10738,
                    "nome": "PACAEMBU, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10739,
                    "nome": "NOSSA SENHORA SABARA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10740,
                    "nome": "PRACA ZE GAROTO, RJ",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 10741,
                    "nome": "AV RIO BRANCO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10742,
                    "nome": "BEIJA-FLOR, RJ",
                    "municipio": "NILOPOLIS"
                },
                {
                    "id": 10743,
                    "nome": "ITAIPAVA, RJ",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 10744,
                    "nome": "JARDIM DO MEIER, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10745,
                    "nome": "RECREIO DOS BANDEIRANTES, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10746,
                    "nome": "VILAR DOS TELES, RJ",
                    "municipio": "SAO JOAO DE MERITI"
                },
                {
                    "id": 10747,
                    "nome": "CRICIUMA, SC",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 10748,
                    "nome": "PRACA ITAQUERA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10749,
                    "nome": "CAPELA, SP",
                    "municipio": "MOGI-GUACU"
                },
                {
                    "id": 10750,
                    "nome": "AV FREDERICO LINCK, RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 10751,
                    "nome": "SHOPPING INTERLAR ARICANDUVA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10752,
                    "nome": "CENTRO EMPRESARIAL, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10753,
                    "nome": "REPUBLICA ARGENTINA, PR",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 10754,
                    "nome": "SHOPPING CIDADE, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 10755,
                    "nome": "METRO ANA ROSA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10756,
                    "nome": "CENTRAL PLAZA SHOPPING, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10757,
                    "nome": "ITAJAI, SC",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 10758,
                    "nome": "MONGOIOS, BA",
                    "municipio": "VITORIA DA CONQUISTA"
                },
                {
                    "id": 10759,
                    "nome": "BAIRRO PARAISO, RJ",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 10760,
                    "nome": "NILO PECANHA, RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 10761,
                    "nome": "BAIRRO PIO X, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 10762,
                    "nome": "CEILANDIA NORTE, DF",
                    "municipio": "BRASILIA (CEILANDIA)"
                },
                {
                    "id": 10763,
                    "nome": "SAMAMBAIA, DF",
                    "municipio": "BRASILIA (SAMAMBAIA)"
                },
                {
                    "id": 10764,
                    "nome": "JARAGUA DO SUL, SC",
                    "municipio": "JARAGUA DO SUL"
                },
                {
                    "id": 10765,
                    "nome": "JOACABA, SC",
                    "municipio": "JOACABA"
                },
                {
                    "id": 10766,
                    "nome": "TANABI, SP",
                    "municipio": "TANABI"
                },
                {
                    "id": 10767,
                    "nome": "AVENIDA GETULIO VARGAS, SP",
                    "municipio": "BAURU"
                },
                {
                    "id": 10768,
                    "nome": "CIDADE DE GUARA, SP",
                    "municipio": "GUARA"
                },
                {
                    "id": 10769,
                    "nome": "SAO MIGUEL DO GUAMA, PA",
                    "municipio": "SAO MIGUEL DO GUAMA"
                },
                {
                    "id": 10770,
                    "nome": "CAPITAL DA MUSICA, SP",
                    "municipio": "TATUI"
                },
                {
                    "id": 10771,
                    "nome": "JOINVILLE, SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 10772,
                    "nome": "HOSPITAL METROPOLITANO, ES",
                    "municipio": "SERRA"
                },
                {
                    "id": 10773,
                    "nome": "MUQUICABA, ES",
                    "municipio": "GUARAPARI"
                },
                {
                    "id": 10774,
                    "nome": "GUARABIRA, PB",
                    "municipio": "GUARABIRA"
                },
                {
                    "id": 10775,
                    "nome": "LAGES, SC",
                    "municipio": "LAGES"
                },
                {
                    "id": 10776,
                    "nome": "RECREIO SHOPPING, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10777,
                    "nome": "GOVERNO DO ESTADO DE GOIAS, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 10778,
                    "nome": "DOIS CORREGOS, SP",
                    "municipio": "DOIS CORREGOS"
                },
                {
                    "id": 10779,
                    "nome": "CERQUEIRA CESAR, SP",
                    "municipio": "CERQUEIRA CESAR"
                },
                {
                    "id": 10780,
                    "nome": "VISTA ALEGRE, SP",
                    "municipio": "BAURU"
                },
                {
                    "id": 10781,
                    "nome": "GENERAL SALGADO, SP",
                    "municipio": "GENERAL SALGADO"
                },
                {
                    "id": 10782,
                    "nome": "AURIFLAMA, SP",
                    "municipio": "AURIFLAMA"
                },
                {
                    "id": 10783,
                    "nome": "LAGUNA, SC",
                    "municipio": "LAGUNA"
                },
                {
                    "id": 10784,
                    "nome": "JARDIM REDENTOR, SP",
                    "municipio": "BAURU"
                },
                {
                    "id": 10785,
                    "nome": "SALTO DE PIRAPORA, SP",
                    "municipio": "SALTO DE PIRAPORA"
                },
                {
                    "id": 10786,
                    "nome": "AQUIDABA, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 10787,
                    "nome": "ATENAS DO SUL, SP",
                    "municipio": "ITAPETININGA"
                },
                {
                    "id": 10788,
                    "nome": "CIDADE DAS ESCOLAS, SP",
                    "municipio": "LINS"
                },
                {
                    "id": 10789,
                    "nome": "BAIRRO SANTA MONICA, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 10790,
                    "nome": "HUMAITA, AM",
                    "municipio": "HUMAITA"
                },
                {
                    "id": 10791,
                    "nome": "PORTO UNIAO, SC",
                    "municipio": "PORTO UNIAO"
                },
                {
                    "id": 10792,
                    "nome": "PADRE BERNARDO, GO",
                    "municipio": "PADRE BERNARDO"
                },
                {
                    "id": 10793,
                    "nome": "CIDADE OCIDENTAL, GO",
                    "municipio": "CIDADE OCIDENTAL"
                },
                {
                    "id": 10794,
                    "nome": "SANTO ANTONIO DO DESCOBERTO, GO",
                    "municipio": "SANTO ANTONIO DO DESCOBERTO"
                },
                {
                    "id": 10795,
                    "nome": "MARTINOPOLIS, SP",
                    "municipio": "MARTINOPOLIS"
                },
                {
                    "id": 10796,
                    "nome": "SANTA TEREZINHA, SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 10797,
                    "nome": "JARDIM ROSOLEN, SP",
                    "municipio": "HORTOLANDIA"
                },
                {
                    "id": 10798,
                    "nome": "42260",
                    "municipio": ""
                },
                {
                    "id": 10799,
                    "nome": "JARDIM AMANDA, SP",
                    "municipio": "HORTOLANDIA"
                },
                {
                    "id": 10800,
                    "nome": "AV CHARLES SCHNEIDER, SP",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 10801,
                    "nome": "BANHADO, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 10802,
                    "nome": "RIO DO SUL, SC",
                    "municipio": "RIO DO SUL"
                },
                {
                    "id": 10803,
                    "nome": "POLVILHO, SP",
                    "municipio": "CAJAMAR"
                },
                {
                    "id": 10804,
                    "nome": "PIRAPOZINHO, SP",
                    "municipio": "PIRAPOZINHO"
                },
                {
                    "id": 10805,
                    "nome": "TEODORO SAMPAIO, SP",
                    "municipio": "TEODORO SAMPAIO"
                },
                {
                    "id": 10806,
                    "nome": "PORTAL DO PARANAPANEMA, SP",
                    "municipio": "ASSIS"
                },
                {
                    "id": 10807,
                    "nome": "BAIRRO DO CARMO, SP",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 10808,
                    "nome": "AMERICO BRASILIENSE, SP",
                    "municipio": "AMERICO BRASILIENSE"
                },
                {
                    "id": 10809,
                    "nome": "VILA APARECIDA, SP",
                    "municipio": "FRANCA"
                },
                {
                    "id": 10810,
                    "nome": "ALTO DA FIUSA, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 10811,
                    "nome": "SAO FRANCISCO DO SUL, SC",
                    "municipio": "SAO FRANCISCO DO SUL"
                },
                {
                    "id": 10812,
                    "nome": "CONJUNTO NACIONAL SAO PAULO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 10813,
                    "nome": "BOULEVARD RIBEIRAO PRETO, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 10814,
                    "nome": "BURITAMA, SP",
                    "municipio": "BURITAMA"
                },
                {
                    "id": 10815,
                    "nome": "CASSINO, RS",
                    "municipio": "RIO GRANDE"
                },
                {
                    "id": 10816,
                    "nome": "MARAPONGA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 10817,
                    "nome": "TUBARAO, SC",
                    "municipio": "TUBARAO"
                },
                {
                    "id": 10818,
                    "nome": "RORAINOPOLIS, RR",
                    "municipio": "RORAINOPOLIS"
                },
                {
                    "id": 10819,
                    "nome": "EUSEBIO, CE",
                    "municipio": "EUSEBIO"
                },
                {
                    "id": 10820,
                    "nome": "SIDEROPOLIS, SC",
                    "municipio": "SIDEROPOLIS"
                },
                {
                    "id": 10821,
                    "nome": "ARARANGUA, SC",
                    "municipio": "ARARANGUA"
                },
                {
                    "id": 10822,
                    "nome": "VIA EXPRESSA, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 10823,
                    "nome": "ALPINOPOLIS, MG",
                    "municipio": "ALPINOPOLIS"
                },
                {
                    "id": 10824,
                    "nome": "ITAPAGIPE, MG",
                    "municipio": "ITAPAGIPE"
                },
                {
                    "id": 10825,
                    "nome": "PRACA DA ALFANDEGA, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10826,
                    "nome": "UNIAO, PI",
                    "municipio": "UNIAO"
                },
                {
                    "id": 10827,
                    "nome": "LENCOIS MARANHENSES, MA",
                    "municipio": "BARREIRINHAS"
                },
                {
                    "id": 10828,
                    "nome": "SHOPPING IGUATEMI, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10829,
                    "nome": "ESTREITO, MA",
                    "municipio": "ESTREITO"
                },
                {
                    "id": 10830,
                    "nome": "NOSSA SENHORA DO ROSARIO, MA",
                    "municipio": "ROSARIO"
                },
                {
                    "id": 10831,
                    "nome": "SIDROLANDIA, MS",
                    "municipio": "SIDROLANDIA"
                },
                {
                    "id": 10832,
                    "nome": "PATOS, PB",
                    "municipio": "PATOS"
                },
                {
                    "id": 10833,
                    "nome": "RUA DA PRAIA, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10834,
                    "nome": "ASSIS BRASIL, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10835,
                    "nome": "AZENHA, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10836,
                    "nome": "ATENAGORAS CRISPIM, SE",
                    "municipio": "ITAPORANGA D'AJUDA"
                },
                {
                    "id": 10837,
                    "nome": "CAIARI, RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 10838,
                    "nome": "CANARANA, MT",
                    "municipio": "CANARANA"
                },
                {
                    "id": 10839,
                    "nome": "VILA FERNANDES, RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 10840,
                    "nome": "RECANTO DAS EMAS, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 10841,
                    "nome": "BARRA DO RIO CERRO, SC",
                    "municipio": "JARAGUA DO SUL"
                },
                {
                    "id": 10842,
                    "nome": "IBATIBA, ES",
                    "municipio": "IBATIBA"
                },
                {
                    "id": 10843,
                    "nome": "CEREJEIRAS, RO",
                    "municipio": "CEREJEIRAS"
                },
                {
                    "id": 10844,
                    "nome": "COLORADO DO OESTE, RO",
                    "municipio": "COLORADO DO OESTE"
                },
                {
                    "id": 10845,
                    "nome": "BRAS CUBAS, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 10846,
                    "nome": "BARAO DE MIRACEMA, RJ",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 10847,
                    "nome": "POCO VERDE, SE",
                    "municipio": "POCO VERDE"
                },
                {
                    "id": 10848,
                    "nome": "SERRA AZUL, GO",
                    "municipio": "PIRANHAS"
                },
                {
                    "id": 10849,
                    "nome": "CORONEL BORDINI, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10850,
                    "nome": "CHAPADAO DO CEU, GO",
                    "municipio": "CHAPADAO DO CEU"
                },
                {
                    "id": 10851,
                    "nome": "VISTA DA SERRA, PR",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 10852,
                    "nome": "PAU DA LIMA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 10853,
                    "nome": "SERRA DE CALDAS, GO",
                    "municipio": "CALDAS NOVAS"
                },
                {
                    "id": 10854,
                    "nome": "SARZEDO, MG",
                    "municipio": "SARZEDO"
                },
                {
                    "id": 10855,
                    "nome": "NOVA PONTE, MG",
                    "municipio": "NOVA PONTE"
                },
                {
                    "id": 10856,
                    "nome": "FRONTEIRA, MG",
                    "municipio": "FRONTEIRA"
                },
                {
                    "id": 10857,
                    "nome": "JUNQUEIROPOLIS, SP",
                    "municipio": "JUNQUEIROPOLIS"
                },
                {
                    "id": 10858,
                    "nome": "BOM FIM, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10859,
                    "nome": "JUQUIA, SP",
                    "municipio": "JUQUIA"
                },
                {
                    "id": 10860,
                    "nome": "JARDIM ESPLANADA, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 10861,
                    "nome": "18 DE FEVEREIRO, SP",
                    "municipio": "ITAPEVI"
                },
                {
                    "id": 10862,
                    "nome": "JARDIM MORADA DO SOL, SP",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 10863,
                    "nome": "NAZARE PAULISTA, SP",
                    "municipio": "NAZARE PAULISTA"
                },
                {
                    "id": 10864,
                    "nome": "CUNHA, SP",
                    "municipio": "CUNHA"
                },
                {
                    "id": 10865,
                    "nome": "POTIM, SP",
                    "municipio": "POTIM"
                },
                {
                    "id": 10866,
                    "nome": "ITAI, SP",
                    "municipio": "ITAI"
                },
                {
                    "id": 10867,
                    "nome": "CAVALHADA, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10868,
                    "nome": "MARECHAL, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 10869,
                    "nome": "PARQUE DO PEAO, SP",
                    "municipio": "BARRETOS"
                },
                {
                    "id": 10870,
                    "nome": "METROPOLE, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 10871,
                    "nome": "PRESIDENTE GETULIO VARGAS, SP",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 10872,
                    "nome": "LUIS CORREIA, PI",
                    "municipio": "LUIS CORREIA"
                },
                {
                    "id": 10873,
                    "nome": "COCAL, PI",
                    "municipio": "COCAL"
                },
                {
                    "id": 10874,
                    "nome": "ABOLICAO, CE",
                    "municipio": "REDENCAO"
                },
                {
                    "id": 10875,
                    "nome": "IPUEIRAS, CE",
                    "municipio": "IPUEIRAS"
                },
                {
                    "id": 10876,
                    "nome": "BOURBON WALLIG, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10877,
                    "nome": "NOSSA SRA. DE BOA VIAGEM, CE",
                    "municipio": "BOA VIAGEM"
                },
                {
                    "id": 10878,
                    "nome": "PACATUBA, CE",
                    "municipio": "PACATUBA"
                },
                {
                    "id": 10879,
                    "nome": "TAMBORIL, CE",
                    "municipio": "TAMBORIL"
                },
                {
                    "id": 10880,
                    "nome": "PEDRA PRETA, RJ",
                    "municipio": "ITAPERUNA"
                },
                {
                    "id": 10881,
                    "nome": "BELA VISTA DE GOIAS, GO",
                    "municipio": "BELA VISTA DE GOIAS"
                },
                {
                    "id": 10882,
                    "nome": "ATERRADO, RJ",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 10883,
                    "nome": "MANILHA, RJ",
                    "municipio": "ITABORAI"
                },
                {
                    "id": 10884,
                    "nome": "TRAIRI, CE",
                    "municipio": "TRAIRI"
                },
                {
                    "id": 10885,
                    "nome": "5 DE AGOSTO, GO",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 10886,
                    "nome": "ALTO SAO JOAO, TO",
                    "municipio": "ARAGUAINA"
                },
                {
                    "id": 10887,
                    "nome": "AUGUSTINOPOLIS, TO",
                    "municipio": "AUGUSTINOPOLIS"
                },
                {
                    "id": 10888,
                    "nome": "RIO PARANAIBA, MG",
                    "municipio": "RIO PARANAIBA"
                },
                {
                    "id": 10889,
                    "nome": "MATIAS BARBOSA, MG",
                    "municipio": "MATIAS BARBOSA"
                },
                {
                    "id": 10890,
                    "nome": "SAO JOSE DA LAPA, MG",
                    "municipio": "SAO JOSE DA LAPA"
                },
                {
                    "id": 10891,
                    "nome": "JARDIM CANADA, MG",
                    "municipio": "NOVA LIMA"
                },
                {
                    "id": 10892,
                    "nome": "DA BARRA, MG",
                    "municipio": "MURIAE"
                },
                {
                    "id": 10893,
                    "nome": "BAIRRO SANTA AMELIA, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 10894,
                    "nome": "ITATIAIUCU, MG",
                    "municipio": "ITATIAIUCU"
                },
                {
                    "id": 10895,
                    "nome": "SHOPPING TOTAL, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10896,
                    "nome": "LAGOS DE MINAS, MG",
                    "municipio": "ALFENAS"
                },
                {
                    "id": 10897,
                    "nome": "MATIPO, MG",
                    "municipio": "MATIPO"
                },
                {
                    "id": 10898,
                    "nome": "BELO ORIENTE, MG",
                    "municipio": "BELO ORIENTE"
                },
                {
                    "id": 10899,
                    "nome": "ZONA SUL, MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 10900,
                    "nome": "CIDADE DE TAPEJARA, PR",
                    "municipio": "TAPEJARA"
                },
                {
                    "id": 10901,
                    "nome": "PINEVILLE, PR",
                    "municipio": "PINHAIS"
                },
                {
                    "id": 10902,
                    "nome": "BALSA NOVA, PR",
                    "municipio": "BALSA NOVA"
                },
                {
                    "id": 10903,
                    "nome": "ITACAIUNAS, PA",
                    "municipio": "MARABA"
                },
                {
                    "id": 10904,
                    "nome": "CANAA DOS CARAJAS, PA",
                    "municipio": "CANAA DOS CARAJAS"
                },
                {
                    "id": 10905,
                    "nome": "MAMANGUAPE, PB",
                    "municipio": "MAMANGUAPE"
                },
                {
                    "id": 10906,
                    "nome": "V COMAR, RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 10907,
                    "nome": "NOVA PARAUAPEBAS, PA",
                    "municipio": "PARAUAPEBAS"
                },
                {
                    "id": 10908,
                    "nome": "DIVINO, MG",
                    "municipio": "DIVINO"
                },
                {
                    "id": 10909,
                    "nome": "ESTRADA DOS TRES RIOS, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10910,
                    "nome": "JARDIM MARILEIA, RJ",
                    "municipio": "RIO DAS OSTRAS"
                },
                {
                    "id": 10911,
                    "nome": "TIBAGI, PR",
                    "municipio": "TIBAGI"
                },
                {
                    "id": 10912,
                    "nome": "CARAMBEI, PR",
                    "municipio": "CARAMBEI"
                },
                {
                    "id": 10913,
                    "nome": "MAURITI, CE",
                    "municipio": "MAURITI"
                },
                {
                    "id": 10914,
                    "nome": "ALVARO WEYNE, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 10915,
                    "nome": "LUCIANO BARRETO JUNIOR, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 10916,
                    "nome": "JOSE DO PATROCINIO, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10917,
                    "nome": "SANTA ISABEL DO PARA, PA",
                    "municipio": "SANTA ISABEL DO PARA"
                },
                {
                    "id": 10918,
                    "nome": "VARZEA ALEGRE, CE",
                    "municipio": "VARZEA ALEGRE"
                },
                {
                    "id": 10919,
                    "nome": "CRIXAS, GO",
                    "municipio": "CRIXAS"
                },
                {
                    "id": 10920,
                    "nome": "AV MINISTRO ARI FRANCO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10921,
                    "nome": "ORIZONA, GO",
                    "municipio": "ORIZONA"
                },
                {
                    "id": 10922,
                    "nome": "JAGUAPITA, PR",
                    "municipio": "JAGUAPITA"
                },
                {
                    "id": 10923,
                    "nome": "FIRMINOPOLIS, GO",
                    "municipio": "FIRMINOPOLIS"
                },
                {
                    "id": 10924,
                    "nome": "PARAUNA, GO",
                    "municipio": "PARAUNA"
                },
                {
                    "id": 10925,
                    "nome": "MENINO DEUS, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10926,
                    "nome": "ESTRADA DO FIO, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 10927,
                    "nome": "CORUMBA DE GOIAS, GO",
                    "municipio": "CORUMBA DE GOIAS"
                },
                {
                    "id": 10928,
                    "nome": "4423",
                    "municipio": ""
                },
                {
                    "id": 10929,
                    "nome": "SIMOES LOPES, RS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 10930,
                    "nome": "BOCA DO MONTE, RS",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 10931,
                    "nome": "MOSTARDAS, RS",
                    "municipio": "MOSTARDAS"
                },
                {
                    "id": 10932,
                    "nome": "RINCAO, RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 10933,
                    "nome": "BAIRRO RIO BRANCO, RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 10934,
                    "nome": "MOINHOS DE VENTO, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10935,
                    "nome": "MARECHAL FLORIANO, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 10936,
                    "nome": "SAO FRANCISCO DE ASSIS, RS",
                    "municipio": "SAO FRANCISCO DE ASSIS"
                },
                {
                    "id": 10937,
                    "nome": "CORACAO DO RIO GRANDE, RS",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 10938,
                    "nome": "SAO JOSE DO NORTE, RS",
                    "municipio": "SAO JOSE DO NORTE"
                },
                {
                    "id": 10939,
                    "nome": "PALMARES DO SUL, RS",
                    "municipio": "PALMARES DO SUL"
                },
                {
                    "id": 10940,
                    "nome": "PRACA DO PORTAO, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10941,
                    "nome": "BAIRRO SAO CRISTOVAO, RJ",
                    "municipio": "CABO FRIO"
                },
                {
                    "id": 10942,
                    "nome": "CUNHA PORA, SC",
                    "municipio": "CUNHA PORA"
                },
                {
                    "id": 10943,
                    "nome": "ANTONIO CARLOS, SC",
                    "municipio": "ANTONIO CARLOS"
                },
                {
                    "id": 10944,
                    "nome": "NAVEGANTES, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10945,
                    "nome": "POUSO REDONDO, SC",
                    "municipio": "POUSO REDONDO"
                },
                {
                    "id": 10946,
                    "nome": "PRESIDENTE GETULIO, SC",
                    "municipio": "PRESIDENTE GETULIO"
                },
                {
                    "id": 10947,
                    "nome": "CASSILANDIA, MS",
                    "municipio": "CASSILANDIA"
                },
                {
                    "id": 10948,
                    "nome": "CANTO DO BURITI, PI",
                    "municipio": "CANTO DO BURITI"
                },
                {
                    "id": 10949,
                    "nome": "DELTA DO PARNAIBA, PI",
                    "municipio": "PARNAIBA"
                },
                {
                    "id": 10950,
                    "nome": "ITAIPU, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 10951,
                    "nome": "PARTENON, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10952,
                    "nome": "MARAGOJIPE, BA",
                    "municipio": "MARAGOGIPE"
                },
                {
                    "id": 10953,
                    "nome": "PAPANDUVA, SC",
                    "municipio": "PAPANDUVA"
                },
                {
                    "id": 10954,
                    "nome": "CORREIA PINTO, SC",
                    "municipio": "CORREIA PINTO"
                },
                {
                    "id": 10955,
                    "nome": "LAURO MULLER, SC",
                    "municipio": "LAURO MULLER"
                },
                {
                    "id": 10956,
                    "nome": "PARANAITA, MT",
                    "municipio": "PARANAITA"
                },
                {
                    "id": 10957,
                    "nome": "MUNDO NOVO, MS",
                    "municipio": "MUNDO NOVO"
                },
                {
                    "id": 10958,
                    "nome": "MONSENHOR FELIX, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10959,
                    "nome": "FELIZ NATAL, MT",
                    "municipio": "FELIZ NATAL"
                },
                {
                    "id": 10960,
                    "nome": "MATUPA, MT",
                    "municipio": "MATUPA"
                },
                {
                    "id": 10961,
                    "nome": "PASSO DA AREIA, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10962,
                    "nome": "GRANDE COLORADO, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 10963,
                    "nome": "GAMA LESTE, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 10964,
                    "nome": "COMERCIAL NORTE, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 10965,
                    "nome": "PISTAO SUL, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 10966,
                    "nome": "AGU SEDE, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 10967,
                    "nome": "ITIQUIRA, MT",
                    "municipio": "ITIQUIRA"
                },
                {
                    "id": 10968,
                    "nome": "TAPURAH, MT",
                    "municipio": "TAPURAH"
                },
                {
                    "id": 10969,
                    "nome": "PEIXOTO DE AZEVEDO, MT",
                    "municipio": "PEIXOTO DE AZEVEDO"
                },
                {
                    "id": 10970,
                    "nome": "CARIRA, SE",
                    "municipio": "CARIRA"
                },
                {
                    "id": 10971,
                    "nome": "PROTASIO ALVES, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10972,
                    "nome": "RIBEIROPOLIS, SE",
                    "municipio": "RIBEIROPOLIS"
                },
                {
                    "id": 10973,
                    "nome": "BARRA DOS COQUEIROS, SE",
                    "municipio": "BARRA DOS COQUEIROS"
                },
                {
                    "id": 10974,
                    "nome": "VISTA ALEGRE RIO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 10975,
                    "nome": "SAO MIGUEL DO GUAPORE, RO",
                    "municipio": "SAO MIGUEL DO GUAPORE"
                },
                {
                    "id": 10976,
                    "nome": "TERRA RICA, PR",
                    "municipio": "TERRA RICA"
                },
                {
                    "id": 10977,
                    "nome": "INDIARA, GO",
                    "municipio": "INDIARA"
                },
                {
                    "id": 10978,
                    "nome": "VILA BRASILIA, GO",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 10979,
                    "nome": "BOQUIM, SE",
                    "municipio": "BOQUIM"
                },
                {
                    "id": 10980,
                    "nome": "NEOPOLIS, SE",
                    "municipio": "NEOPOLIS"
                },
                {
                    "id": 10981,
                    "nome": "SANTA LUZIA DO PARUA, MA",
                    "municipio": "SANTA LUZIA DO PARUA"
                },
                {
                    "id": 10982,
                    "nome": "ACORIANOS, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10983,
                    "nome": "SANTA RITA DO MARANHAO, MA",
                    "municipio": "SANTA RITA"
                },
                {
                    "id": 10984,
                    "nome": "GUARAI, TO",
                    "municipio": "GUARAI"
                },
                {
                    "id": 10985,
                    "nome": "310 SUL, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 10986,
                    "nome": "SAMAMBAIA SUL, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 10987,
                    "nome": "SANTA QUITERIA, CE",
                    "municipio": "SANTA QUITERIA"
                },
                {
                    "id": 10988,
                    "nome": "PARQUE DOM PEDRO, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 10989,
                    "nome": "AV CASTELO BRANCO, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 10990,
                    "nome": "SAO JOAO, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 10991,
                    "nome": "BORBOREMA PAULISTA, SP",
                    "municipio": "BORBOREMA"
                },
                {
                    "id": 10992,
                    "nome": "ALVINOPOLIS, SP",
                    "municipio": "ATIBAIA"
                },
                {
                    "id": 10993,
                    "nome": "AV IACANGA, SP",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 10994,
                    "nome": "CIDADE DOS PINHEIRAIS, SP",
                    "municipio": "CAIEIRAS"
                },
                {
                    "id": 10995,
                    "nome": "CORUMBAIBA, GO",
                    "municipio": "CORUMBAIBA"
                },
                {
                    "id": 10996,
                    "nome": "MARA ROSA, GO",
                    "municipio": "MARA ROSA"
                },
                {
                    "id": 10997,
                    "nome": "ALTINOPOLIS, SP",
                    "municipio": "ALTINOPOLIS"
                },
                {
                    "id": 10998,
                    "nome": "BERCO DA REPUBLICA, SP",
                    "municipio": "ITU"
                },
                {
                    "id": 10999,
                    "nome": "AV GUARARAPES, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 11000,
                    "nome": "GUIA LOPES, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 11001,
                    "nome": "FORMOSINHA, GO",
                    "municipio": "FORMOSA"
                },
                {
                    "id": 11002,
                    "nome": "VALPARAISO CENTRO, GO",
                    "municipio": "VALPARAISO DE GOIAS"
                },
                {
                    "id": 11003,
                    "nome": "12 DE OUTUBRO, GO",
                    "municipio": "ITUMBIARA"
                },
                {
                    "id": 11004,
                    "nome": "NOSSA SENHORA DA LUZ, RS",
                    "municipio": "PINHEIRO MACHADO"
                },
                {
                    "id": 11005,
                    "nome": "TAPERA, RS",
                    "municipio": "TAPERA"
                },
                {
                    "id": 11006,
                    "nome": "AV OTTO NIEMEYER, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 11007,
                    "nome": "OTAVIO ROCHA, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 11008,
                    "nome": "SETOR BANCARIO NORTE, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11009,
                    "nome": "NOVA AMERICA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11010,
                    "nome": "AV T2, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 11011,
                    "nome": "AVENIDA DO FORTE, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 11012,
                    "nome": "AV 136, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 11013,
                    "nome": "IPIXUNA DO PARA, PA",
                    "municipio": "IPIXUNA DO PARA"
                },
                {
                    "id": 11014,
                    "nome": "CAPITAO POCO, PA",
                    "municipio": "CAPITAO POCO"
                },
                {
                    "id": 11015,
                    "nome": "NOVO REPARTIMENTO, PA",
                    "municipio": "NOVO REPARTIMENTO"
                },
                {
                    "id": 11016,
                    "nome": "DOM ELISEU, PA",
                    "municipio": "DOM ELISEU"
                },
                {
                    "id": 11017,
                    "nome": "IGARAPE MIRI, PA",
                    "municipio": "IGARAPE-MIRI"
                },
                {
                    "id": 11018,
                    "nome": "MAE DO RIO, PA",
                    "municipio": "MAE DO RIO"
                },
                {
                    "id": 11019,
                    "nome": "PICANCO, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 11020,
                    "nome": "PRACA RUI BARBOSA, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 11021,
                    "nome": "CIDADE DUTRA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11022,
                    "nome": "JARDIM DAS IMBUIAS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11023,
                    "nome": "FILHOS DA TERRA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11024,
                    "nome": "VALO VELHO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11025,
                    "nome": "SANTO ANTONIO, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11026,
                    "nome": "CAMPOS ALTOS, MG",
                    "municipio": "CAMPOS ALTOS"
                },
                {
                    "id": 11027,
                    "nome": "JEQUITINHONHA, MG",
                    "municipio": "JEQUITINHONHA"
                },
                {
                    "id": 11028,
                    "nome": "BAIRRO FOCH, MG",
                    "municipio": "POUSO ALEGRE"
                },
                {
                    "id": 11029,
                    "nome": "CAMPO MAGRO, PR",
                    "municipio": "CAMPO MAGRO"
                },
                {
                    "id": 11030,
                    "nome": "AUTAZES, AM",
                    "municipio": "AUTAZES"
                },
                {
                    "id": 11031,
                    "nome": "INDEPENDENCIA, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 11032,
                    "nome": "BORBA, AM",
                    "municipio": "BORBA"
                },
                {
                    "id": 11033,
                    "nome": "MANICORE, AM",
                    "municipio": "MANICORE"
                },
                {
                    "id": 11034,
                    "nome": "LABREA, AM",
                    "municipio": "LABREA"
                },
                {
                    "id": 11035,
                    "nome": "CACUIA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11036,
                    "nome": "MANDIRITUBA, PR",
                    "municipio": "MANDIRITUBA"
                },
                {
                    "id": 11037,
                    "nome": "CONTENDA, PR",
                    "municipio": "CONTENDA"
                },
                {
                    "id": 11038,
                    "nome": "PAO DE ACUCAR, AL",
                    "municipio": "PAO DE ACUCAR"
                },
                {
                    "id": 11039,
                    "nome": "AV SENADOR VIRGILIO TAVORA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 11040,
                    "nome": "ALEGRETE, RS",
                    "municipio": "ALEGRETE"
                },
                {
                    "id": 11041,
                    "nome": "CAMPUS DO PICI, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 11042,
                    "nome": "PAPICU, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 11043,
                    "nome": "PIRANHAS, AL",
                    "municipio": "PIRANHAS"
                },
                {
                    "id": 11044,
                    "nome": "SHOPPING DAYS, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11045,
                    "nome": "PORTO MURTINHO, MS",
                    "municipio": "PORTO MURTINHO"
                },
                {
                    "id": 11046,
                    "nome": "ANASTACIO, MS",
                    "municipio": "ANASTACIO"
                },
                {
                    "id": 11047,
                    "nome": "MIRANDA, MS",
                    "municipio": "MIRANDA"
                },
                {
                    "id": 11048,
                    "nome": "VILA JOANIZA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11049,
                    "nome": "TABOAO, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 11050,
                    "nome": "BAGE, RS",
                    "municipio": "BAGE"
                },
                {
                    "id": 11051,
                    "nome": "RIO PRETO DA EVA, AM",
                    "municipio": "RIO PRETO DA EVA"
                },
                {
                    "id": 11052,
                    "nome": "MUSEU DO IPIRANGA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11053,
                    "nome": "SHOPPING CIDADE NORTE, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 11054,
                    "nome": "CAREIRO, AM",
                    "municipio": "CAREIRO"
                },
                {
                    "id": 11055,
                    "nome": "BARCELONA, SP",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 11056,
                    "nome": "IRANDUBA, AM",
                    "municipio": "IRANDUBA"
                },
                {
                    "id": 11057,
                    "nome": "PONTA DA PRAIA, SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 11058,
                    "nome": "PARIQUERA-ACU, SP",
                    "municipio": "PARIQUERA-ACU"
                },
                {
                    "id": 11059,
                    "nome": "CONTINENTAL, SP",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 11060,
                    "nome": "BENTO GONCALVES, RS",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 11061,
                    "nome": "MANOA, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 11062,
                    "nome": "MACEDO, SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 11063,
                    "nome": "NORTE MANAUARA, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 11064,
                    "nome": "LAUZANE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11065,
                    "nome": "PRAIA DA ENSEADA, SP",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 11066,
                    "nome": "PRESIDENTE FIGUEIREDO, AM",
                    "municipio": "PRESIDENTE FIGUEIREDO"
                },
                {
                    "id": 11067,
                    "nome": "FORMOSA DO RIO PRETO, BA",
                    "municipio": "FORMOSA DO RIO PRETO"
                },
                {
                    "id": 11068,
                    "nome": "PARATINGA, BA",
                    "municipio": "PARATINGA"
                },
                {
                    "id": 11069,
                    "nome": "PRADO, BA",
                    "municipio": "PRADO"
                },
                {
                    "id": 11070,
                    "nome": "CANDIDO SALES, BA",
                    "municipio": "CANDIDO SALES"
                },
                {
                    "id": 11071,
                    "nome": "MONTIVIDIU, GO",
                    "municipio": "MONTIVIDIU"
                },
                {
                    "id": 11072,
                    "nome": "CANAVIEIRAS, BA",
                    "municipio": "CANAVIEIRAS"
                },
                {
                    "id": 11073,
                    "nome": "ITABELA, BA",
                    "municipio": "ITABELA"
                },
                {
                    "id": 11074,
                    "nome": "SANTA RITA DE CASSIA, BA",
                    "municipio": "SANTA RITA DE CASSIA"
                },
                {
                    "id": 11075,
                    "nome": "SANTANENSE, BA",
                    "municipio": "SANTANA"
                },
                {
                    "id": 11076,
                    "nome": "SAO DESIDERIO, BA",
                    "municipio": "SAO DESIDERIO"
                },
                {
                    "id": 11077,
                    "nome": "ESTRADA DO COCO, BA",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 11078,
                    "nome": "PRAIA DO FORTE, BA",
                    "municipio": "MATA DE SAO JOAO"
                },
                {
                    "id": 11079,
                    "nome": "BAIRRO CANDEIAS, BA",
                    "municipio": "VITORIA DA CONQUISTA"
                },
                {
                    "id": 11080,
                    "nome": "CACULE, BA",
                    "municipio": "CACULE"
                },
                {
                    "id": 11081,
                    "nome": "CACHOEIRA DO SUL, RS",
                    "municipio": "CACHOEIRA DO SUL"
                },
                {
                    "id": 11082,
                    "nome": "PECEM, CE",
                    "municipio": "SAO GONCALO DO AMARANTE"
                },
                {
                    "id": 11083,
                    "nome": "OLHO D AGUA DAS FLORES, AL",
                    "municipio": "OLHO D'AGUA DAS FLORES"
                },
                {
                    "id": 11084,
                    "nome": "CORONEL VIVIDA, PR",
                    "municipio": "CORONEL VIVIDA"
                },
                {
                    "id": 11085,
                    "nome": "TUPI, PR",
                    "municipio": "PATO BRANCO"
                },
                {
                    "id": 11086,
                    "nome": "CANSANCAO, BA",
                    "municipio": "CANSANCAO"
                },
                {
                    "id": 11087,
                    "nome": "CICERO DANTAS, BA",
                    "municipio": "CICERO DANTAS"
                },
                {
                    "id": 11088,
                    "nome": "CORACAO DE MARIA, BA",
                    "municipio": "CORACAO DE MARIA"
                },
                {
                    "id": 11089,
                    "nome": "INHAMBUPE, BA",
                    "municipio": "INHAMBUPE"
                },
                {
                    "id": 11090,
                    "nome": "MONTE SANTO, BA",
                    "municipio": "MONTE SANTO"
                },
                {
                    "id": 11091,
                    "nome": "AFOGADOS, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 11092,
                    "nome": "CAMAQUA, RS",
                    "municipio": "CAMAQUA"
                },
                {
                    "id": 11093,
                    "nome": "RIO REAL, BA",
                    "municipio": "RIO REAL"
                },
                {
                    "id": 11094,
                    "nome": "IRAQUARA, BA",
                    "municipio": "IRAQUARA"
                },
                {
                    "id": 11095,
                    "nome": "VALENTE, BA",
                    "municipio": "VALENTE"
                },
                {
                    "id": 11096,
                    "nome": "MOREIRA SALES, PR",
                    "municipio": "MOREIRA SALES"
                },
                {
                    "id": 11097,
                    "nome": "ALFREDO CHAVES, ES",
                    "municipio": "ALFREDO CHAVES"
                },
                {
                    "id": 11098,
                    "nome": "GIRAU DO PONCIANO, AL",
                    "municipio": "GIRAU DO PONCIANO"
                },
                {
                    "id": 11099,
                    "nome": "CENTRAL LARANJEIRAS, ES",
                    "municipio": "SERRA"
                },
                {
                    "id": 11100,
                    "nome": "ECOPORANGA, ES",
                    "municipio": "ECOPORANGA"
                },
                {
                    "id": 11101,
                    "nome": "PIEN, PR",
                    "municipio": "PIEN"
                },
                {
                    "id": 11102,
                    "nome": "CAMPO BOM, RS",
                    "municipio": "CAMPO BOM"
                },
                {
                    "id": 11103,
                    "nome": "NOVA OLIMPIA, MT",
                    "municipio": "NOVA OLIMPIA"
                },
                {
                    "id": 11104,
                    "nome": "SONORA, MS",
                    "municipio": "SONORA"
                },
                {
                    "id": 11105,
                    "nome": "JOSE DE FREITAS, PI",
                    "municipio": "JOSE DE FREITAS"
                },
                {
                    "id": 11106,
                    "nome": "SETOR OESTE, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 11107,
                    "nome": "LAGO DAS ROSAS, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 11108,
                    "nome": "JARDIM AVELINO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11109,
                    "nome": "PATRIOTAS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11110,
                    "nome": "PARQUE DO ESTADO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11111,
                    "nome": "METRO SAO JUDAS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11112,
                    "nome": "CANGUCU, RS",
                    "municipio": "CANGUCU"
                },
                {
                    "id": 11113,
                    "nome": "PIRACURUCA, PI",
                    "municipio": "PIRACURUCA"
                },
                {
                    "id": 11114,
                    "nome": "PEDRO II, PI",
                    "municipio": "PEDRO II"
                },
                {
                    "id": 11115,
                    "nome": "MONDAI, SC",
                    "municipio": "MONDAI"
                },
                {
                    "id": 11116,
                    "nome": "CANASVIEIRAS, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 11117,
                    "nome": "QUILOMBO, SC",
                    "municipio": "QUILOMBO"
                },
                {
                    "id": 11118,
                    "nome": "CANOAS, RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 11119,
                    "nome": "CIDADE ADEMAR, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11120,
                    "nome": "JARDIM CAMARGO NOVO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11121,
                    "nome": "CORIOLANO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11122,
                    "nome": "VILA JACUI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11123,
                    "nome": "CASTELO BRANCO, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 11124,
                    "nome": "CLODOMIRO AMAZONAS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11125,
                    "nome": "NOVA ALVORADA DO SUL, MS",
                    "municipio": "NOVA ALVORADA DO SUL"
                },
                {
                    "id": 11126,
                    "nome": "SALOME, AL",
                    "municipio": "SAO SEBASTIAO"
                },
                {
                    "id": 11127,
                    "nome": "CAMPO ALEGRE, AL",
                    "municipio": "CAMPO ALEGRE"
                },
                {
                    "id": 11128,
                    "nome": "CARAZINHO, RS",
                    "municipio": "CARAZINHO"
                },
                {
                    "id": 11129,
                    "nome": "JOAQUIM GOMES, AL",
                    "municipio": "JOAQUIM GOMES"
                },
                {
                    "id": 11130,
                    "nome": "Ag�ncia 46400",
                    "municipio": ""
                },
                {
                    "id": 11131,
                    "nome": "NOVA CRIXAS, GO",
                    "municipio": "NOVA CRIXAS"
                },
                {
                    "id": 11132,
                    "nome": "ITALVA, RJ",
                    "municipio": "ITALVA"
                },
                {
                    "id": 11133,
                    "nome": "CAMPOS DE JULIO, MT",
                    "municipio": "CAMPOS DE JULIO"
                },
                {
                    "id": 11134,
                    "nome": "RUA VITORIA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11135,
                    "nome": "PARQUE SAO VICENTE, SP",
                    "municipio": "MAUA"
                },
                {
                    "id": 11136,
                    "nome": "PARQUELANDIA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 11137,
                    "nome": "ANIL, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11138,
                    "nome": "24 DE JUNHO, PR",
                    "municipio": "SAO JOAO"
                },
                {
                    "id": 11139,
                    "nome": "CAXIAS DO SUL, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 11140,
                    "nome": "AVENIDA FELICIANO SODRE, RJ",
                    "municipio": "TERESOPOLIS"
                },
                {
                    "id": 11141,
                    "nome": "IPE, MT",
                    "municipio": "VARZEA GRANDE"
                },
                {
                    "id": 11142,
                    "nome": "VIANOPOLIS, GO",
                    "municipio": "VIANOPOLIS"
                },
                {
                    "id": 11143,
                    "nome": "VARGEM ALTA, ES",
                    "municipio": "VARGEM ALTA"
                },
                {
                    "id": 11144,
                    "nome": "ESTRADA MANOEL DE SA, RJ",
                    "municipio": "BELFORD ROXO"
                },
                {
                    "id": 11145,
                    "nome": "ITAMBE, BA",
                    "municipio": "ITAMBE"
                },
                {
                    "id": 11146,
                    "nome": "PAI ETERNO, GO",
                    "municipio": "TRINDADE"
                },
                {
                    "id": 11147,
                    "nome": "SOUZA RAMOS, GO",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 11148,
                    "nome": "PARQUE VALENTINA MIRANDA, RJ",
                    "municipio": "MACAE"
                },
                {
                    "id": 11149,
                    "nome": "CERRO LARGO, RS",
                    "municipio": "CERRO LARGO"
                },
                {
                    "id": 11150,
                    "nome": "QUISSAMA, RJ",
                    "municipio": "QUISSAMA"
                },
                {
                    "id": 11151,
                    "nome": "RECONCAVO, BA",
                    "municipio": "SANTO ANTONIO DE JESUS"
                },
                {
                    "id": 11152,
                    "nome": "ENTRE RIOS, BA",
                    "municipio": "ENTRE RIOS"
                },
                {
                    "id": 11153,
                    "nome": "PARAMIRIM, BA",
                    "municipio": "PARAMIRIM"
                },
                {
                    "id": 11154,
                    "nome": "BELMONTE, BA",
                    "municipio": "BELMONTE"
                },
                {
                    "id": 11155,
                    "nome": "SERRA DO RAMALHO, BA",
                    "municipio": "SERRA DO RAMALHO"
                },
                {
                    "id": 11156,
                    "nome": "UAUA, BA",
                    "municipio": "UAUA"
                },
                {
                    "id": 11157,
                    "nome": "ITACARE, BA",
                    "municipio": "ITACARE"
                },
                {
                    "id": 11158,
                    "nome": "COARACI, BA",
                    "municipio": "COARACI"
                },
                {
                    "id": 11159,
                    "nome": "CRUZ ALTA, RS",
                    "municipio": "CRUZ ALTA"
                },
                {
                    "id": 11160,
                    "nome": "ESTACAO DAS BARCAS, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 11161,
                    "nome": "ACREUNA, GO",
                    "municipio": "ACREUNA"
                },
                {
                    "id": 11162,
                    "nome": "SHOPPING JATAHY, GO",
                    "municipio": "JATAI"
                },
                {
                    "id": 11163,
                    "nome": "BAIRRO SANTA CATARINA, RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 11164,
                    "nome": "RAINHA DA FRONTEIRA, RS",
                    "municipio": "BAGE"
                },
                {
                    "id": 11165,
                    "nome": "AV CELSO GARCIA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11166,
                    "nome": "PEDRA LISA, SP",
                    "municipio": "ITAPECERICA DA SERRA"
                },
                {
                    "id": 11167,
                    "nome": "MEMORIAL, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11168,
                    "nome": "ALAMEDA RIO NEGRO, SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 11169,
                    "nome": "LARGO DO CAPAO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11170,
                    "nome": "ITAITINGA, CE",
                    "municipio": "ITAITINGA"
                },
                {
                    "id": 11171,
                    "nome": "JURUTI, PA",
                    "municipio": "JURUTI"
                },
                {
                    "id": 11172,
                    "nome": "CIDADE MODELO, PA",
                    "municipio": "CASTANHAL"
                },
                {
                    "id": 11173,
                    "nome": "TAPAJOS, PA",
                    "municipio": "SANTAREM"
                },
                {
                    "id": 11174,
                    "nome": "GARRAFAO DO NORTE, PA",
                    "municipio": "GARRAFAO DO NORTE"
                },
                {
                    "id": 11175,
                    "nome": "URUARA, PA",
                    "municipio": "URUARA"
                },
                {
                    "id": 11176,
                    "nome": "JACUNDA, PA",
                    "municipio": "JACUNDA"
                },
                {
                    "id": 11177,
                    "nome": "GRANDE BOM JARDIM, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 11178,
                    "nome": "DOM PEDRITO, RS",
                    "municipio": "DOM PEDRITO"
                },
                {
                    "id": 11179,
                    "nome": "IMACULADA CONCEICAO, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 11180,
                    "nome": "JARDIM GOIAS, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 11181,
                    "nome": "SANTO ANTONIO DO SUDOESTE, PR",
                    "municipio": "SANTO ANTONIO DO SUDOESTE"
                },
                {
                    "id": 11182,
                    "nome": "MARACAS, BA",
                    "municipio": "MARACAS"
                },
                {
                    "id": 11183,
                    "nome": "MUNDO NOVO DA BAHIA, BA",
                    "municipio": "MUNDO NOVO"
                },
                {
                    "id": 11184,
                    "nome": "ARATU, BA",
                    "municipio": "SIMOES FILHO"
                },
                {
                    "id": 11185,
                    "nome": "BELA FLOR, BA",
                    "municipio": "GUANAMBI"
                },
                {
                    "id": 11186,
                    "nome": "SAO PAULO DE OLIVENCA, AM",
                    "municipio": "SAO PAULO DE OLIVENCA"
                },
                {
                    "id": 11187,
                    "nome": "AV MANGALO, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 11188,
                    "nome": "AEROPORTO RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 11189,
                    "nome": "ERECHIM, RS",
                    "municipio": "ERECHIM"
                },
                {
                    "id": 11190,
                    "nome": "SETOR RODOVIARIO, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 11191,
                    "nome": "AV DR VICTOR DO AMARAL, PR",
                    "municipio": "ARAUCARIA"
                },
                {
                    "id": 11192,
                    "nome": "VENTURA TOWER, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11193,
                    "nome": "NOVA SAO JOSE, SP",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 11194,
                    "nome": "MILLENNIUM, AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 11195,
                    "nome": "VILA KOSMOS, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11196,
                    "nome": "SAO LAZARO, AP",
                    "municipio": "MACAPA"
                },
                {
                    "id": 11197,
                    "nome": "PACOVAL, AP",
                    "municipio": "MACAPA"
                },
                {
                    "id": 11198,
                    "nome": "JARDIM ZAIRA, SP",
                    "municipio": "MAUA"
                },
                {
                    "id": 11199,
                    "nome": "ESTANCIA VELHA, RS",
                    "municipio": "ESTANCIA VELHA"
                },
                {
                    "id": 11200,
                    "nome": "AV MAURILIO BIAGI, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 11201,
                    "nome": "BARONESA DE JUNDIAI, SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 11202,
                    "nome": "COTOVIA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11203,
                    "nome": "AV VEREADOR ABEL FERREIRA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11204,
                    "nome": "FERRAZOPOLIS, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 11205,
                    "nome": "RUA TOBIAS BARRETO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11206,
                    "nome": "JARDIM JAPAO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11207,
                    "nome": "PARQUE BOTURUSSU, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11208,
                    "nome": "CONCHAL, SP",
                    "municipio": "CONCHAL"
                },
                {
                    "id": 11209,
                    "nome": "BAIRRO JARDIM, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 11210,
                    "nome": "ESTEIO, RS",
                    "municipio": "ESTEIO"
                },
                {
                    "id": 11211,
                    "nome": "JARDIM ESTHER, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11212,
                    "nome": "GAROPABA, SC",
                    "municipio": "GAROPABA"
                },
                {
                    "id": 11213,
                    "nome": "MOROTIN, RS",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 11214,
                    "nome": "OIAPOQUE, AP",
                    "municipio": "OIAPOQUE"
                },
                {
                    "id": 11215,
                    "nome": "VILA DE SANTA MARIA, RJ",
                    "municipio": "MARICA"
                },
                {
                    "id": 11216,
                    "nome": "INGA, RJ",
                    "municipio": "NITEROI"
                },
                {
                    "id": 11217,
                    "nome": "ARROIO DOS RATOS, RS",
                    "municipio": "ARROIO DOS RATOS"
                },
                {
                    "id": 11218,
                    "nome": "ALTOS, PI",
                    "municipio": "ALTOS"
                },
                {
                    "id": 11219,
                    "nome": "ARAQUARI, SC",
                    "municipio": "ARAQUARI"
                },
                {
                    "id": 11220,
                    "nome": "PORTO BELO, SC",
                    "municipio": "PORTO BELO"
                },
                {
                    "id": 11221,
                    "nome": "ESTRELA, RS",
                    "municipio": "ESTRELA"
                },
                {
                    "id": 11222,
                    "nome": "APARECIDA DO TABOADO, MS",
                    "municipio": "APARECIDA DO TABOADO"
                },
                {
                    "id": 11223,
                    "nome": "BARAO DE ITAPURA, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 11224,
                    "nome": "BONITO, MS",
                    "municipio": "BONITO"
                },
                {
                    "id": 11225,
                    "nome": "LAGOA DA CONCEICAO, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 11226,
                    "nome": "CACU, GO",
                    "municipio": "CACU"
                },
                {
                    "id": 11227,
                    "nome": "CAIAPONIA, GO",
                    "municipio": "CAIAPONIA"
                },
                {
                    "id": 11228,
                    "nome": "PONTALINA, GO",
                    "municipio": "PONTALINA"
                },
                {
                    "id": 11229,
                    "nome": "FORUM OLINDA, PE",
                    "municipio": "OLINDA"
                },
                {
                    "id": 11230,
                    "nome": "PAUDALHO, PE",
                    "municipio": "PAUDALHO"
                },
                {
                    "id": 11231,
                    "nome": "FARROUPILHA, RS",
                    "municipio": "FARROUPILHA"
                },
                {
                    "id": 11232,
                    "nome": "CIDADE MORENA, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 11233,
                    "nome": "PARK SHOPPING VILHENA, RO",
                    "municipio": "VILHENA"
                },
                {
                    "id": 11234,
                    "nome": "IMBE, RS",
                    "municipio": "IMBE"
                },
                {
                    "id": 11235,
                    "nome": "TATUQUARA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 11236,
                    "nome": "NOVA MAMORE, RO",
                    "municipio": "NOVA MAMORE"
                },
                {
                    "id": 11237,
                    "nome": "POCONE, MT",
                    "municipio": "POCONE"
                },
                {
                    "id": 11238,
                    "nome": "SULACAP, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11239,
                    "nome": "AV ABELARDO BUENO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11240,
                    "nome": "OPEN MALL, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11241,
                    "nome": "FREDERICO WESTPHALEN, RS",
                    "municipio": "FREDERICO WESTPHALEN"
                },
                {
                    "id": 11242,
                    "nome": "ESTRADA DOS BANDEIRANTES, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11243,
                    "nome": "SALGADO, PE",
                    "municipio": "CARUARU"
                },
                {
                    "id": 11244,
                    "nome": "RIBEIRAO, PE",
                    "municipio": "RIBEIRAO"
                },
                {
                    "id": 11245,
                    "nome": "CATENDE, PE",
                    "municipio": "CATENDE"
                },
                {
                    "id": 11246,
                    "nome": "47540",
                    "municipio": ""
                },
                {
                    "id": 11247,
                    "nome": "Ag�ncia 47542",
                    "municipio": ""
                },
                {
                    "id": 11248,
                    "nome": "COMENDADOR SOARES, RJ",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 11249,
                    "nome": "FORUM JABOATAO, PE",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 11250,
                    "nome": "29 DE DEZEMBRO, PE",
                    "municipio": "SANTA CRUZ DO CAPIBARIBE"
                },
                {
                    "id": 11251,
                    "nome": "RIO MAR, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 11252,
                    "nome": "GARIBALDI, RS",
                    "municipio": "GARIBALDI"
                },
                {
                    "id": 11253,
                    "nome": "PARQUE CIDADE, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11254,
                    "nome": "PRACA DA MATRIZ, RJ",
                    "municipio": "SAO JOAO DE MERITI"
                },
                {
                    "id": 11255,
                    "nome": "PALACIO DA ABOLICAO, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 11256,
                    "nome": "AMELIA RODRIGUES, BA",
                    "municipio": "AMELIA RODRIGUES"
                },
                {
                    "id": 11257,
                    "nome": "ARACI, BA",
                    "municipio": "ARACI"
                },
                {
                    "id": 11258,
                    "nome": "CASA NOVA, BA",
                    "municipio": "CASA NOVA"
                },
                {
                    "id": 11259,
                    "nome": "CONCEICAO DO JACUIPE, BA",
                    "municipio": "CONCEICAO DO JACUIPE"
                },
                {
                    "id": 11260,
                    "nome": "IRARA, BA",
                    "municipio": "IRARA"
                },
                {
                    "id": 11261,
                    "nome": "GETULIO VARGAS, RS",
                    "municipio": "GETULIO VARGAS"
                },
                {
                    "id": 11262,
                    "nome": "ITIUBA, BA",
                    "municipio": "ITIUBA"
                },
                {
                    "id": 11263,
                    "nome": "JAGUARARI, BA",
                    "municipio": "JAGUARARI"
                },
                {
                    "id": 11264,
                    "nome": "JEREMOABO, BA",
                    "municipio": "JEREMOABO"
                },
                {
                    "id": 11265,
                    "nome": "MIGUEL CALMON, BA",
                    "municipio": "MIGUEL CALMON"
                },
                {
                    "id": 11266,
                    "nome": "GARIBALDI PRIME, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11267,
                    "nome": "RUA DA CANDELARIA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11268,
                    "nome": "TERRA VERMELHA, ES",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 11269,
                    "nome": "ORFANATO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11270,
                    "nome": "PRACA DO FORRO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11271,
                    "nome": "AV RIO DAS PEDRAS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11272,
                    "nome": "GRAVATAI, RS",
                    "municipio": "GRAVATAI"
                },
                {
                    "id": 11273,
                    "nome": "LARGO DO LUME, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11274,
                    "nome": "RUA DO SENADO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11275,
                    "nome": "ARAGARCAS, GO",
                    "municipio": "ARAGARCAS"
                },
                {
                    "id": 11276,
                    "nome": "PETROLINA DE GOIAS, GO",
                    "municipio": "PETROLINA DE GOIAS"
                },
                {
                    "id": 11277,
                    "nome": "ESPINOSA, MG",
                    "municipio": "ESPINOSA"
                },
                {
                    "id": 11278,
                    "nome": "RAJA GABAGLIA, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11279,
                    "nome": "XINGU, PA",
                    "municipio": "ALTAMIRA"
                },
                {
                    "id": 11280,
                    "nome": "ALTO DA BOA VISTA, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 11281,
                    "nome": "ALTO DO IPIRANGA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11282,
                    "nome": "FAZENDA DA JUTA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11283,
                    "nome": "GUAIBA, RS",
                    "municipio": "GUAIBA"
                },
                {
                    "id": 11284,
                    "nome": "VILA CLEMENTINO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11285,
                    "nome": "ITARIRI, SP",
                    "municipio": "ITARIRI"
                },
                {
                    "id": 11286,
                    "nome": "MORUNGABA, SP",
                    "municipio": "MORUNGABA"
                },
                {
                    "id": 11287,
                    "nome": "MACUNIS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11288,
                    "nome": "JARINU, SP",
                    "municipio": "JARINU"
                },
                {
                    "id": 11289,
                    "nome": "MATATU, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11290,
                    "nome": "PARQUE DE PITUACU, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11291,
                    "nome": "AV JOANA ANGELICA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11292,
                    "nome": "ENCRUZILHADA, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 11293,
                    "nome": "GIRUA, RS",
                    "municipio": "GIRUA"
                },
                {
                    "id": 11294,
                    "nome": "COSTA AZUL, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11295,
                    "nome": "PITUBA PRIVILEGE, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11296,
                    "nome": "PELOURINHO, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11297,
                    "nome": "SHOPPING BELA VISTA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11298,
                    "nome": "FAZENDA GRANDE DO RETIRO, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11299,
                    "nome": "SANTA TEREZINHA DE GOIAS, GO",
                    "municipio": "SANTA TEREZINHA DE GOIAS"
                },
                {
                    "id": 11300,
                    "nome": "BOSQUE DAS ARAPIRACAS, AL",
                    "municipio": "ARAPIRACA"
                },
                {
                    "id": 11301,
                    "nome": "TABULEIRO DOS MARTINS, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 11302,
                    "nome": "ARROIO GRANDE, RS",
                    "municipio": "ARROIO GRANDE"
                },
                {
                    "id": 11303,
                    "nome": "HORIZONTINA, RS",
                    "municipio": "HORIZONTINA"
                },
                {
                    "id": 11304,
                    "nome": "PARCAO, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 11305,
                    "nome": "TENENTE PORTELA, RS",
                    "municipio": "TENENTE PORTELA"
                },
                {
                    "id": 11306,
                    "nome": "BAIRRO LIBERDADE, RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 11307,
                    "nome": "ASA GIGANTE, AL",
                    "municipio": "ARAPIRACA"
                },
                {
                    "id": 11308,
                    "nome": "CAMPINORTE, GO",
                    "municipio": "CAMPINORTE"
                },
                {
                    "id": 11309,
                    "nome": "JUIZADOS ESPECIAIS DO RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 11310,
                    "nome": "GOIANAPOLIS, GO",
                    "municipio": "GOIANAPOLIS"
                },
                {
                    "id": 11311,
                    "nome": "IGUAI, BA",
                    "municipio": "IGUAI"
                },
                {
                    "id": 11312,
                    "nome": "RUY BARBOSA DA BAHIA, BA",
                    "municipio": "RUY BARBOSA"
                },
                {
                    "id": 11313,
                    "nome": "PALMAS DE MONTE ALTO, BA",
                    "municipio": "PALMAS DE MONTE ALTO"
                },
                {
                    "id": 11314,
                    "nome": "IBIRUBA, RS",
                    "municipio": "IBIRUBA"
                },
                {
                    "id": 11315,
                    "nome": "AV MARCELINO PIRES, MS",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 11316,
                    "nome": "GUAPO, GO",
                    "municipio": "GUAPO"
                },
                {
                    "id": 11317,
                    "nome": "PARAHYBA, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 11318,
                    "nome": "CAIXA D AGUA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11319,
                    "nome": "MORRO DO CHAPEU, BA",
                    "municipio": "MORRO DO CHAPEU"
                },
                {
                    "id": 11320,
                    "nome": "MURITIBA, BA",
                    "municipio": "MURITIBA"
                },
                {
                    "id": 11321,
                    "nome": "NOVA SOURE, BA",
                    "municipio": "NOVA SOURE"
                },
                {
                    "id": 11322,
                    "nome": "CANION DO SAO FRANCISCO, BA",
                    "municipio": "PAULO AFONSO"
                },
                {
                    "id": 11323,
                    "nome": "Ag�ncia 48281",
                    "municipio": ""
                },
                {
                    "id": 11324,
                    "nome": "IJUI, RS",
                    "municipio": "IJUI"
                },
                {
                    "id": 11325,
                    "nome": "QUEIMADAS, BA",
                    "municipio": "QUEIMADAS"
                },
                {
                    "id": 11326,
                    "nome": "RIACHAO DAS NEVES, BA",
                    "municipio": "RIACHAO DAS NEVES"
                },
                {
                    "id": 11327,
                    "nome": "RIACHO DE SANTANA, BA",
                    "municipio": "RIACHO DE SANTANA"
                },
                {
                    "id": 11328,
                    "nome": "SANTA LUZ, BA",
                    "municipio": "SANTALUZ"
                },
                {
                    "id": 11329,
                    "nome": "QUITUNGO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11330,
                    "nome": "ALTO TAQUARI, MT",
                    "municipio": "ALTO TAQUARI"
                },
                {
                    "id": 11331,
                    "nome": "URUGUAI, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11332,
                    "nome": "AV PRESIDENTE WILSON, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11333,
                    "nome": "AVENIDA BARAO DE TEFE, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11334,
                    "nome": "QUITANDA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11335,
                    "nome": "ITAQUI, RS",
                    "municipio": "ITAQUI"
                },
                {
                    "id": 11336,
                    "nome": "RUA DA RELACAO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11337,
                    "nome": "VILA LUZITA, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 11338,
                    "nome": "HELIOPOLIS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11339,
                    "nome": "NOVO RIO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11340,
                    "nome": "SAO JOSE DE MIPIBU, RN",
                    "municipio": "SAO JOSE DE MIPIBU"
                },
                {
                    "id": 11341,
                    "nome": "LARGO SAO BENEDITO, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 11342,
                    "nome": "CENTERVALE SHOPPING, SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 11343,
                    "nome": "VILA PESTANA, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 11344,
                    "nome": "VILA MARCONDES, SP",
                    "municipio": "CARAPICUIBA"
                },
                {
                    "id": 11345,
                    "nome": "JAGUARAO, RS",
                    "municipio": "JAGUARAO"
                },
                {
                    "id": 11346,
                    "nome": "GUARAREMA, SP",
                    "municipio": "GUARAREMA"
                },
                {
                    "id": 11347,
                    "nome": "MOOCA PLAZA SHOPPING, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11348,
                    "nome": "PAULISTA SAO LUIS, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11349,
                    "nome": "GUAPIMIRIM, RJ",
                    "municipio": "GUAPIMIRIM"
                },
                {
                    "id": 11350,
                    "nome": "BAIRRO SALGADO FILHO, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11351,
                    "nome": "JAGUARI, RS",
                    "municipio": "JAGUARI"
                },
                {
                    "id": 11352,
                    "nome": "LOURDES, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11353,
                    "nome": "COCALZINHO, GO",
                    "municipio": "COCALZINHO DE GOIAS"
                },
                {
                    "id": 11354,
                    "nome": "JULIO DE CASTILHOS, RS",
                    "municipio": "JULIO DE CASTILHOS"
                },
                {
                    "id": 11355,
                    "nome": "PATY DO ALFERES, RJ",
                    "municipio": "PATY DO ALFERES"
                },
                {
                    "id": 11356,
                    "nome": "TANGUA, RJ",
                    "municipio": "TANGUA"
                },
                {
                    "id": 11357,
                    "nome": "GUABIRUBA, SC",
                    "municipio": "GUABIRUBA"
                },
                {
                    "id": 11358,
                    "nome": "UMBAUBA, SE",
                    "municipio": "UMBAUBA"
                },
                {
                    "id": 11359,
                    "nome": "CAPELA SERGIPE, SE",
                    "municipio": "CAPELA"
                },
                {
                    "id": 11360,
                    "nome": "ESCOLA AGRICOLA, SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 11361,
                    "nome": "SAO VICENTE DE ITAJAI, SC",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 11362,
                    "nome": "NOVA VENEZA, SC",
                    "municipio": "NOVA VENEZA"
                },
                {
                    "id": 11363,
                    "nome": "LAGOA VERMELHA, RS",
                    "municipio": "LAGOA VERMELHA"
                },
                {
                    "id": 11364,
                    "nome": "SANTA CRUZ DA SERRA, RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 11365,
                    "nome": "AV AYRTON SENNA, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 11366,
                    "nome": "AV PRUDENTE DE MORAIS, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 11367,
                    "nome": "GUAMARE, RN",
                    "municipio": "GUAMARE"
                },
                {
                    "id": 11368,
                    "nome": "EDUCADORA NOILDE RAMALHO, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 11369,
                    "nome": "TOUROS, RN",
                    "municipio": "TOUROS"
                },
                {
                    "id": 11370,
                    "nome": "SAO MIGUEL, RN",
                    "municipio": "SAO MIGUEL"
                },
                {
                    "id": 11371,
                    "nome": "NOVA PARNAMIRIM, RN",
                    "municipio": "PARNAMIRIM"
                },
                {
                    "id": 11372,
                    "nome": "RUA MORAES BARROS, SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 11373,
                    "nome": "LAJEADO, RS",
                    "municipio": "LAJEADO"
                },
                {
                    "id": 11374,
                    "nome": "AV DANILO GALEAZZI, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 11375,
                    "nome": "POZZOBON, SP",
                    "municipio": "VOTUPORANGA"
                },
                {
                    "id": 11376,
                    "nome": "WANEL VILLE, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 11377,
                    "nome": "LUIS ANTONIO, SP",
                    "municipio": "LUIS ANTONIO"
                },
                {
                    "id": 11378,
                    "nome": "PEDREGULHO, SP",
                    "municipio": "PEDREGULHO"
                },
                {
                    "id": 11379,
                    "nome": "ELOY CHAVES, SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 11380,
                    "nome": "AV VITAL BRASIL, SP",
                    "municipio": "BOTUCATU"
                },
                {
                    "id": 11381,
                    "nome": "SANTO ANTONIO DE POSSE, SP",
                    "municipio": "SANTO ANTONIO DE POSSE"
                },
                {
                    "id": 11382,
                    "nome": "JARDIM LONDRES, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 11383,
                    "nome": "ESTACAO PAULISTA, SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 11384,
                    "nome": "CASA AMARELA, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 11385,
                    "nome": "NOVO HAMBURGO, RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 11386,
                    "nome": "PRACA FLORIANO PEIXOTO, SP",
                    "municipio": "MOGI-MIRIM"
                },
                {
                    "id": 11387,
                    "nome": "CIDADE DE CHARQUEADA, SP",
                    "municipio": "CHARQUEADA"
                },
                {
                    "id": 11388,
                    "nome": "PAMPLONA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11389,
                    "nome": "VILA HORTOLANDIA, SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 11390,
                    "nome": "LARGO DO ROSARIO, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 11391,
                    "nome": "BAIRRO VILA VIRGINIA, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 11392,
                    "nome": "AV DOS ESPORTES, SP",
                    "municipio": "VALINHOS"
                },
                {
                    "id": 11393,
                    "nome": "OSORIO, RS",
                    "municipio": "OSORIO"
                },
                {
                    "id": 11394,
                    "nome": "SANTA FELICIA, SP",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 11395,
                    "nome": "ALTO DO RODRIGUES, RN",
                    "municipio": "ALTO DO RODRIGUES"
                },
                {
                    "id": 11396,
                    "nome": "PEDRAS DE FOGO, PB",
                    "municipio": "PEDRAS DE FOGO"
                },
                {
                    "id": 11397,
                    "nome": "BESSA, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 11398,
                    "nome": "BANCARIOS, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 11399,
                    "nome": "PICUI, PB",
                    "municipio": "PICUI"
                },
                {
                    "id": 11400,
                    "nome": "SAO BENTO DA PARAIBA, PB",
                    "municipio": "SAO BENTO"
                },
                {
                    "id": 11401,
                    "nome": "RUA ALBANO SCHMIDT, SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 11402,
                    "nome": "MEIO NORTE, MA",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 11403,
                    "nome": "PALMEIRA DAS MISSOES, RS",
                    "municipio": "PALMEIRA DAS MISSOES"
                },
                {
                    "id": 11404,
                    "nome": "COCAL DO SUL, SC",
                    "municipio": "COCAL DO SUL"
                },
                {
                    "id": 11405,
                    "nome": "PANAMBI, RS",
                    "municipio": "PANAMBI"
                },
                {
                    "id": 11406,
                    "nome": "ANAPOLINA, GO",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 11407,
                    "nome": "SALTO DO JACUI, RS",
                    "municipio": "SALTO DO JACUI"
                },
                {
                    "id": 11408,
                    "nome": "NOVA HARTZ, RS",
                    "municipio": "NOVA HARTZ"
                },
                {
                    "id": 11409,
                    "nome": "PASSO FUNDO, RS",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 11410,
                    "nome": "HIDROLANDIA, GO",
                    "municipio": "HIDROLANDIA"
                },
                {
                    "id": 11411,
                    "nome": "AV VETORASSO, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 11412,
                    "nome": "MARRECAS, PR",
                    "municipio": "FRANCISCO BELTRAO"
                },
                {
                    "id": 11413,
                    "nome": "RUA DO PRADO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11414,
                    "nome": "RUA AUGUSTO DE VASCONCELOS, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11415,
                    "nome": "GUARATIBA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11416,
                    "nome": "AV DOM HELDER CAMARA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11417,
                    "nome": "ESTACAO LUCAS, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11418,
                    "nome": "PELOTAS, RS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 11419,
                    "nome": "BELEM DA SERRA, SP",
                    "municipio": "FRANCISCO MORATO"
                },
                {
                    "id": 11420,
                    "nome": "PIRACAIA, SP",
                    "municipio": "PIRACAIA"
                },
                {
                    "id": 11421,
                    "nome": "PREFEITURA MUNICIPAL CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 11422,
                    "nome": "QUARAI, RS",
                    "municipio": "QUARAI"
                },
                {
                    "id": 11423,
                    "nome": "ANA LUCIA, MG",
                    "municipio": "SABARA"
                },
                {
                    "id": 11424,
                    "nome": "Fortaleza Frei Cirilo",
                    "municipio": ""
                },
                {
                    "id": 11425,
                    "nome": "RIO GRANDE, RS",
                    "municipio": "RIO GRANDE"
                },
                {
                    "id": 11426,
                    "nome": "BAIRRO CORACAO EUCARISTICO, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11427,
                    "nome": "MADRE DE DEUS, BA",
                    "municipio": "MADRE DE DEUS"
                },
                {
                    "id": 11428,
                    "nome": "BARRA DO CHOCA, BA",
                    "municipio": "BARRA DO CHOCA"
                },
                {
                    "id": 11429,
                    "nome": "CARINHANHA, BA",
                    "municipio": "CARINHANHA"
                },
                {
                    "id": 11430,
                    "nome": "IMIP, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 11431,
                    "nome": "QUATIS, RJ",
                    "municipio": "QUATIS"
                },
                {
                    "id": 11432,
                    "nome": "NOVA CIDADE, RJ",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 11433,
                    "nome": "BURITIS DE MINAS, MG",
                    "municipio": "BURITIS"
                },
                {
                    "id": 11434,
                    "nome": "RIO PARDO, RS",
                    "municipio": "RIO PARDO"
                },
                {
                    "id": 11435,
                    "nome": "JUSTINOPOLIS, MG",
                    "municipio": "RIBEIRAO DAS NEVES"
                },
                {
                    "id": 11436,
                    "nome": "PARQUE VEIGA JARDIM, GO",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 11437,
                    "nome": "PORTAL DO SERTAO, PB",
                    "municipio": "PATOS"
                },
                {
                    "id": 11438,
                    "nome": "HORTENSIAS, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 11439,
                    "nome": "MANCHESTER PAULISTA, SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 11440,
                    "nome": "JULIO DE MESQUITA,SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 11441,
                    "nome": "AMERICA DO SUL, SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 11442,
                    "nome": "JARDIM D ABRIL, SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 11443,
                    "nome": "BRASILANDIA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11444,
                    "nome": "SALESOPOLIS, SP",
                    "municipio": "SALESOPOLIS"
                },
                {
                    "id": 11445,
                    "nome": "ROSARIO DO SUL, RS",
                    "municipio": "ROSARIO DO SUL"
                },
                {
                    "id": 11446,
                    "nome": "ALTO DO JARAGUA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11447,
                    "nome": "ENGENHEIRO COELHO, SP",
                    "municipio": "ENGENHEIRO COELHO"
                },
                {
                    "id": 11448,
                    "nome": "BARRINHA, SP",
                    "municipio": "BARRINHA"
                },
                {
                    "id": 11449,
                    "nome": "IBITIRAMA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11450,
                    "nome": "TERRA DAS AGUAS, PE",
                    "municipio": "BONITO"
                },
                {
                    "id": 11451,
                    "nome": "BUIQUE, PE",
                    "municipio": "BUIQUE"
                },
                {
                    "id": 11452,
                    "nome": "CONGRESSO, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11453,
                    "nome": "CAIS DO APOLO, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 11454,
                    "nome": "SANTA CRUZ DO SUL, RS",
                    "municipio": "SANTA CRUZ DO SUL"
                },
                {
                    "id": 11455,
                    "nome": "SANTA MARIA, RS",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 11456,
                    "nome": "SANTA ROSA, RS",
                    "municipio": "SANTA ROSA"
                },
                {
                    "id": 11457,
                    "nome": "SANTIAGO, RS",
                    "municipio": "SANTIAGO"
                },
                {
                    "id": 11458,
                    "nome": "SANTO ANGELO, RS",
                    "municipio": "SANTO ANGELO"
                },
                {
                    "id": 11459,
                    "nome": "LIVRAMENTO, RS",
                    "municipio": "SANTANA DO LIVRAMENTO"
                },
                {
                    "id": 11460,
                    "nome": "SAO BORJA, RS",
                    "municipio": "SAO BORJA"
                },
                {
                    "id": 11461,
                    "nome": "SAO FRANCISCO DE PAULA, RS",
                    "municipio": "SAO FRANCISCO DE PAULA"
                },
                {
                    "id": 11462,
                    "nome": "SAO GABRIEL, RS",
                    "municipio": "SAO GABRIEL"
                },
                {
                    "id": 11463,
                    "nome": "SAO JERONIMO, RS",
                    "municipio": "SAO JERONIMO"
                },
                {
                    "id": 11464,
                    "nome": "CARUARU, PE",
                    "municipio": "CARUARU"
                },
                {
                    "id": 11465,
                    "nome": "510",
                    "municipio": ""
                },
                {
                    "id": 11466,
                    "nome": "SAO LEOPOLDO, RS",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 11467,
                    "nome": "SAO LOURENCO DO SUL, RS",
                    "municipio": "SAO LOURENCO DO SUL"
                },
                {
                    "id": 11468,
                    "nome": "SAO LUIZ GONZAGA, RS",
                    "municipio": "SAO LUIZ GONZAGA"
                },
                {
                    "id": 11469,
                    "nome": "SAPIRANGA, RS",
                    "municipio": "SAPIRANGA"
                },
                {
                    "id": 11470,
                    "nome": "SARANDI, RS",
                    "municipio": "SARANDI"
                },
                {
                    "id": 11471,
                    "nome": "SOLEDADE, RS",
                    "municipio": "SOLEDADE"
                },
                {
                    "id": 11472,
                    "nome": "TAPES, RS",
                    "municipio": "TAPES"
                },
                {
                    "id": 11473,
                    "nome": "TAQUARA, RS",
                    "municipio": "TAQUARA"
                },
                {
                    "id": 11474,
                    "nome": "TAQUARI, RS",
                    "municipio": "TAQUARI"
                },
                {
                    "id": 11475,
                    "nome": "GARANHUNS, PE",
                    "municipio": "GARANHUNS"
                },
                {
                    "id": 11476,
                    "nome": "TRES PASSOS, RS",
                    "municipio": "TRES PASSOS"
                },
                {
                    "id": 11477,
                    "nome": "TRES DE MAIO, RS",
                    "municipio": "TRES DE MAIO"
                },
                {
                    "id": 11478,
                    "nome": "TRAMANDAI, RS",
                    "municipio": "TRAMANDAI"
                },
                {
                    "id": 11479,
                    "nome": "TORRES, RS",
                    "municipio": "TORRES"
                },
                {
                    "id": 11480,
                    "nome": "TUPANCIRETA, RS",
                    "municipio": "TUPANCIRETA"
                },
                {
                    "id": 11481,
                    "nome": "URUGUAIANA, RS",
                    "municipio": "URUGUAIANA"
                },
                {
                    "id": 11482,
                    "nome": "VACARIA, RS",
                    "municipio": "VACARIA"
                },
                {
                    "id": 11483,
                    "nome": "VERANOPOLIS, RS",
                    "municipio": "VERANOPOLIS"
                },
                {
                    "id": 11484,
                    "nome": "VENANCIO AIRES, RS",
                    "municipio": "VENANCIO AIRES"
                },
                {
                    "id": 11485,
                    "nome": "LIMOEIRO, PE",
                    "municipio": "LIMOEIRO"
                },
                {
                    "id": 11486,
                    "nome": "MONTENEGRO, RS",
                    "municipio": "MONTENEGRO"
                },
                {
                    "id": 11487,
                    "nome": "CIDADE NOVA, RS",
                    "municipio": "RIO GRANDE"
                },
                {
                    "id": 11488,
                    "nome": "CAMOBI, RS",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 11489,
                    "nome": "ITAMARATY, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11490,
                    "nome": "RIO BRANCO, AC",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 11491,
                    "nome": "PROSPERA, SC",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 11492,
                    "nome": "OLEGARIO MACIEL, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11493,
                    "nome": "PRACA JAURU, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11494,
                    "nome": "PARADA INGLESA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11495,
                    "nome": "PARQUE DAS COLINAS, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 11496,
                    "nome": "NAZARE DA MATA, PE",
                    "municipio": "NAZARE DA MATA"
                },
                {
                    "id": 11497,
                    "nome": "540",
                    "municipio": ""
                },
                {
                    "id": 11498,
                    "nome": "541",
                    "municipio": ""
                },
                {
                    "id": 11499,
                    "nome": "RIO DE JANEIRO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11500,
                    "nome": "VILA DA PENHA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11501,
                    "nome": "RIO SUL, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11502,
                    "nome": "CAJAMAR, SP",
                    "municipio": "CAJAMAR"
                },
                {
                    "id": 11503,
                    "nome": "BARRA SUL, SC",
                    "municipio": "BALNEARIO CAMBORIU"
                },
                {
                    "id": 11504,
                    "nome": "548",
                    "municipio": ""
                },
                {
                    "id": 11505,
                    "nome": "SAO DOMINGOS, SC",
                    "municipio": "NAVEGANTES"
                },
                {
                    "id": 11506,
                    "nome": "ROSA DA FONSECA, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 11507,
                    "nome": "Ag�ncia 550",
                    "municipio": ""
                },
                {
                    "id": 11508,
                    "nome": "ALTAMIRA, PA",
                    "municipio": "ALTAMIRA"
                },
                {
                    "id": 11509,
                    "nome": "ITAITUBA, PA",
                    "municipio": "ITAITUBA"
                },
                {
                    "id": 11510,
                    "nome": "SOBRAL, CE",
                    "municipio": "SOBRAL"
                },
                {
                    "id": 11511,
                    "nome": "LINHARES, ES",
                    "municipio": "LINHARES"
                },
                {
                    "id": 11512,
                    "nome": "NOVA VENECIA, ES",
                    "municipio": "NOVA VENECIA"
                },
                {
                    "id": 11513,
                    "nome": "GUACUI, ES",
                    "municipio": "GUACUI"
                },
                {
                    "id": 11514,
                    "nome": "SOUSA, PB",
                    "municipio": "SOUSA"
                },
                {
                    "id": 11515,
                    "nome": "CABO, PE",
                    "municipio": "CABO DE SANTO AGOSTINHO"
                },
                {
                    "id": 11516,
                    "nome": "5590",
                    "municipio": ""
                },
                {
                    "id": 11517,
                    "nome": "5591",
                    "municipio": ""
                },
                {
                    "id": 11518,
                    "nome": "ARAPIRACA, AL",
                    "municipio": "ARAPIRACA"
                },
                {
                    "id": 11519,
                    "nome": "MOSSORO, RN",
                    "municipio": "MOSSORO"
                },
                {
                    "id": 11520,
                    "nome": "ITABAIANA, SE",
                    "municipio": "ITABAIANA"
                },
                {
                    "id": 11521,
                    "nome": "DOURADOS, MS",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 11522,
                    "nome": "TRES LAGOAS, MS",
                    "municipio": "TRES LAGOAS"
                },
                {
                    "id": 11523,
                    "nome": "CATALAO, GO",
                    "municipio": "CATALAO"
                },
                {
                    "id": 11524,
                    "nome": "JATAI, GO",
                    "municipio": "JATAI"
                },
                {
                    "id": 11525,
                    "nome": "RIO VERDE, GO",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 11526,
                    "nome": "ENCANTADO, RS",
                    "municipio": "ENCANTADO"
                },
                {
                    "id": 11527,
                    "nome": "CASCAVEL, PR",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 11528,
                    "nome": "CIANORTE, PR",
                    "municipio": "CIANORTE"
                },
                {
                    "id": 11529,
                    "nome": "PALMEIRA DOS INDIOS, AL",
                    "municipio": "PALMEIRA DOS INDIOS"
                },
                {
                    "id": 11530,
                    "nome": "UMUARAMA, PR",
                    "municipio": "UMUARAMA"
                },
                {
                    "id": 11531,
                    "nome": "CURITIBANOS, SC",
                    "municipio": "CURITIBANOS"
                },
                {
                    "id": 11532,
                    "nome": "CACADOR, SC",
                    "municipio": "CACADOR"
                },
                {
                    "id": 11533,
                    "nome": "LEME, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11534,
                    "nome": "BIRIGUI, SP",
                    "municipio": "BIRIGUI"
                },
                {
                    "id": 11535,
                    "nome": "MOJI-GUACU, SP",
                    "municipio": "MOGI-GUACU"
                },
                {
                    "id": 11536,
                    "nome": "SAO ROQUE, SP",
                    "municipio": "SAO ROQUE"
                },
                {
                    "id": 11537,
                    "nome": "PESSOA ANTA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 11538,
                    "nome": "NOVA AURORA, PR",
                    "municipio": "NOVA AURORA"
                },
                {
                    "id": 11539,
                    "nome": "PENEDO, AL",
                    "municipio": "PENEDO"
                },
                {
                    "id": 11540,
                    "nome": "INDUSTRIAL, SC",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 11541,
                    "nome": "CAPITAL ECOLOGICA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 11542,
                    "nome": "SALGADO FILHO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 11543,
                    "nome": "IPANEMA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11544,
                    "nome": "FOZ DO IGUACU, PR",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 11545,
                    "nome": "SERIGY, SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 11546,
                    "nome": "CARIACICA, ES",
                    "municipio": "CARIACICA"
                },
                {
                    "id": 11547,
                    "nome": "CASTELO, ES",
                    "municipio": "CASTELO"
                },
                {
                    "id": 11548,
                    "nome": "MUQUI, ES",
                    "municipio": "MUQUI"
                },
                {
                    "id": 11549,
                    "nome": "NOVA PRATA, RS",
                    "municipio": "NOVA PRATA"
                },
                {
                    "id": 11550,
                    "nome": "NAO-ME-TOQUE, RS",
                    "municipio": "NAO-ME-TOQUE"
                },
                {
                    "id": 11551,
                    "nome": "DESCALVADO, SP",
                    "municipio": "DESCALVADO"
                },
                {
                    "id": 11552,
                    "nome": "ITAPEVA, SP",
                    "municipio": "ITAPEVA"
                },
                {
                    "id": 11553,
                    "nome": "JALES, SP",
                    "municipio": "JALES"
                },
                {
                    "id": 11554,
                    "nome": "MATAO, SP",
                    "municipio": "MATAO"
                },
                {
                    "id": 11555,
                    "nome": "PEREIRA BARRETO, SP",
                    "municipio": "PEREIRA BARRETO"
                },
                {
                    "id": 11556,
                    "nome": "MEXICO, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11557,
                    "nome": "MARCELO MONTALVAO, SE",
                    "municipio": "ESTANCIA"
                },
                {
                    "id": 11558,
                    "nome": "PORTO FELIZ, SP",
                    "municipio": "PORTO FELIZ"
                },
                {
                    "id": 11559,
                    "nome": "FRANCISCO BELTRAO, PR",
                    "municipio": "FRANCISCO BELTRAO"
                },
                {
                    "id": 11560,
                    "nome": "PATO BRANCO, PR",
                    "municipio": "PATO BRANCO"
                },
                {
                    "id": 11561,
                    "nome": "CRUZILIA, MG",
                    "municipio": "CRUZILIA"
                },
                {
                    "id": 11562,
                    "nome": "CACAPAVA DO SUL, RS",
                    "municipio": "CACAPAVA DO SUL"
                },
                {
                    "id": 11563,
                    "nome": "SAO MIGUEL PAULISTA, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11564,
                    "nome": "ALMENARA, MG",
                    "municipio": "ALMENARA"
                },
                {
                    "id": 11565,
                    "nome": "JOAO MONLEVADE, MG",
                    "municipio": "JOAO MONLEVADE"
                },
                {
                    "id": 11566,
                    "nome": "LEOPOLDINA, MG",
                    "municipio": "LEOPOLDINA"
                },
                {
                    "id": 11567,
                    "nome": "PIRAPORA, MG",
                    "municipio": "PIRAPORA"
                },
                {
                    "id": 11568,
                    "nome": "DAS MERCES, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11569,
                    "nome": "ARAGUAINA, TO",
                    "municipio": "ARAGUAINA"
                },
                {
                    "id": 11570,
                    "nome": "MORRINHOS, GO",
                    "municipio": "MORRINHOS"
                },
                {
                    "id": 11571,
                    "nome": "BROOKLIN, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11572,
                    "nome": "IGUATU, CE",
                    "municipio": "IGUATU"
                },
                {
                    "id": 11573,
                    "nome": "RONDONOPOLIS, MT",
                    "municipio": "RONDONOPOLIS"
                },
                {
                    "id": 11574,
                    "nome": "AQUIDAUANA, MS",
                    "municipio": "AQUIDAUANA"
                },
                {
                    "id": 11575,
                    "nome": "CAMPO MAIOR, PI",
                    "municipio": "CAMPO MAIOR"
                },
                {
                    "id": 11576,
                    "nome": "MINISTRO JOSE AMERICO, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 11577,
                    "nome": "LIBERDADE, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11578,
                    "nome": "DEL PASEO, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 11579,
                    "nome": "CALCADA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11580,
                    "nome": "PRAIA DE BELAS, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 11581,
                    "nome": "VITORIA DE SANTO ANTAO, PE",
                    "municipio": "VITORIA DE SANTO ANTAO"
                },
                {
                    "id": 11582,
                    "nome": "6260",
                    "municipio": ""
                },
                {
                    "id": 11583,
                    "nome": "CONCORDIA, SC",
                    "municipio": "CONCORDIA"
                },
                {
                    "id": 11584,
                    "nome": "SAO BENTO DO SUL, SC",
                    "municipio": "SAO BENTO DO SUL"
                },
                {
                    "id": 11585,
                    "nome": "CORINTO, MG",
                    "municipio": "CORINTO"
                },
                {
                    "id": 11586,
                    "nome": "COMERCIO, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11587,
                    "nome": "CONJUNTO NACIONAL, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11588,
                    "nome": "PACO MUNICIPAL, SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 11589,
                    "nome": "MADEIRA MAMORE, RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 11590,
                    "nome": "Ag�ncia 633",
                    "municipio": ""
                },
                {
                    "id": 11591,
                    "nome": "JACOBINA, BA",
                    "municipio": "JACOBINA"
                },
                {
                    "id": 11592,
                    "nome": "ITAPETINGA, BA",
                    "municipio": "ITAPETINGA"
                },
                {
                    "id": 11593,
                    "nome": "IPIAU, BA",
                    "municipio": "IPIAU"
                },
                {
                    "id": 11594,
                    "nome": "CARAPICUIBA, SP",
                    "municipio": "CARAPICUIBA"
                },
                {
                    "id": 11595,
                    "nome": "FLORIANO, PI",
                    "municipio": "FLORIANO"
                },
                {
                    "id": 11596,
                    "nome": "PICOS, PI",
                    "municipio": "PICOS"
                },
                {
                    "id": 11597,
                    "nome": "BAIXA DOS SAPATEIROS, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11598,
                    "nome": "SUZANO, SP",
                    "municipio": "SUZANO"
                },
                {
                    "id": 11599,
                    "nome": "GUARA, DF",
                    "municipio": "BRASILIA (GUARA)"
                },
                {
                    "id": 11600,
                    "nome": "IMPERATRIZ, MA",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 11601,
                    "nome": "LAGARTO, SE",
                    "municipio": "LAGARTO"
                },
                {
                    "id": 11602,
                    "nome": "ABADIANIA, GO",
                    "municipio": "ABADIANIA"
                },
                {
                    "id": 11603,
                    "nome": "CAPITAL, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11604,
                    "nome": "JABOATAO, PE",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 11605,
                    "nome": "Ag�ncia 6481",
                    "municipio": ""
                },
                {
                    "id": 11606,
                    "nome": "649",
                    "municipio": ""
                },
                {
                    "id": 11607,
                    "nome": "ALAGOINHAS, BA",
                    "municipio": "ALAGOINHAS"
                },
                {
                    "id": 11608,
                    "nome": "JUSTICA FEDERAL CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 11609,
                    "nome": "CASA FORTE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 11610,
                    "nome": "6510",
                    "municipio": ""
                },
                {
                    "id": 11611,
                    "nome": "BOA VISTA, RR",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 11612,
                    "nome": "GAMA, DF",
                    "municipio": "BRASILIA (GAMA)"
                },
                {
                    "id": 11613,
                    "nome": "PORCIUNCULA, RJ",
                    "municipio": "PORCIUNCULA"
                },
                {
                    "id": 11614,
                    "nome": "JARDIM DA SAUDE, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11615,
                    "nome": "MACAPA, AP",
                    "municipio": "MACAPA"
                },
                {
                    "id": 11616,
                    "nome": "MAUA, SP",
                    "municipio": "MAUA"
                },
                {
                    "id": 11617,
                    "nome": "AMARGOSA, BA",
                    "municipio": "AMARGOSA"
                },
                {
                    "id": 11618,
                    "nome": "PAPAGAIOS, MG",
                    "municipio": "PAPAGAIOS"
                },
                {
                    "id": 11619,
                    "nome": "PORTUGAL, SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 11620,
                    "nome": "UNIVERSIDADE FEDERAL VITORIA, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 11621,
                    "nome": "UNIVERSIDADE FEDERAL CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 11622,
                    "nome": "MINISTERIO DA EDUCACAO, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11623,
                    "nome": "665",
                    "municipio": ""
                },
                {
                    "id": 11624,
                    "nome": "UNIVERSIDADE FEDERAL DE GOIAS, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 11625,
                    "nome": "FORTAL, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 11626,
                    "nome": "CACHOEIRA, BA",
                    "municipio": "CACHOEIRA"
                },
                {
                    "id": 11627,
                    "nome": "SHOPPING DA BAHIA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11628,
                    "nome": "ROCHA MIRANDA, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11629,
                    "nome": "LAGO SUL, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11630,
                    "nome": "CONCEICAO, SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 11631,
                    "nome": "CIDADE UNIVERSITARIA, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 11632,
                    "nome": "6781",
                    "municipio": ""
                },
                {
                    "id": 11633,
                    "nome": "CAPITAO CASA, SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 11634,
                    "nome": "FEIRA DE SANTANA, BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 11635,
                    "nome": "REALENGO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11636,
                    "nome": "MANGABEIRAS, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11637,
                    "nome": "MARABA, PA",
                    "municipio": "MARABA"
                },
                {
                    "id": 11638,
                    "nome": "CRATO, CE",
                    "municipio": "CRATO"
                },
                {
                    "id": 11639,
                    "nome": "Ag�ncia 6840",
                    "municipio": ""
                },
                {
                    "id": 11640,
                    "nome": "UFMT, MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 11641,
                    "nome": "NUCLEO BANDEIRANTE, DF",
                    "municipio": "BRASILIA (NUCLEO BANDEIRANTE)"
                },
                {
                    "id": 11642,
                    "nome": "CONSOLACAO, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11643,
                    "nome": "ILHEUS, BA",
                    "municipio": "ILHEUS"
                },
                {
                    "id": 11644,
                    "nome": "IBIRACU, ES",
                    "municipio": "IBIRACU"
                },
                {
                    "id": 11645,
                    "nome": "MACHADO, MG",
                    "municipio": "MACHADO"
                },
                {
                    "id": 11646,
                    "nome": "CANELA, RS",
                    "municipio": "CANELA"
                },
                {
                    "id": 11647,
                    "nome": "SANTA VITORIA DO PALMAR, RS",
                    "municipio": "SANTA VITORIA DO PALMAR"
                },
                {
                    "id": 11648,
                    "nome": "ANDRADAS, MG",
                    "municipio": "ANDRADAS"
                },
                {
                    "id": 11649,
                    "nome": "SANTO AUGUSTO, RS",
                    "municipio": "SANTO AUGUSTO"
                },
                {
                    "id": 11650,
                    "nome": "SAO SEBASTIAO DO CAI, RS",
                    "municipio": "SAO SEBASTIAO DO CAI"
                },
                {
                    "id": 11651,
                    "nome": "MARAU, RS",
                    "municipio": "MARAU"
                },
                {
                    "id": 11652,
                    "nome": "SERAFINA CORREA, RS",
                    "municipio": "SERAFINA CORREA"
                },
                {
                    "id": 11653,
                    "nome": "PIRIPIRI, PI",
                    "municipio": "PIRIPIRI"
                },
                {
                    "id": 11654,
                    "nome": "JOSE SEABRA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11655,
                    "nome": "ITABUNA, BA",
                    "municipio": "ITABUNA"
                },
                {
                    "id": 11656,
                    "nome": "OURO FINO, MG",
                    "municipio": "OURO FINO"
                },
                {
                    "id": 11657,
                    "nome": "XANXERE, SC",
                    "municipio": "XANXERE"
                },
                {
                    "id": 11658,
                    "nome": "SAO MIGUEL DO OESTE, SC",
                    "municipio": "SAO MIGUEL D'OESTE"
                },
                {
                    "id": 11659,
                    "nome": "SANTO ANTONIO DA PATRULHA, RS",
                    "municipio": "SANTO ANTONIO DA PATRULHA"
                },
                {
                    "id": 11660,
                    "nome": "AIMORES, MG",
                    "municipio": "AIMORES"
                },
                {
                    "id": 11661,
                    "nome": "ARACUAI, MG",
                    "municipio": "ARACUAI"
                },
                {
                    "id": 11662,
                    "nome": "CONSELHEIRO PENA, MG",
                    "municipio": "CONSELHEIRO PENA"
                },
                {
                    "id": 11663,
                    "nome": "GUANHAES, MG",
                    "municipio": "GUANHAES"
                },
                {
                    "id": 11664,
                    "nome": "IBIA, MG",
                    "municipio": "IBIA"
                },
                {
                    "id": 11665,
                    "nome": "MONTE CARMELO, MG",
                    "municipio": "MONTE CARMELO"
                },
                {
                    "id": 11666,
                    "nome": "JEQUIE, BA",
                    "municipio": "JEQUIE"
                },
                {
                    "id": 11667,
                    "nome": "RAUL SOARES, MG",
                    "municipio": "RAUL SOARES"
                },
                {
                    "id": 11668,
                    "nome": "RIO LARGO, AL",
                    "municipio": "RIO LARGO"
                },
                {
                    "id": 11669,
                    "nome": "SANTANA DO IPANEMA, AL",
                    "municipio": "SANTANA DO IPANEMA"
                },
                {
                    "id": 11670,
                    "nome": "QUILOMBO DOS PALMARES, AL",
                    "municipio": "UNIAO DOS PALMARES"
                },
                {
                    "id": 11671,
                    "nome": "ITACOATIARA, AM",
                    "municipio": "ITACOATIARA"
                },
                {
                    "id": 11672,
                    "nome": "PARINTINS, AM",
                    "municipio": "PARINTINS"
                },
                {
                    "id": 11673,
                    "nome": "MONTANHA, ES",
                    "municipio": "MONTANHA"
                },
                {
                    "id": 11674,
                    "nome": "SAO MATEUS, ES",
                    "municipio": "SAO MATEUS"
                },
                {
                    "id": 11675,
                    "nome": "BAIXO GUANDU, ES",
                    "municipio": "BAIXO GUANDU"
                },
                {
                    "id": 11676,
                    "nome": "BARRA DE SAO FRANCISCO, ES",
                    "municipio": "BARRA DE SAO FRANCISCO"
                },
                {
                    "id": 11677,
                    "nome": "NAZARE, BA",
                    "municipio": "NAZARE"
                },
                {
                    "id": 11678,
                    "nome": "SAO GABRIEL DA PALHA, ES",
                    "municipio": "SAO GABRIEL DA PALHA"
                },
                {
                    "id": 11679,
                    "nome": "GUAIRA, PR",
                    "municipio": "GUAIRA"
                },
                {
                    "id": 11680,
                    "nome": "IPORA, PR",
                    "municipio": "IPORA"
                },
                {
                    "id": 11681,
                    "nome": "IVAIPORA, PR",
                    "municipio": "IVAIPORA"
                },
                {
                    "id": 11682,
                    "nome": "TELEMACO BORBA, PR",
                    "municipio": "TELEMACO BORBA"
                },
                {
                    "id": 11683,
                    "nome": "TOLEDO, PR",
                    "municipio": "TOLEDO"
                },
                {
                    "id": 11684,
                    "nome": "SAO RAIMUNDO NONATO, PI",
                    "municipio": "SAO RAIMUNDO NONATO"
                },
                {
                    "id": 11685,
                    "nome": "MANAIRA SHOPPING, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 11686,
                    "nome": "SANTO AMARO, BA",
                    "municipio": "SANTO AMARO"
                },
                {
                    "id": 11687,
                    "nome": "NOVA CAJURU, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 11688,
                    "nome": "POMBAL, PB",
                    "municipio": "POMBAL"
                },
                {
                    "id": 11689,
                    "nome": "ITABAIANA DO NORTE, PB",
                    "municipio": "ITABAIANA"
                },
                {
                    "id": 11690,
                    "nome": "JARDIM PERI, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11691,
                    "nome": "PRAIA DE TAMBAU, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 11692,
                    "nome": "BORBOREMA, PB",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 11693,
                    "nome": "BARUERI, SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 11694,
                    "nome": "TOBIAS BARRETO, SE",
                    "municipio": "TOBIAS BARRETO"
                },
                {
                    "id": 11695,
                    "nome": "SAO GONCALO DOS CAMPOS, BA",
                    "municipio": "SAO GONCALO DOS CAMPOS"
                },
                {
                    "id": 11696,
                    "nome": "PORTO FERREIRA, SP",
                    "municipio": "PORTO FERREIRA"
                },
                {
                    "id": 11697,
                    "nome": "PEDREIRA, SP",
                    "municipio": "PEDREIRA"
                },
                {
                    "id": 11698,
                    "nome": "ITANHAEM, SP",
                    "municipio": "ITANHAEM"
                },
                {
                    "id": 11699,
                    "nome": "ARACATI, CE",
                    "municipio": "ARACATI"
                },
                {
                    "id": 11700,
                    "nome": "BREJO SANTO, CE",
                    "municipio": "BREJO SANTO"
                },
                {
                    "id": 11701,
                    "nome": "CAMOCIM, CE",
                    "municipio": "CAMOCIM"
                },
                {
                    "id": 11702,
                    "nome": "CANINDE, CE",
                    "municipio": "CANINDE"
                },
                {
                    "id": 11703,
                    "nome": "CRATEUS, CE",
                    "municipio": "CRATEUS"
                },
                {
                    "id": 11704,
                    "nome": "ITAPIPOCA, CE",
                    "municipio": "ITAPIPOCA"
                },
                {
                    "id": 11705,
                    "nome": "JAGUARIBE, CE",
                    "municipio": "JAGUARIBE"
                },
                {
                    "id": 11706,
                    "nome": "EUNAPOLIS, BA",
                    "municipio": "EUNAPOLIS"
                },
                {
                    "id": 11707,
                    "nome": "LIMOEIRO DO NORTE, CE",
                    "municipio": "LIMOEIRO DO NORTE"
                },
                {
                    "id": 11708,
                    "nome": "MARANGUAPE, CE",
                    "municipio": "MARANGUAPE"
                },
                {
                    "id": 11709,
                    "nome": "QUIXADA, CE",
                    "municipio": "QUIXADA"
                },
                {
                    "id": 11710,
                    "nome": "SENADOR POMPEU, CE",
                    "municipio": "SENADOR POMPEU"
                },
                {
                    "id": 11711,
                    "nome": "RUSSAS, CE",
                    "municipio": "RUSSAS"
                },
                {
                    "id": 11712,
                    "nome": "ACU, RN",
                    "municipio": "ACU"
                },
                {
                    "id": 11713,
                    "nome": "Ag�ncia 7577",
                    "municipio": ""
                },
                {
                    "id": 11714,
                    "nome": "Sirinha�m-PE",
                    "municipio": ""
                },
                {
                    "id": 11715,
                    "nome": "CAICO, RN",
                    "municipio": "CAICO"
                },
                {
                    "id": 11716,
                    "nome": "Ag�ncia 7581",
                    "municipio": ""
                },
                {
                    "id": 11717,
                    "nome": "TIROL, RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 11718,
                    "nome": "SENHOR DO BONFIM, BA",
                    "municipio": "SENHOR DO BONFIM"
                },
                {
                    "id": 11719,
                    "nome": "JOAO CAMARA, RN",
                    "municipio": "JOAO CAMARA"
                },
                {
                    "id": 11720,
                    "nome": "MACAU, RN",
                    "municipio": "MACAU"
                },
                {
                    "id": 11721,
                    "nome": "NOVA CRUZ, RN",
                    "municipio": "NOVA CRUZ"
                },
                {
                    "id": 11722,
                    "nome": "PAU DOS FERROS, RN",
                    "municipio": "PAU DOS FERROS"
                },
                {
                    "id": 11723,
                    "nome": "BACABAL, MA",
                    "municipio": "BACABAL"
                },
                {
                    "id": 11724,
                    "nome": "BARRA DO CORDA, MA",
                    "municipio": "BARRA DO CORDA"
                },
                {
                    "id": 11725,
                    "nome": "CODO, MA",
                    "municipio": "CODO"
                },
                {
                    "id": 11726,
                    "nome": "PEDREIRAS, MA",
                    "municipio": "PEDREIRAS"
                },
                {
                    "id": 11727,
                    "nome": "SANTA INES, MA",
                    "municipio": "SANTA INES"
                },
                {
                    "id": 11728,
                    "nome": "RIO BONITO, RJ",
                    "municipio": "RIO BONITO"
                },
                {
                    "id": 11729,
                    "nome": "SERRINHA, BA",
                    "municipio": "SERRINHA"
                },
                {
                    "id": 11730,
                    "nome": "CARLOS CHAGAS, MG",
                    "municipio": "CARLOS CHAGAS"
                },
                {
                    "id": 11731,
                    "nome": "JANUARIA, MG",
                    "municipio": "JANUARIA"
                },
                {
                    "id": 11732,
                    "nome": "ARARIPINA, PE",
                    "municipio": "ARARIPINA"
                },
                {
                    "id": 11733,
                    "nome": "7720",
                    "municipio": ""
                },
                {
                    "id": 11734,
                    "nome": "7721",
                    "municipio": ""
                },
                {
                    "id": 11735,
                    "nome": "7726",
                    "municipio": ""
                },
                {
                    "id": 11736,
                    "nome": "BELO JARDIM, PE",
                    "municipio": "BELO JARDIM"
                },
                {
                    "id": 11737,
                    "nome": "7730",
                    "municipio": ""
                },
                {
                    "id": 11738,
                    "nome": "7731",
                    "municipio": ""
                },
                {
                    "id": 11739,
                    "nome": "GOIANA, PE",
                    "municipio": "GOIANA"
                },
                {
                    "id": 11740,
                    "nome": "Ag�ncia 7740",
                    "municipio": ""
                },
                {
                    "id": 11741,
                    "nome": "PESQUEIRA, PE",
                    "municipio": "PESQUEIRA"
                },
                {
                    "id": 11742,
                    "nome": "7750",
                    "municipio": ""
                },
                {
                    "id": 11743,
                    "nome": "7751",
                    "municipio": ""
                },
                {
                    "id": 11744,
                    "nome": "SALGUEIRO, PE",
                    "municipio": "SALGUEIRO"
                },
                {
                    "id": 11745,
                    "nome": "Ag�ncia 7760",
                    "municipio": ""
                },
                {
                    "id": 11746,
                    "nome": "7761",
                    "municipio": ""
                },
                {
                    "id": 11747,
                    "nome": "7762",
                    "municipio": ""
                },
                {
                    "id": 11748,
                    "nome": "Ag�ncia 7769",
                    "municipio": ""
                },
                {
                    "id": 11749,
                    "nome": "SERTANIA, PE",
                    "municipio": "SERTANIA"
                },
                {
                    "id": 11750,
                    "nome": "7772",
                    "municipio": ""
                },
                {
                    "id": 11751,
                    "nome": "GUANAMBI, BA",
                    "municipio": "GUANAMBI"
                },
                {
                    "id": 11752,
                    "nome": "NOSSA SENHORA DO AMPARO, BA",
                    "municipio": "VALENCA"
                },
                {
                    "id": 11753,
                    "nome": "IRECE, BA",
                    "municipio": "IRECE"
                },
                {
                    "id": 11754,
                    "nome": "RIBEIRA DO POMBAL, BA",
                    "municipio": "RIBEIRA DO POMBAL"
                },
                {
                    "id": 11755,
                    "nome": "SAO JOAQUIM DA BARRA, SP",
                    "municipio": "SAO JOAQUIM DA BARRA"
                },
                {
                    "id": 11756,
                    "nome": "BARREIRAS, BA",
                    "municipio": "BARREIRAS"
                },
                {
                    "id": 11757,
                    "nome": "BOM JESUS DA LAPA, BA",
                    "municipio": "BOM JESUS DA LAPA"
                },
                {
                    "id": 11758,
                    "nome": "TIANGUA, CE",
                    "municipio": "TIANGUA"
                },
                {
                    "id": 11759,
                    "nome": "NAVIRAI, MS",
                    "municipio": "NAVIRAI"
                },
                {
                    "id": 11760,
                    "nome": "NOVA ANDRADINA, MS",
                    "municipio": "NOVA ANDRADINA"
                },
                {
                    "id": 11761,
                    "nome": "VITORIA DA CONQUISTA, BA",
                    "municipio": "VITORIA DA CONQUISTA"
                },
                {
                    "id": 11762,
                    "nome": "VARZEA GRANDE, MT",
                    "municipio": "VARZEA GRANDE"
                },
                {
                    "id": 11763,
                    "nome": "FORMOSA, GO",
                    "municipio": "FORMOSA"
                },
                {
                    "id": 11764,
                    "nome": "GOIANESIA, GO",
                    "municipio": "GOIANESIA"
                },
                {
                    "id": 11765,
                    "nome": "7925",
                    "municipio": ""
                },
                {
                    "id": 11766,
                    "nome": "GURUPI, TO",
                    "municipio": "GURUPI"
                },
                {
                    "id": 11767,
                    "nome": "SAO MIGUEL DO ARAGUAIA, GO",
                    "municipio": "SAO MIGUEL DO ARAGUAIA"
                },
                {
                    "id": 11768,
                    "nome": "RIALMA, GO",
                    "municipio": "RIALMA"
                },
                {
                    "id": 11769,
                    "nome": "VIDEIRA, SC",
                    "municipio": "VIDEIRA"
                },
                {
                    "id": 11770,
                    "nome": "CARAGUATATUBA, SP",
                    "municipio": "CARAGUATATUBA"
                },
                {
                    "id": 11771,
                    "nome": "UBATUBA, SP",
                    "municipio": "UBATUBA"
                },
                {
                    "id": 11772,
                    "nome": "SANTA FE DO SUL, SP",
                    "municipio": "SANTA FE DO SUL"
                },
                {
                    "id": 11773,
                    "nome": "TAGUATINGA, DF",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 11774,
                    "nome": "JUAZEIRO, BA",
                    "municipio": "JUAZEIRO"
                },
                {
                    "id": 11775,
                    "nome": "IBIUNA, SP",
                    "municipio": "IBIUNA"
                },
                {
                    "id": 11776,
                    "nome": "NOVO HORIZONTE, SP",
                    "municipio": "NOVO HORIZONTE"
                },
                {
                    "id": 11777,
                    "nome": "QUATA, SP",
                    "municipio": "QUATA"
                },
                {
                    "id": 11778,
                    "nome": "CRUZEIRO DO SUL, AC",
                    "municipio": "CRUZEIRO DO SUL"
                },
                {
                    "id": 11779,
                    "nome": "LUZIANIA, GO",
                    "municipio": "LUZIANIA"
                },
                {
                    "id": 11780,
                    "nome": "CURRAIS NOVOS, RN",
                    "municipio": "CURRAIS NOVOS"
                },
                {
                    "id": 11781,
                    "nome": "SANTA CRUZ INHARE, RN",
                    "municipio": "SANTA CRUZ"
                },
                {
                    "id": 11782,
                    "nome": "CAMETA, PA",
                    "municipio": "CAMETA"
                },
                {
                    "id": 11783,
                    "nome": "TIMBO, SC",
                    "municipio": "TIMBO"
                },
                {
                    "id": 11784,
                    "nome": "TUPINAMBAS, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11785,
                    "nome": "BARAO DE JARAGUA, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 11786,
                    "nome": "ITABORAI, RJ",
                    "municipio": "ITABORAI"
                },
                {
                    "id": 11787,
                    "nome": "PETROLINA, PE",
                    "municipio": "PETROLINA"
                },
                {
                    "id": 11788,
                    "nome": "8120",
                    "municipio": ""
                },
                {
                    "id": 11789,
                    "nome": "8121",
                    "municipio": ""
                },
                {
                    "id": 11790,
                    "nome": "8122",
                    "municipio": ""
                },
                {
                    "id": 11791,
                    "nome": "Ag�ncia 8125",
                    "municipio": ""
                },
                {
                    "id": 11792,
                    "nome": "MINAS SHOPPING, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11793,
                    "nome": "210 SUL, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11794,
                    "nome": "CLAUDIO, MG",
                    "municipio": "CLAUDIO"
                },
                {
                    "id": 11795,
                    "nome": "BARREIRO, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11796,
                    "nome": "BRAZ DE AGUIAR, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 11797,
                    "nome": "UFMG, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11798,
                    "nome": "JUCUTUQUARA, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 11799,
                    "nome": "BAIRRO RESTINGA, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 11800,
                    "nome": "BARRO PRETO, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11801,
                    "nome": "NOVA ARUJA, SP",
                    "municipio": "ARUJA"
                },
                {
                    "id": 11802,
                    "nome": "836",
                    "municipio": ""
                },
                {
                    "id": 11803,
                    "nome": "MARECHAL MASCARENHAS, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11804,
                    "nome": "SECULO, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11805,
                    "nome": "FAROL, AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 11806,
                    "nome": "8400",
                    "municipio": ""
                },
                {
                    "id": 11807,
                    "nome": "CACHOEIRINHA, RS",
                    "municipio": "CACHOEIRINHA"
                },
                {
                    "id": 11808,
                    "nome": "GUAPORE, RS",
                    "municipio": "GUAPORE"
                },
                {
                    "id": 11809,
                    "nome": "STJ, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11810,
                    "nome": "SAO MIGUEL DOS CAMPOS, AL",
                    "municipio": "SAO MIGUEL DOS CAMPOS"
                },
                {
                    "id": 11811,
                    "nome": "INCONFIDENCIA, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11812,
                    "nome": "MARATAIZES, ES",
                    "municipio": "MARATAIZES"
                },
                {
                    "id": 11813,
                    "nome": "CAMPOS NOVOS, SC",
                    "municipio": "CAMPOS NOVOS"
                },
                {
                    "id": 11814,
                    "nome": "INDAIAL, SC",
                    "municipio": "INDAIAL"
                },
                {
                    "id": 11815,
                    "nome": "URUSSANGA, SC",
                    "municipio": "URUSSANGA"
                },
                {
                    "id": 11816,
                    "nome": "SINOP, MT",
                    "municipio": "SINOP"
                },
                {
                    "id": 11817,
                    "nome": "JOQUEI CLUBE, PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 11818,
                    "nome": "UFMS, MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 11819,
                    "nome": "ITABERAI, GO",
                    "municipio": "ITABERAI"
                },
                {
                    "id": 11820,
                    "nome": "FLORESTA, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11821,
                    "nome": "PAULINIA, SP",
                    "municipio": "PAULINIA"
                },
                {
                    "id": 11822,
                    "nome": "LAGOA DA CONFUSAO, TO",
                    "municipio": "LAGOA DA CONFUSAO"
                },
                {
                    "id": 11823,
                    "nome": "MINISTERIO DO PLANEJAMENTO, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11824,
                    "nome": "NOVA ESPERANCA, PR",
                    "municipio": "NOVA ESPERANCA"
                },
                {
                    "id": 11825,
                    "nome": "PROPRIA, SE",
                    "municipio": "PROPRIA"
                },
                {
                    "id": 11826,
                    "nome": "SHOPPING CENTER RECIFE, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 11827,
                    "nome": "Ag�ncia 8670",
                    "municipio": ""
                },
                {
                    "id": 11828,
                    "nome": "HORTO FLORESTAL, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11829,
                    "nome": "CACERES, MT",
                    "municipio": "CACERES"
                },
                {
                    "id": 11830,
                    "nome": "MINEIROS, GO",
                    "municipio": "MINEIROS"
                },
                {
                    "id": 11831,
                    "nome": "TERRA BELA, PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 11832,
                    "nome": "MINISTERIO DA DEFESA, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11833,
                    "nome": "SAO LOURENCO DA MATA, PE",
                    "municipio": "SAO LOURENCO DA MATA"
                },
                {
                    "id": 11834,
                    "nome": "Ag�ncia 8760",
                    "municipio": ""
                },
                {
                    "id": 11835,
                    "nome": "8761",
                    "municipio": ""
                },
                {
                    "id": 11836,
                    "nome": "Ag�ncia 8762",
                    "municipio": ""
                },
                {
                    "id": 11837,
                    "nome": "TIMBAUBA, PE",
                    "municipio": "TIMBAUBA"
                },
                {
                    "id": 11838,
                    "nome": "8770",
                    "municipio": ""
                },
                {
                    "id": 11839,
                    "nome": "8771",
                    "municipio": ""
                },
                {
                    "id": 11840,
                    "nome": "8777",
                    "municipio": ""
                },
                {
                    "id": 11841,
                    "nome": "MAFRA, SC",
                    "municipio": "MAFRA"
                },
                {
                    "id": 11842,
                    "nome": "PRAIA DE FORA, SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 11843,
                    "nome": "VILA RUBIM, ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 11844,
                    "nome": "GUARAPARI, ES",
                    "municipio": "GUARAPARI"
                },
                {
                    "id": 11845,
                    "nome": "SERRA, ES",
                    "municipio": "SERRA"
                },
                {
                    "id": 11846,
                    "nome": "BATISTA CAMPOS, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 11847,
                    "nome": "VER-O-PESO, PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 11848,
                    "nome": "PONTA PORA, MS",
                    "municipio": "PONTA PORA"
                },
                {
                    "id": 11849,
                    "nome": "ANGRA DOS REIS, RJ",
                    "municipio": "ANGRA DOS REIS"
                },
                {
                    "id": 11850,
                    "nome": "ARARUAMA, RJ",
                    "municipio": "ARARUAMA"
                },
                {
                    "id": 11851,
                    "nome": "ALCANTARA, RJ",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 11852,
                    "nome": "PADRE EUSTAQUIO, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11853,
                    "nome": "MONTE ALTO, SP",
                    "municipio": "MONTE ALTO"
                },
                {
                    "id": 11854,
                    "nome": "FORUM TRABALHISTA CURITIBA, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 11855,
                    "nome": "BETIM, MG",
                    "municipio": "BETIM"
                },
                {
                    "id": 11856,
                    "nome": "CONTAGEM, MG",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 11857,
                    "nome": "CORONEL FABRICIANO, MG",
                    "municipio": "CORONEL FABRICIANO"
                },
                {
                    "id": 11858,
                    "nome": "MANHUMIRIM, MG",
                    "municipio": "MANHUMIRIM"
                },
                {
                    "id": 11859,
                    "nome": "MANTENA, MG",
                    "municipio": "MANTENA"
                },
                {
                    "id": 11860,
                    "nome": "INDAIATUBA, SP",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 11861,
                    "nome": "CASTANHAL, PA",
                    "municipio": "CASTANHAL"
                },
                {
                    "id": 11862,
                    "nome": "CIDADE DE LEME, SP",
                    "municipio": "LEME"
                },
                {
                    "id": 11863,
                    "nome": "ALMIRANTE SANDERSON DE QUEIROZ, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11864,
                    "nome": "IMPERADOR, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11865,
                    "nome": "IGARAPAVA, SP",
                    "municipio": "IGARAPAVA"
                },
                {
                    "id": 11866,
                    "nome": "PARAGUACU PAULISTA, SP",
                    "municipio": "PARAGUACU PAULISTA"
                },
                {
                    "id": 11867,
                    "nome": "SAO MANUEL, SP",
                    "municipio": "SAO MANUEL"
                },
                {
                    "id": 11868,
                    "nome": "REGISTRO, SP",
                    "municipio": "REGISTRO"
                },
                {
                    "id": 11869,
                    "nome": "EPITACIO PESSOA, PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 11870,
                    "nome": "CASA BRANCA, SP",
                    "municipio": "CASA BRANCA"
                },
                {
                    "id": 11871,
                    "nome": "COTIA, SP",
                    "municipio": "COTIA"
                },
                {
                    "id": 11872,
                    "nome": "FRANCO DA ROCHA, SP",
                    "municipio": "FRANCO DA ROCHA"
                },
                {
                    "id": 11873,
                    "nome": "POA, SP",
                    "municipio": "POA"
                },
                {
                    "id": 11874,
                    "nome": "ITAGUAI, RJ",
                    "municipio": "ITAGUAI"
                },
                {
                    "id": 11875,
                    "nome": "SAVASSI, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11876,
                    "nome": "ASSAI, PR",
                    "municipio": "ASSAI"
                },
                {
                    "id": 11877,
                    "nome": "ALTO PETROPOLIS, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 11878,
                    "nome": "ESPUMOSO, RS",
                    "municipio": "ESPUMOSO"
                },
                {
                    "id": 11879,
                    "nome": "SAPUCAIA DO SUL, RS",
                    "municipio": "SAPUCAIA DO SUL"
                },
                {
                    "id": 11880,
                    "nome": "SERRA TALHADA, PE",
                    "municipio": "SERRA TALHADA"
                },
                {
                    "id": 11881,
                    "nome": "Ag�ncia 9140",
                    "municipio": ""
                },
                {
                    "id": 11882,
                    "nome": "9141",
                    "municipio": ""
                },
                {
                    "id": 11883,
                    "nome": "ARCOVERDE, PE",
                    "municipio": "ARCOVERDE"
                },
                {
                    "id": 11884,
                    "nome": "9150",
                    "municipio": ""
                },
                {
                    "id": 11885,
                    "nome": "9151",
                    "municipio": ""
                },
                {
                    "id": 11886,
                    "nome": "PALMARES, PE",
                    "municipio": "PALMARES"
                },
                {
                    "id": 11887,
                    "nome": "9160",
                    "municipio": ""
                },
                {
                    "id": 11888,
                    "nome": "9161",
                    "municipio": ""
                },
                {
                    "id": 11889,
                    "nome": "9162",
                    "municipio": ""
                },
                {
                    "id": 11890,
                    "nome": "9169",
                    "municipio": ""
                },
                {
                    "id": 11891,
                    "nome": "MARCOS FREIRE, PE",
                    "municipio": "OLINDA"
                },
                {
                    "id": 11892,
                    "nome": "9170",
                    "municipio": ""
                },
                {
                    "id": 11893,
                    "nome": "9171",
                    "municipio": ""
                },
                {
                    "id": 11894,
                    "nome": "IBAITI, PR",
                    "municipio": "IBAITI"
                },
                {
                    "id": 11895,
                    "nome": "ALDEOTA, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 11896,
                    "nome": "RENASCENCA, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11897,
                    "nome": "JOSE DE ALENCAR, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 11898,
                    "nome": "BALNEARIO CAMBORIU, SC",
                    "municipio": "BALNEARIO CAMBORIU"
                },
                {
                    "id": 11899,
                    "nome": "SAPE, PB",
                    "municipio": "SAPE"
                },
                {
                    "id": 11900,
                    "nome": "13 DE MAIO, PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 11901,
                    "nome": "9230",
                    "municipio": ""
                },
                {
                    "id": 11902,
                    "nome": "TUCURUI, PA",
                    "municipio": "TUCURUI"
                },
                {
                    "id": 11903,
                    "nome": "PARAIBA DO SUL, RJ",
                    "municipio": "PARAIBA DO SUL"
                },
                {
                    "id": 11904,
                    "nome": "BEZERRA DE MENEZES, CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 11905,
                    "nome": "ITUVERAVA, SP",
                    "municipio": "ITUVERAVA"
                },
                {
                    "id": 11906,
                    "nome": "RIBEIRAO PIRES, SP",
                    "municipio": "RIBEIRAO PIRES"
                },
                {
                    "id": 11907,
                    "nome": "SAO SEPE, RS",
                    "municipio": "SAO SEPE"
                },
                {
                    "id": 11908,
                    "nome": "SANTA EFIGENIA, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11909,
                    "nome": "FLORES DA CUNHA, RS",
                    "municipio": "FLORES DA CUNHA"
                },
                {
                    "id": 11910,
                    "nome": "DOIS VIZINHOS, PR",
                    "municipio": "DOIS VIZINHOS"
                },
                {
                    "id": 11911,
                    "nome": "LARANJEIRAS DO SUL, PR",
                    "municipio": "LARANJEIRAS DO SUL"
                },
                {
                    "id": 11912,
                    "nome": "FRUTAL, MG",
                    "municipio": "FRUTAL"
                },
                {
                    "id": 11913,
                    "nome": "SANTO AGOSTINHO, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11914,
                    "nome": "ITURAMA, MG",
                    "municipio": "ITURAMA"
                },
                {
                    "id": 11915,
                    "nome": "JANAUBA, MG",
                    "municipio": "JANAUBA"
                },
                {
                    "id": 11916,
                    "nome": "MONTE SANTO DE MINAS, MG",
                    "municipio": "MONTE SANTO DE MINAS"
                },
                {
                    "id": 11917,
                    "nome": "NANUQUE, MG",
                    "municipio": "NANUQUE"
                },
                {
                    "id": 11918,
                    "nome": "GUAJAJARAS, MG",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 11919,
                    "nome": "SACRAMENTO, MG",
                    "municipio": "SACRAMENTO"
                },
                {
                    "id": 11920,
                    "nome": "SANTA RITA DO SAPUCAI, MG",
                    "municipio": "SANTA RITA DO SAPUCAI"
                },
                {
                    "id": 11921,
                    "nome": "UNAI, MG",
                    "municipio": "UNAI"
                },
                {
                    "id": 11922,
                    "nome": "GRAVATA, PE",
                    "municipio": "GRAVATA"
                },
                {
                    "id": 11923,
                    "nome": "9430",
                    "municipio": ""
                },
                {
                    "id": 11924,
                    "nome": "PAULISTA, PE",
                    "municipio": "PAULISTA"
                },
                {
                    "id": 11925,
                    "nome": "Ag�ncia 9440",
                    "municipio": ""
                },
                {
                    "id": 11926,
                    "nome": "VALENCA, RJ",
                    "municipio": "VALENCA"
                },
                {
                    "id": 11927,
                    "nome": "PORANGATU, GO",
                    "municipio": "PORANGATU"
                },
                {
                    "id": 11928,
                    "nome": "BRUMADO, BA",
                    "municipio": "BRUMADO"
                },
                {
                    "id": 11929,
                    "nome": "CRUZ DAS ALMAS, BA",
                    "municipio": "CRUZ DAS ALMAS"
                },
                {
                    "id": 11930,
                    "nome": "ITABERABA, BA",
                    "municipio": "ITABERABA"
                },
                {
                    "id": 11931,
                    "nome": "ALFENAS, MG",
                    "municipio": "ALFENAS"
                },
                {
                    "id": 11932,
                    "nome": "SANTO ANTONIO DE JESUS, BA",
                    "municipio": "SANTO ANTONIO DE JESUS"
                },
                {
                    "id": 11933,
                    "nome": "CANDEIAS, BA",
                    "municipio": "CANDEIAS"
                },
                {
                    "id": 11934,
                    "nome": "URUACU, GO",
                    "municipio": "URUACU"
                },
                {
                    "id": 11935,
                    "nome": "GOIATUBA, GO",
                    "municipio": "GOIATUBA"
                },
                {
                    "id": 11936,
                    "nome": "QUIRINOPOLIS, GO",
                    "municipio": "QUIRINOPOLIS"
                },
                {
                    "id": 11937,
                    "nome": "PALOTINA, PR",
                    "municipio": "PALOTINA"
                },
                {
                    "id": 11938,
                    "nome": "MEDIANEIRA, PR",
                    "municipio": "MEDIANEIRA"
                },
                {
                    "id": 11939,
                    "nome": "ASSIS CHATEAUBRIAND, PR",
                    "municipio": "ASSIS CHATEAUBRIAND"
                },
                {
                    "id": 11940,
                    "nome": "TRISTEZA, RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 11941,
                    "nome": "VIAMAO, RS",
                    "municipio": "VIAMAO"
                },
                {
                    "id": 11942,
                    "nome": "ARAGUARI, MG",
                    "municipio": "ARAGUARI"
                },
                {
                    "id": 11943,
                    "nome": "SANTA BARBARA D OESTE, SP",
                    "municipio": "SANTA BARBARA D'OESTE"
                },
                {
                    "id": 11944,
                    "nome": "SUMARE, SP",
                    "municipio": "SUMARE"
                },
                {
                    "id": 11945,
                    "nome": "LENCOIS PAULISTA, SP",
                    "municipio": "LENCOIS PAULISTA"
                },
                {
                    "id": 11946,
                    "nome": "PRAIA GRANDE, SP",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 11947,
                    "nome": "GOIOERE, PR",
                    "municipio": "GOIOERE"
                },
                {
                    "id": 11948,
                    "nome": "LOANDA, PR",
                    "municipio": "LOANDA"
                },
                {
                    "id": 11949,
                    "nome": "MARECHAL CANDIDO RONDON, PR",
                    "municipio": "MARECHAL CANDIDO RONDON"
                },
                {
                    "id": 11950,
                    "nome": "MANDAGUARI, PR",
                    "municipio": "MANDAGUARI"
                },
                {
                    "id": 11951,
                    "nome": "ARAXA, MG",
                    "municipio": "ARAXA"
                },
                {
                    "id": 11952,
                    "nome": "CANTAGALO, RJ",
                    "municipio": "CANTAGALO"
                },
                {
                    "id": 11953,
                    "nome": "SOBRADINHO, DF",
                    "municipio": "BRASILIA (SOBRADINHO)"
                },
                {
                    "id": 11954,
                    "nome": "PLANALTINA, DF",
                    "municipio": "BRASILIA (PLANALTINA)"
                },
                {
                    "id": 11955,
                    "nome": "DOM BOSCO, DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 11956,
                    "nome": "ITAQUAQUECETUBA, SP",
                    "municipio": "ITAQUAQUECETUBA"
                },
                {
                    "id": 11957,
                    "nome": "OSVALDO CRUZ, SP",
                    "municipio": "OSVALDO CRUZ"
                },
                {
                    "id": 11958,
                    "nome": "PIEDADE, SP",
                    "municipio": "PIEDADE"
                },
                {
                    "id": 11959,
                    "nome": "GUARUJA, SP",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 11960,
                    "nome": "BAEPENDI, MG",
                    "municipio": "BAEPENDI"
                },
                {
                    "id": 11961,
                    "nome": "IBITINGA, SP",
                    "municipio": "IBITINGA"
                },
                {
                    "id": 11962,
                    "nome": "ITAPECERICA DA SERRA, SP",
                    "municipio": "ITAPECERICA DA SERRA"
                },
                {
                    "id": 11963,
                    "nome": "GRAMADO, RS",
                    "municipio": "GRAMADO"
                },
                {
                    "id": 11964,
                    "nome": "PAULO AFONSO, BA",
                    "municipio": "PAULO AFONSO"
                },
                {
                    "id": 11965,
                    "nome": "9851",
                    "municipio": ""
                },
                {
                    "id": 11966,
                    "nome": "PARANAIBA, MS",
                    "municipio": "PARANAIBA"
                },
                {
                    "id": 11967,
                    "nome": "MONCOES, SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 11968,
                    "nome": "BARBACENA, MG",
                    "municipio": "BARBACENA"
                },
                {
                    "id": 11969,
                    "nome": "LARGO DO BICAO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11970,
                    "nome": "BARRA, BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 11971,
                    "nome": "MIGUEL PEREIRA, RJ",
                    "municipio": "MIGUEL PEREIRA"
                },
                {
                    "id": 11972,
                    "nome": "MIGUELOPOLIS, SP",
                    "municipio": "MIGUELOPOLIS"
                },
                {
                    "id": 11973,
                    "nome": "REDENCAO, PA",
                    "municipio": "REDENCAO"
                },
                {
                    "id": 11974,
                    "nome": "RIACHUELO, RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 11975,
                    "nome": "REPUBLICA DO LIBANO, GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 11976,
                    "nome": "JUVEVE, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 11977,
                    "nome": "PINHEIRINHO, PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 11978,
                    "nome": "JD. NOVA EUROPA, SP",
                    "municipio": "CAMPINAS"
                }
            ]
        },
        {
            "id": 151,
            "banco": "309",
            "nome": "CAMBIONET CORRETORA DE CÂMBIO LTDA.",
            "agencias": [
                {
                    "id": 15425,
                    "nome": "MATRIZ",
                    "municipio": "PORTO ALEGRE"
                }
            ]
        },
        {
            "id": 269,
            "banco": "465",
            "nome": "CAPITAL CONSIG SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18250,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 139,
            "banco": "288",
            "nome": "CAROL DTVM LTDA.",
            "agencias": [
                {
                    "id": 15412,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 162,
            "banco": "324",
            "nome": "CARTOS SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 15469,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 73,
            "banco": "130",
            "nome": "CARUANA SCFI",
            "agencias": [
                {
                    "id": 11999,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 90,
            "banco": "159",
            "nome": "CASA CREDITO S.A. SCM",
            "agencias": [
                {
                    "id": 12019,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 10,
            "banco": "16",
            "nome": "CCM DESP TRÂNS SC E RS",
            "agencias": [
                {
                    "id": 4597,
                    "nome": "AGENCIA 1 DO BANCO CCM DESP TR�NS SC E RS",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 263,
            "banco": "459",
            "nome": "CCM SERV. PÚBLICOS SP",
            "agencias": [
                {
                    "id": 18245,
                    "nome": "AGENCIA 1 DO BANCO CCM SERV. P�BLICOS SP",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 160,
            "banco": "322",
            "nome": "CCR DE ABELARDO LUZ",
            "agencias": [
                {
                    "id": 15467,
                    "nome": "AGENCIA 1 DO BANCO CCR DE ABELARDO LUZ",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 210,
            "banco": "391",
            "nome": "CCR DE IBIAM",
            "agencias": [
                {
                    "id": 18076,
                    "nome": "AGENCIA 1 DO BANCO CCR DE IBIAM",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 130,
            "banco": "273",
            "nome": "CCR DE SÃO MIGUEL DO OESTE",
            "agencias": [
                {
                    "id": 15403,
                    "nome": "AGENCIA 1 DO BANCO CCR DE S�O MIGUEL DO OESTE",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 273,
            "banco": "470",
            "nome": "CDC SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18254,
                    "nome": "MATRIZ",
                    "municipio": "BELO HORIZONTE"
                }
            ]
        },
        {
            "id": 199,
            "banco": "379",
            "nome": "CECM COOPERFORTE",
            "agencias": [
                {
                    "id": 18064,
                    "nome": "AGENCIA 1 DO BANCO CECM COOPERFORTE",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 205,
            "banco": "385",
            "nome": "CECM DOS TRAB.PORT. DA G.VITOR",
            "agencias": [
                {
                    "id": 18070,
                    "nome": "AGENCIA 1 DO BANCO CECM DOS TRAB.PORT. DA G.VITOR",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 165,
            "banco": "328",
            "nome": "CECM FABRIC CALÇADOS SAPIRANGA",
            "agencias": [
                {
                    "id": 15472,
                    "nome": "AGENCIA 1 DO BANCO CECM FABRIC CAL�ADOS SAPIRANGA",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 274,
            "banco": "471",
            "nome": "CECM SERV PUBL PINHÃO",
            "agencias": [
                {
                    "id": 18255,
                    "nome": "AGENCIA 1 DO BANCO CECM SERV PUBL PINH�O",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 290,
            "banco": "509",
            "nome": "CELCOIN INSTITUICAO DE PAGAMENTO S.A.",
            "agencias": [
                {
                    "id": 18271,
                    "nome": "AGENCIA 1 DO BANCO CELCOIN IP S.A.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 60,
            "banco": "114",
            "nome": "CENTRAL COOPERATIVA DE CRÉDITO NO ESTADO DO ESPÍRITO SANTO",
            "agencias": [
                {
                    "id": 11985,
                    "nome": "AGENCIA 1 DO BANCO CENTRAL COOPERATIVA DE CR�DITO ",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 185,
            "banco": "362",
            "nome": "CIELO S.A. - INSTITUIÇÃO DE PAGAMENTO",
            "agencias": [
                {
                    "id": 18049,
                    "nome": "AGENCIA 1 DO BANCO CIELO IP S.A.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 277,
            "banco": "477",
            "nome": "CITIBANK N.A.",
            "agencias": [
                {
                    "id": 18258,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 94,
            "banco": "180",
            "nome": "CM CAPITAL MARKETS CCTVM LTDA",
            "agencias": [
                {
                    "id": 12024,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 220,
            "banco": "402",
            "nome": "COBUCCIO S.A. SCFI",
            "agencias": [
                {
                    "id": 18087,
                    "nome": "MATRIZ",
                    "municipio": "MONTE BELO"
                }
            ]
        },
        {
            "id": 70,
            "banco": "127",
            "nome": "CODEPE CORRETORA DE VALORES E CÂMBIO S.A.",
            "agencias": [
                {
                    "id": 11996,
                    "nome": "MATRIZ",
                    "municipio": "RECIFE"
                }
            ]
        },
        {
            "id": 236,
            "banco": "423",
            "nome": "COLUNA S.A. DTVM",
            "agencias": [
                {
                    "id": 18221,
                    "nome": "COLUNA S/A DTV  FILIAL S�O CONRADO LOCALIZADA NA E",
                    "municipio": "RIO DE JANEIRO"
                }
            ]
        },
        {
            "id": 78,
            "banco": "136",
            "nome": "CONF NAC COOP CENTRAIS UNICRED",
            "agencias": [
                {
                    "id": 12004,
                    "nome": "AGENCIA 1 DO BANCO CONF NAC COOP CENTRAIS UNICRED",
                    "municipio": ""
                },
                {
                    "id": 12005,
                    "nome": "CARUARU-PE",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 23,
            "banco": "60",
            "nome": "CONFIDENCE CORRETORA DE CÂMBIO S.A.",
            "agencias": [
                {
                    "id": 8308,
                    "nome": "CAMPINAS/SP",
                    "municipio": "CAMPINAS"
                }
            ]
        },
        {
            "id": 218,
            "banco": "400",
            "nome": "COOP CREDITAG",
            "agencias": [
                {
                    "id": 18085,
                    "nome": "AGENCIA 1 DO BANCO COOP CREDITAG",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 134,
            "banco": "279",
            "nome": "COOP DE PRIMAVERA DO LESTE",
            "agencias": [
                {
                    "id": 15407,
                    "nome": "AGENCIA 1 DO BANCO COOP DE PRIMAVERA DO LESTE",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 42,
            "banco": "85",
            "nome": "COOPERATIVA CENTRAL DE CRÉDITO - AILOS",
            "agencias": [
                {
                    "id": 8428,
                    "nome": "AGENCIA 1 DO BANCO COOPCENTRAL AILOS",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 136,
            "banco": "281",
            "nome": "COOPERATIVA DE CRÉDITO RURAL COOPAVEL",
            "agencias": [
                {
                    "id": 15409,
                    "nome": "AGENCIA 1 DO BANCO CCR COOPAVEL",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 242,
            "banco": "430",
            "nome": "COOPERATIVA DE CREDITO RURAL SEARA - CREDISEARA",
            "agencias": [
                {
                    "id": 18227,
                    "nome": "AGENCIA 1 DO BANCO CCR SEARA",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 221,
            "banco": "403",
            "nome": "CORA SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18088,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 239,
            "banco": "427",
            "nome": "CRED-UFES",
            "agencias": [
                {
                    "id": 18224,
                    "nome": "AGENCIA 1 DO BANCO CRED-UFES",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 50,
            "banco": "98",
            "nome": "CREDIALIANÇA COOPERATIVA DE CRÉDITO RURAL",
            "agencias": [
                {
                    "id": 8437,
                    "nome": "AGENCIA 1 DO BANCO CREDIALIAN�A CCR",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 241,
            "banco": "429",
            "nome": "CREDIARE CFI S.A.",
            "agencias": [
                {
                    "id": 18226,
                    "nome": "MATRIZ",
                    "municipio": "FARROUPILHA"
                }
            ]
        },
        {
            "id": 247,
            "banco": "440",
            "nome": "CREDIBRF - COOPERATIVA DE CRÉDITO",
            "agencias": [
                {
                    "id": 18232,
                    "nome": "AGENCIA 1 DO BANCO CREDIBRF COOP",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 5,
            "banco": "10",
            "nome": "CREDICOAMO CREDITO RURAL COOPERATIVA",
            "agencias": [
                {
                    "id": 4592,
                    "nome": "AGENCIA 1 DO BANCO CREDICOAMO",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 257,
            "banco": "452",
            "nome": "CREDIFIT SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18240,
                    "nome": "MATRIZ",
                    "municipio": "SALVADOR"
                }
            ]
        },
        {
            "id": 249,
            "banco": "443",
            "nome": "CREDIHOME SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18234,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 44,
            "banco": "89",
            "nome": "CREDISAN COOPERATIVA DE CRÉDITO",
            "agencias": [
                {
                    "id": 8430,
                    "nome": "AGENCIA 1 DO BANCO CREDISAN CC",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 49,
            "banco": "97",
            "nome": "CREDISIS CENTRAL DE COOPERATIVAS DE CRÉDITO LTDA.",
            "agencias": [
                {
                    "id": 8436,
                    "nome": "AGENCIA 1 DO BANCO CREDISIS CENTRAL DE COOPERATIVA",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 175,
            "banco": "342",
            "nome": "CREDITAS SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18039,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 240,
            "banco": "428",
            "nome": "CREDSYSTEM SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18225,
                    "nome": "AGENCIA 1 DO BANCO CREDSYSTEM SCD S.A.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 159,
            "banco": "321",
            "nome": "CREFAZ SCMEPP LTDA",
            "agencias": [
                {
                    "id": 15466,
                    "nome": "MATRIZ",
                    "municipio": "MARINGA"
                }
            ]
        },
        {
            "id": 179,
            "banco": "350",
            "nome": "CREHNOR LARANJEIRAS",
            "agencias": [
                {
                    "id": 18043,
                    "nome": "AGENCIA 1 DO BANCO CREHNOR LARANJEIRAS",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 76,
            "banco": "133",
            "nome": "CRESOL CONFEDERAÇÃO",
            "agencias": [
                {
                    "id": 12002,
                    "nome": "AGENCIA 1 DO BANCO CRESOL CONFEDERA��O",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 244,
            "banco": "435",
            "nome": "DELCRED SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18229,
                    "nome": "MATRIZ",
                    "municipio": "ARACAJU"
                }
            ]
        },
        {
            "id": 283,
            "banco": "487",
            "nome": "DEUTSCHE BANK S.A. - BANCO ALEMAO",
            "agencias": [
                {
                    "id": 18264,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 254,
            "banco": "449",
            "nome": "DM SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18238,
                    "nome": "MATRIZ",
                    "municipio": "SAO JOSE DOS CAMPOS"
                }
            ]
        },
        {
            "id": 148,
            "banco": "301",
            "nome": "DOCK INSTITUIÇÃO DE PAGAMENTO S.A.",
            "agencias": [
                {
                    "id": 15422,
                    "nome": "AGENCIA 1 DO BANCO DOCK IP S.A.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 153,
            "banco": "311",
            "nome": "DOURADA CORRETORA DE CÂMBIO LTDA.",
            "agencias": [
                {
                    "id": 15427,
                    "nome": "AGENCIA FILIAL.",
                    "municipio": "CURITIBA"
                }
            ]
        },
        {
            "id": 308,
            "banco": "532",
            "nome": "EAGLE SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": []
        },
        {
            "id": 203,
            "banco": "383",
            "nome": "EBANX INSTITUICAO DE PAGAMENTOS LTDA.",
            "agencias": [
                {
                    "id": 18068,
                    "nome": "AGENCIA 1 DO BANCO EBANX IP LTDA.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 187,
            "banco": "364",
            "nome": "EFÍ S.A. - INSTITUIÇÃO DE PAGAMENTO",
            "agencias": [
                {
                    "id": 18051,
                    "nome": "AGENCIA 1 DO BANCO EF� S.A. - IP",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 140,
            "banco": "289",
            "nome": "EFX CORRETORA DE CÂMBIO LTDA.",
            "agencias": [
                {
                    "id": 15413,
                    "nome": "S�O PAULO",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 309,
            "banco": "534",
            "nome": "EWALLY INSTITUIÇÃO DE PAGAMENTO S.A.",
            "agencias": [
                {
                    "id": 18282,
                    "nome": "AGENCIA 1 DO BANCO EWALLY IP S.A.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 213,
            "banco": "395",
            "nome": "F D GOLD DTVM LTDA",
            "agencias": [
                {
                    "id": 18080,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 88,
            "banco": "149",
            "nome": "FACTA S.A. CFI",
            "agencias": [
                {
                    "id": 12017,
                    "nome": "MATRIZ",
                    "municipio": "PORTO ALEGRE"
                }
            ]
        },
        {
            "id": 103,
            "banco": "196",
            "nome": "FAIR CORRETORA DE CAMBIO S.A.",
            "agencias": [
                {
                    "id": 12042,
                    "nome": "PORTO ALEGRE/RS",
                    "municipio": "PORTO ALEGRE"
                }
            ]
        },
        {
            "id": 259,
            "banco": "455",
            "nome": "FÊNIX DTVM LTDA.",
            "agencias": []
        },
        {
            "id": 176,
            "banco": "343",
            "nome": "FFA SCMEPP LTDA.",
            "agencias": [
                {
                    "id": 18040,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 291,
            "banco": "510",
            "nome": "FFCRED SOCIEDADE DE CRÉDITO DIRETO S.A..",
            "agencias": []
        },
        {
            "id": 202,
            "banco": "382",
            "nome": "FIDUCIA SCMEPP LTDA",
            "agencias": [
                {
                    "id": 18067,
                    "nome": "MATRIZ",
                    "municipio": "SOROCABA"
                }
            ]
        },
        {
            "id": 293,
            "banco": "512",
            "nome": "FINVEST DTVM",
            "agencias": [
                {
                    "id": 18273,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 255,
            "banco": "450",
            "nome": "FITBANK INSTITUIÇÃO DE PAGAMENTOS ELETRÔNICOS S.A.",
            "agencias": [
                {
                    "id": 18239,
                    "nome": "AGENCIA 1 DO BANCO FITBANK IP",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 168,
            "banco": "331",
            "nome": "FRAM CAPITAL DTVM S.A.",
            "agencias": [
                {
                    "id": 15475,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 138,
            "banco": "285",
            "nome": "FRENTE CORRETORA DE CÂMBIO S.A.",
            "agencias": [
                {
                    "id": 15411,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 314,
            "banco": "541",
            "nome": "FUNDO GARANTIDOR DE CREDITOS - FGC",
            "agencias": [
                {
                    "id": 18287,
                    "nome": "AGENCIA 1 DO BANCO FDO GARANTIDOR CR�DITOS        ",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 278,
            "banco": "478",
            "nome": "GAZINCRED S.A. SCFI",
            "agencias": [
                {
                    "id": 18259,
                    "nome": "MATRIZ",
                    "municipio": "DOURADINA"
                }
            ]
        },
        {
            "id": 133,
            "banco": "278",
            "nome": "GENIAL INVESTIMENTOS CVM S.A.",
            "agencias": [
                {
                    "id": 15406,
                    "nome": "MATRIZ",
                    "municipio": "RIO DE JANEIRO"
                }
            ]
        },
        {
            "id": 79,
            "banco": "138",
            "nome": "GET MONEY CORRETORA DE CÂMBIO S.A.",
            "agencias": [
                {
                    "id": 12006,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 204,
            "banco": "384",
            "nome": "GLOBAL SCM LTDA",
            "agencias": [
                {
                    "id": 18069,
                    "nome": "MATRIZ",
                    "municipio": "AMERICANA"
                }
            ]
        },
        {
            "id": 26,
            "banco": "64",
            "nome": "GOLDMAN SACHS DO BRASIL BANCO MULTIPLO S.A.",
            "agencias": [
                {
                    "id": 8311,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 93,
            "banco": "177",
            "nome": "GUIDE INVESTIMENTOS S.A. CORRETORA DE VALORES",
            "agencias": [
                {
                    "id": 12022,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12023,
                    "nome": "FILIAL BH",
                    "municipio": "BELO HORIZONTE"
                }
            ]
        },
        {
            "id": 87,
            "banco": "146",
            "nome": "GUITTA CORRETORA DE CAMBIO LTDA.",
            "agencias": [
                {
                    "id": 12016,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 35,
            "banco": "78",
            "nome": "HAITONG BANCO DE INVESTIMENTO DO BRASIL S.A.",
            "agencias": [
                {
                    "id": 8421,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 262,
            "banco": "458",
            "nome": "HEDGE INVESTMENTS DTVM LTDA.",
            "agencias": [
                {
                    "id": 18244,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 253,
            "banco": "448",
            "nome": "HEMERA DTVM LTDA.",
            "agencias": [
                {
                    "id": 18237,
                    "nome": "MATRIZ",
                    "municipio": "CURITIBA"
                }
            ]
        },
        {
            "id": 24,
            "banco": "62",
            "nome": "HIPERCARD BANCO MÚLTIPLO S.A.",
            "agencias": [
                {
                    "id": 8309,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 300,
            "banco": "523",
            "nome": "HR DIGITAL - SOCIEDADE DE CRÉDITO DIRETO S/A",
            "agencias": []
        },
        {
            "id": 98,
            "banco": "189",
            "nome": "HS FINANCEIRA",
            "agencias": [
                {
                    "id": 12036,
                    "nome": "MATRIZ",
                    "municipio": "DOIS IRMAOS"
                }
            ]
        },
        {
            "id": 154,
            "banco": "312",
            "nome": "HSCM SCMEPP LTDA.",
            "agencias": [
                {
                    "id": 15428,
                    "nome": "MATRIZ",
                    "municipio": "IBIA"
                }
            ]
        },
        {
            "id": 214,
            "banco": "396",
            "nome": "HUB INSTITUIÇÃO DE PAGAMENTO S.A.",
            "agencias": [
                {
                    "id": 18081,
                    "nome": "AGENCIA 1 DO BANCO HUB IP S.A.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 128,
            "banco": "271",
            "nome": "IB CCTVM S.A.",
            "agencias": [
                {
                    "id": 15401,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 89,
            "banco": "157",
            "nome": "ICAP DO BRASIL CTVM LTDA.",
            "agencias": [
                {
                    "id": 12018,
                    "nome": "ICAP DO BRASIL CORRETORA DE T�TULOS E VALORES MOBI",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 75,
            "banco": "132",
            "nome": "ICBC DO BRASIL BANCO MÚLTIPLO S.A.",
            "agencias": []
        },
        {
            "id": 246,
            "banco": "439",
            "nome": "ID CORRETORA DE TÍTULOS E VALORES MOBILIÁRIOS S.A.",
            "agencias": [
                {
                    "id": 18231,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 216,
            "banco": "398",
            "nome": "IDEAL CTVM S.A.",
            "agencias": [
                {
                    "id": 18083,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 224,
            "banco": "407",
            "nome": "ÍNDIGO INVESTIMENTOS DTVM LTDA.",
            "agencias": [
                {
                    "id": 18090,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 302,
            "banco": "525",
            "nome": "INTERCAM CORRETORA DE CÂMBIO LTDA.",
            "agencias": [
                {
                    "id": 18279,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 80,
            "banco": "139",
            "nome": "INTESA SANPAOLO BRASIL S.A. - BANCO MÚLTIPLO",
            "agencias": [
                {
                    "id": 12007,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 174,
            "banco": "341",
            "nome": "ITAÚ UNIBANCO S.A.",
            "agencias": [
                {
                    "id": 15481,
                    "nome": "OSASCO-SP",
                    "municipio": "OSASCO"
                },
                {
                    "id": 15482,
                    "nome": "FRANCO DA ROCHA-SP",
                    "municipio": "FRANCO DA ROCHA"
                },
                {
                    "id": 15483,
                    "nome": "SAO PAULO/ESTAC.CONCEICAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15484,
                    "nome": "SAO PAULO/CAPAO REDONDO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15485,
                    "nome": "CATALAO-GO",
                    "municipio": "CATALAO"
                },
                {
                    "id": 15486,
                    "nome": "JUAZEIRO-BA",
                    "municipio": "JUAZEIRO"
                },
                {
                    "id": 15487,
                    "nome": "CONCORDIA-SC",
                    "municipio": "CONCORDIA"
                },
                {
                    "id": 15488,
                    "nome": "NILOPOLIS-RJ",
                    "municipio": "NILOPOLIS"
                },
                {
                    "id": 15489,
                    "nome": "BARREIRAS-BA",
                    "municipio": "BARREIRAS"
                },
                {
                    "id": 15490,
                    "nome": "SAO PAULO/CEAGESP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15491,
                    "nome": "SAO PAULO/EMISSARIO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15492,
                    "nome": "SAO PAULO/PERUS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15493,
                    "nome": "S.BERNARDO CAMPO/TABOAO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 15494,
                    "nome": "CAMPO GRANDE/AFONSO PENA",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 15495,
                    "nome": "SAO PAULO/BRAZ LEME",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15496,
                    "nome": "ITAMOGI-MG",
                    "municipio": "ITAMOGI"
                },
                {
                    "id": 15497,
                    "nome": "ITAU DE MINAS-MG",
                    "municipio": "ITAU DE MINAS"
                },
                {
                    "id": 15498,
                    "nome": "ITUIUTABA-MG",
                    "municipio": "ITUIUTABA"
                },
                {
                    "id": 15499,
                    "nome": "LONDRINA-PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 15500,
                    "nome": "ITAPIRA-SP",
                    "municipio": "ITAPIRA"
                },
                {
                    "id": 15501,
                    "nome": "LOUVEIRA-SP",
                    "municipio": "LOUVEIRA"
                },
                {
                    "id": 15502,
                    "nome": "MANDAGUARI-PR",
                    "municipio": "MANDAGUARI"
                },
                {
                    "id": 15503,
                    "nome": "MARINGA-PR",
                    "municipio": "MARINGA"
                },
                {
                    "id": 15504,
                    "nome": "VILHENA-RO",
                    "municipio": "VILHENA"
                },
                {
                    "id": 15505,
                    "nome": "BELEM/BAIRRO PEDREIRA-PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 15506,
                    "nome": "CASTANHAL-PA",
                    "municipio": "CASTANHAL"
                },
                {
                    "id": 15507,
                    "nome": "IMPERATRIZ-MA",
                    "municipio": "IMPERATRIZ"
                },
                {
                    "id": 15508,
                    "nome": "MACAPA-AP",
                    "municipio": "MACAPA"
                },
                {
                    "id": 15509,
                    "nome": "SAO LUIS/ILHA DOS AMORES",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 15510,
                    "nome": "BARUERI/ALPHAVILLE",
                    "municipio": "BARUERI"
                },
                {
                    "id": 15511,
                    "nome": "MONTE SANTO DE MINAS-MG",
                    "municipio": "MONTE SANTO DE MINAS"
                },
                {
                    "id": 15512,
                    "nome": "ARACAJU/FRANCISCO PORTO",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 15513,
                    "nome": "PARANAGUA-PR",
                    "municipio": "PARANAGUA"
                },
                {
                    "id": 15514,
                    "nome": "RIO/NOVA BARRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15515,
                    "nome": "119",
                    "municipio": ""
                },
                {
                    "id": 15516,
                    "nome": "SAO PAULO/ITAIM PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15517,
                    "nome": "PEDREIRA-SP",
                    "municipio": "PEDREIRA"
                },
                {
                    "id": 15518,
                    "nome": "PASSOS-MG",
                    "municipio": "PASSOS"
                },
                {
                    "id": 15519,
                    "nome": "CABO FRIO-RJ",
                    "municipio": "CABO FRIO"
                },
                {
                    "id": 15520,
                    "nome": "PORTO FERREIRA-SP",
                    "municipio": "PORTO FERREIRA"
                },
                {
                    "id": 15521,
                    "nome": "PETROPOLIS/PRA�A DOM PEDRO II",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 15522,
                    "nome": "P.ALEGRE/WENC. ESCOBAR",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 15523,
                    "nome": "PATO BRANCO-PR",
                    "municipio": "PATO BRANCO"
                },
                {
                    "id": 15524,
                    "nome": "INDAIAL-SC",
                    "municipio": "INDAIAL"
                },
                {
                    "id": 15525,
                    "nome": "124",
                    "municipio": ""
                },
                {
                    "id": 15526,
                    "nome": "RIO/ROCHA MIRANDA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15527,
                    "nome": "Ag�ncia 1247",
                    "municipio": ""
                },
                {
                    "id": 15528,
                    "nome": "RIBEIRAO PRETO-SP",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 15529,
                    "nome": "ROLANDIA-PR",
                    "municipio": "ROLANDIA"
                },
                {
                    "id": 15530,
                    "nome": "OSASCO/ANTONIO AGU",
                    "municipio": "OSASCO"
                },
                {
                    "id": 15531,
                    "nome": "DUQUE CAXIAS/B.LIMA SILVA",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 15532,
                    "nome": "SALVADOR-BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 15533,
                    "nome": "VARZEA PAULISTA-SP",
                    "municipio": "VARZEA PAULISTA"
                },
                {
                    "id": 15534,
                    "nome": "BLUMENAU/ITOUPAVA SECA-SC",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 15535,
                    "nome": "JOINVILLE/DR.JOAO COLIN",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 15536,
                    "nome": "ESPIRITO SANTO DO PINHAL-",
                    "municipio": "ESPIRITO SANTO DO PINHAL"
                },
                {
                    "id": 15537,
                    "nome": "OURO PRETO SILVIANO BRANDAO",
                    "municipio": "OURO PRETO"
                },
                {
                    "id": 15538,
                    "nome": "CURITIBA/UMBARA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 15539,
                    "nome": "S.SEBASTIAO DO PARAISO-MG",
                    "municipio": "SAO SEBASTIAO DO PARAISO"
                },
                {
                    "id": 15540,
                    "nome": "GUAIRA-SP",
                    "municipio": "GUAIRA"
                },
                {
                    "id": 15541,
                    "nome": "ITAPERUNA-RJ",
                    "municipio": "ITAPERUNA"
                },
                {
                    "id": 15542,
                    "nome": "BETIM-MG",
                    "municipio": "BETIM"
                },
                {
                    "id": 15543,
                    "nome": "FORTALEZA/ALDEOTA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 15544,
                    "nome": "NATAL/BAIRRO ALECRIN",
                    "municipio": "NATAL"
                },
                {
                    "id": 15545,
                    "nome": "JUIZ DE FORA/BENFICA-MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 15546,
                    "nome": "JI-PARANA-RO",
                    "municipio": "JI-PARANA"
                },
                {
                    "id": 15547,
                    "nome": "SANTAREM-PA",
                    "municipio": "SANTAREM"
                },
                {
                    "id": 15548,
                    "nome": "BOA VISTA-RR",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 15549,
                    "nome": "ALTA FLORESTA-MT",
                    "municipio": "ALTA FLORESTA"
                },
                {
                    "id": 15550,
                    "nome": "VINHEDO-SP",
                    "municipio": "VINHEDO"
                },
                {
                    "id": 15551,
                    "nome": "TANGARA DA SERRA-MT",
                    "municipio": "TANGARA DA SERRA"
                },
                {
                    "id": 15552,
                    "nome": "SINOP-MT",
                    "municipio": "SINOP"
                },
                {
                    "id": 15553,
                    "nome": "SAO PAULO/INTERLAGOS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15554,
                    "nome": "CAMPINAS/BARAO DE ITAPURA",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 15555,
                    "nome": "CPO GRANDE/AV.BANDEIRANTE",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 15556,
                    "nome": "SAO PAULO/V.GOMES CARDIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15557,
                    "nome": "S.CAETANO DO SUL/V.GERTI",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 15558,
                    "nome": "BH ALIPIO DE MELO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15559,
                    "nome": "BRASILIA/SAT.SOBRADINHO",
                    "municipio": "BRASILIA (SOBRADINHO)"
                },
                {
                    "id": 15560,
                    "nome": "SAO PAULO/VILA ESPERANCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15561,
                    "nome": "SAO PAULO/VILA DIVA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15562,
                    "nome": "CONTAGEM/BAIRRO ELDORADO",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 15563,
                    "nome": "AMPARO-SP",
                    "municipio": "AMPARO"
                },
                {
                    "id": 15564,
                    "nome": "SAO PAULO/PQUE.SAO LUCAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15565,
                    "nome": "BH/AV. JO�O PINHEIRO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15566,
                    "nome": "VITORIA/PARQUE MOSCOSO-ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 15567,
                    "nome": "ARACRUZ ES",
                    "municipio": "ARACRUZ"
                },
                {
                    "id": 15568,
                    "nome": "SAO PAULO/AGUA RASA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15569,
                    "nome": "BALNEARIO DE CAMBORIU-SC",
                    "municipio": "BALNEARIO CAMBORIU"
                },
                {
                    "id": 15570,
                    "nome": "BRUSQUE-SC",
                    "municipio": "BRUSQUE"
                },
                {
                    "id": 15571,
                    "nome": "CAMPINAS/AMOREIRAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 15572,
                    "nome": "MOGI DAS CRUZES-SP",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 15573,
                    "nome": "CAMPO GRANDE/C.ANTONINO",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 15574,
                    "nome": "CAMPOS DO JORDAO-SP",
                    "municipio": "CAMPOS DO JORDAO"
                },
                {
                    "id": 15575,
                    "nome": "CANOINHAS-SC",
                    "municipio": "CANOINHAS"
                },
                {
                    "id": 15576,
                    "nome": "CARIACICA-ES",
                    "municipio": "CARIACICA"
                },
                {
                    "id": 15577,
                    "nome": "CONSELHEIRO LAFAIETE-MG",
                    "municipio": "CONSELHEIRO LAFAIETE"
                },
                {
                    "id": 15578,
                    "nome": "ASSIS-SP",
                    "municipio": "ASSIS"
                },
                {
                    "id": 15579,
                    "nome": "BH R. BAHIA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15580,
                    "nome": "CUIABA/COXIPO DA PONTE-MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 15581,
                    "nome": "FRANCISCO BELTRAO-PR",
                    "municipio": "FRANCISCO BELTRAO"
                },
                {
                    "id": 15582,
                    "nome": "FARROUPILHA-RS",
                    "municipio": "FARROUPILHA"
                },
                {
                    "id": 15583,
                    "nome": "ARACATUBA-SP",
                    "municipio": "ARACATUBA"
                },
                {
                    "id": 15584,
                    "nome": "FRUTAL-MG",
                    "municipio": "FRUTAL"
                },
                {
                    "id": 15585,
                    "nome": "GRAVATAI-RS",
                    "municipio": "GRAVATAI"
                },
                {
                    "id": 15586,
                    "nome": "GUARULHOS/AV SANTOS DUMONT",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 15587,
                    "nome": "JOAO PESSOA/EPITACIO",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 15588,
                    "nome": "MARILIA-SP",
                    "municipio": "MARILIA"
                },
                {
                    "id": 15589,
                    "nome": "SAO LUIS/TIBIRICAL-MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 15590,
                    "nome": "JANDIRA-SP",
                    "municipio": "JANDIRA"
                },
                {
                    "id": 15591,
                    "nome": "OURINHOS-SP",
                    "municipio": "OURINHOS"
                },
                {
                    "id": 15592,
                    "nome": "LAVRAS-MG",
                    "municipio": "LAVRAS"
                },
                {
                    "id": 15593,
                    "nome": "MACEIO/FAROL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 15594,
                    "nome": "MOSSORO-RN",
                    "municipio": "MOSSORO"
                },
                {
                    "id": 15595,
                    "nome": "MURIAE-MG",
                    "municipio": "MURIAE"
                },
                {
                    "id": 15596,
                    "nome": "GOIANIA-GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 15597,
                    "nome": "OURO PRETO-MG",
                    "municipio": "OURO PRETO"
                },
                {
                    "id": 15598,
                    "nome": "PATROCINIO-MG",
                    "municipio": "PATROCINIO"
                },
                {
                    "id": 15599,
                    "nome": "PETROLINA-PE",
                    "municipio": "PETROLINA"
                },
                {
                    "id": 15600,
                    "nome": "Ag�ncia 14780",
                    "municipio": ""
                },
                {
                    "id": 15601,
                    "nome": "UBERLANDIA-MG",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 15602,
                    "nome": "POA-SP",
                    "municipio": "POA"
                },
                {
                    "id": 15603,
                    "nome": "PONTE NOVA-MG",
                    "municipio": "PONTE NOVA"
                },
                {
                    "id": 15604,
                    "nome": "SAO PAULO/VILA ALPINA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15605,
                    "nome": "GUARULHOS/VILA ENDRES-SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 15606,
                    "nome": "SIMOES FILHO-BA",
                    "municipio": "SIMOES FILHO"
                },
                {
                    "id": 15607,
                    "nome": "SOBRAL-CE",
                    "municipio": "SOBRAL"
                },
                {
                    "id": 15608,
                    "nome": "SERRA NEGRA-SP",
                    "municipio": "SERRA NEGRA"
                },
                {
                    "id": 15609,
                    "nome": "SAO PAULO/S.JUDAS TADEU",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15610,
                    "nome": "TRES CORACOES-MG",
                    "municipio": "TRES CORACOES"
                },
                {
                    "id": 15611,
                    "nome": "TRES PONTAS-MG",
                    "municipio": "TRES PONTAS"
                },
                {
                    "id": 15612,
                    "nome": "UNAI-MG",
                    "municipio": "UNAI"
                },
                {
                    "id": 15613,
                    "nome": "SAO PAULO/TAMANDARE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15614,
                    "nome": "SALVADOR/PRAIA DE ITAPOA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 15615,
                    "nome": "SANTO ANDRE/BAIRRO JARDIM",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 15616,
                    "nome": "S.BERNARDO CAMPO/KENNEDY",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 15617,
                    "nome": "SAO PAULO/ALTO DA POMPEIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15618,
                    "nome": "RIO/MARECHAL HERMES",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15619,
                    "nome": "BRASILIA/W3-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 15620,
                    "nome": "S.J.CAMPOS/SANTOS DUMONT",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 15621,
                    "nome": "CURITIBA/BATEL - PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 15622,
                    "nome": "NOVO HORIZONTE-SP",
                    "municipio": "NOVO HORIZONTE"
                },
                {
                    "id": 15623,
                    "nome": "JOINVILLE-SC",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 15624,
                    "nome": "SP CENTRO EMPRESARIAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15625,
                    "nome": "FRANCA-SP",
                    "municipio": "FRANCA"
                },
                {
                    "id": 15626,
                    "nome": "LONDRINA/LORD LOVAT-PR",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 15627,
                    "nome": "MANAUS/DJALMA BATISTA",
                    "municipio": "MANAUS"
                },
                {
                    "id": 15628,
                    "nome": "UBA-MG",
                    "municipio": "UBA"
                },
                {
                    "id": 15629,
                    "nome": "GUARATINGUETA-SP",
                    "municipio": "GUARATINGUETA"
                },
                {
                    "id": 15630,
                    "nome": "NOVA ODESSA-SP",
                    "municipio": "NOVA ODESSA"
                },
                {
                    "id": 15631,
                    "nome": "CAMPINAS/GAL.SHOPPING-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 15632,
                    "nome": "UBATUBA-SP",
                    "municipio": "UBATUBA"
                },
                {
                    "id": 15633,
                    "nome": "CURITIBA/AV. IGUACU",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 15634,
                    "nome": "S.J.R.PRETO/AV.BADYBASSIT",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 15635,
                    "nome": "PIRASSUNUNGA-SP",
                    "municipio": "PIRASSUNUNGA"
                },
                {
                    "id": 15636,
                    "nome": "SAO JOSE-SC",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 15637,
                    "nome": "SAO PAULO/JD.MARAJOARA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15638,
                    "nome": "SP/CERRO CORA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15639,
                    "nome": "BELEM/BATISTA CAMPOS-PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 15640,
                    "nome": "FLORIANOPOLIS/B.TRINDADE",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 15641,
                    "nome": "AMERICANA/V.FREZZARIN-SP",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 15642,
                    "nome": "CACHOEIRINHA-RS",
                    "municipio": "CACHOEIRINHA"
                },
                {
                    "id": 15643,
                    "nome": "TAUBATE (SP)",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 15644,
                    "nome": "BELEM/SENADOR LEMOS-PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 15645,
                    "nome": "BH FLORESTA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15646,
                    "nome": "BRASILIA/EDIF.IMPERADOR",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 15647,
                    "nome": "CAMPO GRANDE/ZAHRAN-MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 15648,
                    "nome": "JUNDIAI/JUNDIAINOPOLIS-SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 15649,
                    "nome": "FORTALEZA/MONTESE-CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 15650,
                    "nome": "GOIANIA/BAIRRO SERRINHA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 15651,
                    "nome": "159",
                    "municipio": ""
                },
                {
                    "id": 15652,
                    "nome": "GOIANIA/ST.UNIVERSITARIO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 15653,
                    "nome": "BRASILIA/SAT.TAGUANORTE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 15654,
                    "nome": "PORTO VELHO/NACOES UNIDAS",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 15655,
                    "nome": "RECIFE/CASA AMARELA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 15656,
                    "nome": "RIO/CACUIA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15657,
                    "nome": "GUARULHOS/GOPOUVA_- SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 15658,
                    "nome": "MACEIO/PAJUCARA",
                    "municipio": "MACEIO"
                },
                {
                    "id": 15659,
                    "nome": "SALVADOR ITAIGARA  BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 15660,
                    "nome": "S.PAULO/BAIRRO STO.AMARO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15661,
                    "nome": "GUARULHOS/AEROP.CUMBICA",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 15662,
                    "nome": "FERRAZ DE VASCONCELOS-SP",
                    "municipio": "FERRAZ DE VASCONCELOS"
                },
                {
                    "id": 15663,
                    "nome": "FORTALEZA/BEZER.MENEZES",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 15664,
                    "nome": "SANTOS/JOSE MENINO",
                    "municipio": "SANTOS"
                },
                {
                    "id": 15665,
                    "nome": "GRAMADO-RS",
                    "municipio": "GRAMADO"
                },
                {
                    "id": 15666,
                    "nome": "S.PAULO/CHAC.STO.ANTONIO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15667,
                    "nome": "GUARAPARI-ES",
                    "municipio": "GUARAPARI"
                },
                {
                    "id": 15668,
                    "nome": "SAO PAULO/JARDIM PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15669,
                    "nome": "UBERLANDIA/CONSERVATORIO",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 15670,
                    "nome": "CAXIAS DO SUL/B.PIO X",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 15671,
                    "nome": "PORTO ALEGRE/B.PETROPOLIS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 15672,
                    "nome": "PIRACICABA/V. RESENDE",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 15673,
                    "nome": "P.ALEGRE/AV.CARLOS GOMES",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 15674,
                    "nome": "SAO PAULO/NOVA AUGUSTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15675,
                    "nome": "CAMPINAS/BARAO GERALDO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 15676,
                    "nome": "CAMPO LIMPO PAULISTA-SP",
                    "municipio": "CAMPO LIMPO PAULISTA"
                },
                {
                    "id": 15677,
                    "nome": "CAMPINAS/VILA NOVA",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 15678,
                    "nome": "SAPUCAIA DO SUL-RS",
                    "municipio": "SAPUCAIA DO SUL"
                },
                {
                    "id": 15679,
                    "nome": "GUARULHOS/VILA BARROS-SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 15680,
                    "nome": "SAO B.CAMPO/V.PAULICEIA-",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 15681,
                    "nome": "PORTO ALEGRE/B.NAVEGANTES",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 15682,
                    "nome": "ITAQUAQUECETUBA-SP",
                    "municipio": "ITAQUAQUECETUBA"
                },
                {
                    "id": 15683,
                    "nome": "C.DOS GOYTACAZES/PELINCA",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 15684,
                    "nome": "PRESIDENTE EPITACIO-SP",
                    "municipio": "PRESIDENTE EPITACIO"
                },
                {
                    "id": 15685,
                    "nome": "RECIFE/PINA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 15686,
                    "nome": "SAO PAULO/CAMPO LIMPO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15687,
                    "nome": "RIBEIRAO PRETO/IPIRANGA",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 15688,
                    "nome": "OSASCO/AV.ANTONIO C.COSTA",
                    "municipio": "OSASCO"
                },
                {
                    "id": 15689,
                    "nome": "NITEROI/PIRATININGA",
                    "municipio": "NITEROI"
                },
                {
                    "id": 15690,
                    "nome": "BH BARREIRO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15691,
                    "nome": "PAB ARJO WIGGINS",
                    "municipio": "SALTO"
                },
                {
                    "id": 15692,
                    "nome": "MARACANAU-CE",
                    "municipio": "MARACANAU"
                },
                {
                    "id": 15693,
                    "nome": "PETROPOLIS/RUA TERESA-RJ",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 15694,
                    "nome": "ANANINDEUA-PA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 15695,
                    "nome": "BARBACENA-MG",
                    "municipio": "BARBACENA"
                },
                {
                    "id": 15696,
                    "nome": "FORTALEZA/ABOLICAO-CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 15697,
                    "nome": "ALAGOINHAS-BA",
                    "municipio": "ALAGOINHAS"
                },
                {
                    "id": 15698,
                    "nome": "PORTO SEGURO-BA",
                    "municipio": "PORTO SEGURO"
                },
                {
                    "id": 15699,
                    "nome": "FORTALEZA/BR.DE STUDART",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 15700,
                    "nome": "NATAL/PRUDENTE DE MORAES",
                    "municipio": "NATAL"
                },
                {
                    "id": 15701,
                    "nome": "VOTORANTIM",
                    "municipio": "VOTORANTIM"
                },
                {
                    "id": 15702,
                    "nome": "CAMPINAS/SOUZAS - SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 15703,
                    "nome": "SOROCABA/ALEM LINHA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 15704,
                    "nome": "CAPAO DA CANOA-RS",
                    "municipio": "CAPAO DA CANOA"
                },
                {
                    "id": 15705,
                    "nome": "BAURU/PRACA PORTUGAL-SP",
                    "municipio": "BAURU"
                },
                {
                    "id": 15706,
                    "nome": "VIAMAO (RS)",
                    "municipio": "VIAMAO"
                },
                {
                    "id": 15707,
                    "nome": "CAMPINAS/BAIRRO BONFIM-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 15708,
                    "nome": "SP/GIOVANNI GRONCHI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15709,
                    "nome": "SP/AV. RICARDO JAFET",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15710,
                    "nome": "SAO PAULO/CLINICAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15711,
                    "nome": "SP/ERMELINO MATARAZZO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15712,
                    "nome": "SP/LARGO DA CONCORDIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15713,
                    "nome": "SP/M BOI MIRIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15714,
                    "nome": "SANTO ANDRE/VILA GILDA",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 15715,
                    "nome": "S.PAULO/LINS VASCONCELOS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15716,
                    "nome": "RIO/COPACABANA BOLIVAR",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15717,
                    "nome": "S.VICENTE/AV. A. EMMERICH",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 15718,
                    "nome": "BELEM/SAO BRAS",
                    "municipio": "BELEM"
                },
                {
                    "id": 15719,
                    "nome": "CUIABA/CPA",
                    "municipio": "CUIABA"
                },
                {
                    "id": 15720,
                    "nome": "MANAUS/CACHOEIRINHA_- AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 15721,
                    "nome": "BRASILIA/SAT.BANDEIRANTE",
                    "municipio": "BRASILIA (NUCLEO BANDEIRANTE)"
                },
                {
                    "id": 15722,
                    "nome": "AVARE-SP",
                    "municipio": "AVARE"
                },
                {
                    "id": 15723,
                    "nome": "TEIXEIRA DE FREITAS-BA",
                    "municipio": "TEIXEIRA DE FREITAS"
                },
                {
                    "id": 15724,
                    "nome": "S.PAULO/BAIRRO VELEIROS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15725,
                    "nome": "S.PAULO/PLANALTO PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15726,
                    "nome": "LONDRINA/DUQUE DE CAXIAS",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 15727,
                    "nome": "PORTO ALEGRE/SARANDI",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 15728,
                    "nome": "CURITIBA/XAXIM",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 15729,
                    "nome": "VARZEA GRANDE-MT",
                    "municipio": "VARZEA GRANDE"
                },
                {
                    "id": 15730,
                    "nome": "CORDEIROPOLIS-SP",
                    "municipio": "CORDEIROPOLIS"
                },
                {
                    "id": 15731,
                    "nome": "S.BERN.CAMPO/B.ASSUNCAO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 15732,
                    "nome": "S�O BERNARDO DO CAMPO (SP)",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 15733,
                    "nome": "S.PAULO/R.BR.ITAPETININGA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15734,
                    "nome": "TEOFILO OTONI-MG",
                    "municipio": "TEOFILO OTONI"
                },
                {
                    "id": 15735,
                    "nome": "S.PAULO/RUA DA PALMEIRAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15736,
                    "nome": "SP PAB ELEVADORES ATLAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15737,
                    "nome": "SAO PAULO/RUA ORIENTE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15738,
                    "nome": "SAO PAULO/MOOCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15739,
                    "nome": "SAO PAULO/AV.LIBERDADE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15740,
                    "nome": "SAO PAULO/ESTACAO DA LUZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15741,
                    "nome": "SAO CAETANO DO SUL-SP",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 15742,
                    "nome": "SAO PAULO/SENADOR QUEIROZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15743,
                    "nome": "ALEGRETE-RS",
                    "municipio": "ALEGRETE"
                },
                {
                    "id": 15744,
                    "nome": "HOLAMBRA-SP",
                    "municipio": "HOLAMBRA"
                },
                {
                    "id": 15745,
                    "nome": "SAO PAULO/ITAIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15746,
                    "nome": "SAO PAULO/AV. REBOUCAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15747,
                    "nome": "SAO PAULO/HIGIENOPOLIS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15748,
                    "nome": "SAO PAULO/BRAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15749,
                    "nome": "SAO PAULO/PAMPLONA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15750,
                    "nome": "SAO PAULO/PRACA ROOSEVELT",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15751,
                    "nome": "JUNDIAI-SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 15752,
                    "nome": "SAO PAULO/BAIRRO PARAISO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15753,
                    "nome": "SAO PAULO/CLELIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15754,
                    "nome": "SP/BORBA GATO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15755,
                    "nome": "BAGE-RS",
                    "municipio": "BAGE"
                },
                {
                    "id": 15756,
                    "nome": "SAO PAULO/SILVA BUENO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15757,
                    "nome": "SANTANA DO LIVRAMENTO-RS",
                    "municipio": "SANTANA DO LIVRAMENTO"
                },
                {
                    "id": 15758,
                    "nome": "JUNDIAI/9 DE JULHO",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 15759,
                    "nome": "AGUDOS-SP",
                    "municipio": "AGUDOS"
                },
                {
                    "id": 15760,
                    "nome": "SAO PAULO/CIDADE JARDIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15761,
                    "nome": "TRES BARRAS-SC",
                    "municipio": "TRES BARRAS"
                },
                {
                    "id": 15762,
                    "nome": "SP/ANTONIO DE BARROS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15763,
                    "nome": "SANTO ANDR�-SP",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 15764,
                    "nome": "PONTA GROSSA-PR",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 15765,
                    "nome": "SP/AV.LUIZ CARLOS BERRINI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15766,
                    "nome": "NOVA IGUACU-RJ",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 15767,
                    "nome": "JAU-SP",
                    "municipio": "JAU"
                },
                {
                    "id": 15768,
                    "nome": "PRESIDENTE PRUDENTE-SP",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 15769,
                    "nome": "RIO/AVENIDA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15770,
                    "nome": "SALVADOR/BROTAS",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 15771,
                    "nome": "CAPIVARI-SP",
                    "municipio": "CAPIVARI"
                },
                {
                    "id": 15772,
                    "nome": "CAXIAS DO SUL-RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 15773,
                    "nome": "HORTOLANDIA SP",
                    "municipio": "HORTOLANDIA"
                },
                {
                    "id": 15774,
                    "nome": "ANAPOLIS-GO",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 15775,
                    "nome": "JATAI-GO",
                    "municipio": "JATAI"
                },
                {
                    "id": 15776,
                    "nome": "SANTOS-SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 15777,
                    "nome": "SAO PAULO/VILA PRUDENTE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15778,
                    "nome": "SAO PAULO/SILVA JARDIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15779,
                    "nome": "TATUI (SP",
                    "municipio": "TATUI"
                },
                {
                    "id": 15780,
                    "nome": "213",
                    "municipio": ""
                },
                {
                    "id": 15781,
                    "nome": "Ag�ncia 2136",
                    "municipio": ""
                },
                {
                    "id": 15782,
                    "nome": "Ag�ncia 21360",
                    "municipio": ""
                },
                {
                    "id": 15783,
                    "nome": "PIRAPOZINHO-SP",
                    "municipio": "PIRAPOZINHO"
                },
                {
                    "id": 15784,
                    "nome": "JOSE BONIFACIO-SP",
                    "municipio": "JOSE BONIFACIO"
                },
                {
                    "id": 15785,
                    "nome": "LAGES-SC",
                    "municipio": "LAGES"
                },
                {
                    "id": 15786,
                    "nome": "LINS-SP",
                    "municipio": "LINS"
                },
                {
                    "id": 15787,
                    "nome": "GOVERNADOR VALADARES-MG",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 15788,
                    "nome": "SAO JOAO DA BOA VISTA-SP",
                    "municipio": "SAO JOAO DA BOA VISTA"
                },
                {
                    "id": 15789,
                    "nome": "PENAPOLIS-SP",
                    "municipio": "PENAPOLIS"
                },
                {
                    "id": 15790,
                    "nome": "NOVA LONDRINA - PR.",
                    "municipio": "NOVA LONDRINA"
                },
                {
                    "id": 15791,
                    "nome": "NOVA FRIBURGO-RJ",
                    "municipio": "NOVA FRIBURGO"
                },
                {
                    "id": 15792,
                    "nome": "BOTUCATU-SP",
                    "municipio": "BOTUCATU"
                },
                {
                    "id": 15793,
                    "nome": "AURIFLAMA-SP",
                    "municipio": "AURIFLAMA"
                },
                {
                    "id": 15794,
                    "nome": "ITAPEVI-SP",
                    "municipio": "ITAPEVI"
                },
                {
                    "id": 15795,
                    "nome": "SAO JOAO DE MERITI-RJ",
                    "municipio": "SAO JOAO DE MERITI"
                },
                {
                    "id": 15796,
                    "nome": "RIO/BONSUCESSO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15797,
                    "nome": "JABOTICABAL-SP",
                    "municipio": "JABOTICABAL"
                },
                {
                    "id": 15798,
                    "nome": "FAXINAL - PR.",
                    "municipio": "FAXINAL"
                },
                {
                    "id": 15799,
                    "nome": "CIANORTE-PR",
                    "municipio": "CIANORTE"
                },
                {
                    "id": 15800,
                    "nome": "BEBEDOURO-SP",
                    "municipio": "BEBEDOURO"
                },
                {
                    "id": 15801,
                    "nome": "FERNANDOPOLIS-SP",
                    "municipio": "FERNANDOPOLIS"
                },
                {
                    "id": 15802,
                    "nome": "UMUARAMA-PR",
                    "municipio": "UMUARAMA"
                },
                {
                    "id": 15803,
                    "nome": "S.PAULO/PCA.DA REPUBLICA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15804,
                    "nome": "MONTES CLAROS-MG",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 15805,
                    "nome": "SUZANO-SP",
                    "municipio": "SUZANO"
                },
                {
                    "id": 15806,
                    "nome": "BARUERI-SP",
                    "municipio": "BARUERI"
                },
                {
                    "id": 15807,
                    "nome": "JACAREI-SP",
                    "municipio": "JACAREI"
                },
                {
                    "id": 15808,
                    "nome": "LEME-SP",
                    "municipio": "LEME"
                },
                {
                    "id": 15809,
                    "nome": "ITAPETININGA-SP",
                    "municipio": "ITAPETININGA"
                },
                {
                    "id": 15810,
                    "nome": "MAUA-SP",
                    "municipio": "MAUA"
                },
                {
                    "id": 15811,
                    "nome": "ANDRADINA-SP",
                    "municipio": "ANDRADINA"
                },
                {
                    "id": 15812,
                    "nome": "SANTOS/PONTA DA PRAIA-SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 15813,
                    "nome": "PARANAVAI-PR",
                    "municipio": "PARANAVAI"
                },
                {
                    "id": 15814,
                    "nome": "LORENA-SP",
                    "municipio": "LORENA"
                },
                {
                    "id": 15815,
                    "nome": "CARAGUATATUBA-SP",
                    "municipio": "CARAGUATATUBA"
                },
                {
                    "id": 15816,
                    "nome": "Ag�ncia 2483",
                    "municipio": ""
                },
                {
                    "id": 15817,
                    "nome": "PAB PROCTER & GAMBLE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15818,
                    "nome": "MOGI-GUA�U-SP",
                    "municipio": "MOGI-GUACU"
                },
                {
                    "id": 15819,
                    "nome": "S�O JOS� DOS CAMPOS/SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 15820,
                    "nome": "SAO PAULO/BRIGADEIRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15821,
                    "nome": "COTIA-SP",
                    "municipio": "COTIA"
                },
                {
                    "id": 15822,
                    "nome": "DIADEMA-SP",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 15823,
                    "nome": "CRUZEIRO-SP",
                    "municipio": "CRUZEIRO"
                },
                {
                    "id": 15824,
                    "nome": "PINDAMONHANGABA-SP",
                    "municipio": "PINDAMONHANGABA"
                },
                {
                    "id": 15825,
                    "nome": "JUNDIAI/PONTE SAO JOAO-SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 15826,
                    "nome": "MALLET - PR.",
                    "municipio": "MALLET"
                },
                {
                    "id": 15827,
                    "nome": "CATANDUVA-SP",
                    "municipio": "CATANDUVA"
                },
                {
                    "id": 15828,
                    "nome": "SAO PAULO/AV.PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15829,
                    "nome": "SAO BERNARDO DO CAMPO-SP",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 15830,
                    "nome": "S.PAULO/REPRESA STO.AMARO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15831,
                    "nome": "SAO PAULO/BUTANTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15832,
                    "nome": "POCOS DE CALDAS-MG",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 15833,
                    "nome": "SANTOS/PRAIA GONZAGA",
                    "municipio": "SANTOS"
                },
                {
                    "id": 15834,
                    "nome": "RIO/POSTO SEIS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15835,
                    "nome": "Ag�ncia 2696",
                    "municipio": ""
                },
                {
                    "id": 15836,
                    "nome": "SAO PAULO/DR.ZUQUIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15837,
                    "nome": "NOVA SANTAR�M - PA",
                    "municipio": "SANTAREM"
                },
                {
                    "id": 15838,
                    "nome": "RIO/FLAMENGO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15839,
                    "nome": "CAMPINAS/SANTA CANDIDA",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 15840,
                    "nome": "RIO G�VEA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15841,
                    "nome": "CURITIBA/BAIRRO PORTAO-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 15842,
                    "nome": "ITUPEVA - SP",
                    "municipio": "ITUPEVA"
                },
                {
                    "id": 15843,
                    "nome": "BRUMADINHO_- MG",
                    "municipio": "BRUMADINHO"
                },
                {
                    "id": 15844,
                    "nome": "CURITIBA/MAL.FLORIANO-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 15845,
                    "nome": "PETROPOLIS R.PAULO BARBOS",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 15846,
                    "nome": "PARNAMIRIM  - RN",
                    "municipio": "PARNAMIRIM"
                },
                {
                    "id": 15847,
                    "nome": "CATAGUASES-MG",
                    "municipio": "CATAGUASES"
                },
                {
                    "id": 15848,
                    "nome": "ITAPIPOCA (CE)",
                    "municipio": "ITAPIPOCA"
                },
                {
                    "id": 15849,
                    "nome": "ARARAS-SP",
                    "municipio": "ARARAS"
                },
                {
                    "id": 15850,
                    "nome": "AMERICANA-SP",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 15851,
                    "nome": "NOVA ESPERANCA - PR.",
                    "municipio": "NOVA ESPERANCA"
                },
                {
                    "id": 15852,
                    "nome": "QUATRO BARRAS - PR.",
                    "municipio": "QUATRO BARRAS"
                },
                {
                    "id": 15853,
                    "nome": "RIO BRANCO DO SUL - PR.",
                    "municipio": "RIO BRANCO DO SUL"
                },
                {
                    "id": 15854,
                    "nome": "SARANDI - PR.",
                    "municipio": "SARANDI"
                },
                {
                    "id": 15855,
                    "nome": "MAIRIPOR�-TERRA PRETA",
                    "municipio": "MAIRIPORA"
                },
                {
                    "id": 15856,
                    "nome": "TELEMACO BORBA - PR.",
                    "municipio": "TELEMACO BORBA"
                },
                {
                    "id": 15857,
                    "nome": "ITU-SP",
                    "municipio": "ITU"
                },
                {
                    "id": 15858,
                    "nome": "ALTAMIRA (PA)",
                    "municipio": "ALTAMIRA"
                },
                {
                    "id": 15859,
                    "nome": "SANTO ANDR�-AV S�O PAULO",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 15860,
                    "nome": "LIMEIRA-SP",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 15861,
                    "nome": "CASTANHAL - PIRAPORA",
                    "municipio": "CASTANHAL"
                },
                {
                    "id": 15862,
                    "nome": "RIO/PENINSULA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15863,
                    "nome": "PALMAS-AV TEOTONIO SEGURADO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 15864,
                    "nome": "VALINHOS-SP",
                    "municipio": "VALINHOS"
                },
                {
                    "id": 15865,
                    "nome": "PORTO ALEGRE/CEL.VICENTE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 15866,
                    "nome": "RIO/SAENS PENA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15867,
                    "nome": "RIO/VI�VA DANTAS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15868,
                    "nome": "RIO/AEROPORTO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15869,
                    "nome": "SAO PAULO/MARACATINS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15870,
                    "nome": "SAO PAULO/VILA MATILDE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15871,
                    "nome": "CUIABA-MT",
                    "municipio": "CUIABA"
                },
                {
                    "id": 15872,
                    "nome": "FLORIANOPOLIS-SC",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 15873,
                    "nome": "GOIANIA/AV ANHANGUERA-GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 15874,
                    "nome": "BRASILIA/SUDOESTE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 15875,
                    "nome": "GOIANIA/NOVA SUICA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 15876,
                    "nome": "F.SANTANA/AV. GET. VARGAS",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 15877,
                    "nome": "TERRA BOA - PR.",
                    "municipio": "TERRA BOA"
                },
                {
                    "id": 15878,
                    "nome": "MEDIANEIRA - PR.",
                    "municipio": "MEDIANEIRA"
                },
                {
                    "id": 15879,
                    "nome": "PALMEIRA - PR.",
                    "municipio": "PALMEIRA"
                },
                {
                    "id": 15880,
                    "nome": "PALOTINA - PR.",
                    "municipio": "PALOTINA"
                },
                {
                    "id": 15881,
                    "nome": "ILHEUS-BA",
                    "municipio": "ILHEUS"
                },
                {
                    "id": 15882,
                    "nome": "UMUARAMA/AV. BRASIL",
                    "municipio": "UMUARAMA"
                },
                {
                    "id": 15883,
                    "nome": "CARPINA (PE)",
                    "municipio": "CARPINA"
                },
                {
                    "id": 15884,
                    "nome": "GOIANA (PE)",
                    "municipio": "GOIANA"
                },
                {
                    "id": 15885,
                    "nome": "ITAJAI-SC",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 15886,
                    "nome": "SOROCABA/WANELL VILLE",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 15887,
                    "nome": "SP/VILA SABRINA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15888,
                    "nome": "SP/VILA CLEMENTINO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15889,
                    "nome": "ALMIRANTE TAMANDARE - PR.",
                    "municipio": "ALMIRANTE TAMANDARE"
                },
                {
                    "id": 15890,
                    "nome": "SP/BAIRRO SUMAREZINHO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15891,
                    "nome": "SP/AV. PEDROSO DE MORAES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15892,
                    "nome": "RIO/RECR.DOS BANDEIRANTES",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15893,
                    "nome": "SALVADOR/P.SECO PIRAJA-BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 15894,
                    "nome": "ARAUCARIA - PR.",
                    "municipio": "ARAUCARIA"
                },
                {
                    "id": 15895,
                    "nome": "NOVO HAMBURGO-RS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 15896,
                    "nome": "ASSAI - PR.",
                    "municipio": "ASSAI"
                },
                {
                    "id": 15897,
                    "nome": "SAO SEBASTIAO_- SP",
                    "municipio": "SAO SEBASTIAO"
                },
                {
                    "id": 15898,
                    "nome": "BH CIDADE NOVA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15899,
                    "nome": "BANDEIRANTES - PR.",
                    "municipio": "BANDEIRANTES"
                },
                {
                    "id": 15900,
                    "nome": "CAMPINAS UNIMART SHOPPING",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 15901,
                    "nome": "ASTORGA - PR.",
                    "municipio": "ASTORGA"
                },
                {
                    "id": 15902,
                    "nome": "BELEM/BOAVENTURA",
                    "municipio": "BELEM"
                },
                {
                    "id": 15903,
                    "nome": "PELOTAS-RS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 15904,
                    "nome": "SP/CHARLES MILLER",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15905,
                    "nome": "PINHAIS - PR",
                    "municipio": "PINHAIS"
                },
                {
                    "id": 15906,
                    "nome": "SP/PRACA AMADEU AMARAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15907,
                    "nome": "SAO LEOPOLDO-RS",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 15908,
                    "nome": "COLORADO - PR.",
                    "municipio": "COLORADO"
                },
                {
                    "id": 15909,
                    "nome": "IRATI - PR.",
                    "municipio": "IRATI"
                },
                {
                    "id": 15910,
                    "nome": "JANDAIA DO SUL - PR",
                    "municipio": "JANDAIA DO SUL"
                },
                {
                    "id": 15911,
                    "nome": "MARIALVA - PR.",
                    "municipio": "MARIALVA"
                },
                {
                    "id": 15912,
                    "nome": "SP/NOVA CANTAREIRA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15913,
                    "nome": "CANOAS-RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 15914,
                    "nome": "MARECHAL CAND.RONDON - PR",
                    "municipio": "MARECHAL CANDIDO RONDON"
                },
                {
                    "id": 15915,
                    "nome": "SP/AV.ENG.CAETANO ALVARES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15916,
                    "nome": "ARACAJU-SE",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 15917,
                    "nome": "RIO/DOWNTOWN",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15918,
                    "nome": "PRAIA GRANDE/CIDADE OCIAN",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 15919,
                    "nome": "BH SAO BENTO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15920,
                    "nome": "BH - BELVEDERE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15921,
                    "nome": "BARRETOS-SP",
                    "municipio": "BARRETOS"
                },
                {
                    "id": 15922,
                    "nome": "TRES RIOS-RJ",
                    "municipio": "TRES RIOS"
                },
                {
                    "id": 15923,
                    "nome": "PERUIBE - SP",
                    "municipio": "PERUIBE"
                },
                {
                    "id": 15924,
                    "nome": "NITEROI-ERNANI A.PEIXOTO",
                    "municipio": "NITEROI"
                },
                {
                    "id": 15925,
                    "nome": "SP/ALAMEDA FRANCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15926,
                    "nome": "ATIBAIA-SP",
                    "municipio": "ATIBAIA"
                },
                {
                    "id": 15927,
                    "nome": "S.PAULO/PCA.PANAMERICANA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15928,
                    "nome": "PERSONNALITE MOINHOS DE VENTO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 15929,
                    "nome": "PERSONNALIT� INDIAN�POLIS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15930,
                    "nome": "PERSONNALIT� ESTADOS UNIDOS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15931,
                    "nome": "PERSONNALIT� G�VEA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15932,
                    "nome": "SP/HENRIQUE SCHAUMANN",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15933,
                    "nome": "RIO/USINA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15934,
                    "nome": "BH SION",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15935,
                    "nome": "UBERLANDIA-BAIRRO MARTINS",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 15936,
                    "nome": "UBERABA-SAO BENEDITO",
                    "municipio": "UBERABA"
                },
                {
                    "id": 15937,
                    "nome": "SAO PAULO/JARDIM FRANCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15938,
                    "nome": "BH NOVA SUISSA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15939,
                    "nome": "BH TUPIS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15940,
                    "nome": "CONTAGEM/AV.J.FARIA ROCHA",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 15941,
                    "nome": "RIO/BAIRRO IPANEMA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15942,
                    "nome": "SANTA LUZIA/COMERCIO",
                    "municipio": "SANTA LUZIA"
                },
                {
                    "id": 15943,
                    "nome": "ITAUNA",
                    "municipio": "ITAUNA"
                },
                {
                    "id": 15944,
                    "nome": "PARA DE MINAS",
                    "municipio": "PARA DE MINAS"
                },
                {
                    "id": 15945,
                    "nome": "SANTA RITA DO SAPUCAI-MG",
                    "municipio": "SANTA RITA DO SAPUCAI"
                },
                {
                    "id": 15946,
                    "nome": "JACUTINGA-MG",
                    "municipio": "JACUTINGA"
                },
                {
                    "id": 15947,
                    "nome": "MAR DA ESPANHA-MG",
                    "municipio": "MAR DE ESPANHA"
                },
                {
                    "id": 15948,
                    "nome": "SOROCABA/ALEM PONTE",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 15949,
                    "nome": "RIO/ABOLICAO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15950,
                    "nome": "BH GUTIERREZ",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15951,
                    "nome": "BH CARLOS PRATES",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15952,
                    "nome": "CARANGOLA - MG",
                    "municipio": "CARANGOLA"
                },
                {
                    "id": 15953,
                    "nome": "CORONEL FABRICIANO - MG.",
                    "municipio": "CORONEL FABRICIANO"
                },
                {
                    "id": 15954,
                    "nome": "JOAO MONLEVADE - MG.",
                    "municipio": "JOAO MONLEVADE"
                },
                {
                    "id": 15955,
                    "nome": "RIO/ESTACAO RIACHUELO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15956,
                    "nome": "OLIVEIRA - MG.",
                    "municipio": "OLIVEIRA"
                },
                {
                    "id": 15957,
                    "nome": "MALACACHETA - MG.",
                    "municipio": "MALACACHETA"
                },
                {
                    "id": 15958,
                    "nome": "MACHADO_ - MG",
                    "municipio": "MACHADO"
                },
                {
                    "id": 15959,
                    "nome": "LEOPOLDINA - MG.",
                    "municipio": "LEOPOLDINA"
                },
                {
                    "id": 15960,
                    "nome": "OURO FINO - MG.",
                    "municipio": "OURO FINO"
                },
                {
                    "id": 15961,
                    "nome": "RIBEIRAO DAS NEVES - MG.",
                    "municipio": "RIBEIRAO DAS NEVES"
                },
                {
                    "id": 15962,
                    "nome": "VICOSA - MG.",
                    "municipio": "VICOSA"
                },
                {
                    "id": 15963,
                    "nome": "BONFIM - MG.",
                    "municipio": "BONFIM"
                },
                {
                    "id": 15964,
                    "nome": "RIO/SHOPPING MILLENIUM",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15965,
                    "nome": "RIO/R.CAPITAO FELIX",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15966,
                    "nome": "NOVA LIMA   MG",
                    "municipio": "NOVA LIMA"
                },
                {
                    "id": 15967,
                    "nome": "SAO GOTARDO - MG.",
                    "municipio": "SAO GOTARDO"
                },
                {
                    "id": 15968,
                    "nome": "Banco Ita� - Belo Horizonte",
                    "municipio": ""
                },
                {
                    "id": 15969,
                    "nome": "BH PLANALTO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15970,
                    "nome": "CURVELO - MG.",
                    "municipio": "CURVELO"
                },
                {
                    "id": 15971,
                    "nome": "CAMPESTRE - MG.",
                    "municipio": "CAMPESTRE"
                },
                {
                    "id": 15972,
                    "nome": "ITAPECERICA - MG.",
                    "municipio": "ITAPECERICA"
                },
                {
                    "id": 15973,
                    "nome": "RIO/COPACABANA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15974,
                    "nome": "OURO BRANCO MG",
                    "municipio": "OURO BRANCO"
                },
                {
                    "id": 15975,
                    "nome": "POCO FUNDO - MG.",
                    "municipio": "POCO FUNDO"
                },
                {
                    "id": 15976,
                    "nome": "CAXAMBU - MG.",
                    "municipio": "CAXAMBU"
                },
                {
                    "id": 15977,
                    "nome": "SANTOS DUMONT - MG.",
                    "municipio": "SANTOS DUMONT"
                },
                {
                    "id": 15978,
                    "nome": "CAETE - MG.",
                    "municipio": "CAETE"
                },
                {
                    "id": 15979,
                    "nome": "ALTO RIO DOCE - MG.",
                    "municipio": "ALTO RIO DOCE"
                },
                {
                    "id": 15980,
                    "nome": "CARMO DO RIO CLARO - MG.",
                    "municipio": "CARMO DO RIO CLARO"
                },
                {
                    "id": 15981,
                    "nome": "DIAMANTINA   MG",
                    "municipio": "DIAMANTINA"
                },
                {
                    "id": 15982,
                    "nome": "FORMIGA - MG.",
                    "municipio": "FORMIGA"
                },
                {
                    "id": 15983,
                    "nome": "RIO/MEIER",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15984,
                    "nome": "LAGOA DA PRATA - MG.",
                    "municipio": "LAGOA DA PRATA"
                },
                {
                    "id": 15985,
                    "nome": "MANHUACU - MG.",
                    "municipio": "MANHUACU"
                },
                {
                    "id": 15986,
                    "nome": "PERDOES - MG.",
                    "municipio": "PERDOES"
                },
                {
                    "id": 15987,
                    "nome": "CONTAGEM/TIRADENTES",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 15988,
                    "nome": "CAMPO BELO - MG.",
                    "municipio": "CAMPO BELO"
                },
                {
                    "id": 15989,
                    "nome": "MOGI-MIRIM-SP",
                    "municipio": "MOGI-MIRIM"
                },
                {
                    "id": 15990,
                    "nome": "PAB NORSUL",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 15991,
                    "nome": "SP/AV.JUSCEL. KUBITSCHEK",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 15992,
                    "nome": "BH SILVIANO BRANDAO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15993,
                    "nome": "BH ABILIO MACHADO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 15994,
                    "nome": "ALEM PARAIBA - MG.",
                    "municipio": "ALEM PARAIBA"
                },
                {
                    "id": 15995,
                    "nome": "MONTE CARMELO - MG",
                    "municipio": "MONTE CARMELO"
                },
                {
                    "id": 15996,
                    "nome": "PEDRO LEOPOLDO MG",
                    "municipio": "PEDRO LEOPOLDO"
                },
                {
                    "id": 15997,
                    "nome": "VISCONDE DO RIO BRANCO-MG",
                    "municipio": "VISCONDE DO RIO BRANCO"
                },
                {
                    "id": 15998,
                    "nome": "ITABIRITO - MG",
                    "municipio": "ITABIRITO"
                },
                {
                    "id": 15999,
                    "nome": "IPATINGA/CENTRO",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 16000,
                    "nome": "RIO/LARGO HUMAITA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16001,
                    "nome": "JANAUBA - MG.",
                    "municipio": "JANAUBA"
                },
                {
                    "id": 16002,
                    "nome": "PARACATU - MG.",
                    "municipio": "PARACATU"
                },
                {
                    "id": 16003,
                    "nome": "BOA ESPERANCA - MG.",
                    "municipio": "BOA ESPERANCA"
                },
                {
                    "id": 16004,
                    "nome": "VESPASIANO MG",
                    "municipio": "VESPASIANO"
                },
                {
                    "id": 16005,
                    "nome": "BH AV. GETULIO VARGAS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16006,
                    "nome": "ARCOS - MG.",
                    "municipio": "ARCOS"
                },
                {
                    "id": 16007,
                    "nome": "BOM DESPACHO - MG.",
                    "municipio": "BOM DESPACHO"
                },
                {
                    "id": 16008,
                    "nome": "CONTAGEM/CEASA",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 16009,
                    "nome": "GUANHAES - MG.",
                    "municipio": "GUANHAES"
                },
                {
                    "id": 16010,
                    "nome": "JANUARIA - MG.",
                    "municipio": "JANUARIA"
                },
                {
                    "id": 16011,
                    "nome": "PITANGUI - MG.",
                    "municipio": "PITANGUI"
                },
                {
                    "id": 16012,
                    "nome": "PIUI - MG.",
                    "municipio": "PIUMHI"
                },
                {
                    "id": 16013,
                    "nome": "SAO PAULO/VILA FUNCHAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16014,
                    "nome": "NOVA IGUACU TOP SHOPPING",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 16015,
                    "nome": "POUSO ALEGRE/CENTRO",
                    "municipio": "POUSO ALEGRE"
                },
                {
                    "id": 16016,
                    "nome": "PASSOS/MONSENHOR",
                    "municipio": "PASSOS"
                },
                {
                    "id": 16017,
                    "nome": "SETE LAGOAS/CENTRO",
                    "municipio": "SETE LAGOAS"
                },
                {
                    "id": 16018,
                    "nome": "RIO POMBA - MG.",
                    "municipio": "RIO POMBA"
                },
                {
                    "id": 16019,
                    "nome": "RIO-BAIRRO TAQUARA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16020,
                    "nome": "SACRAMENTO - MG",
                    "municipio": "SACRAMENTO"
                },
                {
                    "id": 16021,
                    "nome": "IBIRITE - MG.",
                    "municipio": "IBIRITE"
                },
                {
                    "id": 16022,
                    "nome": "Ag�ncia 31450",
                    "municipio": ""
                },
                {
                    "id": 16023,
                    "nome": "ABAETE - MG.",
                    "municipio": "ABAETE"
                },
                {
                    "id": 16024,
                    "nome": "BELO ORIENTE - MG.",
                    "municipio": "BELO ORIENTE"
                },
                {
                    "id": 16025,
                    "nome": "MARIANA - MG.",
                    "municipio": "MARIANA"
                },
                {
                    "id": 16026,
                    "nome": "GUARULHOS/BAIRRO MACEDO",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 16027,
                    "nome": "MATOZINHOS - MG.",
                    "municipio": "MATOZINHOS"
                },
                {
                    "id": 16028,
                    "nome": "CONGONHAS - MG.",
                    "municipio": "CONGONHAS"
                },
                {
                    "id": 16029,
                    "nome": "PIRAPORA - MG.",
                    "municipio": "PIRAPORA"
                },
                {
                    "id": 16030,
                    "nome": "BELO HORIZONTE - SANTO AGOSTINHO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16031,
                    "nome": "DIVINOPOLIS/RUA GOIAS",
                    "municipio": "DIVINOPOLIS"
                },
                {
                    "id": 16032,
                    "nome": "M.CLAROS/RUA DR. SANTOS",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 16033,
                    "nome": "BH CAPITAL",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16034,
                    "nome": "NOVA SERRANA - MG.",
                    "municipio": "NOVA SERRANA"
                },
                {
                    "id": 16035,
                    "nome": "TOLEDO-PR",
                    "municipio": "TOLEDO"
                },
                {
                    "id": 16036,
                    "nome": "SAO PAULO/AV. NAZARE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16037,
                    "nome": "CARATINGA - MG.",
                    "municipio": "CARATINGA"
                },
                {
                    "id": 16038,
                    "nome": "J. DE FORA/METROPOLITANA",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 16039,
                    "nome": "UBERLANDIA/CENTRO",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 16040,
                    "nome": "SP/AV. VICENTE RAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16041,
                    "nome": "317",
                    "municipio": ""
                },
                {
                    "id": 16042,
                    "nome": "SAO PAULO/DR. ARNALDO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16043,
                    "nome": "J.DE FORA/SANTA TEREZINHA",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 16044,
                    "nome": "RECIFE/AGAMENON MAGALHAES",
                    "municipio": "RECIFE"
                },
                {
                    "id": 16045,
                    "nome": "BH PCA SETE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16046,
                    "nome": "VARGINHA/CENTRO",
                    "municipio": "VARGINHA"
                },
                {
                    "id": 16047,
                    "nome": "BH ABRAHAO CARAM",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16048,
                    "nome": "CAMPO MOURAO-PR",
                    "municipio": "CAMPO MOURAO"
                },
                {
                    "id": 16049,
                    "nome": "GOV.VAL./AV.MINAS GERAIS",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 16050,
                    "nome": "BELEM/AV. PRES. VARGAS",
                    "municipio": "BELEM"
                },
                {
                    "id": 16051,
                    "nome": "SP/AV. ROLAND GARROS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16052,
                    "nome": "BUZIOS (RJ)",
                    "municipio": "ARMACAO DOS BUZIOS"
                },
                {
                    "id": 16053,
                    "nome": "ENTRE RIOS DE MINAS - MG",
                    "municipio": "ENTRE RIOS DE MINAS"
                },
                {
                    "id": 16054,
                    "nome": "PASSA QUATRO - MG.",
                    "municipio": "PASSA QUATRO"
                },
                {
                    "id": 16055,
                    "nome": "BOCAIUVA - MG",
                    "municipio": "BOCAIUVA"
                },
                {
                    "id": 16056,
                    "nome": "PASSO FUNDO-RS",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 16057,
                    "nome": "CLAUDIO - MG.",
                    "municipio": "CLAUDIO"
                },
                {
                    "id": 16058,
                    "nome": "TOMBOS - MG.",
                    "municipio": "TOMBOS"
                },
                {
                    "id": 16059,
                    "nome": "BAMBUI - MG.",
                    "municipio": "BAMBUI"
                },
                {
                    "id": 16060,
                    "nome": "LAGOA SANTA - MG.",
                    "municipio": "LAGOA SANTA"
                },
                {
                    "id": 16061,
                    "nome": "SAO DOMINGOS DO PRATA-MG",
                    "municipio": "SAO DOMINGOS DO PRATA"
                },
                {
                    "id": 16062,
                    "nome": "TIRADENTES - MG.",
                    "municipio": "TIRADENTES"
                },
                {
                    "id": 16063,
                    "nome": "SAO J.CAMPOS/JD. SATELITE",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 16064,
                    "nome": "RIO CARIOCA SHOPPING",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16065,
                    "nome": "RESENDE-RJ",
                    "municipio": "RESENDE"
                },
                {
                    "id": 16066,
                    "nome": "ITURAMA - MG",
                    "municipio": "ITURAMA"
                },
                {
                    "id": 16067,
                    "nome": "SAO GONCALO DO PARA - MG.",
                    "municipio": "SAO GONCALO DO PARA"
                },
                {
                    "id": 16068,
                    "nome": "RESPLENDOR - MG.",
                    "municipio": "RESPLENDOR"
                },
                {
                    "id": 16069,
                    "nome": "CARMO DA CACHOEIRA - MG.",
                    "municipio": "CARMO DA CACHOEIRA"
                },
                {
                    "id": 16070,
                    "nome": "BARAO DE COCAIS - MG.",
                    "municipio": "BARAO DE COCAIS"
                },
                {
                    "id": 16071,
                    "nome": "LUZ - MG.",
                    "municipio": "LUZ"
                },
                {
                    "id": 16072,
                    "nome": "PEDRA AZUL - MG.",
                    "municipio": "PEDRA AZUL"
                },
                {
                    "id": 16073,
                    "nome": "UBERABA-MG",
                    "municipio": "UBERABA"
                },
                {
                    "id": 16074,
                    "nome": "AIMORES - MG",
                    "municipio": "AIMORES"
                },
                {
                    "id": 16075,
                    "nome": "Ag�ncia 3211",
                    "municipio": ""
                },
                {
                    "id": 16076,
                    "nome": "RIO/OFFICE PARK",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16077,
                    "nome": "BRASILIA/CONJ. NACIONAL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 16078,
                    "nome": "SALVADOR/TANCREDO NEVES",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 16079,
                    "nome": "SALTO DO LONTRA - PR.",
                    "municipio": "SALTO DO LONTRA"
                },
                {
                    "id": 16080,
                    "nome": "PALMITAL - PR.",
                    "municipio": "PALMITAL"
                },
                {
                    "id": 16081,
                    "nome": "SALVADOR/IMBUI",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 16082,
                    "nome": "COTIA/GRANJA VIANA",
                    "municipio": "COTIA"
                },
                {
                    "id": 16083,
                    "nome": "RIO VERDE DE GOIAS-GO",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 16084,
                    "nome": "RIO GRANDE-RS",
                    "municipio": "RIO GRANDE"
                },
                {
                    "id": 16085,
                    "nome": "RIO/CENTRO DA BARRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16086,
                    "nome": "URUGUAIANA-RS",
                    "municipio": "URUGUAIANA"
                },
                {
                    "id": 16087,
                    "nome": "SALVADOR/RIO VERMELHO",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 16088,
                    "nome": "TABOAO DA SERRA/CENTRO",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 16089,
                    "nome": "CARAZINHO-RS",
                    "municipio": "CARAZINHO"
                },
                {
                    "id": 16090,
                    "nome": "CHAPECO-SC",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 16091,
                    "nome": "Ag�ncia 3276",
                    "municipio": ""
                },
                {
                    "id": 16092,
                    "nome": "PORTO ALEGRE/FARRAPOS-RS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 16093,
                    "nome": "329",
                    "municipio": ""
                },
                {
                    "id": 16094,
                    "nome": "Ag�ncia 3294",
                    "municipio": ""
                },
                {
                    "id": 16095,
                    "nome": "JAGUARIUNA-SP",
                    "municipio": "JAGUARIUNA"
                },
                {
                    "id": 16096,
                    "nome": "SANTA MARIA-RS",
                    "municipio": "SANTA MARIA"
                },
                {
                    "id": 16097,
                    "nome": "RIB.PRETO/AV.9 DE JULHO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 16098,
                    "nome": "CASCAVEL/CARLOS GOMES",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 16099,
                    "nome": "SAO PAULO/VERGUEIRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16100,
                    "nome": "BH/RUA PADRE ROLIM",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16101,
                    "nome": "SALVADOR/PITUBA-BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 16102,
                    "nome": "MARINGA/JARDIM ALVORADA",
                    "municipio": "MARINGA"
                },
                {
                    "id": 16103,
                    "nome": "CRUZ ALTA-RS",
                    "municipio": "CRUZ ALTA"
                },
                {
                    "id": 16104,
                    "nome": "GUARUJA/ENSEADA",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 16105,
                    "nome": "COLATINA-ES",
                    "municipio": "COLATINA"
                },
                {
                    "id": 16106,
                    "nome": "VOLTA REDONDA-RJ",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 16107,
                    "nome": "CURITIBA/SANTA FELICIDADE",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16108,
                    "nome": "SANTA BARBARA D'OESTE-SP",
                    "municipio": "SANTA BARBARA D'OESTE"
                },
                {
                    "id": 16109,
                    "nome": "SANTO ANGELO-RS",
                    "municipio": "SANTO ANGELO"
                },
                {
                    "id": 16110,
                    "nome": "SANTO ANT. DA PLATINA-PR.",
                    "municipio": "SANTO ANTONIO DA PLATINA"
                },
                {
                    "id": 16111,
                    "nome": "SANTA ROSA-RS",
                    "municipio": "SANTA ROSA"
                },
                {
                    "id": 16112,
                    "nome": "ERECHIM-RS",
                    "municipio": "ERECHIM"
                },
                {
                    "id": 16113,
                    "nome": "SAO BORJA-RS",
                    "municipio": "SAO BORJA"
                },
                {
                    "id": 16114,
                    "nome": "TERESINA-PI",
                    "municipio": "TERESINA"
                },
                {
                    "id": 16115,
                    "nome": "SAO GABRIEL-RS",
                    "municipio": "SAO GABRIEL"
                },
                {
                    "id": 16116,
                    "nome": "IJUI-RS",
                    "municipio": "IJUI"
                },
                {
                    "id": 16117,
                    "nome": "CENTEN�RIO DO SUL - PR.",
                    "municipio": "CENTENARIO DO SUL"
                },
                {
                    "id": 16118,
                    "nome": "CARL�POLIS - PR.",
                    "municipio": "CARLOPOLIS"
                },
                {
                    "id": 16119,
                    "nome": "S.PAULO/JOAQUIM FLORIANO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16120,
                    "nome": "CAP.LE�NIDAS MARQUES -PR.",
                    "municipio": "CAPITAO LEONIDAS MARQUES"
                },
                {
                    "id": 16121,
                    "nome": "JUIZ DE FORA-MG",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 16122,
                    "nome": "ALPINOPOLIS-MG",
                    "municipio": "ALPINOPOLIS"
                },
                {
                    "id": 16123,
                    "nome": "S.PAULO/N.SENHORA DO O",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16124,
                    "nome": "S.PAULO/VOLUNT.DA PATRIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16125,
                    "nome": "RIO/BAIRRO FATIMA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16126,
                    "nome": "JAGUAPIT� - PR.",
                    "municipio": "JAGUAPITA"
                },
                {
                    "id": 16127,
                    "nome": "RIO/REALENGO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16128,
                    "nome": "SAO PAULO/R.DA CONSOLACAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16129,
                    "nome": "S.PAULO/AV.SANTA CATARINA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16130,
                    "nome": "RECIFE/CASA DE CULTURA-PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 16131,
                    "nome": "BETIM-JD DAS ALTEROSAS",
                    "municipio": "BETIM"
                },
                {
                    "id": 16132,
                    "nome": "BOA VISTA",
                    "municipio": ""
                },
                {
                    "id": 16133,
                    "nome": "RECIFE/1O. DE MARCO-PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 16134,
                    "nome": "PITANGA - PR.",
                    "municipio": "PITANGA"
                },
                {
                    "id": 16135,
                    "nome": "RECIFE/BAIRRO BOA VIAGEM",
                    "municipio": "RECIFE"
                },
                {
                    "id": 16136,
                    "nome": "SAO LUIS-MA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 16137,
                    "nome": "FORTALEZA-CE",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 16138,
                    "nome": "SAO PAULO/TRIANON",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16139,
                    "nome": "SAO PAULO/EST.SANTA CRUZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16140,
                    "nome": "MACEIO - AL",
                    "municipio": "MACEIO"
                },
                {
                    "id": 16141,
                    "nome": "MATEL�NDIA - PR.",
                    "municipio": "MATELANDIA"
                },
                {
                    "id": 16142,
                    "nome": "SAO PAULO/SANTA IFIGENIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16143,
                    "nome": "RIO/ILHA DO GOVERNADOR",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16144,
                    "nome": "CURITIBA/ANITA GARIBALDI",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16145,
                    "nome": "CURITIBA/AUGUSTO STRESSER",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16146,
                    "nome": "CURITIBA/AV. DAS TORRES",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16147,
                    "nome": "CURITIBA/CARMO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16148,
                    "nome": "CURITIBA/SAO BRAZ",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16149,
                    "nome": "COLOMBO - PR",
                    "municipio": "COLOMBO"
                },
                {
                    "id": 16150,
                    "nome": "JACAREZINHO - PR.",
                    "municipio": "JACAREZINHO"
                },
                {
                    "id": 16151,
                    "nome": "MARINGA/AV. MAUA",
                    "municipio": "MARINGA"
                },
                {
                    "id": 16152,
                    "nome": "PALMAS - PR",
                    "municipio": "PALMAS"
                },
                {
                    "id": 16153,
                    "nome": "PIRAQUARA - PR.",
                    "municipio": "PIRAQUARA"
                },
                {
                    "id": 16154,
                    "nome": "P. GROSSA/BALDUINO TAQUES",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 16155,
                    "nome": "SAO MATEUS DO SUL - PR.",
                    "municipio": "SAO MATEUS DO SUL"
                },
                {
                    "id": 16156,
                    "nome": "TOL./AV. PARIGOT DE SOUZA",
                    "municipio": "TOLEDO"
                },
                {
                    "id": 16157,
                    "nome": "JOAO PESSOA-PB",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 16158,
                    "nome": "CURITIBA/AV. AGUA VERDE",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16159,
                    "nome": "CURITIBA/TARUM�",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16160,
                    "nome": "APUCARANA/AV. CURITIBA",
                    "municipio": "APUCARANA"
                },
                {
                    "id": 16161,
                    "nome": "ARAPOTI - PR.",
                    "municipio": "ARAPOTI"
                },
                {
                    "id": 16162,
                    "nome": "ASSIS CHATEAUBRIAND - PR.",
                    "municipio": "ASSIS CHATEAUBRIAND"
                },
                {
                    "id": 16163,
                    "nome": "CASCAVEL/S�O CRISTOV�O",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 16164,
                    "nome": "CASTRO - PR.",
                    "municipio": "CASTRO"
                },
                {
                    "id": 16165,
                    "nome": "DOIS VIZINHOS-PR",
                    "municipio": "DOIS VIZINHOS"
                },
                {
                    "id": 16166,
                    "nome": "FAZENDA RIO GRANDE - PR.",
                    "municipio": "FAZENDA RIO GRANDE"
                },
                {
                    "id": 16167,
                    "nome": "GOIOERE - PR.",
                    "municipio": "GOIOERE"
                },
                {
                    "id": 16168,
                    "nome": "GUAIRA - PR.",
                    "municipio": "GUAIRA"
                },
                {
                    "id": 16169,
                    "nome": "GUARATUBA - PR.",
                    "municipio": "GUARATUBA"
                },
                {
                    "id": 16170,
                    "nome": "IBIPORA - PR.",
                    "municipio": "IBIPORA"
                },
                {
                    "id": 16171,
                    "nome": "IVAIPORA - PR.",
                    "municipio": "IVAIPORA"
                },
                {
                    "id": 16172,
                    "nome": "JAGUARIAIVA - PR.",
                    "municipio": "JAGUARIAIVA"
                },
                {
                    "id": 16173,
                    "nome": "LAPA - PR",
                    "municipio": "LAPA"
                },
                {
                    "id": 16174,
                    "nome": "MARING�/VILA OPER�RIA",
                    "municipio": "MARINGA"
                },
                {
                    "id": 16175,
                    "nome": "CAMPINA GRANDE-PB",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 16176,
                    "nome": "PERSONNALITE CENTRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16177,
                    "nome": "PERSONNALITE PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16178,
                    "nome": "PERSONNALITE BRAZ LEME",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16179,
                    "nome": "PERSONNALITE SANTOS",
                    "municipio": "SANTOS"
                },
                {
                    "id": 16180,
                    "nome": "PERSONNALITE/CEIC",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16181,
                    "nome": "PERSONNALIT� BERRINI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16182,
                    "nome": "BARBOSA FERRAZ - PR.",
                    "municipio": "BARBOSA FERRAZ"
                },
                {
                    "id": 16183,
                    "nome": "S.PAULO/R.TOBIAS BARRETO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16184,
                    "nome": "PERSONNALITE ALTO DA LAPA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16185,
                    "nome": "PERSONNAL. AN�LIA FRANCO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16186,
                    "nome": "PERSONNALITE JD. OCEANICO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16187,
                    "nome": "PERSONNALIT� GIOVANNI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16188,
                    "nome": "PERSONNALITE PACAEMBU",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16189,
                    "nome": "PERSONNALITE MOEMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16190,
                    "nome": "PERSONNALITE HIGIENOPOLIS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16191,
                    "nome": "PERSONNALIT� PRA�A PAN",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16192,
                    "nome": "PERSONNAL. FLORIAN�POLIS",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 16193,
                    "nome": "CAMBARA - PR.",
                    "municipio": "CAMBARA"
                },
                {
                    "id": 16194,
                    "nome": "PERSONNALITE REPUBLICA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16195,
                    "nome": "CARAMBEI - PR.",
                    "municipio": "CARAMBEI"
                },
                {
                    "id": 16196,
                    "nome": "PERSONNALITE FARIA LIMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16197,
                    "nome": "CHOPINZINHO - PR.",
                    "municipio": "CHOPINZINHO"
                },
                {
                    "id": 16198,
                    "nome": "PERSONNALITE CENTRO EMPRESARIAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16199,
                    "nome": "PERSONNALITE MOOCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16200,
                    "nome": "JESUITAS - PR.",
                    "municipio": "JESUITAS"
                },
                {
                    "id": 16201,
                    "nome": "LONDRINA/OURO VERDE",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 16202,
                    "nome": "LARANJEIRAS DO SUL - PR",
                    "municipio": "LARANJEIRAS DO SUL"
                },
                {
                    "id": 16203,
                    "nome": "SANTA HELENA - PR.",
                    "municipio": "SANTA HELENA"
                },
                {
                    "id": 16204,
                    "nome": "IBAITI - PR.",
                    "municipio": "IBAITI"
                },
                {
                    "id": 16205,
                    "nome": "LOANDA - PR",
                    "municipio": "LOANDA"
                },
                {
                    "id": 16206,
                    "nome": "ORTIGUEIRA - PR.",
                    "municipio": "ORTIGUEIRA"
                },
                {
                    "id": 16207,
                    "nome": "PERSONNALITE - CID.JARDIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16208,
                    "nome": "PIEN - PR.",
                    "municipio": "PIEN"
                },
                {
                    "id": 16209,
                    "nome": "PIRAI DO SUL - PR.",
                    "municipio": "PIRAI DO SUL"
                },
                {
                    "id": 16210,
                    "nome": "SAO PAULO/PAES DE BARROS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16211,
                    "nome": "PLANALTO - PR.",
                    "municipio": "PLANALTO"
                },
                {
                    "id": 16212,
                    "nome": "PORECATU - PR.",
                    "municipio": "PORECATU"
                },
                {
                    "id": 16213,
                    "nome": "SAO MIGUEL DO IGUACU - PR",
                    "municipio": "SAO MIGUEL DO IGUACU"
                },
                {
                    "id": 16214,
                    "nome": "PERSONNALITE SANTO ANDRE",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 16215,
                    "nome": "PERSONNALIT� SANTO ANDR� JARDIM",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 16216,
                    "nome": "PARANAGUA/FARIA SOBRINHO",
                    "municipio": "PARANAGUA"
                },
                {
                    "id": 16217,
                    "nome": "ANDIRA - PR.",
                    "municipio": "ANDIRA"
                },
                {
                    "id": 16218,
                    "nome": "PERS/JUSCELINO KUBITSCHEK",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16219,
                    "nome": "PERSONNALITE SAO J.CAMPOS",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 16220,
                    "nome": "CAPANEMA - PR.",
                    "municipio": "CAPANEMA"
                },
                {
                    "id": 16221,
                    "nome": "CORONEL VIVIDA - PR.",
                    "municipio": "CORONEL VIVIDA"
                },
                {
                    "id": 16222,
                    "nome": "MORRETES - PR.",
                    "municipio": "MORRETES"
                },
                {
                    "id": 16223,
                    "nome": "PERSONNALITE ALPHAVILLE",
                    "municipio": "BARUERI"
                },
                {
                    "id": 16224,
                    "nome": "PAICANDU - PR.",
                    "municipio": "PAICANDU"
                },
                {
                    "id": 16225,
                    "nome": "PERSONNALITE S.B.DO CAMPO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 16226,
                    "nome": "PINHAO - PR.",
                    "municipio": "PINHAO"
                },
                {
                    "id": 16227,
                    "nome": "PERSONNALITE DIADEMA",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 16228,
                    "nome": "SAO PAULO/PARI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16229,
                    "nome": "BH VENDA NOVA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16230,
                    "nome": "PERSONNALITE GUARULHOS",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 16231,
                    "nome": "CURITIBA/CEASA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16232,
                    "nome": "CURITIBA/ERASTO GAERTNER",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16233,
                    "nome": "CURITIBA/MANOEL RIBAS",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16234,
                    "nome": "PERSONNALITE CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 16235,
                    "nome": "PERSONNALIT� RIBEIR�O PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 16236,
                    "nome": "PERSONNALITE SOROCABA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 16237,
                    "nome": "NATAL-RN",
                    "municipio": "NATAL"
                },
                {
                    "id": 16238,
                    "nome": "PERSONNALITE RIO BRANCO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16239,
                    "nome": "CURITIBA/SITIO CERCADO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16240,
                    "nome": "PRUDENTOPOLIS - PR.",
                    "municipio": "PRUDENTOPOLIS"
                },
                {
                    "id": 16241,
                    "nome": "UBIRAT� - PR.",
                    "municipio": "UBIRATA"
                },
                {
                    "id": 16242,
                    "nome": "WENCESLAU BRAZ - PR.",
                    "municipio": "WENCESLAU BRAZ"
                },
                {
                    "id": 16243,
                    "nome": "JUATUBA - MG",
                    "municipio": "JUATUBA"
                },
                {
                    "id": 16244,
                    "nome": "FORTALEZA/EDSON QUEIROZ",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 16245,
                    "nome": "PERSONNALIT� MANGABEIRAS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16246,
                    "nome": "PERSONNALITE BOTAFOGO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16247,
                    "nome": "PERSONNALITE BARRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16248,
                    "nome": "PERSONNALIT� BELVEDERE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16249,
                    "nome": "CURITIBA/REP�B. ARGENTINA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16250,
                    "nome": "CURITIBA/COMENDADOR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16251,
                    "nome": "MARING�/AV. PARAN�",
                    "municipio": "MARINGA"
                },
                {
                    "id": 16252,
                    "nome": "CASCAVEL/PCA WILSON JOFRE",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 16253,
                    "nome": "FOZ DO IGUACU/CENTRO",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 16254,
                    "nome": "SAO PAULO/HORTO FLORESTAL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16255,
                    "nome": "PERSONNALITE PORTO ALEGRE",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 16256,
                    "nome": "CAFEL�NDIA - PR.",
                    "municipio": "CAFELANDIA"
                },
                {
                    "id": 16257,
                    "nome": "SANTA TEREZ.DE ITAIPU-PR.",
                    "municipio": "SANTA TEREZINHA DE ITAIPU"
                },
                {
                    "id": 16258,
                    "nome": "PARA�SO DO NORTE - PR.",
                    "municipio": "PARAISO DO NORTE"
                },
                {
                    "id": 16259,
                    "nome": "RONDON - PR.",
                    "municipio": "RONDON"
                },
                {
                    "id": 16260,
                    "nome": "TERRA ROXA - PR.",
                    "municipio": "TERRA ROXA"
                },
                {
                    "id": 16261,
                    "nome": "AMP�RE - PR.",
                    "municipio": "AMPERE"
                },
                {
                    "id": 16262,
                    "nome": "ALT�NIA - PR.",
                    "municipio": "ALTONIA"
                },
                {
                    "id": 16263,
                    "nome": "IMBITUVA - PR.",
                    "municipio": "IMBITUVA"
                },
                {
                    "id": 16264,
                    "nome": "PERSONNALITE/COPACABANA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16265,
                    "nome": "SERTAN�POLIS - PR.",
                    "municipio": "SERTANOPOLIS"
                },
                {
                    "id": 16266,
                    "nome": "SAO JOAO DO IVAI - PR.",
                    "municipio": "SAO JOAO DO IVAI"
                },
                {
                    "id": 16267,
                    "nome": "RESERVA - PR.",
                    "municipio": "RESERVA"
                },
                {
                    "id": 16268,
                    "nome": "CORB�LIA - PR.",
                    "municipio": "CORBELIA"
                },
                {
                    "id": 16269,
                    "nome": "GUARAPUAVA - PR.",
                    "municipio": "GUARAPUAVA"
                },
                {
                    "id": 16270,
                    "nome": "SAO JOSE DOS PINHAIS - PR",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 16271,
                    "nome": "UNIAO DA VIT�RIA - PR.",
                    "municipio": "UNIAO DA VITORIA"
                },
                {
                    "id": 16272,
                    "nome": "CONTENDA - PR.",
                    "municipio": "CONTENDA"
                },
                {
                    "id": 16273,
                    "nome": "GUARANIAC� - PR.",
                    "municipio": "GUARANIACU"
                },
                {
                    "id": 16274,
                    "nome": "URA� - PR",
                    "municipio": "URAI"
                },
                {
                    "id": 16275,
                    "nome": "SANTA MARIANA - PR.",
                    "municipio": "SANTA MARIANA"
                },
                {
                    "id": 16276,
                    "nome": "BITURUNA - PR.",
                    "municipio": "BITURUNA"
                },
                {
                    "id": 16277,
                    "nome": "RIO/FREGUESIA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16278,
                    "nome": "PERSONNALITE/IPANEMA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16279,
                    "nome": "QUEDAS DO IGUACU   PR",
                    "municipio": "QUEDAS DO IGUACU"
                },
                {
                    "id": 16280,
                    "nome": "BELA VISTA DO PARA�SO -PR",
                    "municipio": "BELA VISTA DO PARAISO"
                },
                {
                    "id": 16281,
                    "nome": "CAMPINA DA LAGOA - PR.",
                    "municipio": "CAMPINA DA LAGOA"
                },
                {
                    "id": 16282,
                    "nome": "PERSONNALITE CURITIBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16283,
                    "nome": "IPOR� - PR.",
                    "municipio": "IPORA"
                },
                {
                    "id": 16284,
                    "nome": "RIBEIR�O DO PINHAL - PR.",
                    "municipio": "RIBEIRAO DO PINHAL"
                },
                {
                    "id": 16285,
                    "nome": "CRUZEIRO DO OESTE - PR.",
                    "municipio": "CRUZEIRO DO OESTE"
                },
                {
                    "id": 16286,
                    "nome": "ANTONINA - PR.",
                    "municipio": "ANTONINA"
                },
                {
                    "id": 16287,
                    "nome": "CRUZ MACHADO - PR.",
                    "municipio": "CRUZ MACHADO"
                },
                {
                    "id": 16288,
                    "nome": "ARARUNA - PR.",
                    "municipio": "ARARUNA"
                },
                {
                    "id": 16289,
                    "nome": "PRIMEIRO DE MAIO - PR.",
                    "municipio": "PRIMEIRO DE MAIO"
                },
                {
                    "id": 16290,
                    "nome": "PERSONNALITE SALVADOR",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 16291,
                    "nome": "RIO/BOTAFOGO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16292,
                    "nome": "CURITIBA/MURICI",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16293,
                    "nome": "CURITIBA/CENTRO C�VICO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16294,
                    "nome": "LONDRINA/AV. TIRADENTES",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 16295,
                    "nome": "MATINHOS - PR.",
                    "municipio": "MATINHOS"
                },
                {
                    "id": 16296,
                    "nome": "SIQUEIRA CAMPOS - PR.",
                    "municipio": "SIQUEIRA CAMPOS"
                },
                {
                    "id": 16297,
                    "nome": "ST.ANTONIO DO SUDOESTE-PR",
                    "municipio": "SANTO ANTONIO DO SUDOESTE"
                },
                {
                    "id": 16298,
                    "nome": "SANTA F� - PR.",
                    "municipio": "SANTA FE"
                },
                {
                    "id": 16299,
                    "nome": "ITANHAEM-SP",
                    "municipio": "ITANHAEM"
                },
                {
                    "id": 16300,
                    "nome": "PERSONNALITE B. HORIZONTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16301,
                    "nome": "P.ALEGRE/AV.BENJ.CONSTANT",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 16302,
                    "nome": "SAO PAULO/FARIA LIMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16303,
                    "nome": "PERSONNALITE BRASILIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 16304,
                    "nome": "PERSONNALITE GOIANIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 16305,
                    "nome": "PERSONNALITE CAMPO GRANDE",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 16306,
                    "nome": "RIO/BARATA RIBEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16307,
                    "nome": "TIETE-SP",
                    "municipio": "TIETE"
                },
                {
                    "id": 16308,
                    "nome": "SANTA ADELIA-SP",
                    "municipio": "SANTA ADELIA"
                },
                {
                    "id": 16309,
                    "nome": "MONTE ALTO-SP",
                    "municipio": "MONTE ALTO"
                },
                {
                    "id": 16310,
                    "nome": "SAO PAULO/ITACEMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16311,
                    "nome": "MANGUEIRINHA - PR.",
                    "municipio": "MANGUEIRINHA"
                },
                {
                    "id": 16312,
                    "nome": "SAO PAULO/PAULA SOUZA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16313,
                    "nome": "BELEM-PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 16314,
                    "nome": "PVT CEIC",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16315,
                    "nome": "PVT CEIC ITA�",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16316,
                    "nome": "CURITIBA/XV DE NOVEMBRO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16317,
                    "nome": "CURITIBA/CHAMPAGNAT",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16318,
                    "nome": "BALSA NOVA/PR",
                    "municipio": "BALSA NOVA"
                },
                {
                    "id": 16319,
                    "nome": "LONDRINA/VILA CASONI",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 16320,
                    "nome": "RIO/MADUREIRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16321,
                    "nome": "CAMPO LARGO - PR",
                    "municipio": "CAMPO LARGO"
                },
                {
                    "id": 16322,
                    "nome": "BARRACAO/PR",
                    "municipio": "BARRACAO"
                },
                {
                    "id": 16323,
                    "nome": "IRETAMA/PR",
                    "municipio": "IRETAMA"
                },
                {
                    "id": 16324,
                    "nome": "RIO AZUL-PR",
                    "municipio": "RIO AZUL"
                },
                {
                    "id": 16325,
                    "nome": "JOAQUIM TAVORA-PR",
                    "municipio": "JOAQUIM TAVORA"
                },
                {
                    "id": 16326,
                    "nome": "PEROLA-PR",
                    "municipio": "PEROLA"
                },
                {
                    "id": 16327,
                    "nome": "RONCADOR-PR",
                    "municipio": "RONCADOR"
                },
                {
                    "id": 16328,
                    "nome": "CANDIDO DE ABREU/PR",
                    "municipio": "CANDIDO DE ABREU"
                },
                {
                    "id": 16329,
                    "nome": "IPIRANGA-PR",
                    "municipio": "IPIRANGA"
                },
                {
                    "id": 16330,
                    "nome": "ICARAIMA-PR",
                    "municipio": "ICARAIMA"
                },
                {
                    "id": 16331,
                    "nome": "TURVO-PR",
                    "municipio": "TURVO"
                },
                {
                    "id": 16332,
                    "nome": "REBOUCAS-PR",
                    "municipio": "REBOUCAS"
                },
                {
                    "id": 16333,
                    "nome": "SERTANEJA-PR",
                    "municipio": "SERTANEJA"
                },
                {
                    "id": 16334,
                    "nome": "SENGES/PR",
                    "municipio": "SENGES"
                },
                {
                    "id": 16335,
                    "nome": "JARDIM ALEGRE/PR",
                    "municipio": "JARDIM ALEGRE"
                },
                {
                    "id": 16336,
                    "nome": "REALEZA/PR",
                    "municipio": "REALEZA"
                },
                {
                    "id": 16337,
                    "nome": "ENGENHEIRO BELTRAO/PR",
                    "municipio": "ENGENHEIRO BELTRAO"
                },
                {
                    "id": 16338,
                    "nome": "MANDAGUA�U - PR.",
                    "municipio": "MANDAGUACU"
                },
                {
                    "id": 16339,
                    "nome": "RIO/FREI CANECA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16340,
                    "nome": "PONTAL DO PARAN� - PR.",
                    "municipio": "PONTAL DO PARANA"
                },
                {
                    "id": 16341,
                    "nome": "PERSONNALITE BARAO DE ITAPURA",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 16342,
                    "nome": "PERSONNALIT�/JUNDIA�",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 16343,
                    "nome": "PERSONNALITE S.C.DO SUL",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 16344,
                    "nome": "PERSONNALITE VILA NOVA CONCEI��O",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16345,
                    "nome": "CONCEICAO DAS ALAGOAS- MG",
                    "municipio": "CONCEICAO DAS ALAGOAS"
                },
                {
                    "id": 16346,
                    "nome": "IPANEMA - MG.",
                    "municipio": "IPANEMA"
                },
                {
                    "id": 16347,
                    "nome": "RIO/JARDIM DO MEIER",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16348,
                    "nome": "NANUQUE - MG.",
                    "municipio": "NANUQUE"
                },
                {
                    "id": 16349,
                    "nome": "STO ANTONIO DO AMPARO-MG.",
                    "municipio": "SANTO ANTONIO DO AMPARO"
                },
                {
                    "id": 16350,
                    "nome": "SERRO - MG.",
                    "municipio": "SERRO"
                },
                {
                    "id": 16351,
                    "nome": "TR�S MARIAS - MG.",
                    "municipio": "TRES MARIAS"
                },
                {
                    "id": 16352,
                    "nome": "ALMENARA - MG.",
                    "municipio": "ALMENARA"
                },
                {
                    "id": 16353,
                    "nome": "ARA�UA� - MG.",
                    "municipio": "ARACUAI"
                },
                {
                    "id": 16354,
                    "nome": "RIO/MEXICO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16355,
                    "nome": "INHAPIM - MG.",
                    "municipio": "INHAPIM"
                },
                {
                    "id": 16356,
                    "nome": "PERSON. CURITIBA/JUVEVE",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16357,
                    "nome": "PERSONNALIT� PRA�A BATEL",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16358,
                    "nome": "PERSONNALIT� LONDRINA",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 16359,
                    "nome": "PERSONNALIT� PRESIDENTE VARGAS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16360,
                    "nome": "PERSONNALITE JARDINS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16361,
                    "nome": "PERSONNALITE GABRIEL PAR",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16362,
                    "nome": "PERSONNALIT� PINHEIROS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16363,
                    "nome": "PERSONNALIT� TR�S FIGUEIRAS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 16364,
                    "nome": "PERSONNALIT� VILA MARIANA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16365,
                    "nome": "RIO/ATLANTICA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16366,
                    "nome": "PERSONNALIT� SUMAR�",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16367,
                    "nome": "PERSONNALIT� FUNCION�RIOS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16368,
                    "nome": "PERSONNALIT� JARDIM GUEDALA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16369,
                    "nome": "Ag�ncia 4094",
                    "municipio": ""
                },
                {
                    "id": 16370,
                    "nome": "PERSONNALIT� COPACABANA POSTO 4",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16371,
                    "nome": "PERSONNALIT� TIJUCA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16372,
                    "nome": "PERSONNALIT� FORTALEZA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 16373,
                    "nome": "PERSONNALIT� NOVA CANTAREIRA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16374,
                    "nome": "INDAIATUBA-SP",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 16375,
                    "nome": "RIO/BAIRRO DA PENHA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16376,
                    "nome": "PERSONNALIT� TUT�IA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16377,
                    "nome": "LOND/ZONA NORTE 5 CONJUNT",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 16378,
                    "nome": "RIO/LEBLON",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16379,
                    "nome": "RIO/BAIRRO MARACANA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16380,
                    "nome": "RIO/ITAMARATI",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16381,
                    "nome": "BICAS-MG",
                    "municipio": "BICAS"
                },
                {
                    "id": 16382,
                    "nome": "JEQUITINHONHA-MG",
                    "municipio": "JEQUITINHONHA"
                },
                {
                    "id": 16383,
                    "nome": "LAMBARI-MG",
                    "municipio": "LAMBARI"
                },
                {
                    "id": 16384,
                    "nome": "MANTENA-MG",
                    "municipio": "MANTENA"
                },
                {
                    "id": 16385,
                    "nome": "GARCA-SP",
                    "municipio": "GARCA"
                },
                {
                    "id": 16386,
                    "nome": "S�O JOS� DO RIO PRETO-VETORASSO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 16387,
                    "nome": "UBERLANDIA/SANTA MONICA",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 16388,
                    "nome": "MUTUM-MG",
                    "municipio": "MUTUM"
                },
                {
                    "id": 16389,
                    "nome": "PARAGUACU-MG",
                    "municipio": "PARAGUACU"
                },
                {
                    "id": 16390,
                    "nome": "PRATA-MG",
                    "municipio": "PRATA"
                },
                {
                    "id": 16391,
                    "nome": "TUPACIGUARA-MG",
                    "municipio": "TUPACIGUARA"
                },
                {
                    "id": 16392,
                    "nome": "MUZAMBINHO-MG",
                    "municipio": "MUZAMBINHO"
                },
                {
                    "id": 16393,
                    "nome": "CARANDAI-MG",
                    "municipio": "CARANDAI"
                },
                {
                    "id": 16394,
                    "nome": "NEPOMUCENO-MG",
                    "municipio": "NEPOMUCENO"
                },
                {
                    "id": 16395,
                    "nome": "BARIRI-SP",
                    "municipio": "BARIRI"
                },
                {
                    "id": 16396,
                    "nome": "BARRA BONITA-SP",
                    "municipio": "BARRA BONITA"
                },
                {
                    "id": 16397,
                    "nome": "SANTA BARBARA-MG",
                    "municipio": "SANTA BARBARA"
                },
                {
                    "id": 16398,
                    "nome": "PARAOPEBA-MG",
                    "municipio": "PARAOPEBA"
                },
                {
                    "id": 16399,
                    "nome": "CAMPINA VERDE(MG)",
                    "municipio": "CAMPINA VERDE"
                },
                {
                    "id": 16400,
                    "nome": "SAO JOAQUIM DA BARRA-SP",
                    "municipio": "SAO JOAQUIM DA BARRA"
                },
                {
                    "id": 16401,
                    "nome": "RIO DAS OSTRAS/JARDIM MARILEA",
                    "municipio": "RIO DAS OSTRAS"
                },
                {
                    "id": 16402,
                    "nome": "ARACATI-CE",
                    "municipio": "ARACATI"
                },
                {
                    "id": 16403,
                    "nome": "MATEUS LEME(MG)",
                    "municipio": "MATEUS LEME"
                },
                {
                    "id": 16404,
                    "nome": "VAZANTE(MG)",
                    "municipio": "VAZANTE"
                },
                {
                    "id": 16405,
                    "nome": "COROMANDEL(MG)",
                    "municipio": "COROMANDEL"
                },
                {
                    "id": 16406,
                    "nome": "IBIA(MG)",
                    "municipio": "IBIA"
                },
                {
                    "id": 16407,
                    "nome": "CARMO DO PARANAIBA(MG)",
                    "municipio": "CARMO DO PARANAIBA"
                },
                {
                    "id": 16408,
                    "nome": "PORTO ALEGRE/B. CAVALHADA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 16409,
                    "nome": "IGARAPE-MG",
                    "municipio": "IGARAPE"
                },
                {
                    "id": 16410,
                    "nome": "ARARIPINA-PE",
                    "municipio": "ARARIPINA"
                },
                {
                    "id": 16411,
                    "nome": "SAO VICENTE/ITARAR�",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 16412,
                    "nome": "TAUBAT�/AV. INDEPEND�NCIA",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 16413,
                    "nome": "VILA VELHA/ITAPOA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 16414,
                    "nome": "PIRAC./AV. INDEPEND�NCIA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 16415,
                    "nome": "SAO PAULO/ALAMEDA BARROS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16416,
                    "nome": "SP/AV.CORIFEU AZ. MARQUES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16417,
                    "nome": "INHUMAS-GO",
                    "municipio": "INHUMAS"
                },
                {
                    "id": 16418,
                    "nome": "GOIANIA-URIAS",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 16419,
                    "nome": "GOIANIA-JARDIM AMERICA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 16420,
                    "nome": "BRAS�LIA-SATELITE S�O SEBASTI�O",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 16421,
                    "nome": "SERRA (ES)",
                    "municipio": "SERRA"
                },
                {
                    "id": 16422,
                    "nome": "BRAS�LIA/SAT�LITE SANTA MARIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 16423,
                    "nome": "ARUJA - SP.",
                    "municipio": "ARUJA"
                },
                {
                    "id": 16424,
                    "nome": "ARARAQUARA-SP",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 16425,
                    "nome": "TUPA-SP",
                    "municipio": "TUPA"
                },
                {
                    "id": 16426,
                    "nome": "SP-METRO BRIGADEIRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16427,
                    "nome": "GOIAS_(GO)",
                    "municipio": "GOIAS"
                },
                {
                    "id": 16428,
                    "nome": "GOIATUBA_(GO)",
                    "municipio": "GOIATUBA"
                },
                {
                    "id": 16429,
                    "nome": "IPAMERI_(GO)",
                    "municipio": "IPAMERI"
                },
                {
                    "id": 16430,
                    "nome": "SANTA HELENA DE GOIAS(GO)",
                    "municipio": "SANTA HELENA DE GOIAS"
                },
                {
                    "id": 16431,
                    "nome": "JUSSARA_(GO)",
                    "municipio": "JUSSARA"
                },
                {
                    "id": 16432,
                    "nome": "QUIRINOPOLIS_(GO)",
                    "municipio": "QUIRINOPOLIS"
                },
                {
                    "id": 16433,
                    "nome": "GOIANIA-T-SETE",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 16434,
                    "nome": "CERES - GO",
                    "municipio": "CERES"
                },
                {
                    "id": 16435,
                    "nome": "NEROPOLIS - GO",
                    "municipio": "NEROPOLIS"
                },
                {
                    "id": 16436,
                    "nome": "TRINDADE - GO",
                    "municipio": "TRINDADE"
                },
                {
                    "id": 16437,
                    "nome": "ANICUNS - GO",
                    "municipio": "ANICUNS"
                },
                {
                    "id": 16438,
                    "nome": "URUACU - GO",
                    "municipio": "URUACU"
                },
                {
                    "id": 16439,
                    "nome": "ACREUNA_- GO",
                    "municipio": "ACREUNA"
                },
                {
                    "id": 16440,
                    "nome": "BOM JESUS DE GOIAS - GO",
                    "municipio": "BOM JESUS DE GOIAS"
                },
                {
                    "id": 16441,
                    "nome": "GOIANIA - AVENIDA 85",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 16442,
                    "nome": "PIRES DO RIO - GO",
                    "municipio": "PIRES DO RIO"
                },
                {
                    "id": 16443,
                    "nome": "MINACU - GO",
                    "municipio": "MINACU"
                },
                {
                    "id": 16444,
                    "nome": "GOIANIA-PERIMETRAL NORTE",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 16445,
                    "nome": "CAMPOS BELOS_- GO",
                    "municipio": "CAMPOS BELOS"
                },
                {
                    "id": 16446,
                    "nome": "PLANALTINA - GO",
                    "municipio": "PLANALTINA"
                },
                {
                    "id": 16447,
                    "nome": "SENADOR CANEDO - GO",
                    "municipio": "SENADOR CANEDO"
                },
                {
                    "id": 16448,
                    "nome": "GUARUJA/VIC.DE CARVALHO",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 16449,
                    "nome": "GOIANIA-CAMPINAS",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 16450,
                    "nome": "JARAGUA - GO",
                    "municipio": "JARAGUA"
                },
                {
                    "id": 16451,
                    "nome": "PALMEIRAS DE GOIAS - GO",
                    "municipio": "PALMEIRAS DE GOIAS"
                },
                {
                    "id": 16452,
                    "nome": "CALDAS NOVAS - GO",
                    "municipio": "CALDAS NOVAS"
                },
                {
                    "id": 16453,
                    "nome": "CAIAPONIA - GO",
                    "municipio": "CAIAPONIA"
                },
                {
                    "id": 16454,
                    "nome": "GUAPO - GO",
                    "municipio": "GUAPO"
                },
                {
                    "id": 16455,
                    "nome": "CRIXAS - GO",
                    "municipio": "CRIXAS"
                },
                {
                    "id": 16456,
                    "nome": "PORANGATU - GO",
                    "municipio": "PORANGATU"
                },
                {
                    "id": 16457,
                    "nome": "ITABERAI - GO",
                    "municipio": "ITABERAI"
                },
                {
                    "id": 16458,
                    "nome": "ITAPURANGA - GO",
                    "municipio": "ITAPURANGA"
                },
                {
                    "id": 16459,
                    "nome": "SANTO ANDRE-RUA BERNARDINO DE CAMPOS",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 16460,
                    "nome": "ITAUCU - GO",
                    "municipio": "ITAUCU"
                },
                {
                    "id": 16461,
                    "nome": "EDEIA - GO",
                    "municipio": "EDEIA"
                },
                {
                    "id": 16462,
                    "nome": "POSSE - GO",
                    "municipio": "POSSE"
                },
                {
                    "id": 16463,
                    "nome": "CATALAO-P�.GETULIO VARGAS",
                    "municipio": "CATALAO"
                },
                {
                    "id": 16464,
                    "nome": "CRISTALINA(GO)",
                    "municipio": "CRISTALINA"
                },
                {
                    "id": 16465,
                    "nome": "OSWALDO CRUZ-SP",
                    "municipio": "OSVALDO CRUZ"
                },
                {
                    "id": 16466,
                    "nome": "PARAUNA(GO)",
                    "municipio": "PARAUNA"
                },
                {
                    "id": 16467,
                    "nome": "SILVANIA(GO)",
                    "municipio": "SILVANIA"
                },
                {
                    "id": 16468,
                    "nome": "ITUMBIARA-P�.DA REPUBLICA",
                    "municipio": "ITUMBIARA"
                },
                {
                    "id": 16469,
                    "nome": "IPORA(GO)",
                    "municipio": "IPORA"
                },
                {
                    "id": 16470,
                    "nome": "NIQUELANDIA(GO)",
                    "municipio": "NIQUELANDIA"
                },
                {
                    "id": 16471,
                    "nome": "PEDERNEIRAS-SP",
                    "municipio": "PEDERNEIRAS"
                },
                {
                    "id": 16472,
                    "nome": "BELA VISTA DE GOIAS(GO)",
                    "municipio": "BELA VISTA DE GOIAS"
                },
                {
                    "id": 16473,
                    "nome": "RUBIATABA(GO)",
                    "municipio": "RUBIATABA"
                },
                {
                    "id": 16474,
                    "nome": "GOIANIA-PIO XII",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 16475,
                    "nome": "GOIANIA-CASTELO BRANCO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 16476,
                    "nome": "RIO VERDE-AV.PRES. VARGAS",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 16477,
                    "nome": "GOIANIA-PC.DO BANDEIRANTE",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 16478,
                    "nome": "GOIANESIA (GO)",
                    "municipio": "GOIANESIA"
                },
                {
                    "id": 16479,
                    "nome": "MORRINHOS (GO)",
                    "municipio": "MORRINHOS"
                },
                {
                    "id": 16480,
                    "nome": "PIRACANJUBA (GO)",
                    "municipio": "PIRACANJUBA"
                },
                {
                    "id": 16481,
                    "nome": "SAO JOAO D'ALIANCA (GO)",
                    "municipio": "SAO JOAO D'ALIANCA"
                },
                {
                    "id": 16482,
                    "nome": "GOIANIA-VILA NOVA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 16483,
                    "nome": "GOIANIA-NOVO HORIZONTE",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 16484,
                    "nome": "APARECIDA DE GOIANIA (GO)",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 16485,
                    "nome": "S.L. DE MONTES BELOS (GO)",
                    "municipio": "SAO LUIS DE MONTES BELOS"
                },
                {
                    "id": 16486,
                    "nome": "PONTALINA (GO)",
                    "municipio": "PONTALINA"
                },
                {
                    "id": 16487,
                    "nome": "ARAGARCAS_(GO)",
                    "municipio": "ARAGARCAS"
                },
                {
                    "id": 16488,
                    "nome": "ANAPOLIS-PRACA BOM JESUS",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 16489,
                    "nome": "LUZIANIA-CENTRO",
                    "municipio": "LUZIANIA"
                },
                {
                    "id": 16490,
                    "nome": "PIRENOPOLIS (GO)",
                    "municipio": "PIRENOPOLIS"
                },
                {
                    "id": 16491,
                    "nome": "SERTAOZINHO-SP",
                    "municipio": "SERTAOZINHO"
                },
                {
                    "id": 16492,
                    "nome": "SAO PAULO/LUIS GOIS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16493,
                    "nome": "MINEIROS(GO)",
                    "municipio": "MINEIROS"
                },
                {
                    "id": 16494,
                    "nome": "SAO MIGUEL DO ARAGUAIA-GO",
                    "municipio": "SAO MIGUEL DO ARAGUAIA"
                },
                {
                    "id": 16495,
                    "nome": "ABADIANIA (GO)",
                    "municipio": "ABADIANIA"
                },
                {
                    "id": 16496,
                    "nome": "ST.ANTONIO DO DESCOB.(GO)",
                    "municipio": "SANTO ANTONIO DO DESCOBERTO"
                },
                {
                    "id": 16497,
                    "nome": "AGUAS LINDAS DE GOIAS(GO)",
                    "municipio": "AGUAS LINDAS DE GOIAS"
                },
                {
                    "id": 16498,
                    "nome": "NOVA VENEZA(GO)",
                    "municipio": "NOVA VENEZA"
                },
                {
                    "id": 16499,
                    "nome": "GOIANIA-JARDIM NOVO MUNDO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 16500,
                    "nome": "CIDADE OCIDENTAL (GO)",
                    "municipio": "CIDADE OCIDENTAL"
                },
                {
                    "id": 16501,
                    "nome": "NOVO GAMA (GO)",
                    "municipio": "NOVO GAMA"
                },
                {
                    "id": 16502,
                    "nome": "BATATAIS-SP",
                    "municipio": "BATATAIS"
                },
                {
                    "id": 16503,
                    "nome": "GOIANIA-FAMA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 16504,
                    "nome": "GOIANIRA (GO)",
                    "municipio": "GOIANIRA"
                },
                {
                    "id": 16505,
                    "nome": "FEIRA DE SANTANA-BA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 16506,
                    "nome": "AP.GOIANIA/VILA BRASILIA",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 16507,
                    "nome": "S.PAULO/R.TEODORO SAMPAIO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16508,
                    "nome": "RIO/AV.SERNAMBETIBA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16509,
                    "nome": "FORTALEZA/PARQUEL�NDIA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 16510,
                    "nome": "FORTALEZA/PRAIA DO FUTURO",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 16511,
                    "nome": "VALPARAISO DE GOIAS (GO)",
                    "municipio": "VALPARAISO DE GOIAS"
                },
                {
                    "id": 16512,
                    "nome": "SP/IGUATEMI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16513,
                    "nome": "BH BAIRRO BURITIS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16514,
                    "nome": "J.FORA/BAIRRO S�O MATEUS",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 16515,
                    "nome": "FORTALEZA/BAIRRO F�TIMA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 16516,
                    "nome": "PERSONNALIT� LAGO SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 16517,
                    "nome": "CUIAB�/GOIABEIRAS",
                    "municipio": "CUIABA"
                },
                {
                    "id": 16518,
                    "nome": "CAMPINAS/JDIM DO TREVO-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 16519,
                    "nome": "RIB.PR./AV.CASTELO BRANCO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 16520,
                    "nome": "SANTO ANASTACIO-SP",
                    "municipio": "SANTO ANASTACIO"
                },
                {
                    "id": 16521,
                    "nome": "SP/VILA MADALENA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16522,
                    "nome": "AP.GOI�NIA/SETOR GARAVELO",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 16523,
                    "nome": "SANTOS/MACUCO-SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 16524,
                    "nome": "SAO CARLOS/VILA PRADO",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 16525,
                    "nome": "AN�POLIS/JAIARA",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 16526,
                    "nome": "PITANGUEIRAS-SP",
                    "municipio": "PITANGUEIRAS"
                },
                {
                    "id": 16527,
                    "nome": "SAO JOSE DO RIO PRETO-SP",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 16528,
                    "nome": "PVT BH",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16529,
                    "nome": "PVT BH ITA�",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16530,
                    "nome": "PVT RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16531,
                    "nome": "PVT RJ ITA�",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16532,
                    "nome": "BELO HORIZONTE/OURO PRETO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16533,
                    "nome": "ARARAQUARA/VILA XAVIER",
                    "municipio": "ARARAQUARA"
                },
                {
                    "id": 16534,
                    "nome": "RIO/RUA SIQUEIRA CAMPOS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16535,
                    "nome": "CAMPINAS/CASTELO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 16536,
                    "nome": "SAO PAULO/SILVIO ROMERO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16537,
                    "nome": "SOROCABA/PARQUE CAMPOLIM",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 16538,
                    "nome": "MONGAGU�/SP",
                    "municipio": "MONGAGUA"
                },
                {
                    "id": 16539,
                    "nome": "S�O LU�S/RENASCEN�A",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 16540,
                    "nome": "S�O JOS� DO RIO PRETO/NOSSA SENHORA DA PAZ",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 16541,
                    "nome": "CARUARU-PE",
                    "municipio": "CARUARU"
                },
                {
                    "id": 16542,
                    "nome": "PRESIDENTE PRUDENTE/PARQUE DO POVO",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 16543,
                    "nome": "BELO HORIZONTE/CORA��O EUCAR�STICO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16544,
                    "nome": "INDAIATUBA/AV. PRESIDENTE VARGAS",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 16545,
                    "nome": "RIO/PEDRA DE ITA�NA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16546,
                    "nome": "SAO PAULO/RUA WANDERLEY",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16547,
                    "nome": "RIO/BENTO RIBEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16548,
                    "nome": "CAMBUCI (RJ)",
                    "municipio": "CAMBUCI"
                },
                {
                    "id": 16549,
                    "nome": "MIRACEMA (RJ)",
                    "municipio": "MIRACEMA"
                },
                {
                    "id": 16550,
                    "nome": "CASIMIRO DE ABREU (RJ)",
                    "municipio": "CASIMIRO DE ABREU"
                },
                {
                    "id": 16551,
                    "nome": "RIO CLARO (RJ)",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 16552,
                    "nome": "QUEIMADOS (RJ)",
                    "municipio": "QUEIMADOS"
                },
                {
                    "id": 16553,
                    "nome": "MAG� (RJ)",
                    "municipio": "MAGE"
                },
                {
                    "id": 16554,
                    "nome": "BELFORD ROXO RJ",
                    "municipio": "BELFORD ROXO"
                },
                {
                    "id": 16555,
                    "nome": "ARARUAMA (RJ)",
                    "municipio": "ARARUAMA"
                },
                {
                    "id": 16556,
                    "nome": "NITERO�-ING�",
                    "municipio": "NITEROI"
                },
                {
                    "id": 16557,
                    "nome": "ITABORA� (RJ)",
                    "municipio": "ITABORAI"
                },
                {
                    "id": 16558,
                    "nome": "MARIC� (RJ)",
                    "municipio": "MARICA"
                },
                {
                    "id": 16559,
                    "nome": "CERQUILHO-SP",
                    "municipio": "CERQUILHO"
                },
                {
                    "id": 16560,
                    "nome": "VALEN�A (RJ)",
                    "municipio": "VALENCA"
                },
                {
                    "id": 16561,
                    "nome": "RIO/LIDO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16562,
                    "nome": "GUARULHOS (SP)",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 16563,
                    "nome": "PROMISSAO-SP",
                    "municipio": "PROMISSAO"
                },
                {
                    "id": 16564,
                    "nome": "PRAIA GRANDE-SP",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 16565,
                    "nome": "CAMPOS DOS GOYTACAZES-RJ",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 16566,
                    "nome": "DOURADOS-MS",
                    "municipio": "DOURADOS"
                },
                {
                    "id": 16567,
                    "nome": "SAO VICENTE-SP",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 16568,
                    "nome": "SAO PAULO/LIMAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16569,
                    "nome": "SAO PAULO/VILA CARRAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16570,
                    "nome": "SAO PAULO/VILA MONUMENTO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16571,
                    "nome": "MORRO AGUDO-SP",
                    "municipio": "MORRO AGUDO"
                },
                {
                    "id": 16572,
                    "nome": "FLORIAN�POLIS/LAGOA DA CONCEI��O",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 16573,
                    "nome": "AQUIDAUNA-MS",
                    "municipio": "AQUIDAUANA"
                },
                {
                    "id": 16574,
                    "nome": "CABO-PE",
                    "municipio": "CABO DE SANTO AGOSTINHO"
                },
                {
                    "id": 16575,
                    "nome": "BRASILIA/SAT.TAGUATINGA",
                    "municipio": "BRASILIA (TAGUATINGA)"
                },
                {
                    "id": 16576,
                    "nome": "PAB SIMENS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16577,
                    "nome": "CAXIAS DO SUL/S.PELEGRINO",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 16578,
                    "nome": "BARUERI - ALPHAVILLE/ALAMEDA ARAGUAIA",
                    "municipio": "BARUERI"
                },
                {
                    "id": 16579,
                    "nome": "RIO BONITO (RJ)",
                    "municipio": "RIO BONITO"
                },
                {
                    "id": 16580,
                    "nome": "MANGARATIBA (RJ)",
                    "municipio": "MANGARATIBA"
                },
                {
                    "id": 16581,
                    "nome": "SAQUAREMA-PREFEITURA (RJ)",
                    "municipio": "SAQUAREMA"
                },
                {
                    "id": 16582,
                    "nome": "S�O JOS� DO RIO PRETO/BRIGADEIRO FARIA LIMA",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 16583,
                    "nome": "TRES LAGOAS-MS",
                    "municipio": "TRES LAGOAS"
                },
                {
                    "id": 16584,
                    "nome": "NITER�I / BAIRRO S�O FRANCISCO",
                    "municipio": "NITEROI"
                },
                {
                    "id": 16585,
                    "nome": "PAB SANTO ANDR� PRYSMIAN",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 16586,
                    "nome": "TERESINA/BAIRRO JOCKEY",
                    "municipio": "TERESINA"
                },
                {
                    "id": 16587,
                    "nome": "MAIRIPOR� - SP",
                    "municipio": "MAIRIPORA"
                },
                {
                    "id": 16588,
                    "nome": "BH-BAIRRO BET�NIA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16589,
                    "nome": "SAO MANUEL-SP",
                    "municipio": "SAO MANUEL"
                },
                {
                    "id": 16590,
                    "nome": "SANTOS/BOQUEIR�O",
                    "municipio": "SANTOS"
                },
                {
                    "id": 16591,
                    "nome": "JUNDIAI/RANGEL PESTANA",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 16592,
                    "nome": "MIGUEL PEREIRA (RJ)",
                    "municipio": "MIGUEL PEREIRA"
                },
                {
                    "id": 16593,
                    "nome": "PIRA� (RJ)",
                    "municipio": "PIRAI"
                },
                {
                    "id": 16594,
                    "nome": "PARATI (RJ)",
                    "municipio": "PARATY"
                },
                {
                    "id": 16595,
                    "nome": "ARRAIAL DO CABO (RJ)",
                    "municipio": "ARRAIAL DO CABO"
                },
                {
                    "id": 16596,
                    "nome": "CACHOEIRAS DE MACACU (RJ)",
                    "municipio": "CACHOEIRAS DE MACACU"
                },
                {
                    "id": 16597,
                    "nome": "BOM JARDIM (RJ)",
                    "municipio": "BOM JARDIM"
                },
                {
                    "id": 16598,
                    "nome": "SAQUAREMA-BACAXA (RJ",
                    "municipio": "SAQUAREMA"
                },
                {
                    "id": 16599,
                    "nome": "RIO/BAIRRO OLARIA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16600,
                    "nome": "RIO DAS OSTRAS (RJ)",
                    "municipio": "RIO DAS OSTRAS"
                },
                {
                    "id": 16601,
                    "nome": "S�O FRANCISCO DE ITABAPOANA (RJ)",
                    "municipio": "SAO FRANCISCO DE ITABAPOANA"
                },
                {
                    "id": 16602,
                    "nome": "CAMPINAS-CAMBU�",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 16603,
                    "nome": "486",
                    "municipio": ""
                },
                {
                    "id": 16604,
                    "nome": "RECIFE/CASA FORTE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 16605,
                    "nome": "VIT�RIA/PRAIA DO CAMBURI",
                    "municipio": "VITORIA"
                },
                {
                    "id": 16606,
                    "nome": "SP/AV. DO ORAT�RIO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16607,
                    "nome": "CAMPINAS/NOVA GLIC�RIO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 16608,
                    "nome": "BH-BAIRRO RENASCEN�A",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16609,
                    "nome": "RIO/BAIRRO GRAJAU",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16610,
                    "nome": "CANOAS-BAIRRO NITER�I/RS",
                    "municipio": "CANOAS"
                },
                {
                    "id": 16611,
                    "nome": "4886",
                    "municipio": ""
                },
                {
                    "id": 16612,
                    "nome": "RIO CLARO/TANCREDO NEVES",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 16613,
                    "nome": "RIO-MARIZ E BARROS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16614,
                    "nome": "AMERICANA/AV. CILLO",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 16615,
                    "nome": "PRESIDENTE PRUDENTE/MANOEL GOULART",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 16616,
                    "nome": "SAO CARLOS-SP",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 16617,
                    "nome": "Ag�ncia 4903",
                    "municipio": ""
                },
                {
                    "id": 16618,
                    "nome": "STA CRUZ DO CAPIBARIBE-PE",
                    "municipio": "SANTA CRUZ DO CAPIBARIBE"
                },
                {
                    "id": 16619,
                    "nome": "ADAMANTINAS-SP",
                    "municipio": "ADAMANTINA"
                },
                {
                    "id": 16620,
                    "nome": "PRESIDENTE VENCESLAU-SP",
                    "municipio": "PRESIDENTE VENCESLAU"
                },
                {
                    "id": 16621,
                    "nome": "ITARAR� (SP)",
                    "municipio": "ITARARE"
                },
                {
                    "id": 16622,
                    "nome": "RIO/CANCELA - RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16623,
                    "nome": "JACOBINA (BA)",
                    "municipio": "JACOBINA"
                },
                {
                    "id": 16624,
                    "nome": "SANTA CRUZ DO RIO PARDO-SP",
                    "municipio": "SANTA CRUZ DO RIO PARDO"
                },
                {
                    "id": 16625,
                    "nome": "Ag�ncia 4982",
                    "municipio": ""
                },
                {
                    "id": 16626,
                    "nome": "CABEDELO (PB)",
                    "municipio": "CABEDELO"
                },
                {
                    "id": 16627,
                    "nome": "RONDONOPOLIS-MT",
                    "municipio": "RONDONOPOLIS"
                },
                {
                    "id": 16628,
                    "nome": "VARGEM GRANDE DO SUL-SP",
                    "municipio": "VARGEM GRANDE DO SUL"
                },
                {
                    "id": 16629,
                    "nome": "RIO CLARO-SP",
                    "municipio": "RIO CLARO"
                },
                {
                    "id": 16630,
                    "nome": "500",
                    "municipio": ""
                },
                {
                    "id": 16631,
                    "nome": "Ag�ncia 5000",
                    "municipio": ""
                },
                {
                    "id": 16632,
                    "nome": "RIO PARK SHOPPING CAMPO GRANDE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16633,
                    "nome": "CAMACARI-BA",
                    "municipio": "CAMACARI"
                },
                {
                    "id": 16634,
                    "nome": "MIRASSOL-SP",
                    "municipio": "MIRASSOL"
                },
                {
                    "id": 16635,
                    "nome": "VOTUPORANGA-SP",
                    "municipio": "VOTUPORANGA"
                },
                {
                    "id": 16636,
                    "nome": "DATAS (MG)",
                    "municipio": "DATAS"
                },
                {
                    "id": 16637,
                    "nome": "UBAPORANGA (MG)",
                    "municipio": "UBAPORANGA"
                },
                {
                    "id": 16638,
                    "nome": "OLIMPIA-SP",
                    "municipio": "OLIMPIA"
                },
                {
                    "id": 16639,
                    "nome": "OUVIDOR (GO)",
                    "municipio": "OUVIDOR"
                },
                {
                    "id": 16640,
                    "nome": "BRAS�LIA/SAT�LITE GAMA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 16641,
                    "nome": "PORTO ALEGRE-MENINO DEUS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 16642,
                    "nome": "CRUZEIRO DO SUL (PR)",
                    "municipio": "CRUZEIRO DO SUL"
                },
                {
                    "id": 16643,
                    "nome": "CAMBIRA (PR)",
                    "municipio": "CAMBIRA"
                },
                {
                    "id": 16644,
                    "nome": "DIAMANTE DO NORTE (PR)",
                    "municipio": "DIAMANTE DO NORTE"
                },
                {
                    "id": 16645,
                    "nome": "AURIL�NDIA (GO)",
                    "municipio": "AURILANDIA"
                },
                {
                    "id": 16646,
                    "nome": "MOZARL�NDIA (GO)",
                    "municipio": "MOZARLANDIA"
                },
                {
                    "id": 16647,
                    "nome": "HIDROL�NDIA (GO)",
                    "municipio": "HIDROLANDIA"
                },
                {
                    "id": 16648,
                    "nome": "SANTA B�RBARA DE GOI�S (GO)",
                    "municipio": "SANTA BARBARA DE GOIAS"
                },
                {
                    "id": 16649,
                    "nome": "CAMPO FLORIDO (MG)",
                    "municipio": "CAMPO FLORIDO"
                },
                {
                    "id": 16650,
                    "nome": "DIVINO (MG)",
                    "municipio": "DIVINO"
                },
                {
                    "id": 16651,
                    "nome": "ITAOBIM (MG)",
                    "municipio": "ITAOBIM"
                },
                {
                    "id": 16652,
                    "nome": "JAIBA (MG)",
                    "municipio": "JAIBA"
                },
                {
                    "id": 16653,
                    "nome": "S�O JOS� DA LAPA (MG)",
                    "municipio": "SAO JOSE DA LAPA"
                },
                {
                    "id": 16654,
                    "nome": "PONTA PORA-MS",
                    "municipio": "PONTA PORA"
                },
                {
                    "id": 16655,
                    "nome": "ALVORADA DO SUL (PR)",
                    "municipio": "ALVORADA DO SUL"
                },
                {
                    "id": 16656,
                    "nome": "QUINTA DO SOL (PR)",
                    "municipio": "QUINTA DO SOL"
                },
                {
                    "id": 16657,
                    "nome": "S�O SEBASTI�O DA AMOREIRA (PR)",
                    "municipio": "SAO SEBASTIAO DA AMOREIRA"
                },
                {
                    "id": 16658,
                    "nome": "ORIZONA (GO)",
                    "municipio": "ORIZONA"
                },
                {
                    "id": 16659,
                    "nome": "SOROCABA/CERRADO/SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 16660,
                    "nome": "PETROLINA DE GOI�S (GO)",
                    "municipio": "PETROLINA DE GOIAS"
                },
                {
                    "id": 16661,
                    "nome": "BOM JESUS DO GALHO (MG)",
                    "municipio": "BOM JESUS DO GALHO"
                },
                {
                    "id": 16662,
                    "nome": "GOUVEA (MG)",
                    "municipio": "GOUVEIA"
                },
                {
                    "id": 16663,
                    "nome": "NAZARENO (MG)",
                    "municipio": "NAZARENO"
                },
                {
                    "id": 16664,
                    "nome": "VILA VELHA-PRAIA COSTA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 16665,
                    "nome": "ADRIAN�POLIS (PR)",
                    "municipio": "ADRIANOPOLIS"
                },
                {
                    "id": 16666,
                    "nome": "CIDADE GA�CHA (PR)",
                    "municipio": "CIDADE GAUCHA"
                },
                {
                    "id": 16667,
                    "nome": "DOUTOR CAMARGO (PR)",
                    "municipio": "DOUTOR CAMARGO"
                },
                {
                    "id": 16668,
                    "nome": "CEZARINA (GO)",
                    "municipio": "CEZARINA"
                },
                {
                    "id": 16669,
                    "nome": "MAURIL�NDIA (GO)",
                    "municipio": "MAURILANDIA"
                },
                {
                    "id": 16670,
                    "nome": "URUANA (GO)",
                    "municipio": "URUANA"
                },
                {
                    "id": 16671,
                    "nome": "ALTO JEQUITIB� (MG)",
                    "municipio": "ALTO JEQUITIBA"
                },
                {
                    "id": 16672,
                    "nome": "CONQUISTA (MG)",
                    "municipio": "CONQUISTA"
                },
                {
                    "id": 16673,
                    "nome": "DOM CAVATI (MG)",
                    "municipio": "DOM CAVATI"
                },
                {
                    "id": 16674,
                    "nome": "S�O JO�O EVANGELISTA (MG)",
                    "municipio": "SAO JOAO EVANGELISTA"
                },
                {
                    "id": 16675,
                    "nome": "DOURADINA (PR)",
                    "municipio": "DOURADINA"
                },
                {
                    "id": 16676,
                    "nome": "FLOREST�POLIS (PR)",
                    "municipio": "FLORESTOPOLIS"
                },
                {
                    "id": 16677,
                    "nome": "BRASILIA TAGUATINGA HELIO PRATES",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 16678,
                    "nome": "QUATIGU� (PR)",
                    "municipio": "QUATIGUA"
                },
                {
                    "id": 16679,
                    "nome": "NOVA CRIX�S (GO)",
                    "municipio": "NOVA CRIXAS"
                },
                {
                    "id": 16680,
                    "nome": "PARANAIGUARA (GO)",
                    "municipio": "PARANAIGUARA"
                },
                {
                    "id": 16681,
                    "nome": "CHAPADA DO NORTE (MG)",
                    "municipio": "CHAPADA DO NORTE"
                },
                {
                    "id": 16682,
                    "nome": "CONGONHAL (MG)",
                    "municipio": "CONGONHAL"
                },
                {
                    "id": 16683,
                    "nome": "GURINHAT� (MG)",
                    "municipio": "GURINHATA"
                },
                {
                    "id": 16684,
                    "nome": "VIRGEM DA LAPA (MG)",
                    "municipio": "VIRGEM DA LAPA"
                },
                {
                    "id": 16685,
                    "nome": "PERSONNALIT�/PIRACICABA (SP)",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 16686,
                    "nome": "VITORIA DA CONQUISTA-BA",
                    "municipio": "VITORIA DA CONQUISTA"
                },
                {
                    "id": 16687,
                    "nome": "PERSONNALITE VILA ESPERAN�A",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16688,
                    "nome": "PERSONNALIT�/UBERL�NDIA",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 16689,
                    "nome": "PERSONNALIT�-S�O JOS� DO RIO PRETO/BADY BASSIT",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 16690,
                    "nome": "PERSONNALIT�/CAMPO BELO (SP)",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16691,
                    "nome": "CAIEIRAS/SP",
                    "municipio": "CAIEIRAS"
                },
                {
                    "id": 16692,
                    "nome": "GUARUJA-SP",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 16693,
                    "nome": "AGUDOS DO SUL (PR)",
                    "municipio": "AGUDOS DO SUL"
                },
                {
                    "id": 16694,
                    "nome": "IN�CIO MARTINS (PR)",
                    "municipio": "INACIO MARTINS"
                },
                {
                    "id": 16695,
                    "nome": "ITAGUAJ� (PR)",
                    "municipio": "ITAGUAJE"
                },
                {
                    "id": 16696,
                    "nome": "MARILUZ (PR)",
                    "municipio": "MARILUZ"
                },
                {
                    "id": 16697,
                    "nome": "NOVA F�TIMA (PR)",
                    "municipio": "NOVA FATIMA"
                },
                {
                    "id": 16698,
                    "nome": "NOVA OL�MPIA (PR)",
                    "municipio": "NOVA OLIMPIA"
                },
                {
                    "id": 16699,
                    "nome": "PLANALTINA DO PARAN� (PR)",
                    "municipio": "PLANALTINA DO PARANA"
                },
                {
                    "id": 16700,
                    "nome": "BRASILIA-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 16701,
                    "nome": "S�O CARLOS DO IVA� (PR)",
                    "municipio": "SAO CARLOS DO IVAI"
                },
                {
                    "id": 16702,
                    "nome": "S�O JER�NIMO DA SERRA (PR)",
                    "municipio": "SAO JERONIMO DA SERRA"
                },
                {
                    "id": 16703,
                    "nome": "TAPIRA (PR)",
                    "municipio": "TAPIRA"
                },
                {
                    "id": 16704,
                    "nome": "TOMAZINA (PR)",
                    "municipio": "TOMAZINA"
                },
                {
                    "id": 16705,
                    "nome": "�GUAS FORMOSAS - MG",
                    "municipio": "AGUAS FORMOSAS"
                },
                {
                    "id": 16706,
                    "nome": "�GUAS VERMELHAS (MG)",
                    "municipio": "AGUAS VERMELHAS"
                },
                {
                    "id": 16707,
                    "nome": "BELA VISTA DE MINAS - MG",
                    "municipio": "BELA VISTA DE MINAS"
                },
                {
                    "id": 16708,
                    "nome": "CACHOEIRA DE PAJEU (MG)",
                    "municipio": "CACHOEIRA DE PAJEU"
                },
                {
                    "id": 16709,
                    "nome": "CAMPOS ALTOS (MG)",
                    "municipio": "CAMPOS ALTOS"
                },
                {
                    "id": 16710,
                    "nome": "SAO PAULO/TATUAPE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16711,
                    "nome": "COLUNA (MG)",
                    "municipio": "COLUNA"
                },
                {
                    "id": 16712,
                    "nome": "CORINTO (MG)",
                    "municipio": "CORINTO"
                },
                {
                    "id": 16713,
                    "nome": "DELFIM MOREIRA (MG)",
                    "municipio": "DELFIM MOREIRA"
                },
                {
                    "id": 16714,
                    "nome": "EUGEN�POLIS (MG)",
                    "municipio": "EUGENOPOLIS"
                },
                {
                    "id": 16715,
                    "nome": "FRANCISCO S� (MG)",
                    "municipio": "FRANCISCO SA"
                },
                {
                    "id": 16716,
                    "nome": "GUARACIABA (MG)",
                    "municipio": "GUARACIABA"
                },
                {
                    "id": 16717,
                    "nome": "ITAMBACURI (MG)",
                    "municipio": "ITAMBACURI"
                },
                {
                    "id": 16718,
                    "nome": "JOAIMA (MG)",
                    "municipio": "JOAIMA"
                },
                {
                    "id": 16719,
                    "nome": "LARANJAL (MG)",
                    "municipio": "LARANJAL"
                },
                {
                    "id": 16720,
                    "nome": "MACHACALIS - MG",
                    "municipio": "MACHACALIS"
                },
                {
                    "id": 16721,
                    "nome": "PERSONNALIT� DUQUE DE CAXIAS",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 16722,
                    "nome": "CACERES-MT",
                    "municipio": "CACERES"
                },
                {
                    "id": 16723,
                    "nome": "MATHIAS LOBATO (MG)",
                    "municipio": "MATHIAS LOBATO"
                },
                {
                    "id": 16724,
                    "nome": "MENDES PIMENTEL (MG)",
                    "municipio": "MENDES PIMENTEL"
                },
                {
                    "id": 16725,
                    "nome": "MOEMA (MG)",
                    "municipio": "MOEMA"
                },
                {
                    "id": 16726,
                    "nome": "PERSONNALIT� CORREDOR VIT�RIA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 16727,
                    "nome": "PERSONNALITE IGUATEMI RIBEIR�O PRETO",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 16728,
                    "nome": "NAT�RCIA (MG)",
                    "municipio": "NATERCIA"
                },
                {
                    "id": 16729,
                    "nome": "PALMA (MG)",
                    "municipio": "PALMA"
                },
                {
                    "id": 16730,
                    "nome": "PERSONNALIT� S�O CARLOS",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 16731,
                    "nome": "PALM�POLIS (MG)",
                    "municipio": "PALMOPOLIS"
                },
                {
                    "id": 16732,
                    "nome": "PAPAGAIOS (MG)",
                    "municipio": "PAPAGAIOS"
                },
                {
                    "id": 16733,
                    "nome": "PERSONNALIT� AV GOI�S",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 16734,
                    "nome": "PAULA C�NDIDO (MG)",
                    "municipio": "PAULA CANDIDO"
                },
                {
                    "id": 16735,
                    "nome": "PERDIG�O (MG)",
                    "municipio": "PERDIGAO"
                },
                {
                    "id": 16736,
                    "nome": "PERSONNALIT� IGUATEMI SOROCABA",
                    "municipio": "VOTORANTIM"
                },
                {
                    "id": 16737,
                    "nome": "POCRANE (MG)",
                    "municipio": "POCRANE"
                },
                {
                    "id": 16738,
                    "nome": "PRESIDENTE OLEG�RIO (MG)",
                    "municipio": "PRESIDENTE OLEGARIO"
                },
                {
                    "id": 16739,
                    "nome": "RIBEIR�O VERMELHO - MG",
                    "municipio": "RIBEIRAO VERMELHO"
                },
                {
                    "id": 16740,
                    "nome": "RIO VERMELHO (MG)",
                    "municipio": "RIO VERMELHO"
                },
                {
                    "id": 16741,
                    "nome": "SANTANA DO PARA�SO (MG)",
                    "municipio": "SANTANA DO PARAISO"
                },
                {
                    "id": 16742,
                    "nome": "ANDRADAS-MG",
                    "municipio": "ANDRADAS"
                },
                {
                    "id": 16743,
                    "nome": "RIO/MERCADO S.SEBASTIAO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16744,
                    "nome": "ITAU BBA SP MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16745,
                    "nome": "S�O JOS� DO GOIABAL (MG)",
                    "municipio": "SAO JOSE DO GOIABAL"
                },
                {
                    "id": 16746,
                    "nome": "S�O TOM� DAS LETRAS (MG)",
                    "municipio": "SAO TOME DAS LETRAS"
                },
                {
                    "id": 16747,
                    "nome": "TAQUARITINGA-SP",
                    "municipio": "TAQUARITINGA"
                },
                {
                    "id": 16748,
                    "nome": "TIROS (MG)",
                    "municipio": "TIROS"
                },
                {
                    "id": 16749,
                    "nome": "URUC�NIA (MG)",
                    "municipio": "URUCANIA"
                },
                {
                    "id": 16750,
                    "nome": "CORUMBAIBA (GO)",
                    "municipio": "CORUMBAIBA"
                },
                {
                    "id": 16751,
                    "nome": "ALTO PARA�SO DE GOI�S (GO)",
                    "municipio": "ALTO PARAISO DE GOIAS"
                },
                {
                    "id": 16752,
                    "nome": "ITAPACI (GO)",
                    "municipio": "ITAPACI"
                },
                {
                    "id": 16753,
                    "nome": "RIO/JARDIM BOTANICO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16754,
                    "nome": "ALVIN�POLIS - MG",
                    "municipio": "ALVINOPOLIS"
                },
                {
                    "id": 16755,
                    "nome": "BH/SILVA LOBO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16756,
                    "nome": "ALVORADA (RS)",
                    "municipio": "ALVORADA"
                },
                {
                    "id": 16757,
                    "nome": "PERSONNALIT�/OSASCO",
                    "municipio": "OSASCO"
                },
                {
                    "id": 16758,
                    "nome": "SALTO DO ITARAR� (PR)",
                    "municipio": "SALTO DO ITARARE"
                },
                {
                    "id": 16759,
                    "nome": "MARINGA-AV MANDACARU",
                    "municipio": "MARINGA"
                },
                {
                    "id": 16760,
                    "nome": "MARING�-AV. MORANGUEIRA",
                    "municipio": "MARINGA"
                },
                {
                    "id": 16761,
                    "nome": "ANT�NIO DIAS (MG)",
                    "municipio": "ANTONIO DIAS"
                },
                {
                    "id": 16762,
                    "nome": "DESTERRO DE ENTRE RIOS - MG",
                    "municipio": "DESTERRO DE ENTRE RIOS"
                },
                {
                    "id": 16763,
                    "nome": "DIVIS�POLIS (MG)",
                    "municipio": "DIVISOPOLIS"
                },
                {
                    "id": 16764,
                    "nome": "JEQUITA� (MG)",
                    "municipio": "JEQUITAI"
                },
                {
                    "id": 16765,
                    "nome": "RIB.PRETO/BONFIM PAULISTA",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 16766,
                    "nome": "MATA VERDE (MG)",
                    "municipio": "MATA VERDE"
                },
                {
                    "id": 16767,
                    "nome": "NOVA PONTE (MG)",
                    "municipio": "NOVA PONTE"
                },
                {
                    "id": 16768,
                    "nome": "RIO ACIMA (MG)",
                    "municipio": "RIO ACIMA"
                },
                {
                    "id": 16769,
                    "nome": "S�O JOS� DO JACURI (MG)",
                    "municipio": "SAO JOSE DO JACURI"
                },
                {
                    "id": 16770,
                    "nome": "PIRACICABA-SP",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 16771,
                    "nome": "RIO/RIO BRANCO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16772,
                    "nome": "PERSONNALIT� UBERABA",
                    "municipio": "UBERABA"
                },
                {
                    "id": 16773,
                    "nome": "PERSONNALIT� LIMEIRA",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 16774,
                    "nome": "FORMOSO (GO)",
                    "municipio": "FORMOSO"
                },
                {
                    "id": 16775,
                    "nome": "PIRANHAS (GO)",
                    "municipio": "PIRANHAS"
                },
                {
                    "id": 16776,
                    "nome": "ARUAN� (GO)",
                    "municipio": "ARUANA"
                },
                {
                    "id": 16777,
                    "nome": "CABECEIRAS (GO)",
                    "municipio": "CABECEIRAS"
                },
                {
                    "id": 16778,
                    "nome": "CORUMB� DE GOI�S (GO)",
                    "municipio": "CORUMBA DE GOIAS"
                },
                {
                    "id": 16779,
                    "nome": "FIRMIN�POLIS (GO)",
                    "municipio": "FIRMINOPOLIS"
                },
                {
                    "id": 16780,
                    "nome": "MONTIVIDIU (GO)",
                    "municipio": "MONTIVIDIU"
                },
                {
                    "id": 16781,
                    "nome": "NAZ�RIO (GO)",
                    "municipio": "NAZARIO"
                },
                {
                    "id": 16782,
                    "nome": "BRASILIA/ASA NORTE-DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 16783,
                    "nome": "VICENTIN�POLIS (GO)",
                    "municipio": "VICENTINOPOLIS"
                },
                {
                    "id": 16784,
                    "nome": "S�O CARLOS MIGUEL PETRONI",
                    "municipio": "SAO CARLOS"
                },
                {
                    "id": 16785,
                    "nome": "CAMPO BOM/RS",
                    "municipio": "CAMPO BOM"
                },
                {
                    "id": 16786,
                    "nome": "PERSONNALIT� BRASILIA PARKSHOPPING",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 16787,
                    "nome": "LAURO DE FREITAS-BA",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 16788,
                    "nome": "PERSONNALIT� S�O LU�S",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 16789,
                    "nome": "LOUVEIRA-SANTO ANTONIO",
                    "municipio": "LOUVEIRA"
                },
                {
                    "id": 16790,
                    "nome": "PERSONNALIT� FRANCA",
                    "municipio": "FRANCA"
                },
                {
                    "id": 16791,
                    "nome": "LONDRINA-AV INGLATERRA",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 16792,
                    "nome": "SAB�UDIA-PR",
                    "municipio": "SABAUDIA"
                },
                {
                    "id": 16793,
                    "nome": "FENIX - PR",
                    "municipio": "FENIX"
                },
                {
                    "id": 16794,
                    "nome": "OSASCO VELOSO",
                    "municipio": "OSASCO"
                },
                {
                    "id": 16795,
                    "nome": "CAMPINAS/MORAES SALLES-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 16796,
                    "nome": "CURITIBA-PR",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16797,
                    "nome": "PORTO AMAZONAS (PR)",
                    "municipio": "PORTO AMAZONAS"
                },
                {
                    "id": 16798,
                    "nome": "SUMARE-SP",
                    "municipio": "SUMARE"
                },
                {
                    "id": 16799,
                    "nome": "RECIFE/AFOGADOS-PE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 16800,
                    "nome": "CARAPICUIBA-SP",
                    "municipio": "CARAPICUIBA"
                },
                {
                    "id": 16801,
                    "nome": "IPAUCU-SP",
                    "municipio": "IPAUSSU"
                },
                {
                    "id": 16802,
                    "nome": "CURITIBA-RUA S�O JOS�",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16803,
                    "nome": "PINHAL�O - PR",
                    "municipio": "PINHALAO"
                },
                {
                    "id": 16804,
                    "nome": "SAO PAULO/VILA BUARQUE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16805,
                    "nome": "JOVIANIA - GO",
                    "municipio": "JOVIANIA"
                },
                {
                    "id": 16806,
                    "nome": "S�O SIM�O - GO",
                    "municipio": "SAO SIMAO"
                },
                {
                    "id": 16807,
                    "nome": "BARRO ALTO (GO)",
                    "municipio": "BARRO ALTO"
                },
                {
                    "id": 16808,
                    "nome": "CAMPAN�RIO (MG)",
                    "municipio": "CAMPANARIO"
                },
                {
                    "id": 16809,
                    "nome": "GUARULHOS/VILA GALVAO-SP",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 16810,
                    "nome": "S�O SEBASTI�O DO MARANH�O (MG)",
                    "municipio": "SAO SEBASTIAO DO MARANHAO"
                },
                {
                    "id": 16811,
                    "nome": "SERRA DOS AIMOR�S (MG)",
                    "municipio": "SERRA DOS AIMORES"
                },
                {
                    "id": 16812,
                    "nome": "CONCEI��O DO PAR� (MG)",
                    "municipio": "CONCEICAO DO PARA"
                },
                {
                    "id": 16813,
                    "nome": "DONA EUZ�BIA (MG)",
                    "municipio": "DONA EUZEBIA"
                },
                {
                    "id": 16814,
                    "nome": "CACHOEIRA DA PRATA (MG)",
                    "municipio": "CACHOEIRA DA PRATA"
                },
                {
                    "id": 16815,
                    "nome": "PIRAJUBA (MG)",
                    "municipio": "PIRAJUBA"
                },
                {
                    "id": 16816,
                    "nome": "SANTANA DE PIRAPAMA (MG)",
                    "municipio": "SANTANA DE PIRAPAMA"
                },
                {
                    "id": 16817,
                    "nome": "FELISBURGO (MG)",
                    "municipio": "FELISBURGO"
                },
                {
                    "id": 16818,
                    "nome": "SALVADOR GRACA BA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 16819,
                    "nome": "ITAIP� (MG)",
                    "municipio": "ITAIPE"
                },
                {
                    "id": 16820,
                    "nome": "REGENTE FEIJO-SP",
                    "municipio": "REGENTE FEIJO"
                },
                {
                    "id": 16821,
                    "nome": "SANTA ISABEL (SP)",
                    "municipio": "SANTA ISABEL"
                },
                {
                    "id": 16822,
                    "nome": "SP/VILA GUARANI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16823,
                    "nome": "SP/VILA BUENOS AIRES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16824,
                    "nome": "RIO/CAMPO GRANDE RIO DO A",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16825,
                    "nome": "NOVA UNI�O (MG)",
                    "municipio": "NOVA UNIAO"
                },
                {
                    "id": 16826,
                    "nome": "JO�O PESSOA-MANA�RA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 16827,
                    "nome": "PORTO ALEGRE/BAR�O DO AMAZONAS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 16828,
                    "nome": "MACEI�/PONTA VERDE",
                    "municipio": "MACEIO"
                },
                {
                    "id": 16829,
                    "nome": "SP/RUA GUAIA�NA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16830,
                    "nome": "SP/VILA JACU�",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16831,
                    "nome": "DIADEMA/PIRAPORINHA",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 16832,
                    "nome": "PERSONNALITE P PRUDENTE",
                    "municipio": "PRESIDENTE PRUDENTE"
                },
                {
                    "id": 16833,
                    "nome": "BOA VISTA- SOLEDADE",
                    "municipio": ""
                },
                {
                    "id": 16834,
                    "nome": "MOSS�MEDES-GO",
                    "municipio": "MOSSAMEDES"
                },
                {
                    "id": 16835,
                    "nome": "S�O JO�O DA MANTENINHA (MG)",
                    "municipio": "SAO JOAO DO MANTENINHA"
                },
                {
                    "id": 16836,
                    "nome": "SAO PAULO/JUMANA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16837,
                    "nome": "ITATIBA-SP",
                    "municipio": "ITATIBA"
                },
                {
                    "id": 16838,
                    "nome": "CONTAGEM/ANTONIO GUIMAR�ES",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 16839,
                    "nome": "MAUA DOM JOSE GASPAR",
                    "municipio": "MAUA"
                },
                {
                    "id": 16840,
                    "nome": "SANTO ANDRE VILA PIRES",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 16841,
                    "nome": "BH/PADRE PEDRO PINTO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16842,
                    "nome": "RIO/CEASA GRANDE RIO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16843,
                    "nome": "S.CAETANO/V.BARCELONA-SP",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 16844,
                    "nome": "PERSONNALIT� TERESINA",
                    "municipio": "TERESINA"
                },
                {
                    "id": 16845,
                    "nome": "PERSONNALITE V DIVINO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16846,
                    "nome": "RIO/ATAULFO DE PAIVA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16847,
                    "nome": "RIO-SANTO CRISTO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16848,
                    "nome": "RIO-TIJUCA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16849,
                    "nome": "CONS.ROSA E SILVA -RECIFE/PE",
                    "municipio": ""
                },
                {
                    "id": 16850,
                    "nome": "ARACAJU/SIQUEIRA CAMPOS",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 16851,
                    "nome": "RIO/LARGO DA PECHINCHA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16852,
                    "nome": "CONTAGEM/SEDE",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 16853,
                    "nome": "RIO-PRA�A VERDUM",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16854,
                    "nome": "PERSONNALITE FELIPE SANTOS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16855,
                    "nome": "RIO-JACAR�",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16856,
                    "nome": "NITEROI/BAIRRO FONSECA",
                    "municipio": "NITEROI"
                },
                {
                    "id": 16857,
                    "nome": "CURITIBA/JARDIM DAS AM�RICAS",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16858,
                    "nome": "SP/RUA PEDRO VICENTE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16859,
                    "nome": "RIO / COELHO NETO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16860,
                    "nome": "CAMPINAS/VILA INDUSTRIAL",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 16861,
                    "nome": "NIL�POLIS-GET�LIO VARGAS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16862,
                    "nome": "RIO / PRA�A SECA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16863,
                    "nome": "RIO/CASCADURA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16864,
                    "nome": "CURITIBA/MARIANO TORRES",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16865,
                    "nome": "RIO RIO COMPRIDO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16866,
                    "nome": "RIO-CONDE DE BONFIM",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16867,
                    "nome": "RIO/RUA AFONSO CAVALCANTI",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16868,
                    "nome": "EMB� DAS ARTES (SP)",
                    "municipio": "EMBU DAS ARTES"
                },
                {
                    "id": 16869,
                    "nome": "SP/CENTRAL/MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16870,
                    "nome": "ITAPECERICA DA SERRA - SP",
                    "municipio": "ITAPECERICA DA SERRA"
                },
                {
                    "id": 16871,
                    "nome": "CRUZEIRO DA FORTALEZA (MG)",
                    "municipio": "CRUZEIRO DA FORTALEZA"
                },
                {
                    "id": 16872,
                    "nome": "ENTRE FOLHAS (MG)",
                    "municipio": "ENTRE FOLHAS"
                },
                {
                    "id": 16873,
                    "nome": "RIO/RAINHA ELISABETE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16874,
                    "nome": "TABOAO DA SERRA-SP",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 16875,
                    "nome": "BH PCA RAUL SOARES",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16876,
                    "nome": "RIO DO PRADO (MG)",
                    "municipio": "RIO DO PRADO"
                },
                {
                    "id": 16877,
                    "nome": "BENTO GONCALVES RS",
                    "municipio": "BENTO GONCALVES"
                },
                {
                    "id": 16878,
                    "nome": "S�O JOS� DO DIVINO (MG)",
                    "municipio": "SAO JOSE DO DIVINO"
                },
                {
                    "id": 16879,
                    "nome": "RIO/SETE DE SETEMBRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16880,
                    "nome": "CACHOEIRA DO SUL-RS",
                    "municipio": "CACHOEIRA DO SUL"
                },
                {
                    "id": 16881,
                    "nome": "TAQUARA�U DE MINAS (MG)",
                    "municipio": "TAQUARACU DE MINAS"
                },
                {
                    "id": 16882,
                    "nome": "UBERLANDIA-JO�O NAVES",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 16883,
                    "nome": "PORTO ALEGRE/M.DE VENTO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 16884,
                    "nome": "PERSONNALITE-LARGO DA BARRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16885,
                    "nome": "PERSONNALITE ITAJAI",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 16886,
                    "nome": "5793 - PERSONNALITE - ALBERTO ANDALO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 16887,
                    "nome": "TUMIRITINGA (MG)",
                    "municipio": "TUMIRITINGA"
                },
                {
                    "id": 16888,
                    "nome": "ITABIRA-ESPLANADA",
                    "municipio": "ITABIRA"
                },
                {
                    "id": 16889,
                    "nome": "PERSONNALIT� POA BELA VISTA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 16890,
                    "nome": "ORLANDIA-SP",
                    "municipio": "ORLANDIA"
                },
                {
                    "id": 16891,
                    "nome": "BELO HORIZONTE-CASTELO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16892,
                    "nome": "PERSONNALITE-PARKSHOPPING CAMPO GRANDE RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16893,
                    "nome": "BALNE�RIO CAMBORI� - 4 AVE",
                    "municipio": "BALNEARIO CAMBORIU"
                },
                {
                    "id": 16894,
                    "nome": "PERSONNALIT� S�O GON�ALO",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 16895,
                    "nome": "DOM PEDRITO-RS",
                    "municipio": "DOM PEDRITO"
                },
                {
                    "id": 16896,
                    "nome": "MOGI GUA�U-BANDEIRANTES",
                    "municipio": "MOGI-GUACU"
                },
                {
                    "id": 16897,
                    "nome": "FLORIANOPOLIS CANASVIEIRAS",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 16898,
                    "nome": "PO�OS DE CALDAS-JD DOS ESTADOS",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 16899,
                    "nome": "MONTE APRAZIVEL-SP",
                    "municipio": "MONTE APRAZIVEL"
                },
                {
                    "id": 16900,
                    "nome": "JOINVILLE-BAIRRO PIRABEIRABA",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 16901,
                    "nome": "VOLTA REDONDA-AV CARLOS CHAGAS",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 16902,
                    "nome": "RIO/DEMOCRATICOS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16903,
                    "nome": "SAO PAULO/BARRA DO TIBAGI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16904,
                    "nome": "BARROSO-MG",
                    "municipio": "BARROSO"
                },
                {
                    "id": 16905,
                    "nome": "BH SAO LUCAS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 16906,
                    "nome": "PERSONNALIT� CASTELO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16907,
                    "nome": "ESTEIO-RS",
                    "municipio": "ESTEIO"
                },
                {
                    "id": 16908,
                    "nome": "S�O BERNARDO DO CAMPO - AV. JO�O FIRMINO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 16909,
                    "nome": "VIT�RIA-GOIABEIRAS",
                    "municipio": "VITORIA"
                },
                {
                    "id": 16910,
                    "nome": "PERSONNALIT� VILAS DO ATL�NTICO",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 16911,
                    "nome": "SAO JOAO DEL REI_-MG",
                    "municipio": "SAO JOAO DEL REI"
                },
                {
                    "id": 16912,
                    "nome": "CANOAS AV SANTOS FERREIRA",
                    "municipio": "CANOAS"
                },
                {
                    "id": 16913,
                    "nome": "PERSONNALIT� VALINHOS",
                    "municipio": "VALINHOS"
                },
                {
                    "id": 16914,
                    "nome": "FAZENDA RIO GRANDE-NA��ES",
                    "municipio": "FAZENDA RIO GRANDE"
                },
                {
                    "id": 16915,
                    "nome": "DRACENA-SP",
                    "municipio": "DRACENA"
                },
                {
                    "id": 16916,
                    "nome": "JO�O PINHEIRO-MG",
                    "municipio": "JOAO PINHEIRO"
                },
                {
                    "id": 16917,
                    "nome": "RIO/HADOCK LOBO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16918,
                    "nome": "AGUAI-SP",
                    "municipio": "AGUAI"
                },
                {
                    "id": 16919,
                    "nome": "SAO PAULO/VILA MUNHOZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16920,
                    "nome": "RIO/CASTELO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16921,
                    "nome": "RIO/SENADOR VERGUEIRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16922,
                    "nome": "RIO/GENERAL OSORIO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16923,
                    "nome": "RIO/JARDIM GUANABARA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16924,
                    "nome": "RIO/COCOT�",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16925,
                    "nome": "RIO/FAZENDA BOTAFOGO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16926,
                    "nome": "RIO/EDGARD ROMERO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16927,
                    "nome": "RIO/PAQUET�",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16928,
                    "nome": "P.ALEGRE/AV.ASSIS BRASIL",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 16929,
                    "nome": "RIO/VICENTE DE CARVALHO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16930,
                    "nome": "RIO/LARGO DA TAQUARA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16931,
                    "nome": "NITER�I/RUA MIGUEL DE FRIAS",
                    "municipio": "NITEROI"
                },
                {
                    "id": 16932,
                    "nome": "NOVA FRIBURGO / OLARIA",
                    "municipio": "NOVA FRIBURGO"
                },
                {
                    "id": 16933,
                    "nome": "NOVA FRIBURGO/MERCADO SERRANA",
                    "municipio": "NOVA FRIBURGO"
                },
                {
                    "id": 16934,
                    "nome": "PAPUCAIA/RJ",
                    "municipio": "CACHOEIRAS DE MACACU"
                },
                {
                    "id": 16935,
                    "nome": "NITEROI/BARCAS",
                    "municipio": "NITEROI"
                },
                {
                    "id": 16936,
                    "nome": "S�O JO�O DE MERITI/MATRIZ",
                    "municipio": "SAO JOAO DE MERITI"
                },
                {
                    "id": 16937,
                    "nome": "P.ALEGRE/RAMIRO BARCELOS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 16938,
                    "nome": "SANTA CRUZ DO SUL-RS",
                    "municipio": "SANTA CRUZ DO SUL"
                },
                {
                    "id": 16939,
                    "nome": "SP/TERMINAL S�O MATEUS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16940,
                    "nome": "PAULISTA-PE",
                    "municipio": "PAULISTA"
                },
                {
                    "id": 16941,
                    "nome": "CORDEIRO (RJ)",
                    "municipio": "CORDEIRO"
                },
                {
                    "id": 16942,
                    "nome": "DUAS BARRAS (RJ)",
                    "municipio": "DUAS BARRAS"
                },
                {
                    "id": 16943,
                    "nome": "S�O SEBASTI�O DO ALTO (RJ)",
                    "municipio": "SAO SEBASTIAO DO ALTO"
                },
                {
                    "id": 16944,
                    "nome": "MACUCO (RJ)",
                    "municipio": "MACUCO"
                },
                {
                    "id": 16945,
                    "nome": "NITER�I/JOS� CLEMENTE",
                    "municipio": "NITEROI"
                },
                {
                    "id": 16946,
                    "nome": "S�O GON�ALO/ALFREDO BACKER",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 16947,
                    "nome": "DUQUE DE CAXIAS/PRA�A ROBERTO SILVEIRA",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 16948,
                    "nome": "PARACAMBI  RJ",
                    "municipio": "PARACAMBI"
                },
                {
                    "id": 16949,
                    "nome": "ITAGUA� (RJ)",
                    "municipio": "ITAGUAI"
                },
                {
                    "id": 16950,
                    "nome": "PERSONNALIT� FEIRA DE SANTANA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 16951,
                    "nome": "MANAUS/ALEIXO",
                    "municipio": "MANAUS"
                },
                {
                    "id": 16952,
                    "nome": "VOLTA REDONDA/RETIRO",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 16953,
                    "nome": "PARA�BA DO SUL (RJ)",
                    "municipio": "PARAIBA DO SUL"
                },
                {
                    "id": 16954,
                    "nome": "MENDES (RJ)",
                    "municipio": "MENDES"
                },
                {
                    "id": 16955,
                    "nome": "ENGENHEIRO PAULO DE FRONTIN (RJ)",
                    "municipio": "ENGENHEIRO PAULO DE FRONTIN"
                },
                {
                    "id": 16956,
                    "nome": "RIO/IRAJ�",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16957,
                    "nome": "S�O FID�LIS (RJ)",
                    "municipio": "SAO FIDELIS"
                },
                {
                    "id": 16958,
                    "nome": "ITAOCARA (RJ)",
                    "municipio": "ITAOCARA"
                },
                {
                    "id": 16959,
                    "nome": "APERIB� (RJ)",
                    "municipio": "APERIBE"
                },
                {
                    "id": 16960,
                    "nome": "SANTO ANT�NIO DE P�DUA (RJ)",
                    "municipio": "SANTO ANTONIO DE PADUA"
                },
                {
                    "id": 16961,
                    "nome": "CABO FRIO/BOULEVARD CANAL",
                    "municipio": "CABO FRIO"
                },
                {
                    "id": 16962,
                    "nome": "BARRA DE S�O JO�O (RJ)",
                    "municipio": "CASIMIRO DE ABREU"
                },
                {
                    "id": 16963,
                    "nome": "SILVA JARDIM (RJ)",
                    "municipio": "SILVA JARDIM"
                },
                {
                    "id": 16964,
                    "nome": "SAO PAULO/AV.ANGELICA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 16965,
                    "nome": "SANTOS/EMBARE-SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 16966,
                    "nome": "S�O PEDRO DA ALDEIA (RJ)",
                    "municipio": "SAO PEDRO DA ALDEIA"
                },
                {
                    "id": 16967,
                    "nome": "TERES�POLIS/V�RZEA",
                    "municipio": "TERESOPOLIS"
                },
                {
                    "id": 16968,
                    "nome": "NOVA IGUA��/OT�VIO TARQUINO",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 16969,
                    "nome": "BARRA MANSA/JOAQUIM LEITE",
                    "municipio": "BARRA MANSA"
                },
                {
                    "id": 16970,
                    "nome": "BOM JESUS DO ITABAPOANA (RJ)",
                    "municipio": "BOM JESUS DO ITABAPOANA"
                },
                {
                    "id": 16971,
                    "nome": "BIRIGUI-SP",
                    "municipio": "BIRIGUI"
                },
                {
                    "id": 16972,
                    "nome": "S�O JOS� DO VALE DO RIO PRETO (RJ)",
                    "municipio": "SAO JOSE DO VALE DO RIO PRETO"
                },
                {
                    "id": 16973,
                    "nome": "CARMO (RJ)",
                    "municipio": "CARMO"
                },
                {
                    "id": 16974,
                    "nome": "SAPUCAIA (RJ)",
                    "municipio": "SAPUCAIA"
                },
                {
                    "id": 16975,
                    "nome": "SUMIDOURO (RJ)",
                    "municipio": "SUMIDOURO"
                },
                {
                    "id": 16976,
                    "nome": "LENCOIS PAULISTA-SP",
                    "municipio": "LENCOIS PAULISTA"
                },
                {
                    "id": 16977,
                    "nome": "CANTAGALO (RJ)",
                    "municipio": "CANTAGALO"
                },
                {
                    "id": 16978,
                    "nome": "TRAJANO DE MORAIS (RJ)",
                    "municipio": "TRAJANO DE MORAIS"
                },
                {
                    "id": 16979,
                    "nome": "SANTA MARIA MADALENA (RJ)",
                    "municipio": "SANTA MARIA MADALENA"
                },
                {
                    "id": 16980,
                    "nome": "QUISSAM� (RJ)",
                    "municipio": "QUISSAMA"
                },
                {
                    "id": 16981,
                    "nome": "RIO/BAIRRO CAMPO GRANDE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16982,
                    "nome": "VASSOURAS/RJ",
                    "municipio": "VASSOURAS"
                },
                {
                    "id": 16983,
                    "nome": "MACA�/PRA�A WASHINGTON LUIZ",
                    "municipio": "MACAE"
                },
                {
                    "id": 16984,
                    "nome": "CONCEI��O DE MACABU/RJ",
                    "municipio": "CONCEICAO DE MACABU"
                },
                {
                    "id": 16985,
                    "nome": "VACARIA-RS",
                    "municipio": "VACARIA"
                },
                {
                    "id": 16986,
                    "nome": "CAMPOS DOS GOYTACAZES/GOYTACAZES",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 16987,
                    "nome": "RESENDE/CASTELO BRANCO",
                    "municipio": "RESENDE"
                },
                {
                    "id": 16988,
                    "nome": "RIO/ BANGU C�NEGO VASCONCELOS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16989,
                    "nome": "RIO/JARDIM OCE�NICO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16990,
                    "nome": "JALES-SP",
                    "municipio": "JALES"
                },
                {
                    "id": 16991,
                    "nome": "PETR�POLIS/RJ",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 16992,
                    "nome": "S�O GON�ALO-RJ",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 16993,
                    "nome": "ITAPERUNA/MAJOR PORF�RIO",
                    "municipio": "ITAPERUNA"
                },
                {
                    "id": 16994,
                    "nome": "CURITIBA/JUVEVE",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 16995,
                    "nome": "VARRE-SAI/RJ",
                    "municipio": "VARRE-SAI"
                },
                {
                    "id": 16996,
                    "nome": "NATIVIDADE/RJ",
                    "municipio": "NATIVIDADE"
                },
                {
                    "id": 16997,
                    "nome": "PORCI�NCULA/RJ",
                    "municipio": "PORCIUNCULA"
                },
                {
                    "id": 16998,
                    "nome": "RIO/SENADOR DANTAS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 16999,
                    "nome": "CURITIBA PINHEIRINHO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17000,
                    "nome": "RIO/NOVA SANTA CRUZ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17001,
                    "nome": "SAO PAULO/TUCURUVI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17002,
                    "nome": "CAMPOS LAPA",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 17003,
                    "nome": "ITALVA/RJ",
                    "municipio": "ITALVA"
                },
                {
                    "id": 17004,
                    "nome": "S�O JO�O DA BARRA/RJ",
                    "municipio": "SAO JOAO DA BARRA"
                },
                {
                    "id": 17005,
                    "nome": "RIO/PASSAGEM",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17006,
                    "nome": "PETR�POLIS/ITAIPAVA",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 17007,
                    "nome": "VOLTA REDONDA/AV. AMARAL PEIXOTO",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 17008,
                    "nome": "SAO PAULO/HEITOR PENTEADO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17009,
                    "nome": "ANGRA DOS REIS/RUA DO COM�RCIO",
                    "municipio": "ANGRA DOS REIS"
                },
                {
                    "id": 17010,
                    "nome": "RIO/RUA BUENOS AIRES",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17011,
                    "nome": "SAO PAULO/VILA SONIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17012,
                    "nome": "P ALEGRE 7 DE SETEMBRO",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 17013,
                    "nome": "PERSONNALIT� ICARA�",
                    "municipio": "NITEROI"
                },
                {
                    "id": 17014,
                    "nome": "SAO PAULO/AV.ITABERABA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17015,
                    "nome": "PERSONNALIT� LEBLON",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17016,
                    "nome": "FORTALEZA MESSEJANA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 17017,
                    "nome": "PERSONNALIT�/AV. CHILE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17018,
                    "nome": "PERSONNALIT� SILVIO ROMERO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17019,
                    "nome": "RIBEIRAO PRETO/AV.SAUDADE",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 17020,
                    "nome": "CURITIBA/HAUER",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17021,
                    "nome": "RIO/BAIRRO VISTA ALEGRE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17022,
                    "nome": "PERSONNALIT� PARA�SO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17023,
                    "nome": "MACA�/PRAIA DOS CAVALEIROS",
                    "municipio": "MACAE"
                },
                {
                    "id": 17024,
                    "nome": "PALHO�A (SC)",
                    "municipio": "PALHOCA"
                },
                {
                    "id": 17025,
                    "nome": "BRAS�LIA/GUAR�",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 17026,
                    "nome": "RECIFE/DANTAS BARRETO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 17027,
                    "nome": "COTIA/ PARQUE BAHIA",
                    "municipio": "COTIA"
                },
                {
                    "id": 17028,
                    "nome": "SANTA LUZIA-MG",
                    "municipio": "SANTA LUZIA"
                },
                {
                    "id": 17029,
                    "nome": "SUZANO/RUA BENJAMIN CONSTANT",
                    "municipio": "SUZANO"
                },
                {
                    "id": 17030,
                    "nome": "CACADOR-SC",
                    "municipio": "CACADOR"
                },
                {
                    "id": 17031,
                    "nome": "S�O VICENTE/CIDADE NAUTICA",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 17032,
                    "nome": "PERSONNALIT� COPA P3",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17033,
                    "nome": "CURITIBANOS-SC",
                    "municipio": "CURITIBANOS"
                },
                {
                    "id": 17034,
                    "nome": "ALAGOINHAS - CONSELHEIRO FRANCO",
                    "municipio": "ALAGOINHAS"
                },
                {
                    "id": 17035,
                    "nome": "PARA�SO DO TOCANTINS (TO)",
                    "municipio": "PARAISO DO TOCANTINS"
                },
                {
                    "id": 17036,
                    "nome": "SERRINHA (BA)",
                    "municipio": "SERRINHA"
                },
                {
                    "id": 17037,
                    "nome": "CRICIUMA-SC",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 17038,
                    "nome": "ARARUAMA/MJ F MOREIRA",
                    "municipio": "ARARUAMA"
                },
                {
                    "id": 17039,
                    "nome": "CATU (BA)",
                    "municipio": "CATU"
                },
                {
                    "id": 17040,
                    "nome": "ITAPETINGA-BA",
                    "municipio": "ITAPETINGA"
                },
                {
                    "id": 17041,
                    "nome": "FOZ DO IGUACU-PR",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 17042,
                    "nome": "MANAUS AV CAMAPUA",
                    "municipio": "MANAUS"
                },
                {
                    "id": 17043,
                    "nome": "FLORIANOPOLIS CENTRO",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 17044,
                    "nome": "JOACABA-SC",
                    "municipio": "JOACABA"
                },
                {
                    "id": 17045,
                    "nome": "RIO FELIPE CARDOSO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17046,
                    "nome": "BEL�M/ENTROCAMENTO",
                    "municipio": "BELEM"
                },
                {
                    "id": 17047,
                    "nome": "SP/AV. MUTINGA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17048,
                    "nome": "SOROCABA/AV. ITAVUVU",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 17049,
                    "nome": "JABOAT�O/BAIRRO PRAZERES",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 17050,
                    "nome": "TRAMANDA� (RS)",
                    "municipio": "TRAMANDAI"
                },
                {
                    "id": 17051,
                    "nome": "OSASCO/ROCHDALE",
                    "municipio": "OSASCO"
                },
                {
                    "id": 17052,
                    "nome": "BEL�M/BAIRRO MARCO",
                    "municipio": "BELEM"
                },
                {
                    "id": 17053,
                    "nome": "SP/AV. ALTINO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17054,
                    "nome": "SP/METR� VILA MARIANA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17055,
                    "nome": "ITAPEMA (SC)",
                    "municipio": "ITAPEMA"
                },
                {
                    "id": 17056,
                    "nome": "MAFRA-SC",
                    "municipio": "MAFRA"
                },
                {
                    "id": 17057,
                    "nome": "PERSONNALIT� ACLIMA��O",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17058,
                    "nome": "CONTAGEM-MG",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 17059,
                    "nome": "SANTA BARBARA D'OESTE/ CENTRO",
                    "municipio": "SANTA BARBARA D'OESTE"
                },
                {
                    "id": 17060,
                    "nome": "SP/ JARDIM AEROPORTO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17061,
                    "nome": "BH COMERCIO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17062,
                    "nome": "CRUZ DAS ALMAS-BA",
                    "municipio": "CRUZ DAS ALMAS"
                },
                {
                    "id": 17063,
                    "nome": "PERSONNALIT�/ALPHA RESIDENCIAL",
                    "municipio": "SANTANA DE PARNAIBA"
                },
                {
                    "id": 17064,
                    "nome": "ANAPOLIS-PQ DAS NA��ES",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 17065,
                    "nome": "PACAJUS-CE",
                    "municipio": "PACAJUS"
                },
                {
                    "id": 17066,
                    "nome": "Ag�ncia 638",
                    "municipio": ""
                },
                {
                    "id": 17067,
                    "nome": "BOITUVA (SP)",
                    "municipio": "BOITUVA"
                },
                {
                    "id": 17068,
                    "nome": "ITAJA�/BAIRRO S�O JO�O",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 17069,
                    "nome": "Ag�ncia 6385",
                    "municipio": ""
                },
                {
                    "id": 17070,
                    "nome": "UBERABA/PARQUE EXPOSI��ES",
                    "municipio": "UBERABA"
                },
                {
                    "id": 17071,
                    "nome": "BLUMENAU/GARCIA",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 17072,
                    "nome": "CAMPINAS/NOVA CAMPINAS",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 17073,
                    "nome": "RIBEIR�O PRETO/MOGIANA",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 17074,
                    "nome": "SALVADOR/CIDADELA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 17075,
                    "nome": "PERSONNALIT�-SALVADOR/GRA�A",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 17076,
                    "nome": "S�O LEOPOLDO/SCHARLAU",
                    "municipio": "SAO LEOPOLDO"
                },
                {
                    "id": 17077,
                    "nome": "SAO PAULO/BOM RETIRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17078,
                    "nome": "PORTO UNIAO-SC",
                    "municipio": "PORTO UNIAO"
                },
                {
                    "id": 17079,
                    "nome": "SP/J�COMO ZANELLA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17080,
                    "nome": "SP/SANTA MARCELINA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17081,
                    "nome": "NAVEGANTES (SC)",
                    "municipio": "NAVEGANTES"
                },
                {
                    "id": 17082,
                    "nome": "S�O GON�ALO/NOVA CIDADE",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 17083,
                    "nome": "CAJAMAR - SP",
                    "municipio": "CAJAMAR"
                },
                {
                    "id": 17084,
                    "nome": "SP-AV. MORUMBI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17085,
                    "nome": "GUARULHOS/CUMBICA",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 17086,
                    "nome": "GUARULHOS/TABO�O",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 17087,
                    "nome": "GUARULHOS/VILA ZAIRA",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 17088,
                    "nome": "PERSONNALIT� MARAJOARA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17089,
                    "nome": "INDAIATUBA/AV. FRANCISCO DE PAULA LEITE",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 17090,
                    "nome": "PRAIA GRANDE/VILA TUPI",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 17091,
                    "nome": "IBI�NA (SP)",
                    "municipio": "IBIUNA"
                },
                {
                    "id": 17092,
                    "nome": "PORTO FELIZ (SP)",
                    "municipio": "PORTO FELIZ"
                },
                {
                    "id": 17093,
                    "nome": "MONTE MOR (SP)",
                    "municipio": "MONTE MOR"
                },
                {
                    "id": 17094,
                    "nome": "MAIRINQUE (SP)",
                    "municipio": "MAIRINQUE"
                },
                {
                    "id": 17095,
                    "nome": "MANAUS-COLONIA SANTO ANTONIO",
                    "municipio": "MANAUS"
                },
                {
                    "id": 17096,
                    "nome": "TUBARAO-SC",
                    "municipio": "TUBARAO"
                },
                {
                    "id": 17097,
                    "nome": "SAO PAULO/BOM PASTOR",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17098,
                    "nome": "ARARANGU� (SC)",
                    "municipio": "ARARANGUA"
                },
                {
                    "id": 17099,
                    "nome": "DOMINGOS FERREIRA-RECIFE",
                    "municipio": ""
                },
                {
                    "id": 17100,
                    "nome": "CRICIUMA/CENTRO",
                    "municipio": "CRICIUMA"
                },
                {
                    "id": 17101,
                    "nome": "SP/VILA CURU�A",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17102,
                    "nome": "BH/SANTA MONICA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17103,
                    "nome": "S�O FRANCISCO DO SUL",
                    "municipio": "SAO FRANCISCO DO SUL"
                },
                {
                    "id": 17104,
                    "nome": "RIO/PAVUNA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17105,
                    "nome": "ATIBAIA/JARDIM DO LAGO",
                    "municipio": "ATIBAIA"
                },
                {
                    "id": 17106,
                    "nome": "SAO PAULO/NOVA PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17107,
                    "nome": "CAUCAIA-CE",
                    "municipio": "CAUCAIA"
                },
                {
                    "id": 17108,
                    "nome": "PORTO ALEGRE/IPANEMA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 17109,
                    "nome": "GUARUJ�/AV. ADHEMAR DE BARROS",
                    "municipio": "GUARUJA"
                },
                {
                    "id": 17110,
                    "nome": "SOROCABA/BAIRRO �DEN",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 17111,
                    "nome": "SP/USP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17112,
                    "nome": "MAU�/AV. PRESIDENTE CASTELO BRANCO",
                    "municipio": "MAUA"
                },
                {
                    "id": 17113,
                    "nome": "S�O  BERNARDO DO CAMPO/BAETA NEVES",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 17114,
                    "nome": "VALINHOS/AV. DOS ESPORTES",
                    "municipio": "VALINHOS"
                },
                {
                    "id": 17115,
                    "nome": "RIO/NOVA M�IER",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17116,
                    "nome": "PERSONNALIT�-SP/JARDIM DA SA�DE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17117,
                    "nome": "SAO PAULO/PENHA DE FRANCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17118,
                    "nome": "SP/AV. INDIAN�POLIS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17119,
                    "nome": "MATAO-SP",
                    "municipio": "MATAO"
                },
                {
                    "id": 17120,
                    "nome": "CAMPO GDE MAL RONDON",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 17121,
                    "nome": "TABO�O DA SERRA-PAULO AYRES",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 17122,
                    "nome": "BARUERI/AV. 26 DE MAR�O",
                    "municipio": "BARUERI"
                },
                {
                    "id": 17123,
                    "nome": "SAO PAULO/CASA VERDE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17124,
                    "nome": "SP/EM�LIO CARLOS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17125,
                    "nome": "BETIM/PRA�A TIRADENTES",
                    "municipio": "BETIM"
                },
                {
                    "id": 17126,
                    "nome": "BH/JARAGU�",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17127,
                    "nome": "SP/JARDIM MIRIAM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17128,
                    "nome": "VIT�RIA/JARDIM CAMBURI",
                    "municipio": "VITORIA"
                },
                {
                    "id": 17129,
                    "nome": "651",
                    "municipio": ""
                },
                {
                    "id": 17130,
                    "nome": "FRANCISCO MORATO (SP)",
                    "municipio": "FRANCISCO MORATO"
                },
                {
                    "id": 17131,
                    "nome": "SANTO ANDR�/RUA CARIJOS",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 17132,
                    "nome": "TABO�O DA SERRA/BAIRRO PIRAJUSSARA",
                    "municipio": "TABOAO DA SERRA"
                },
                {
                    "id": 17133,
                    "nome": "CAMPINAS/JARDIM LONDRES",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 17134,
                    "nome": "GARANHUNS (PE)",
                    "municipio": "GARANHUNS"
                },
                {
                    "id": 17135,
                    "nome": "TORRES-RS",
                    "municipio": "TORRES"
                },
                {
                    "id": 17136,
                    "nome": "CAXIAS DO SUL/BAIRRO LOURDES",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 17137,
                    "nome": "BELO HORIZONTE-VIA BARREIRO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17138,
                    "nome": "CAMPINAS/JOAO JORGE-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 17139,
                    "nome": "BAURU - NA��ES UNIDAS",
                    "municipio": "BAURU"
                },
                {
                    "id": 17140,
                    "nome": "ARAGUARI-MG",
                    "municipio": "ARAGUARI"
                },
                {
                    "id": 17141,
                    "nome": "NATAL/PONTA NEGRA",
                    "municipio": "NATAL"
                },
                {
                    "id": 17142,
                    "nome": "DUQUE DE CAXIAS/JARDIM PRIMAVERA",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 17143,
                    "nome": "BRASILIA/ST.INDUSTRIA-DF",
                    "municipio": "BRASILIA (GUARA)"
                },
                {
                    "id": 17144,
                    "nome": "NOVA FRIBURGO/PRA�A GET�LIO VARGAS",
                    "municipio": "NOVA FRIBURGO"
                },
                {
                    "id": 17145,
                    "nome": "JEQUI� (BA)",
                    "municipio": "JEQUIE"
                },
                {
                    "id": 17146,
                    "nome": "GASPAR (SC)",
                    "municipio": "GASPAR"
                },
                {
                    "id": 17147,
                    "nome": "V�RZEA GRANDE/CENTRO NORTE",
                    "municipio": "VARZEA GRANDE"
                },
                {
                    "id": 17148,
                    "nome": "S�O JOS�/BARREIRO",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 17149,
                    "nome": "PERSONNALIT� CAMPINAS BAR�O GERALDO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 17150,
                    "nome": "PERSONNALIT� VILA OL�MPIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17151,
                    "nome": "PERSONNALIT� NOVA IGUA�U",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 17152,
                    "nome": "ITABORA�/CENTRO",
                    "municipio": "ITABORAI"
                },
                {
                    "id": 17153,
                    "nome": "PIEDADE (SP)",
                    "municipio": "PIEDADE"
                },
                {
                    "id": 17154,
                    "nome": "AN�POLIS/BAIRRO JUNDIAI",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 17155,
                    "nome": "BRAS�LIA/SAT. TAGUASUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 17156,
                    "nome": "GOIANIA/SETOR OESTE-GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17157,
                    "nome": "TIMB� (SC)",
                    "municipio": "TIMBO"
                },
                {
                    "id": 17158,
                    "nome": "SORRISO (MT)",
                    "municipio": "SORRISO"
                },
                {
                    "id": 17159,
                    "nome": "RIBEIR�O DAS NEVES/SEDE",
                    "municipio": "RIBEIRAO DAS NEVES"
                },
                {
                    "id": 17160,
                    "nome": "JUNDIAI/VILA ARENS-SP",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 17161,
                    "nome": "DUQUE DE CAXIAS/SARACURUNA",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 17162,
                    "nome": "STA RITA DO PASSA QUATRO-SP",
                    "municipio": "SANTA RITA DO PASSA QUATRO"
                },
                {
                    "id": 17163,
                    "nome": "BH/RAJA GABAGLIA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17164,
                    "nome": "MANACAPURU (AM)",
                    "municipio": "MANACAPURU"
                },
                {
                    "id": 17165,
                    "nome": "SAO PAULO/VILA OLIMPIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17166,
                    "nome": "BARRA DO GARCAS-MT",
                    "municipio": "BARRA DO GARCAS"
                },
                {
                    "id": 17167,
                    "nome": "MANAUS/PRA�A 14",
                    "municipio": "MANAUS"
                },
                {
                    "id": 17168,
                    "nome": "IBITINGA (SP)",
                    "municipio": "IBITINGA"
                },
                {
                    "id": 17169,
                    "nome": "PONTAL (SP)",
                    "municipio": "PONTAL"
                },
                {
                    "id": 17170,
                    "nome": "RIO/ANIL",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17171,
                    "nome": "GRAVATA�/VILA BRANCA",
                    "municipio": "GRAVATAI"
                },
                {
                    "id": 17172,
                    "nome": "DOIS IRM�OS RS",
                    "municipio": "DOIS IRMAOS"
                },
                {
                    "id": 17173,
                    "nome": "PORTO VELHO-RO",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 17174,
                    "nome": "GOI�NIA/FLAMBOYANT",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17175,
                    "nome": "RECIFE PB UNIMED",
                    "municipio": ""
                },
                {
                    "id": 17176,
                    "nome": "BH/PALMARES",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17177,
                    "nome": "PORT�O RS",
                    "municipio": "PORTAO"
                },
                {
                    "id": 17178,
                    "nome": "RIO BRANCO-AC",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 17179,
                    "nome": "SP/BAIRRO IGUATEMI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17180,
                    "nome": "SALVADOR/BAIRRO PIEDADE",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 17181,
                    "nome": "PIRACICABA/JARDIM PAULISTA",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 17182,
                    "nome": "PAULINIA-SP",
                    "municipio": "PAULINIA"
                },
                {
                    "id": 17183,
                    "nome": "SEROP�DICA (RJ)",
                    "municipio": "SEROPEDICA"
                },
                {
                    "id": 17184,
                    "nome": "PERSONNALIT� JOINVILLE",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 17185,
                    "nome": "PERSONNALIT�-BH/PAMPULHA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17186,
                    "nome": "COLOMBO/ALTO MARACAN�",
                    "municipio": "COLOMBO"
                },
                {
                    "id": 17187,
                    "nome": "SANTO ANDR�/BAIRRO SANTA TEREZINHA",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 17188,
                    "nome": "PERSONNALIT� CURITIBA/PORT�O",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17189,
                    "nome": "PERSONNALIT� MARING�",
                    "municipio": "MARINGA"
                },
                {
                    "id": 17190,
                    "nome": "S�O JOS� DO RIO PRETO/AV. POTIRENDABA",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 17191,
                    "nome": "SP/BAIRRO GRAJA�",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17192,
                    "nome": "SP/S�O JO�O CL�MACO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17193,
                    "nome": "PERSONNALIT� BOM PASTOR",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17194,
                    "nome": "SOUSA-PB",
                    "municipio": "SOUSA"
                },
                {
                    "id": 17195,
                    "nome": "LAURO DE FREITAS - ESTR COCO",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 17196,
                    "nome": "GUARULHOS/BOM CLIMA",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 17197,
                    "nome": "DUQUE DE CAXIAS/AV. EXPEDICION�RIOS",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 17198,
                    "nome": "JUIZ DE FORA/MANOEL HON�RIO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17199,
                    "nome": "SAO PAULO/JABAQUARA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17200,
                    "nome": "CAMPINAS/TAQUARAL-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 17201,
                    "nome": "SAO PAULO/FERNANDO FALCAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17202,
                    "nome": "ITAJUBA-MG",
                    "municipio": "ITAJUBA"
                },
                {
                    "id": 17203,
                    "nome": "SP/VILA S�O JOS�",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17204,
                    "nome": "SP/AV. RAGUEB CHOHFI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17205,
                    "nome": "PERSONNALIT� L SUL QI 11",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 17206,
                    "nome": "POUSO ALEGRE-MG",
                    "municipio": "POUSO ALEGRE"
                },
                {
                    "id": 17207,
                    "nome": "SP/RUA ZILDA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17208,
                    "nome": "SAO JOSE DO RIO PARDO-SP",
                    "municipio": "SAO JOSE DO RIO PARDO"
                },
                {
                    "id": 17209,
                    "nome": "ANGRA DOS REIS-RJ",
                    "municipio": "ANGRA DOS REIS"
                },
                {
                    "id": 17210,
                    "nome": "CAJAZEIRAS (PB)",
                    "municipio": "CAJAZEIRAS"
                },
                {
                    "id": 17211,
                    "nome": "CARUARU MANOEL FREITAS",
                    "municipio": "CARUARU"
                },
                {
                    "id": 17212,
                    "nome": "Ag�ncia 67820",
                    "municipio": ""
                },
                {
                    "id": 17213,
                    "nome": "BRUMADO (BA)",
                    "municipio": "BRUMADO"
                },
                {
                    "id": 17214,
                    "nome": "PARINTINS-AM",
                    "municipio": "PARINTINS"
                },
                {
                    "id": 17215,
                    "nome": "679",
                    "municipio": ""
                },
                {
                    "id": 17216,
                    "nome": "JUAZEIRO/AV. ADOLFO VIANA",
                    "municipio": "JUAZEIRO"
                },
                {
                    "id": 17217,
                    "nome": "SAO PAULO/AUGUSTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17218,
                    "nome": "BRAGANCA PTA./RAUL LEME",
                    "municipio": "BRAGANCA PAULISTA"
                },
                {
                    "id": 17219,
                    "nome": "MAG�/PIABET�",
                    "municipio": "MAGE"
                },
                {
                    "id": 17220,
                    "nome": "GOVERNADOR VALADARES/VILA ISA",
                    "municipio": "GOVERNADOR VALADARES"
                },
                {
                    "id": 17221,
                    "nome": "UBERABA/ABADIA",
                    "municipio": "UBERABA"
                },
                {
                    "id": 17222,
                    "nome": "BARRA MANSA-RJ",
                    "municipio": "BARRA MANSA"
                },
                {
                    "id": 17223,
                    "nome": "GARIBALDI (RS)",
                    "municipio": "GARIBALDI"
                },
                {
                    "id": 17224,
                    "nome": "S�O BERN CAMPO TOGNATO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 17225,
                    "nome": "SAO PAULO/ITAQUERA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17226,
                    "nome": "RIO/ NOVA BONSUCESSO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17227,
                    "nome": "GUARULHOS/BAIRRO DOS PIMENTAS",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 17228,
                    "nome": "MESQUITA (RJ",
                    "municipio": "MESQUITA"
                },
                {
                    "id": 17229,
                    "nome": "PARAGUACU PAULISTA-SP",
                    "municipio": "PARAGUACU PAULISTA"
                },
                {
                    "id": 17230,
                    "nome": "ITU/BAIRRO VILA NOVA",
                    "municipio": "ITU"
                },
                {
                    "id": 17231,
                    "nome": "SP/AV. JARDIM JAP�O",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17232,
                    "nome": "MANAUS-AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 17233,
                    "nome": "BALSAS-MA",
                    "municipio": "BALSAS"
                },
                {
                    "id": 17234,
                    "nome": "PINHAIS/AV. IRA�",
                    "municipio": "PINHAIS"
                },
                {
                    "id": 17235,
                    "nome": "NITER�I/ITAIP�",
                    "municipio": "NITEROI"
                },
                {
                    "id": 17236,
                    "nome": "Ag�ncia 687",
                    "municipio": ""
                },
                {
                    "id": 17237,
                    "nome": "SP/RUA SALVADOR GIANETTI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17238,
                    "nome": "GUARULHOS/JARDIM PRESIDENTE DUTRA",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 17239,
                    "nome": "DIADEMA/SERRARIA",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 17240,
                    "nome": "SP/AV. CAMPANELLA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17241,
                    "nome": "PALMAS/BAIRRO TAQUARALTO",
                    "municipio": "PALMAS"
                },
                {
                    "id": 17242,
                    "nome": "RECIFE/MADALENA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 17243,
                    "nome": "BARRA DO PIRAI-RJ",
                    "municipio": "BARRA DO PIRAI"
                },
                {
                    "id": 17244,
                    "nome": "PERSONNALIT� N JUNDIA�",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 17245,
                    "nome": "MOGI GUA�U/BAIRRO CAPELA",
                    "municipio": "MOGI-GUACU"
                },
                {
                    "id": 17246,
                    "nome": "BH PAMPULHA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17247,
                    "nome": "QUEIMADOS/ESTA��O",
                    "municipio": "QUEIMADOS"
                },
                {
                    "id": 17248,
                    "nome": "NOVA IGUA�U/FRANCISCO SOARES",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 17249,
                    "nome": "BH HORTO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17250,
                    "nome": "S�O GON�ALO/COLUBANDE",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 17251,
                    "nome": "S�O JOS� DOS PINHAIS/AFONSO PENA",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 17252,
                    "nome": "SAO PAULO/JARDIM DA SAUDE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17253,
                    "nome": "DIVINOPOLIS-MG",
                    "municipio": "DIVINOPOLIS"
                },
                {
                    "id": 17254,
                    "nome": "CAXIAS SUL CID DA UVA",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 17255,
                    "nome": "SP/ELISIO CORDEIRO DE SIQUEIRA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17256,
                    "nome": "RIBEIRAO PIRES-SP",
                    "municipio": "RIBEIRAO PIRES"
                },
                {
                    "id": 17257,
                    "nome": "AMERICANA VILA MOLON",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 17258,
                    "nome": "BARUERI/PARQUE DOS CAMARGOS",
                    "municipio": "BARUERI"
                },
                {
                    "id": 17259,
                    "nome": "JARINU (SP)",
                    "municipio": "JARINU"
                },
                {
                    "id": 17260,
                    "nome": "IPATINGA-MG",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 17261,
                    "nome": "693",
                    "municipio": ""
                },
                {
                    "id": 17262,
                    "nome": "6932   PERSONNALITE MARILIA",
                    "municipio": "MARILIA"
                },
                {
                    "id": 17263,
                    "nome": "PORTO ALEGRE/BOM JESUS",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 17264,
                    "nome": "GUAIBA  RS",
                    "municipio": "GUAIBA"
                },
                {
                    "id": 17265,
                    "nome": "CONTAGEM/JO�O C�SAR DE OLIVEIRA",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 17266,
                    "nome": "BRAS�LIA/SAT�LITE SAMAMBAIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 17267,
                    "nome": "694",
                    "municipio": ""
                },
                {
                    "id": 17268,
                    "nome": "Ag�ncia 6940",
                    "municipio": ""
                },
                {
                    "id": 17269,
                    "nome": "69400",
                    "municipio": ""
                },
                {
                    "id": 17270,
                    "nome": "CAMARAGIBE (PE)",
                    "municipio": "CAMARAGIBE"
                },
                {
                    "id": 17271,
                    "nome": "69422",
                    "municipio": ""
                },
                {
                    "id": 17272,
                    "nome": "SABAR�/AV. CONTAGEM",
                    "municipio": "SABARA"
                },
                {
                    "id": 17273,
                    "nome": "NOVO HAMBURGO/CANUDOS",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 17274,
                    "nome": "NOVA IGUA�U/MIGUEL COUTO",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 17275,
                    "nome": "PINDAMONHANGABA/MOREIRA C�SAR",
                    "municipio": "PINDAMONHANGABA"
                },
                {
                    "id": 17276,
                    "nome": "SAO PAULO/SILVA TELES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17277,
                    "nome": "I�ARA (SC)",
                    "municipio": "ICARA"
                },
                {
                    "id": 17278,
                    "nome": "S�O GON�ALO/BARRO VERMELHO",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 17279,
                    "nome": "BOA VISTA/ASA BRANCA",
                    "municipio": "BOA VISTA"
                },
                {
                    "id": 17280,
                    "nome": "LINHARES-ES",
                    "municipio": "LINHARES"
                },
                {
                    "id": 17281,
                    "nome": "BH/MILION�RIOS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17282,
                    "nome": "GUARULHOS/BAIRRO S�O JO�O",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 17283,
                    "nome": "SP/ NOVA AV. DOS TAJURAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17284,
                    "nome": "SALVADOR/CALCADA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 17285,
                    "nome": "ITUVERAVA-SP",
                    "municipio": "ITUVERAVA"
                },
                {
                    "id": 17286,
                    "nome": "PERSONNALIT�/JUIZ DE FORA",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 17287,
                    "nome": "Ag�ncia 6988",
                    "municipio": ""
                },
                {
                    "id": 17288,
                    "nome": "699",
                    "municipio": ""
                },
                {
                    "id": 17289,
                    "nome": "OSASCO/BUSSOCABA",
                    "municipio": "OSASCO"
                },
                {
                    "id": 17290,
                    "nome": "OSASCO/AV. JO�O ANDRADE",
                    "municipio": "OSASCO"
                },
                {
                    "id": 17291,
                    "nome": "S�O GON�ALO DO AMARANTE/IGAP�",
                    "municipio": "SAO GONCALO DO AMARANTE"
                },
                {
                    "id": 17292,
                    "nome": "BRAGANCA PAULISTA-SP",
                    "municipio": "BRAGANCA PAULISTA"
                },
                {
                    "id": 17293,
                    "nome": "VITORIA-ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 17294,
                    "nome": "SETE LAGOAS-MG",
                    "municipio": "SETE LAGOAS"
                },
                {
                    "id": 17295,
                    "nome": "PERSONNALIT� BH CENTRO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17296,
                    "nome": "PERSONNALIT� BLUMENAU",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 17297,
                    "nome": "PERSONNALIT� ASA NORTE OFFICE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 17298,
                    "nome": "VILA VELHA-ES",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 17299,
                    "nome": "PERSONNALIT� SETOR COMERCIAL SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 17300,
                    "nome": "PERSONNALIT� GLIC�RIO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 17301,
                    "nome": "PERSONNALIT� BATEL",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17302,
                    "nome": "PERSONNALIT� CENTRO CIVICO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17303,
                    "nome": "PERSONNALIT� BOCAIUVA",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 17304,
                    "nome": "PORTO ALEGRE/R.DA PRAIA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 17305,
                    "nome": "PERSONNALIT� MACEI�",
                    "municipio": "MACEIO"
                },
                {
                    "id": 17306,
                    "nome": "PERSONNALIT� NATAL",
                    "municipio": "NATAL"
                },
                {
                    "id": 17307,
                    "nome": "PERSONNALIT� NITER�I",
                    "municipio": "NITEROI"
                },
                {
                    "id": 17308,
                    "nome": "PERSONNALIT� PO� CARLOS GOMES",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 17309,
                    "nome": "PERSONNALIT� POA PRAIA BELA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 17310,
                    "nome": "PERSONNALIT� BOA VIAGEM",
                    "municipio": "RECIFE"
                },
                {
                    "id": 17311,
                    "nome": "703",
                    "municipio": ""
                },
                {
                    "id": 17312,
                    "nome": "PERSONNALIT� DERBY",
                    "municipio": "RECIFE"
                },
                {
                    "id": 17313,
                    "nome": "PERSONNALIT� JARDIM SUMAR�",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 17314,
                    "nome": "PERSONNALIT� SANS PENA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17315,
                    "nome": "PERSONNALIT� PITUBA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 17316,
                    "nome": "SALVADOR/FAROL DA BARRA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 17317,
                    "nome": "PERSONNALIT�-S�O BENTO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17318,
                    "nome": "PERSONNALIT� PAULIST1000",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17319,
                    "nome": "PERSONNALIT� ANGELICA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17320,
                    "nome": "RIO/CATETE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17321,
                    "nome": "PERSONNALIT� ALTO DA BOA VISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17322,
                    "nome": "PERSONNALIT� PERDIZES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17323,
                    "nome": "CACAPAVA-SP",
                    "municipio": "CACAPAVA"
                },
                {
                    "id": 17324,
                    "nome": "PERSONNALIT� MORUMBI OFFICE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17325,
                    "nome": "PERSONNALITE VITORIA",
                    "municipio": "VITORIA"
                },
                {
                    "id": 17326,
                    "nome": "S.PAULO/SERRA DE BRAGANCA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17327,
                    "nome": "MANAUS/EDUARDO RIBEIRO-AM",
                    "municipio": "MANAUS"
                },
                {
                    "id": 17328,
                    "nome": "PIRACICABA/PIRACICAMIRIM",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 17329,
                    "nome": "S�O CAETANO DO SUL/ VILA PAULA",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 17330,
                    "nome": "MAGE SIQUEIRA",
                    "municipio": "MAGE"
                },
                {
                    "id": 17331,
                    "nome": "CANDEIAS-BA",
                    "municipio": "CANDEIAS"
                },
                {
                    "id": 17332,
                    "nome": "NATAL POTIGUAR",
                    "municipio": "NATAL"
                },
                {
                    "id": 17333,
                    "nome": "RECIFE CAPIBARIBE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 17334,
                    "nome": "SP/LAUZANE PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17335,
                    "nome": "SP/AV. MATEO BEI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17336,
                    "nome": "CHAPEC�/S�O CRIST�V�O",
                    "municipio": "CHAPECO"
                },
                {
                    "id": 17337,
                    "nome": "BLUMENAU/ITOUPAVA NORTE",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 17338,
                    "nome": "SANTO ANDRE/AV. ITAMARATI",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 17339,
                    "nome": "S�O JOS� DO RIO PRETO/BAIRRO ELDORADO",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 17340,
                    "nome": "BEL�M/ICOARACI",
                    "municipio": "BELEM"
                },
                {
                    "id": 17341,
                    "nome": "SANTO ANDR�/JARDIM CAMPESTRE",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 17342,
                    "nome": "GOIANIA/AV. 24 DE OUTUBRO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17343,
                    "nome": "PELOTAS/TR�S VENDAS",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 17344,
                    "nome": "MOGI DAS CRUZES/BR�Z CUBAS",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 17345,
                    "nome": "BRAS�LIA/SAT�LITE PLANALTINA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 17346,
                    "nome": "S�O CAETANO DO SUL/CER�MICA",
                    "municipio": "SAO CAETANO DO SUL"
                },
                {
                    "id": 17347,
                    "nome": "GUARULHOS/RUA CACHOEIRA",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 17348,
                    "nome": "SUMAR�/BAIRRO MAT�O",
                    "municipio": "SUMARE"
                },
                {
                    "id": 17349,
                    "nome": "CAMPINAS/FCO.GLICERIO",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 17350,
                    "nome": "CAMPINAS/OURO VERDE",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 17351,
                    "nome": "BRAS�LIA/SATELITE RIACHO FUNDO",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 17352,
                    "nome": "ANANINDEUA/UNAMA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 17353,
                    "nome": "MANAUS/ALVORADA",
                    "municipio": "MANAUS"
                },
                {
                    "id": 17354,
                    "nome": "CAMPINAS/AV. RUY RODRIGUEZ",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 17355,
                    "nome": "JUNDIA�/JARDIM PAULISTA",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 17356,
                    "nome": "PERSONNALIT� N SOROCABA",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 17357,
                    "nome": "BH/VILARINHO",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17358,
                    "nome": "NITER�I/BAIRRO PENDOTIBA",
                    "municipio": "NITEROI"
                },
                {
                    "id": 17359,
                    "nome": "JUIZ DE FORA/ANDRADAS",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 17360,
                    "nome": "ELIAS FAUSTO SP",
                    "municipio": "ELIAS FAUSTO"
                },
                {
                    "id": 17361,
                    "nome": "BELFORD ROXO JD SANTA AMELIA",
                    "municipio": "BELFORD ROXO"
                },
                {
                    "id": 17362,
                    "nome": "PAULO AFONSO (BA)",
                    "municipio": "PAULO AFONSO"
                },
                {
                    "id": 17363,
                    "nome": "PALMEIRA DOS INDIOS-AL",
                    "municipio": "PALMEIRA DOS INDIOS"
                },
                {
                    "id": 17364,
                    "nome": "ITABUNA-BA",
                    "municipio": "ITABUNA"
                },
                {
                    "id": 17365,
                    "nome": "EXTREMA (MG)",
                    "municipio": "EXTREMA"
                },
                {
                    "id": 17366,
                    "nome": "NITEROI/ICARAI",
                    "municipio": "NITEROI"
                },
                {
                    "id": 17367,
                    "nome": "S�O GON�ALO/BAIRRO ROCHA",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 17368,
                    "nome": "CAR�PICUIBA/VILA DIRCE",
                    "municipio": "CARAPICUIBA"
                },
                {
                    "id": 17369,
                    "nome": "NOVA IGUA�U/COMENDADOR SOARES",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 17370,
                    "nome": "GOIANIA - SETOR PEDRO LUDOVICO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17371,
                    "nome": "S.JOSE CAMPOS/SANTANA-SP",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 17372,
                    "nome": "SP/JARDIM ARPOADOR",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17373,
                    "nome": "S�O JO�O DE MERITI/VILAR DOS TELES",
                    "municipio": "SAO JOAO DE MERITI"
                },
                {
                    "id": 17374,
                    "nome": "OSASCO/VILA PESTANA",
                    "municipio": "OSASCO"
                },
                {
                    "id": 17375,
                    "nome": "SP/VILA R�",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17376,
                    "nome": "NITER�I/SANTA ROSA",
                    "municipio": "NITEROI"
                },
                {
                    "id": 17377,
                    "nome": "GUARULHOS/PONTE GRANDE",
                    "municipio": "GUARULHOS"
                },
                {
                    "id": 17378,
                    "nome": "MANAUS PARQUE 10",
                    "municipio": "MANAUS"
                },
                {
                    "id": 17379,
                    "nome": "CURITIBA/FAZENDINHA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17380,
                    "nome": "RECIFE CEASA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 17381,
                    "nome": "RECIFE/VERDES MARES",
                    "municipio": "RECIFE"
                },
                {
                    "id": 17382,
                    "nome": "SANTO AMARO-BA",
                    "municipio": "SANTO AMARO"
                },
                {
                    "id": 17383,
                    "nome": "MACA� - CORREGO DO OURO",
                    "municipio": "MACAE"
                },
                {
                    "id": 17384,
                    "nome": "REDEN��O - PA",
                    "municipio": "REDENCAO"
                },
                {
                    "id": 17385,
                    "nome": "RIO/VISCONDE DE PIRAJA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17386,
                    "nome": "APARECIDA DE GOIANIA-JD MONTE CRISTO",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 17387,
                    "nome": "ITAPEVA-SP",
                    "municipio": "ITAPEVA"
                },
                {
                    "id": 17388,
                    "nome": "SAO PAULO/CANTAREIRA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17389,
                    "nome": "FRAIBURGO (SC)",
                    "municipio": "FRAIBURGO"
                },
                {
                    "id": 17390,
                    "nome": "CAMBORI� (SC)",
                    "municipio": "CAMBORIU"
                },
                {
                    "id": 17391,
                    "nome": "IGUABA GRANDE (RJ)",
                    "municipio": "IGUABA GRANDE"
                },
                {
                    "id": 17392,
                    "nome": "FLORIANOPOLIS/B.ESTREITO",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 17393,
                    "nome": "AV. GOV. AG.MAGALHAES - RECIFE",
                    "municipio": ""
                },
                {
                    "id": 17394,
                    "nome": "PIRACICABA/CARLOS BOTELHO",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 17395,
                    "nome": "RIO/SAO CLEMENTE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17396,
                    "nome": "BELFORD ROXO/HELI�POLIS",
                    "municipio": "BELFORD ROXO"
                },
                {
                    "id": 17397,
                    "nome": "S.PAULO/IMPER.LEOPOLDINA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17398,
                    "nome": "AMERICO BRASILIENSE",
                    "municipio": "AMERICO BRASILIENSE"
                },
                {
                    "id": 17399,
                    "nome": "RIO/ANDARA�",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17400,
                    "nome": "POUSO ALEGRE/BAIRRO FOCH",
                    "municipio": "POUSO ALEGRE"
                },
                {
                    "id": 17401,
                    "nome": "SETE LAGOAS/CANA�",
                    "municipio": "SETE LAGOAS"
                },
                {
                    "id": 17402,
                    "nome": "SAO PAULO/CIDADE DUTRA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17403,
                    "nome": "SALVADOR CABULA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 17404,
                    "nome": "BH/GUARANI",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17405,
                    "nome": "ITAJA�/CORDEIRO",
                    "municipio": "ITAJAI"
                },
                {
                    "id": 17406,
                    "nome": "FORTALEZA/CARLITO PAMPLONA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 17407,
                    "nome": "CURITIBA/SEMIN�RIO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17408,
                    "nome": "PORTO VELHO/JATUARANA",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 17409,
                    "nome": "CONTAGEM/BAIRRO AMAZONAS",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 17410,
                    "nome": "737",
                    "municipio": ""
                },
                {
                    "id": 17411,
                    "nome": "EMBU-GUA�U (SP)",
                    "municipio": "EMBU-GUACU"
                },
                {
                    "id": 17412,
                    "nome": "SANTANA DE PARNAIBA/CENTRO",
                    "municipio": "SANTANA DE PARNAIBA"
                },
                {
                    "id": 17413,
                    "nome": "Ag�ncia 7376",
                    "municipio": ""
                },
                {
                    "id": 17414,
                    "nome": "RIO DAS OSTRAS/AMARAL PEIXOTO",
                    "municipio": "RIO DAS OSTRAS"
                },
                {
                    "id": 17415,
                    "nome": "PO�/AV. 26 DE MAR�O",
                    "municipio": "POA"
                },
                {
                    "id": 17416,
                    "nome": "SAO PAULO/JOAO DIAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17417,
                    "nome": "PERSONNALIT� SP BELA VISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17418,
                    "nome": "SANTO ANDR�/AV. PORTUGAL",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 17419,
                    "nome": "REGISTRO (SP)",
                    "municipio": "REGISTRO"
                },
                {
                    "id": 17420,
                    "nome": "JOINVILLE/ITAUM",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 17421,
                    "nome": "S�O JOS� DOS CAMPOS/JARDIM AMERICA",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 17422,
                    "nome": "S�O BERNARDO DO CAMPO/PLANALTO",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 17423,
                    "nome": "OSASCO/PRESIDENTE MEDICI",
                    "municipio": "OSASCO"
                },
                {
                    "id": 17424,
                    "nome": "RIO BRANCO/BAIRRO BOSQUE",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 17425,
                    "nome": "FORMOSA-CENTRO",
                    "municipio": "FORMOSA"
                },
                {
                    "id": 17426,
                    "nome": "ARAPIRACA (AL)",
                    "municipio": "ARAPIRACA"
                },
                {
                    "id": 17427,
                    "nome": "PASSO FUNDO/AV. BRASIL OESTE",
                    "municipio": "PASSO FUNDO"
                },
                {
                    "id": 17428,
                    "nome": "BOTUCATU/CIDADE ALTA",
                    "municipio": "BOTUCATU"
                },
                {
                    "id": 17429,
                    "nome": "MARILIA/ZONA NORTE",
                    "municipio": "MARILIA"
                },
                {
                    "id": 17430,
                    "nome": "SAO PAULO/VILA FORMOSA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17431,
                    "nome": "SAO PAULO/RUA TUTOIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17432,
                    "nome": "CURITIBA/FRANCISCO DEROSSO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17433,
                    "nome": "CAMPO GRANDE/AV. MATO GROSSO",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 17434,
                    "nome": "S�O MATEUS (ES)",
                    "municipio": "SAO MATEUS"
                },
                {
                    "id": 17435,
                    "nome": "SAO PAULO/BROOKLIN NOVO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17436,
                    "nome": "FORTALEZA/AV. PONTES VIEIRA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 17437,
                    "nome": "FORTALEZA/PARANGABA",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 17438,
                    "nome": "MAU�/CENTRO",
                    "municipio": "MAUA"
                },
                {
                    "id": 17439,
                    "nome": "BH/C�U AZUL",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17440,
                    "nome": "APARECIDA DE GOIANIA AV  RIO VERDE",
                    "municipio": "APARECIDA DE GOIANIA"
                },
                {
                    "id": 17441,
                    "nome": "SERRA/CARAPINA",
                    "municipio": "SERRA"
                },
                {
                    "id": 17442,
                    "nome": "S.PAULO/CLODOM.AMAZONAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17443,
                    "nome": "ITAUBBA RECEB�VEIS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17444,
                    "nome": "JOINVILLE/COSTA E SILVA",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 17445,
                    "nome": "MANAUS/COMPENSA",
                    "municipio": "MANAUS"
                },
                {
                    "id": 17446,
                    "nome": "S�O JOS� DOS CAMPOS/AV. JUSCELINO KUBITSCHEK",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 17447,
                    "nome": "SUZANO/RUA BARUEL",
                    "municipio": "SUZANO"
                },
                {
                    "id": 17448,
                    "nome": "ILHABELA (SP)",
                    "municipio": "ILHABELA"
                },
                {
                    "id": 17449,
                    "nome": "JUNDIA�/HORTOL�NDIA",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 17450,
                    "nome": "SAPIRANGA/CENTRO",
                    "municipio": "SAPIRANGA"
                },
                {
                    "id": 17451,
                    "nome": "SP/JARAGU�",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17452,
                    "nome": "VOLTA REDONDA/SANTA CECILIA",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 17453,
                    "nome": "CAMPOS DOS GOYTACAZES/GUARUS",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 17454,
                    "nome": "CONTAGEM/RUA MANTIQUEIRA",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 17455,
                    "nome": "PALHO�A/PONTE DO IMARUIM",
                    "municipio": "PALHOCA"
                },
                {
                    "id": 17456,
                    "nome": "PERSONNALIT� NOVA RECIFE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 17457,
                    "nome": "PORTO ALEGRE/BALTAZAR GARCIA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 17458,
                    "nome": "SAO PAULO/BAIRRO MOEMA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17459,
                    "nome": "NOVA IGUA��/KM 32",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 17460,
                    "nome": "BH/PRA�A S�O VICENTE",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17461,
                    "nome": "CURITIBA/BAIRRO ALTO",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17462,
                    "nome": "TERESOPOLIS/AV. FELICIANO SODRE",
                    "municipio": "TERESOPOLIS"
                },
                {
                    "id": 17463,
                    "nome": "CAMPOS DOS GOYTACAZES/PARQUE FAZENDINHA",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 17464,
                    "nome": "SP/AV. CIDADE ADEMAR",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17465,
                    "nome": "NOVA FRIBURGO/CONSELHEIRO PAULINO",
                    "municipio": "NOVA FRIBURGO"
                },
                {
                    "id": 17466,
                    "nome": "SAO PAULO/ATALIBA LEONEL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17467,
                    "nome": "CACHOEIRINHA/FLORES DA CUNHA",
                    "municipio": "CACHOEIRINHA"
                },
                {
                    "id": 17468,
                    "nome": "RIO/MARECHAL FONTENELE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17469,
                    "nome": "S�O GON�ALO/BAIRRO PARAISO",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 17470,
                    "nome": "S�O BERNARDO DO CAMPO/BAIRRO DEMARCHI",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 17471,
                    "nome": "ANANINDEUA/CIDADE NOVA",
                    "municipio": "ANANINDEUA"
                },
                {
                    "id": 17472,
                    "nome": "CAMPINAS/CAMPO GRANDE",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 17473,
                    "nome": "747",
                    "municipio": ""
                },
                {
                    "id": 17474,
                    "nome": "S�O PEDRO (SP)",
                    "municipio": "SAO PEDRO"
                },
                {
                    "id": 17475,
                    "nome": "SP/BAIRRO LAJEADO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17476,
                    "nome": "SP/AV. YERVANT KISSAJIKIAN",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17477,
                    "nome": "CURITIBA/CIDADE INDUSTRIAL",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17478,
                    "nome": "ABREU E LIMA (PE)",
                    "municipio": "ABREU E LIMA"
                },
                {
                    "id": 17479,
                    "nome": "Ag�ncia 74740",
                    "municipio": ""
                },
                {
                    "id": 17480,
                    "nome": "JABOAT�O DOS GUARARAPES/CANDEIAS",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 17481,
                    "nome": "SAO PAULO/JACANA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17482,
                    "nome": "SP/PARADA DE TAIPAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17483,
                    "nome": "SANTO ANTONIO DE JESUS BA",
                    "municipio": "SANTO ANTONIO DE JESUS"
                },
                {
                    "id": 17484,
                    "nome": "SP/AV. DO RIO BONITO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17485,
                    "nome": "BLUMENAU/VELHA",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 17486,
                    "nome": "IMBITUBA (SC)",
                    "municipio": "IMBITUBA"
                },
                {
                    "id": 17487,
                    "nome": "BARCARENA (PA)",
                    "municipio": "BARCARENA"
                },
                {
                    "id": 17488,
                    "nome": "ALFENAS-MG",
                    "municipio": "ALFENAS"
                },
                {
                    "id": 17489,
                    "nome": "MACEI�/TABULEIRO",
                    "municipio": "MACEIO"
                },
                {
                    "id": 17490,
                    "nome": "RIO/BARRA AV. DAS AM�RICAS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17491,
                    "nome": "BAURU-SP",
                    "municipio": "BAURU"
                },
                {
                    "id": 17492,
                    "nome": "CURITIBA/CAJURU",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17493,
                    "nome": "ARTUR NOGUEIRA (SP)",
                    "municipio": "ARTUR NOGUEIRA"
                },
                {
                    "id": 17494,
                    "nome": "SAO PAULO/PIRITUBA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17495,
                    "nome": "MARAU (RS)",
                    "municipio": "MARAU"
                },
                {
                    "id": 17496,
                    "nome": "S.PAULO/V.N.CACHOEIRINHA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17497,
                    "nome": "SAO PAULO/CITY LAPA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17498,
                    "nome": "SAO PAULO/AFONSO BRAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17499,
                    "nome": "SAO PAUL0/GUAIANAZES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17500,
                    "nome": "ABAETETUBA-PA",
                    "municipio": "ABAETETUBA"
                },
                {
                    "id": 17501,
                    "nome": "SOROCABA-SP",
                    "municipio": "SOROCABA"
                },
                {
                    "id": 17502,
                    "nome": "SAO PAULO/SAPOPEMBA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17503,
                    "nome": "S.PAULO/MOREIRA BARROS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17504,
                    "nome": "S.PAULO/S.MIGUEL PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17505,
                    "nome": "SAO PAULO/ARTUR ALVIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17506,
                    "nome": "SAO PAULO/PONTE RASA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17507,
                    "nome": "PIRAJU-SP",
                    "municipio": "PIRAJU"
                },
                {
                    "id": 17508,
                    "nome": "SAO PAULO/JD.PRUDENCIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17509,
                    "nome": "CAMA�ARI/AV. RADIAL A",
                    "municipio": "CAMACARI"
                },
                {
                    "id": 17510,
                    "nome": "S�O BERNARDO DO CAMPO - AV PRESTES MAIA",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 17511,
                    "nome": "NAVIRAI-MS",
                    "municipio": "NAVIRAI"
                },
                {
                    "id": 17512,
                    "nome": "RESENDE-ALEGRIA",
                    "municipio": "RESENDE"
                },
                {
                    "id": 17513,
                    "nome": "PARNAIBA (PI)",
                    "municipio": "PARNAIBA"
                },
                {
                    "id": 17514,
                    "nome": "SUMAR�/BAIRRO CURA",
                    "municipio": "SUMARE"
                },
                {
                    "id": 17515,
                    "nome": "SAO PAULO/VILA GUILHERME",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17516,
                    "nome": "SAO PAULO/JD.ARICANDUVA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17517,
                    "nome": "HORTOL�NDIA/JARDIM ROSOL�M",
                    "municipio": "HORTOLANDIA"
                },
                {
                    "id": 17518,
                    "nome": "S�O SEBASTI�O/BOI�UCANGA",
                    "municipio": "SAO SEBASTIAO"
                },
                {
                    "id": 17519,
                    "nome": "IGUATU (CE)",
                    "municipio": "IGUATU"
                },
                {
                    "id": 17520,
                    "nome": "VIT�RIA DE SANTO ANT�O (PE)",
                    "municipio": "VITORIA DE SANTO ANTAO"
                },
                {
                    "id": 17521,
                    "nome": "S.PAULO/PQUE.NOVO MUNDO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17522,
                    "nome": "LUCAS DO RIO VERDE (MT)",
                    "municipio": "LUCAS DO RIO VERDE"
                },
                {
                    "id": 17523,
                    "nome": "SAO PAULO/VIEIRA MORAES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17524,
                    "nome": "S�O LOUREN�O DA MATA-PE",
                    "municipio": "SAO LOURENCO DA MATA"
                },
                {
                    "id": 17525,
                    "nome": "Ag�ncia 77280",
                    "municipio": ""
                },
                {
                    "id": 17526,
                    "nome": "S�O JOSE DOS CAMPOS/VISTA VERDE",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 17527,
                    "nome": "RECIFE/CAXANGA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 17528,
                    "nome": "BAYEUX (PB)",
                    "municipio": "BAYEUX"
                },
                {
                    "id": 17529,
                    "nome": "IPOJUCA (PE)",
                    "municipio": "IPOJUCA"
                },
                {
                    "id": 17530,
                    "nome": "FLORIANOP�LIS/PRAIA DOS INGLESES",
                    "municipio": "FLORIANOPOLIS"
                },
                {
                    "id": 17531,
                    "nome": "SAO ROQUE-SP",
                    "municipio": "SAO ROQUE"
                },
                {
                    "id": 17532,
                    "nome": "SAO PAULO/ACLIMACAO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17533,
                    "nome": "JUAZEIRO DO NORTE (CE",
                    "municipio": "JUAZEIRO DO NORTE"
                },
                {
                    "id": 17534,
                    "nome": "MONTES CLAROS/AV. PLINIO RIBEIRO",
                    "municipio": "MONTES CLAROS"
                },
                {
                    "id": 17535,
                    "nome": "S.PAULO/BAIRRO S.MATEUS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17536,
                    "nome": "PRAIA GRANDE-VILA CAI�ARA",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 17537,
                    "nome": "PRIMAVERA DO LESTE (MT)",
                    "municipio": "PRIMAVERA DO LESTE"
                },
                {
                    "id": 17538,
                    "nome": "CURITIBA/ORLEANS",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17539,
                    "nome": "CABO FRIO/TAMOIOS",
                    "municipio": "CABO FRIO"
                },
                {
                    "id": 17540,
                    "nome": "S�O GON�ALO/AV. RAUL VEIGA",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 17541,
                    "nome": "ITAPOLIS-SP",
                    "municipio": "ITAPOLIS"
                },
                {
                    "id": 17542,
                    "nome": "CONTAGEM/RESSACA",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 17543,
                    "nome": "DUQUE DE CAXIAS/GRAMACHO",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 17544,
                    "nome": "DIADEMA/AV. DOM JO�O VI",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 17545,
                    "nome": "CANELA (RS)",
                    "municipio": "CANELA"
                },
                {
                    "id": 17546,
                    "nome": "RIO/RAMOS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17547,
                    "nome": "PARAUAPEBAS (PA)",
                    "municipio": "PARAUAPEBAS"
                },
                {
                    "id": 17548,
                    "nome": "COTIA/COCAIA DO ALTO",
                    "municipio": "COTIA"
                },
                {
                    "id": 17549,
                    "nome": "UBERLANDIA/LUIZOTE DE FREITAS",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 17550,
                    "nome": "JAPERI (RJ)",
                    "municipio": "JAPERI"
                },
                {
                    "id": 17551,
                    "nome": "BOMBINHAS (SC)",
                    "municipio": "BOMBINHAS"
                },
                {
                    "id": 17552,
                    "nome": "SAO PAULO/VILA MARIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17553,
                    "nome": "PONTA GROSSA/NOVA RUSSIA",
                    "municipio": "PONTA GROSSA"
                },
                {
                    "id": 17554,
                    "nome": "BH MANGABEIRAS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17555,
                    "nome": "NOSSA SENHORA DO SOCORRO(SE)",
                    "municipio": "NOSSA SENHORA DO SOCORRO"
                },
                {
                    "id": 17556,
                    "nome": "Ag�ncia 7814",
                    "municipio": ""
                },
                {
                    "id": 17557,
                    "nome": "PERSONNALIT� GOIANIA/SETOR BUENO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17558,
                    "nome": "PERSONNALIT� FREGUESIA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17559,
                    "nome": "PERSONNALIT� MEIER",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17560,
                    "nome": "RIO/LARGO DO BICAO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17561,
                    "nome": "PERSONNALIT� SUDOESTE",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 17562,
                    "nome": "PERSONNALIT�/LOURDES",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17563,
                    "nome": "PERSONNALIT� CHAMPAGNAT",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17564,
                    "nome": "MOGI DAS CRUZES/MOGILAR",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 17565,
                    "nome": "RIO/VILA VALQUEIRE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17566,
                    "nome": "GOIANIA - SETOR SANTA GENOVEVA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17567,
                    "nome": "PATOS-PB",
                    "municipio": "PATOS"
                },
                {
                    "id": 17568,
                    "nome": "Ag�ncia 7834",
                    "municipio": ""
                },
                {
                    "id": 17569,
                    "nome": "SERRA - PORTO CANOA",
                    "municipio": "SERRA"
                },
                {
                    "id": 17570,
                    "nome": "MANAUS BOULEVARD MANAUS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 17571,
                    "nome": "CAMPO GRANDE/J�LIO DE CASTILHO",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 17572,
                    "nome": "BELFORD ROXO/LOTE XV",
                    "municipio": "BELFORD ROXO"
                },
                {
                    "id": 17573,
                    "nome": "DIADEMA/RUA MANOEL DA NOBREGA",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 17574,
                    "nome": "CACHOEIRO DE ITAPEMIRIM/SANTO ANTONIO",
                    "municipio": "CACHOEIRO DE ITAPEMIRIM"
                },
                {
                    "id": 17575,
                    "nome": "GUAPAMIRIM (RJ)",
                    "municipio": "GUAPIMIRIM"
                },
                {
                    "id": 17576,
                    "nome": "MANAUS/CIDADE NOVA",
                    "municipio": "MANAUS"
                },
                {
                    "id": 17577,
                    "nome": "S�O LU�S/COHAMA",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 17578,
                    "nome": "SAO PAULO/JD.BONFIGLIOLI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17579,
                    "nome": "S�O LUIS/JOAO PAULO",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 17580,
                    "nome": "QUIXAD�-CE",
                    "municipio": "QUIXADA"
                },
                {
                    "id": 17581,
                    "nome": "SERRA/JACARAIPE",
                    "municipio": "SERRA"
                },
                {
                    "id": 17582,
                    "nome": "RONDONOPOLIS/RUA DOM PEDRO II",
                    "municipio": "RONDONOPOLIS"
                },
                {
                    "id": 17583,
                    "nome": "SP/VILA DAS BELEZAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17584,
                    "nome": "SAO PAULO/CANGAIBA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17585,
                    "nome": "CUIAB�/CPA II",
                    "municipio": "CUIABA"
                },
                {
                    "id": 17586,
                    "nome": "DUQUE DE CAXIAS/SANTA CRUZ DA SERRA",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 17587,
                    "nome": "SAO PAULO/JARDIM GUEDALA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17588,
                    "nome": "PAULISTA/JANGA",
                    "municipio": "PAULISTA"
                },
                {
                    "id": 17589,
                    "nome": "PIRACAIA (SP)",
                    "municipio": "PIRACAIA"
                },
                {
                    "id": 17590,
                    "nome": "EUN�POLIS (BA)",
                    "municipio": "EUNAPOLIS"
                },
                {
                    "id": 17591,
                    "nome": "CONTAGEM/VILA UNIVERSAL",
                    "municipio": "CONTAGEM"
                },
                {
                    "id": 17592,
                    "nome": "SAO PAULO/VILA MEDEIROS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17593,
                    "nome": "790",
                    "municipio": ""
                },
                {
                    "id": 17594,
                    "nome": "Ag�ncia 7907",
                    "municipio": ""
                },
                {
                    "id": 17595,
                    "nome": "SP/CIDADE LIDER",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17596,
                    "nome": "FERRAZ DE VASCONCELOS/AV. XV DE NOVEMBRO",
                    "municipio": "FERRAZ DE VASCONCELOS"
                },
                {
                    "id": 17597,
                    "nome": "SP/PARQUE S�O RAFAEL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17598,
                    "nome": "SP/PARQUE JABAQUARA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17599,
                    "nome": "CABO FRIO/S�O CRIST�V�O",
                    "municipio": "CABO FRIO"
                },
                {
                    "id": 17600,
                    "nome": "UBERL�NDIA - SANTA LUZIA",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 17601,
                    "nome": "SP/JARDIM PERI PERI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17602,
                    "nome": "PARAGOMINAS (PA)",
                    "municipio": "PARAGOMINAS"
                },
                {
                    "id": 17603,
                    "nome": "S.J.R.PRETO/CARDEAL LEME",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 17604,
                    "nome": "ARCOVERDE (PE)",
                    "municipio": "ARCOVERDE"
                },
                {
                    "id": 17605,
                    "nome": "JABOAT�O DOS GUARARAPES/CENTRO",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 17606,
                    "nome": "MACA�/BARRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17607,
                    "nome": "SALVADOR/PARIPE",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 17608,
                    "nome": "RIO NEGRINHO (SC)",
                    "municipio": "RIO NEGRINHO"
                },
                {
                    "id": 17609,
                    "nome": "GOIANIA/CANA�",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17610,
                    "nome": "SAO JOSE DO RIO PRETO - AV DANILO GALEAZZI",
                    "municipio": "SAO JOSE DO RIO PRETO"
                },
                {
                    "id": 17611,
                    "nome": "GOIANIA/PRA�A DO AVI�O",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17612,
                    "nome": "TAUBAT�/CHARLES SCHNNEIDER",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 17613,
                    "nome": "RIO/PEDRA DE GUARATIBA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17614,
                    "nome": "CRATO (CE)",
                    "municipio": "CRATO"
                },
                {
                    "id": 17615,
                    "nome": "SANTANA (AP)",
                    "municipio": "SANTANA"
                },
                {
                    "id": 17616,
                    "nome": "CACOAL (RO)",
                    "municipio": "CACOAL"
                },
                {
                    "id": 17617,
                    "nome": "ARIQUEMES (RO)",
                    "municipio": "ARIQUEMES"
                },
                {
                    "id": 17618,
                    "nome": "VEN�NCIO AIRES (RS)",
                    "municipio": "VENANCIO AIRES"
                },
                {
                    "id": 17619,
                    "nome": "GUANAMBI (BA)",
                    "municipio": "GUANAMBI"
                },
                {
                    "id": 17620,
                    "nome": "GUARAPARI MUQUI�ABA",
                    "municipio": "GUARAPARI"
                },
                {
                    "id": 17621,
                    "nome": "RIO/CAMPO GRANDE ESTRADA DO MENDANHA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17622,
                    "nome": "VERA CRUZ-ITAPARICA",
                    "municipio": "VERA CRUZ"
                },
                {
                    "id": 17623,
                    "nome": "BRAS�LIA/SAT�LITE CEIL�NDIA SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 17624,
                    "nome": "JUNDIAI ANHANGABAU",
                    "municipio": "JUNDIAI"
                },
                {
                    "id": 17625,
                    "nome": "PO�OS DE CALDAS/VILA CRUZ",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 17626,
                    "nome": "TIMON (MA)",
                    "municipio": "TIMON"
                },
                {
                    "id": 17627,
                    "nome": "PINHEIRAL (RJ)",
                    "municipio": "PINHEIRAL"
                },
                {
                    "id": 17628,
                    "nome": "BIGUA�U-SC",
                    "municipio": "BIGUACU"
                },
                {
                    "id": 17629,
                    "nome": "BARUERI/ALDEIA DA SERRA",
                    "municipio": "BARUERI"
                },
                {
                    "id": 17630,
                    "nome": "MARACANA�/CENTRO",
                    "municipio": "MARACANAU"
                },
                {
                    "id": 17631,
                    "nome": "BRAS�LIA/SAT�LITE PARANO�",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 17632,
                    "nome": "BRAS�LIA/SAT�LITE RECANTO DAS EMAS",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 17633,
                    "nome": "RIO VERDE/JARDIM GOIAS",
                    "municipio": "RIO VERDE"
                },
                {
                    "id": 17634,
                    "nome": "PAUL�NIA/AV. GET�LIO VARGAS",
                    "municipio": "PAULINIA"
                },
                {
                    "id": 17635,
                    "nome": "BARBACENA/PONTILH�O",
                    "municipio": "BARBACENA"
                },
                {
                    "id": 17636,
                    "nome": "CAMAQU� (RS)",
                    "municipio": "CAMAQUA"
                },
                {
                    "id": 17637,
                    "nome": "COSMOPOLIS-SP",
                    "municipio": "COSMOPOLIS"
                },
                {
                    "id": 17638,
                    "nome": "AGUAS DE LINDOIA-SP",
                    "municipio": "AGUAS DE LINDOIA"
                },
                {
                    "id": 17639,
                    "nome": "BOTELHOS (MG)",
                    "municipio": "BOTELHOS"
                },
                {
                    "id": 17640,
                    "nome": "DIADEMA LICO MAIA",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 17641,
                    "nome": "CAMBUI (MG)",
                    "municipio": "CAMBUI"
                },
                {
                    "id": 17642,
                    "nome": "MONTE SI�O (MG)",
                    "municipio": "MONTE SIAO"
                },
                {
                    "id": 17643,
                    "nome": "PETROPOLIS CORREAS",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 17644,
                    "nome": "VARGINHA-MG",
                    "municipio": "VARGINHA"
                },
                {
                    "id": 17645,
                    "nome": "SOCORRO TREZE DE MAIO",
                    "municipio": "SOCORRO"
                },
                {
                    "id": 17646,
                    "nome": "PARAIS�POLIS (MG)",
                    "municipio": "PARAISOPOLIS"
                },
                {
                    "id": 17647,
                    "nome": "VIDEIRA-SC",
                    "municipio": "VIDEIRA"
                },
                {
                    "id": 17648,
                    "nome": "RIBEIR�O PRETO/ BRASILIENSE",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 17649,
                    "nome": "RIO DO SUL-SC",
                    "municipio": "RIO DO SUL"
                },
                {
                    "id": 17650,
                    "nome": "DESCALVADO GUERINO",
                    "municipio": "DESCALVADO"
                },
                {
                    "id": 17651,
                    "nome": "8043",
                    "municipio": ""
                },
                {
                    "id": 17652,
                    "nome": "MOGI DAS CRUZES/CENTRO",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 17653,
                    "nome": "RIO BAR�O DE MESQUITA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17654,
                    "nome": "S�O JOS� DOS CAMPOS/S�O DIMAS",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 17655,
                    "nome": "RANCHARIA-SP",
                    "municipio": "RANCHARIA"
                },
                {
                    "id": 17656,
                    "nome": "ITU/ PRA�A PADRE MIGUEL",
                    "municipio": "ITU"
                },
                {
                    "id": 17657,
                    "nome": "JACARE� / JARDIM PEREIRA DO AMPARO",
                    "municipio": "JACAREI"
                },
                {
                    "id": 17658,
                    "nome": "SP/ LEITE DE MORAES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17659,
                    "nome": "SAO VICENTE FREI GASPAR",
                    "municipio": "SAO VICENTE"
                },
                {
                    "id": 17660,
                    "nome": "PETROPOLIS UNIAO",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 17661,
                    "nome": "TATUI/JOS� BONIF�CIO",
                    "municipio": "TATUI"
                },
                {
                    "id": 17662,
                    "nome": "TERESOPOLIS-RJ",
                    "municipio": "TERESOPOLIS"
                },
                {
                    "id": 17663,
                    "nome": "RIO/RUA S�O CRISTOV�O",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17664,
                    "nome": "RIO ENGENHO DE DENTRO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17665,
                    "nome": "SANTOS WASHINGTON LUIS",
                    "municipio": "SANTOS"
                },
                {
                    "id": 17666,
                    "nome": "IBIRA SP",
                    "municipio": "IBIRA"
                },
                {
                    "id": 17667,
                    "nome": "MOCOCA-SP",
                    "municipio": "MOCOCA"
                },
                {
                    "id": 17668,
                    "nome": "BRASILIA W3 SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 17669,
                    "nome": "LONDRINA/AV. PARAN�",
                    "municipio": "LONDRINA"
                },
                {
                    "id": 17670,
                    "nome": "SP/ NOVA TUCURUVI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17671,
                    "nome": "SAO PAULO/VILA MARIANA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17672,
                    "nome": "SP/CONSELHEIRO CARR�O",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17673,
                    "nome": "RIO NOVO LEBLON",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17674,
                    "nome": "SP-LIBERO BADAR�",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17675,
                    "nome": "SP/NOVA S�O MIGUEL PAULISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17676,
                    "nome": "FORTALEZA/FLORIANO",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 17677,
                    "nome": "MANAUS/7 DE SETEMBRO",
                    "municipio": "MANAUS"
                },
                {
                    "id": 17678,
                    "nome": "SP NOVA VILA ZELINA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17679,
                    "nome": "RECIFE/B.ENCRUZILHADA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 17680,
                    "nome": "FORTALEZA S�O GERARDO",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 17681,
                    "nome": "LIMEIRA P�A TOLEDO BARROS",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 17682,
                    "nome": "TAUBAT�/RIO BRANCO",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 17683,
                    "nome": "SANTOS LITORAL PAULISTA",
                    "municipio": "SANTOS"
                },
                {
                    "id": 17684,
                    "nome": "SP/VILA ANDRADE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17685,
                    "nome": "SALTO DOM PEDRO II",
                    "municipio": "SALTO"
                },
                {
                    "id": 17686,
                    "nome": "NOVA IGUA�U DOM WALMOR",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 17687,
                    "nome": "DIADEMA/CASTELO BRANCO",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 17688,
                    "nome": "JUIZ DE FORA/RUA HALFELD",
                    "municipio": "JUIZ DE FORA"
                },
                {
                    "id": 17689,
                    "nome": "RIO AUGUSTO VASCONCELOS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17690,
                    "nome": "RIO ROMEIROS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17691,
                    "nome": "LAURO FREITAS DUMONT",
                    "municipio": "LAURO DE FREITAS"
                },
                {
                    "id": 17692,
                    "nome": "MTE AZUL PAULISTA SP",
                    "municipio": "MONTE AZUL PAULISTA"
                },
                {
                    "id": 17693,
                    "nome": "FEIRA SANT M QUITERIA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 17694,
                    "nome": "PERSONNALIT� CENTRO RIO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17695,
                    "nome": "BRUSQUE BARAO",
                    "municipio": "BRUSQUE"
                },
                {
                    "id": 17696,
                    "nome": "MASSARANDUBA-SC",
                    "municipio": "MASSARANDUBA"
                },
                {
                    "id": 17697,
                    "nome": "RECIFE RUA DA PAZ",
                    "municipio": ""
                },
                {
                    "id": 17698,
                    "nome": "CARUARU N SRA DAS DORES",
                    "municipio": "CARUARU"
                },
                {
                    "id": 17699,
                    "nome": "OSASCO CENTRO",
                    "municipio": "OSASCO"
                },
                {
                    "id": 17700,
                    "nome": "ANGRA DOS REIS CENTRO",
                    "municipio": "ANGRA DOS REIS"
                },
                {
                    "id": 17701,
                    "nome": "VIAM�O FRANCISCO FILHO",
                    "municipio": "VIAMAO"
                },
                {
                    "id": 17702,
                    "nome": "827",
                    "municipio": ""
                },
                {
                    "id": 17703,
                    "nome": "SALVADOR R JOSE PEROBA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 17704,
                    "nome": "MANAUS N S GRA�AS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 17705,
                    "nome": "Ag�ncia 8274",
                    "municipio": ""
                },
                {
                    "id": 17706,
                    "nome": "UBERABA/LEOPOLDINO",
                    "municipio": "UBERABA"
                },
                {
                    "id": 17707,
                    "nome": "829",
                    "municipio": ""
                },
                {
                    "id": 17708,
                    "nome": "PETROLINA SOUZA FILHO",
                    "municipio": "PETROLINA"
                },
                {
                    "id": 17709,
                    "nome": "MACEIO/CENTRO",
                    "municipio": "MACEIO"
                },
                {
                    "id": 17710,
                    "nome": "FOZ IGUA��-RESIDENCIAL A",
                    "municipio": "FOZ DO IGUACU"
                },
                {
                    "id": 17711,
                    "nome": "RIO/AVENIDA BRAZ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17712,
                    "nome": "ARAPONGAS-PR",
                    "municipio": "ARAPONGAS"
                },
                {
                    "id": 17713,
                    "nome": "830",
                    "municipio": ""
                },
                {
                    "id": 17714,
                    "nome": "8302",
                    "municipio": ""
                },
                {
                    "id": 17715,
                    "nome": "S�O LUIZ RUA DA PAZ",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 17716,
                    "nome": "RIO GETULIO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17717,
                    "nome": "831",
                    "municipio": ""
                },
                {
                    "id": 17718,
                    "nome": "OLINDA NOVO",
                    "municipio": "OLINDA"
                },
                {
                    "id": 17719,
                    "nome": "RIO BONITO GET VARGAS",
                    "municipio": "RIO BONITO"
                },
                {
                    "id": 17720,
                    "nome": "832",
                    "municipio": ""
                },
                {
                    "id": 17721,
                    "nome": "RECIFE MASCARENHAS",
                    "municipio": "RECIFE"
                },
                {
                    "id": 17722,
                    "nome": "RECIFE-AV.AGAMENON",
                    "municipio": ""
                },
                {
                    "id": 17723,
                    "nome": "BELEM/BENJAMIN CONSTANT",
                    "municipio": "BELEM"
                },
                {
                    "id": 17724,
                    "nome": "PERSONNALIT� RJ OUVIDOR",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17725,
                    "nome": "NILOPOLIS MIRANDELA",
                    "municipio": "NILOPOLIS"
                },
                {
                    "id": 17726,
                    "nome": "ITABORA�/AV. 22 DE MAIO",
                    "municipio": "ITABORAI"
                },
                {
                    "id": 17727,
                    "nome": "RIO MERCADO DAS FLORES",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17728,
                    "nome": "BOM JESUS DA LAPA-BA",
                    "municipio": "BOM JESUS DA LAPA"
                },
                {
                    "id": 17729,
                    "nome": "QUEIMADOS PEDRO JORGE",
                    "municipio": "QUEIMADOS"
                },
                {
                    "id": 17730,
                    "nome": "BERTIOGA-SP",
                    "municipio": "SANTOS"
                },
                {
                    "id": 17731,
                    "nome": "RIO/PORTUGAL",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17732,
                    "nome": "RIO PRINCESA ISABEL",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17733,
                    "nome": "RIO RECREIO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17734,
                    "nome": "BRAS�LIA/CEILANDIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 17735,
                    "nome": "OS�RIO-RS",
                    "municipio": "OSORIO"
                },
                {
                    "id": 17736,
                    "nome": "BH TUPINAMBAS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17737,
                    "nome": "FRANCA/PRESIDENTE VARGAS",
                    "municipio": "FRANCA"
                },
                {
                    "id": 17738,
                    "nome": "LIMEIRA MAJOR LEVY",
                    "municipio": "LIMEIRA"
                },
                {
                    "id": 17739,
                    "nome": "SAO JOSE KOBRASOL",
                    "municipio": "SAO JOSE"
                },
                {
                    "id": 17740,
                    "nome": "JOINVILLE FLORESTA",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 17741,
                    "nome": "RIO/COSME VELHO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17742,
                    "nome": "CURITIBA SAM'S ATUBA",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17743,
                    "nome": "NIL�POLIS/CARMELA DUTRA",
                    "municipio": "NILOPOLIS"
                },
                {
                    "id": 17744,
                    "nome": "SALVADOR CAJAZEIRAS",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 17745,
                    "nome": "SP/NOVA JARDIM JAP�O",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17746,
                    "nome": "SAO PAULO/VILA DAS MERCES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17747,
                    "nome": "PORTO VELHO TANCREDO NEVES",
                    "municipio": "PORTO VELHO"
                },
                {
                    "id": 17748,
                    "nome": "SAO PAULO/JARDIM AMERICA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17749,
                    "nome": "SP/SA�DE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17750,
                    "nome": "ARUJ�/ANTONIO AFONSO",
                    "municipio": "ARUJA"
                },
                {
                    "id": 17751,
                    "nome": "TIJUCAS-SC",
                    "municipio": "TIJUCAS"
                },
                {
                    "id": 17752,
                    "nome": "TERESINA ALVARO MENDES",
                    "municipio": "TERESINA"
                },
                {
                    "id": 17753,
                    "nome": "SAO PAULO/AV. CUPECE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17754,
                    "nome": "RIO VISTA ALEGRE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17755,
                    "nome": "RIO/AV. BRASIL",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17756,
                    "nome": "RIO/BANGU",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17757,
                    "nome": "JUAZEIRO DO NORTE-PE CICERO",
                    "municipio": "JUAZEIRO DO NORTE"
                },
                {
                    "id": 17758,
                    "nome": "Ag�ncia Ita� Recife/santo Antonio",
                    "municipio": ""
                },
                {
                    "id": 17759,
                    "nome": "ITATIAIA-RJ",
                    "municipio": "ITATIAIA"
                },
                {
                    "id": 17760,
                    "nome": "ARAX� ANTONIO CARLOS",
                    "municipio": "ARAXA"
                },
                {
                    "id": 17761,
                    "nome": "SP/ESTRADA ITAPECERICA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17762,
                    "nome": "RIO BANGU CONEGO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17763,
                    "nome": "CURITIBA BAIRRO HAUER",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17764,
                    "nome": "BALNEARIO CAMBORIU/CENTRO",
                    "municipio": "BALNEARIO CAMBORIU"
                },
                {
                    "id": 17765,
                    "nome": "CAMPINA GRANDE JO�O PESSOA",
                    "municipio": "CAMPINA GRANDE"
                },
                {
                    "id": 17766,
                    "nome": "SP/GREGORIO RAMALHO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17767,
                    "nome": "SP NOVA JOAQUIM FLORIANO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17768,
                    "nome": "JAGUARIUNA/AMANCIO BUENO",
                    "municipio": "JAGUARIUNA"
                },
                {
                    "id": 17769,
                    "nome": "MOSSORO CENTRO",
                    "municipio": "MOSSORO"
                },
                {
                    "id": 17770,
                    "nome": "GOIANIA/SETOR MARISTA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17771,
                    "nome": "MANAUS GRANDE CIRCULAR",
                    "municipio": "MANAUS"
                },
                {
                    "id": 17772,
                    "nome": "BELEM ANANINDEUA   PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 17773,
                    "nome": "MACAPA/GETULIO VARGAS",
                    "municipio": "MACAPA"
                },
                {
                    "id": 17774,
                    "nome": "STO ANDRE/VILA BOA VISTA",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 17775,
                    "nome": "ITANHAEM-JD BELAS ARTES",
                    "municipio": "ITANHAEM"
                },
                {
                    "id": 17776,
                    "nome": "PERSONNALIT� SANTANA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17777,
                    "nome": "S�O JOS� DOS CAMPOS/ANDROMEDA",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 17778,
                    "nome": "SUMAR�-NOVA VENEZA",
                    "municipio": "SUMARE"
                },
                {
                    "id": 17779,
                    "nome": "RIO/MAHATMA GANDHI",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17780,
                    "nome": "SP / NOVA ADOLFO PINHEIRO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17781,
                    "nome": "RIBEIR�O PRETO-VILA VIRGINIA",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 17782,
                    "nome": "SAO GONCALO PARREIRAS",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 17783,
                    "nome": "DIVINOPOLIS-CENTRO",
                    "municipio": "DIVINOPOLIS"
                },
                {
                    "id": 17784,
                    "nome": "MARECHAL TITO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17785,
                    "nome": "S�O GONCALO/MUTONDO",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 17786,
                    "nome": "SP / SHOPPING ARICANDUVA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17787,
                    "nome": "CENTRO - NITEROI",
                    "municipio": ""
                },
                {
                    "id": 17788,
                    "nome": "SP / NOVA BELA VISTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17789,
                    "nome": "SP/CANJERANAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17790,
                    "nome": "FEIRA DE SANTANA PRES DUTRA",
                    "municipio": "FEIRA DE SANTANA"
                },
                {
                    "id": 17791,
                    "nome": "RIO AEROPORTO TOM JOBIM",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17792,
                    "nome": "CABO FRIO/ASSUNCAO",
                    "municipio": "CABO FRIO"
                },
                {
                    "id": 17793,
                    "nome": "RIBEIR�O PRETO-JARDIM FIUSA",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 17794,
                    "nome": "SALVADOR / HIPERMERCADO",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 17795,
                    "nome": "BH/ALAMEDA DAS PRINCESAS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17796,
                    "nome": "GUAXUPE-MG",
                    "municipio": "GUAXUPE"
                },
                {
                    "id": 17797,
                    "nome": "CURITIBA PALLADIUM",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17798,
                    "nome": "S�O J DOS PINHAIS CENTRO",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 17799,
                    "nome": "CURITIBA MARECHAL",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17800,
                    "nome": "JARAGUA DO SUL - SC",
                    "municipio": "JARAGUA DO SUL"
                },
                {
                    "id": 17801,
                    "nome": "ITABIRA/CUST�DIO",
                    "municipio": "ITABIRA"
                },
                {
                    "id": 17802,
                    "nome": "PATOS DE MINAS-MG",
                    "municipio": "PATOS DE MINAS"
                },
                {
                    "id": 17803,
                    "nome": "RECIFE CONDE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 17804,
                    "nome": "ARAGUAINA-TO",
                    "municipio": "ARAGUAINA"
                },
                {
                    "id": 17805,
                    "nome": "BOA VIAGEM - RECIFE/PE",
                    "municipio": ""
                },
                {
                    "id": 17806,
                    "nome": "PERSONNALIT� FL 1800",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17807,
                    "nome": "PERSONNALIT� RJ CAMPOS",
                    "municipio": "CAMPOS DOS GOYTACAZES"
                },
                {
                    "id": 17808,
                    "nome": "SAO PAULO/PORTAL MORUMBI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17809,
                    "nome": "ITAJUB�/VENCESLAU BRAZ",
                    "municipio": "ITAJUBA"
                },
                {
                    "id": 17810,
                    "nome": "CARIACICA CAMPO GRANDE",
                    "municipio": "CARIACICA"
                },
                {
                    "id": 17811,
                    "nome": "GURUPI-TO",
                    "municipio": "GURUPI"
                },
                {
                    "id": 17812,
                    "nome": "GUARAMIRIM-SC",
                    "municipio": "GUARAMIRIM"
                },
                {
                    "id": 17813,
                    "nome": "GOIANIA/AV.INDEPENDENCIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17814,
                    "nome": "BH/LOURDES",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17815,
                    "nome": "87",
                    "municipio": ""
                },
                {
                    "id": 17816,
                    "nome": "VITORIA/PRAIA DO CANTO-ES",
                    "municipio": "VITORIA"
                },
                {
                    "id": 17817,
                    "nome": "RIO JACAREPAGUA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17818,
                    "nome": "SP SUMAR�",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17819,
                    "nome": "OSASCO/FIORINO BELTRANO",
                    "municipio": "OSASCO"
                },
                {
                    "id": 17820,
                    "nome": "SP / BELA ALIAN�A",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17821,
                    "nome": "BELFORD ROXO/BENJAMIN",
                    "municipio": "BELFORD ROXO"
                },
                {
                    "id": 17822,
                    "nome": "OLINDA-PE",
                    "municipio": "OLINDA"
                },
                {
                    "id": 17823,
                    "nome": "8740",
                    "municipio": ""
                },
                {
                    "id": 17824,
                    "nome": "IRACEMAPOLIS (SP)",
                    "municipio": "IRACEMAPOLIS"
                },
                {
                    "id": 17825,
                    "nome": "RIO/NOVA VILA MILITAR",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17826,
                    "nome": "PALMARES-PE",
                    "municipio": "PALMARES"
                },
                {
                    "id": 17827,
                    "nome": "GOIANIA/DERGO-GO",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17828,
                    "nome": "EMBU/JD. SANTO EDUARDO",
                    "municipio": "EMBU DAS ARTES"
                },
                {
                    "id": 17829,
                    "nome": "JO�O PESSOA/GEOVANI MELO",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 17830,
                    "nome": "JABOATAO/PIEDADE",
                    "municipio": "JABOATAO DOS GUARARAPES"
                },
                {
                    "id": 17831,
                    "nome": "Ag�ncia 8770",
                    "municipio": ""
                },
                {
                    "id": 17832,
                    "nome": "SP/ 7 DE ABRIL REPUBLICA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17833,
                    "nome": "GOIANIA - AV T9",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17834,
                    "nome": "FORTALEZA/SANTOS DUMONT",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 17835,
                    "nome": "SP SHOP CENTER 3",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17836,
                    "nome": "EMB DAS ARTES/21 ABRIL",
                    "municipio": "EMBU DAS ARTES"
                },
                {
                    "id": 17837,
                    "nome": "RIO/VILA KOSMOS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17838,
                    "nome": "PARA�BA DO SUL/DEODORO",
                    "municipio": "PARAIBA DO SUL"
                },
                {
                    "id": 17839,
                    "nome": "SAO BENTO SUL/ZIPPERER",
                    "municipio": "SAO BENTO DO SUL"
                },
                {
                    "id": 17840,
                    "nome": "CAMBE-PR",
                    "municipio": "CAMBE"
                },
                {
                    "id": 17841,
                    "nome": "RIO/TOP�ZIO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17842,
                    "nome": "S�O JOS� RIBAMAR-MA",
                    "municipio": "SAO JOSE DE RIBAMAR"
                },
                {
                    "id": 17843,
                    "nome": "S�O BERNARDO DO CAMPO/MUSSOLINE",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 17844,
                    "nome": "S�O BERNARDO DO CAMPO/MARECHAL",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 17845,
                    "nome": "XANXERE-SC",
                    "municipio": "XANXERE"
                },
                {
                    "id": 17846,
                    "nome": "DIADEMA/PRA�A BOM JESUS",
                    "municipio": "DIADEMA"
                },
                {
                    "id": 17847,
                    "nome": "882",
                    "municipio": ""
                },
                {
                    "id": 17848,
                    "nome": "BH/LAGOINHA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17849,
                    "nome": "ROLIM DE MOURA (RO)",
                    "municipio": "ROLIM DE MOURA"
                },
                {
                    "id": 17850,
                    "nome": "IRECE-BA",
                    "municipio": "IRECE"
                },
                {
                    "id": 17851,
                    "nome": "DUQUE DE CAXIAS/CENTRO",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 17852,
                    "nome": "LARANJAL PAULISTA CENTRO",
                    "municipio": "LARANJAL PAULISTA"
                },
                {
                    "id": 17853,
                    "nome": "SP/NOVA MORUMBI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17854,
                    "nome": "SAO PAULO/CIDADE VARGAS",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17855,
                    "nome": "RIO/AMOEDO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17856,
                    "nome": "VALEN�A (BA)",
                    "municipio": "VALENCA"
                },
                {
                    "id": 17857,
                    "nome": "ITAQUAQUECETUBA/PADRE JO�O",
                    "municipio": "ITAQUAQUECETUBA"
                },
                {
                    "id": 17858,
                    "nome": "Sÿƿÿ¿�ÿ¿�ÿ¿�¿�ÿƿÿ¿� ÿ¿�ÿ¿�¬ÿ¿",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 17859,
                    "nome": "SANTO ANDRE CESARIO MOTA",
                    "municipio": "SANTO ANDRE"
                },
                {
                    "id": 17860,
                    "nome": "S�O LOUREN�O/DOM PEDRO",
                    "municipio": "SAO LOURENCO"
                },
                {
                    "id": 17861,
                    "nome": "HORTOL�NDIA-JARDIM AMANDA",
                    "municipio": "HORTOLANDIA"
                },
                {
                    "id": 17862,
                    "nome": "LU�S EDUARDO MAGALH�ES (BA)",
                    "municipio": "LUIS EDUARDO MAGALHAES"
                },
                {
                    "id": 17863,
                    "nome": "889",
                    "municipio": ""
                },
                {
                    "id": 17864,
                    "nome": "Ag�ncia 8890",
                    "municipio": ""
                },
                {
                    "id": 17865,
                    "nome": "BETIM/AV. AMAZONAS",
                    "municipio": "BETIM"
                },
                {
                    "id": 17866,
                    "nome": "890",
                    "municipio": ""
                },
                {
                    "id": 17867,
                    "nome": "GOIANIA PARQUE AMAZONIA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17868,
                    "nome": "ESTIVA GERBI (SP)",
                    "municipio": "ESTIVA GERBI"
                },
                {
                    "id": 17869,
                    "nome": "MARIC�/RUA DOM�CIO GAMA",
                    "municipio": "MARICA"
                },
                {
                    "id": 17870,
                    "nome": "MACEIO/AVENIDA",
                    "municipio": "MACEIO"
                },
                {
                    "id": 17871,
                    "nome": "AV CONS AGUIAR, RECIFE (PE)",
                    "municipio": ""
                },
                {
                    "id": 17872,
                    "nome": "VITORIA DA CONQUISTA - S�O GERALDO",
                    "municipio": "VITORIA DA CONQUISTA"
                },
                {
                    "id": 17873,
                    "nome": "PERSONNALIT� LE MONDE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17874,
                    "nome": "NOVA SERRANA - CENTRO",
                    "municipio": "NOVA SERRANA"
                },
                {
                    "id": 17875,
                    "nome": "CAMACARI/ADELINA DE SA",
                    "municipio": "CAMACARI"
                },
                {
                    "id": 17876,
                    "nome": "CARREFOUR TORRE, PE",
                    "municipio": ""
                },
                {
                    "id": 17877,
                    "nome": "RIBEIRAO PRETO/INDEPEND�NCIA",
                    "municipio": "RIBEIRAO PRETO"
                },
                {
                    "id": 17878,
                    "nome": "SENHOR DO BONFIM (BA)",
                    "municipio": "SENHOR DO BONFIM"
                },
                {
                    "id": 17879,
                    "nome": "MAG� FRAGOSO",
                    "municipio": "MAGE"
                },
                {
                    "id": 17880,
                    "nome": "S�O JO�O DE MERITI/JARDIM MERITI",
                    "municipio": "SAO JOAO DE MERITI"
                },
                {
                    "id": 17881,
                    "nome": "CAMPINAS-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 17882,
                    "nome": "DUQUE DE CAXIAS-RJ",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 17883,
                    "nome": "PERSONNALIT� CASCAVEL",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 17884,
                    "nome": "PERSONNALIT� N. IPANEMA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17885,
                    "nome": "PERSONNALIT� B. ONDINA",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 17886,
                    "nome": "PERSONNALIT� BARRA NOVA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17887,
                    "nome": "PERSONNALITE FL 3355",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17888,
                    "nome": "PERSONNALITE ST MARISTA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17889,
                    "nome": "VARGEM GRANDE PAULISTA/VILA PIRES",
                    "municipio": "VARGEM GRANDE PAULISTA"
                },
                {
                    "id": 17890,
                    "nome": "VINHEDO 2 DE ABRIL",
                    "municipio": "VINHEDO"
                },
                {
                    "id": 17891,
                    "nome": "PERSONNALIT� JO�O PESSOA",
                    "municipio": "JOAO PESSOA"
                },
                {
                    "id": 17892,
                    "nome": "PERSONNALIT� NOVO HAMBRUGO",
                    "municipio": "NOVO HAMBURGO"
                },
                {
                    "id": 17893,
                    "nome": "PERSONNALIT� NOVA PTA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17894,
                    "nome": "PERSONNALIT� GO ST OESTE",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17895,
                    "nome": "PETROPOLIS/CENTRO",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 17896,
                    "nome": "PERSONNALITE/CAMBUI",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 17897,
                    "nome": "PO�OS DE CALDAS/ASSIS",
                    "municipio": "POCOS DE CALDAS"
                },
                {
                    "id": 17898,
                    "nome": "PERSONNALITE/PRA�A BUENOS AIRES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17899,
                    "nome": "PERSONNALIT�/C. BOTELHO",
                    "municipio": "PIRACICABA"
                },
                {
                    "id": 17900,
                    "nome": "CAMPO GRANDE-MS",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 17901,
                    "nome": "SP/MARIO LOPES LE�O",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17902,
                    "nome": "SP/NOVA SILVA BUENO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17903,
                    "nome": "Ag�ncia Rio Lino Teixeira",
                    "municipio": ""
                },
                {
                    "id": 17904,
                    "nome": "SP NOVA PENHA DE FRAN�A",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17905,
                    "nome": "RIO NOVA BARRASHOPPING",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17906,
                    "nome": "Ag�ncia 915",
                    "municipio": ""
                },
                {
                    "id": 17907,
                    "nome": "BARRA/MANSA CENTRO",
                    "municipio": "BARRA MANSA"
                },
                {
                    "id": 17908,
                    "nome": "PERSONNALITE/PANAMBY",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17909,
                    "nome": "VOLTA REDONDA/CENTRO",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 17910,
                    "nome": "RIO MUSEU DA REPUBLICA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17911,
                    "nome": "RIO/MERCADO MADUREIRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17912,
                    "nome": "DUQUE CAXIAS P�A HUMAIT�",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 17913,
                    "nome": "RIO/HELDER CAMARA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17914,
                    "nome": "CASCAVEL SOUZA NAVES",
                    "municipio": "CASCAVEL"
                },
                {
                    "id": 17915,
                    "nome": "SP/PRA�A IT�LIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17916,
                    "nome": "SP/NOVA MARECHAL TITO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17917,
                    "nome": "PERSONNALITE SANTOS XV",
                    "municipio": "SANTOS"
                },
                {
                    "id": 17918,
                    "nome": "BRASILIA/LAGO SUL",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 17919,
                    "nome": "PERSONNALIT�/BACACHERI",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17920,
                    "nome": "PERSONNALITE LARANJEIRAS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17921,
                    "nome": "S.BERN.CAMPO/P.MUNICIPAL",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 17922,
                    "nome": "PERSONNALIT�-ATAULFO PVA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17923,
                    "nome": "NOVA FRIBURGO BRAUNE",
                    "municipio": "NOVA FRIBURGO"
                },
                {
                    "id": 17924,
                    "nome": "CANOAS FREI ORLANDO",
                    "municipio": "CANOAS"
                },
                {
                    "id": 17925,
                    "nome": "S�O GON�ALO/NEVES",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 17926,
                    "nome": "LAJEADO/CASTILHOS",
                    "municipio": "LAJEADO"
                },
                {
                    "id": 17927,
                    "nome": "PERSONNALIT�/JARDIM BOT�NICO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17928,
                    "nome": "PELOTAS PEDRO OSORIO",
                    "municipio": "PELOTAS"
                },
                {
                    "id": 17929,
                    "nome": "PERSONNALIT�/P�A. MATRIZ",
                    "municipio": "SAO BERNARDO DO CAMPO"
                },
                {
                    "id": 17930,
                    "nome": "NOVA IGUACU NILO PE�ANHA",
                    "municipio": "NOVA IGUACU"
                },
                {
                    "id": 17931,
                    "nome": "RIO CESARIO DE MELO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17932,
                    "nome": "924",
                    "municipio": ""
                },
                {
                    "id": 17933,
                    "nome": "BLUMENAU XV DE NOVEMBRO",
                    "municipio": "BLUMENAU"
                },
                {
                    "id": 17934,
                    "nome": "RECIFE ENTRONCAMENTO",
                    "municipio": "RECIFE"
                },
                {
                    "id": 17935,
                    "nome": "RECIFE/BAIRRO CAMPO GRANDE",
                    "municipio": "RECIFE"
                },
                {
                    "id": 17936,
                    "nome": "BH SAVASSI",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17937,
                    "nome": "9251",
                    "municipio": ""
                },
                {
                    "id": 17938,
                    "nome": "SERRA/LARANJEIRA",
                    "municipio": "SERRA"
                },
                {
                    "id": 17939,
                    "nome": "TAQUARA/JULIO CASTILHOS",
                    "municipio": "TAQUARA"
                },
                {
                    "id": 17940,
                    "nome": "PERSONALIT� CL�LIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17941,
                    "nome": "ITAPECERICA DA SERRA/CENTRO",
                    "municipio": "ITAPECERICA DA SERRA"
                },
                {
                    "id": 17942,
                    "nome": "UBERL�NDIA/AFONSO PENA",
                    "municipio": "UBERLANDIA"
                },
                {
                    "id": 17943,
                    "nome": "DUQUE DE CAXIAS IMBARIE",
                    "municipio": "DUQUE DE CAXIAS"
                },
                {
                    "id": 17944,
                    "nome": "PERSONNALIT�/NIT CENTRO",
                    "municipio": "NITEROI"
                },
                {
                    "id": 17945,
                    "nome": "VILA VELHA GLORIA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 17946,
                    "nome": "RIO/NOVA FREGUESIA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17947,
                    "nome": "MACA�/AV. RUI BARBOSA",
                    "municipio": "MACAE"
                },
                {
                    "id": 17948,
                    "nome": "NATAL/PRUDENTE DE MORAIS",
                    "municipio": "NATAL"
                },
                {
                    "id": 17949,
                    "nome": "TRES RIOS/CAXIAS",
                    "municipio": "TRES RIOS"
                },
                {
                    "id": 17950,
                    "nome": "932",
                    "municipio": ""
                },
                {
                    "id": 17951,
                    "nome": "RECIFE NOVA CAXANGA",
                    "municipio": "RECIFE"
                },
                {
                    "id": 17952,
                    "nome": "Ag�ncia 9325",
                    "municipio": ""
                },
                {
                    "id": 17953,
                    "nome": "MARICA/RIBEIRO ALMEIDA",
                    "municipio": "MARICA"
                },
                {
                    "id": 17954,
                    "nome": "GOIANIA/REPUBLICA",
                    "municipio": "GOIANIA"
                },
                {
                    "id": 17955,
                    "nome": "VOLTA REDONDA SIDERURGIA",
                    "municipio": "VOLTA REDONDA"
                },
                {
                    "id": 17956,
                    "nome": "RIO/VILA ISABEL",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17957,
                    "nome": "SP TEOTONIO VILLELA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17958,
                    "nome": "PRAIA GRANDE BOQUEIR�O",
                    "municipio": "PRAIA GRANDE"
                },
                {
                    "id": 17959,
                    "nome": "SALVADOR/BAIRRO IGUATEMI",
                    "municipio": "SALVADOR"
                },
                {
                    "id": 17960,
                    "nome": "RIO/PRESIDENTE DUTRA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17961,
                    "nome": "CUIABA VISTA ALEGRE",
                    "municipio": "CUIABA"
                },
                {
                    "id": 17962,
                    "nome": "MESQUITA/EMILIO GUADAGNY",
                    "municipio": "MESQUITA"
                },
                {
                    "id": 17963,
                    "nome": "PATY DO ALFERES/LACERDA",
                    "municipio": "PATY DO ALFERES"
                },
                {
                    "id": 17964,
                    "nome": "BELEM/BAIRRO NAZARE-PA",
                    "municipio": "BELEM"
                },
                {
                    "id": 17965,
                    "nome": "JOINVILLE/NOVA IRIRIU",
                    "municipio": "JOINVILLE"
                },
                {
                    "id": 17966,
                    "nome": "CACHOEIRO DE ITAPEMIRIM/DESLANDE",
                    "municipio": "CACHOEIRO DE ITAPEMIRIM"
                },
                {
                    "id": 17967,
                    "nome": "VALENCA/NILO PECANHA",
                    "municipio": "VALENCA"
                },
                {
                    "id": 17968,
                    "nome": "SP/NOVA AV.IMIRIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17969,
                    "nome": "PERSONNALIT�/ILHA GOV.",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17970,
                    "nome": "BH AV. DOM PEDRO II",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17971,
                    "nome": "PERSONNALIT� RIO SUL OFFICE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17972,
                    "nome": "NITEROI LARGO DO MARRAO",
                    "municipio": "NITEROI"
                },
                {
                    "id": 17973,
                    "nome": "PORTO ALEGRE/AZENHA",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 17974,
                    "nome": "PERSONNALITE TAUBATE",
                    "municipio": "TAUBATE"
                },
                {
                    "id": 17975,
                    "nome": "PERSONNALITE OSC FREIRE",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17976,
                    "nome": "PERSONNALITE BAURU",
                    "municipio": "BAURU"
                },
                {
                    "id": 17977,
                    "nome": "PERSONNALITE BURITIS",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17978,
                    "nome": "CAMPO GRANDE/14 DE JULHO",
                    "municipio": "CAMPO GRANDE"
                },
                {
                    "id": 17979,
                    "nome": "9392",
                    "municipio": ""
                },
                {
                    "id": 17980,
                    "nome": "PERSONNALIT� MOGI DAS CRUZES",
                    "municipio": "MOGI DAS CRUZES"
                },
                {
                    "id": 17981,
                    "nome": "S.GONCALO/B. ALCANTARA",
                    "municipio": "SAO GONCALO"
                },
                {
                    "id": 17982,
                    "nome": "CAMPINAS/SANTO ANTONIO-SP",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 17983,
                    "nome": "MACAE-RJ",
                    "municipio": "MACAE"
                },
                {
                    "id": 17984,
                    "nome": "S.J.DOS P/AV. RUI BARBOSA",
                    "municipio": "SAO JOSE DOS PINHAIS"
                },
                {
                    "id": 17985,
                    "nome": "MONTENEGRO-RS",
                    "municipio": "MONTENEGRO"
                },
                {
                    "id": 17986,
                    "nome": "ARAXA-MG",
                    "municipio": "ARAXA"
                },
                {
                    "id": 17987,
                    "nome": "ITAGUAI/CAL�AD�O",
                    "municipio": "ITAGUAI"
                },
                {
                    "id": 17988,
                    "nome": "MARABA-PA",
                    "municipio": "MARABA"
                },
                {
                    "id": 17989,
                    "nome": "CORNELIO PROCOPIO-PR",
                    "municipio": "CORNELIO PROCOPIO"
                },
                {
                    "id": 17990,
                    "nome": "CORUMBA-MS",
                    "municipio": "CORUMBA"
                },
                {
                    "id": 17991,
                    "nome": "PERSONNALIT� VILA VELHA",
                    "municipio": "VILA VELHA"
                },
                {
                    "id": 17992,
                    "nome": "PERSONNALIT� PATIO BATEL",
                    "municipio": "CURITIBA"
                },
                {
                    "id": 17993,
                    "nome": "PERSONNALITE VINHEDO",
                    "municipio": "VINHEDO"
                },
                {
                    "id": 17994,
                    "nome": "PERSONNALIT� SAVASSI",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 17995,
                    "nome": "PERSONNALIT� RECREIO",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 17996,
                    "nome": "PERSONNALIT�/PETR�POLIS",
                    "municipio": "PETROPOLIS"
                },
                {
                    "id": 17997,
                    "nome": "PERSONNALIT�/CENTER 3",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17998,
                    "nome": "PERSONNALIT� ITAIM",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 17999,
                    "nome": "A�AIL�NDIA (MA)",
                    "municipio": "ACAILANDIA"
                },
                {
                    "id": 18000,
                    "nome": "PERSONNALIT� PAMPLONA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18001,
                    "nome": "PERSONNALIT�/SERRA JAPI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18002,
                    "nome": "PERSONNALIT�/JARDIM PAULISTANO",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18003,
                    "nome": "PERSONNALIT�/MANAUS",
                    "municipio": "MANAUS"
                },
                {
                    "id": 18004,
                    "nome": "PERSONNALIT�/SHOPPING VILA OL�MPIA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18005,
                    "nome": "PERSONNALIT�-BEL�M",
                    "municipio": "BELEM"
                },
                {
                    "id": 18006,
                    "nome": "PERSONNALIT�/SANTOS DUMONT",
                    "municipio": "FORTALEZA"
                },
                {
                    "id": 18007,
                    "nome": "DIAS D'AVILA",
                    "municipio": "DIAS D'AVILA"
                },
                {
                    "id": 18008,
                    "nome": "PERSONNALIT�/CAXIAS SUL",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 18009,
                    "nome": "PERSONNALIT�/CATETE",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18010,
                    "nome": "PERSONNALIT�-ANAPOLIS",
                    "municipio": "ANAPOLIS"
                },
                {
                    "id": 18011,
                    "nome": "PERSONNALIT� SH IGUATEMI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18012,
                    "nome": "PERSONNALIT� HUMAITA",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18013,
                    "nome": "PERSONNALIT�-ALFREDO VOLPI",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18014,
                    "nome": "PERSONNALIT�/IGUATEMI DF",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 18015,
                    "nome": "PERSONNALIT� PRAIA DOS CAVALEIROS",
                    "municipio": "MACAE"
                },
                {
                    "id": 18016,
                    "nome": "PERSONNALIT� CUIAB�",
                    "municipio": "CUIABA"
                },
                {
                    "id": 18017,
                    "nome": "MARITUBA (PA)",
                    "municipio": "MARITUBA"
                },
                {
                    "id": 18018,
                    "nome": "CAPANEMA (PA)",
                    "municipio": "CAPANEMA"
                },
                {
                    "id": 18019,
                    "nome": "PERSONNALITE NOVA LIMA",
                    "municipio": "NOVA LIMA"
                },
                {
                    "id": 18020,
                    "nome": "PERSONNALITE AFONSO PENA",
                    "municipio": "BELO HORIZONTE"
                },
                {
                    "id": 18021,
                    "nome": "PERSONNALIT� AV BRASIL",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18022,
                    "nome": "PERSONNALIT� ARACAJU",
                    "municipio": "ARACAJU"
                },
                {
                    "id": 18023,
                    "nome": "PERSONNALITE AMERICANA",
                    "municipio": "AMERICANA"
                },
                {
                    "id": 18024,
                    "nome": "PERSONNALIT� AL ARAPANES",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 18025,
                    "nome": "PERSONNALIT� JD AQUARIUS",
                    "municipio": "SAO JOSE DOS CAMPOS"
                },
                {
                    "id": 18026,
                    "nome": "PERSONNALIT� INDAIATUBA",
                    "municipio": "INDAIATUBA"
                },
                {
                    "id": 18027,
                    "nome": "CUBATAO",
                    "municipio": "CUBATAO"
                },
                {
                    "id": 18028,
                    "nome": "IPATINGA-IGUA�U",
                    "municipio": "IPATINGA"
                },
                {
                    "id": 18029,
                    "nome": "BELO JARDIM (PE)",
                    "municipio": "BELO JARDIM"
                },
                {
                    "id": 18030,
                    "nome": "ARAUC�RIA-VICTOR DO AMARAL",
                    "municipio": "ARAUCARIA"
                },
                {
                    "id": 18031,
                    "nome": "S�O LUIS-COHAB",
                    "municipio": "SAO LUIS"
                },
                {
                    "id": 18032,
                    "nome": "BRASILIA/BRAZLANDIA",
                    "municipio": "BRASILIA"
                },
                {
                    "id": 18033,
                    "nome": "SANTA IN�S - MA",
                    "municipio": "SANTA INES"
                },
                {
                    "id": 18034,
                    "nome": "PERSONNALIT� TAQUARAL",
                    "municipio": "CAMPINAS"
                },
                {
                    "id": 18035,
                    "nome": "CUIABA-CIDADE VERDE",
                    "municipio": "CUIABA"
                },
                {
                    "id": 18036,
                    "nome": "COTIA - PORTAL DA GRANJA",
                    "municipio": "COTIA"
                },
                {
                    "id": 18037,
                    "nome": "RIO BRANCO/ESTA��O",
                    "municipio": "RIO BRANCO"
                },
                {
                    "id": 18038,
                    "nome": "PERSONNALIT�/GRANJA VIANA",
                    "municipio": "COTIA"
                }
            ]
        },
        {
            "id": 219,
            "banco": "401",
            "nome": "IUGU INSTITUIÇÃO DE PAGAMENTO S.A.",
            "agencias": [
                {
                    "id": 18086,
                    "nome": "AGENCIA 1 DO BANCO IUGU IP S.A.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 256,
            "banco": "451",
            "nome": "J17 - SOCIEDADE DE CRÉDITO DIRETO S/A",
            "agencias": []
        },
        {
            "id": 284,
            "banco": "488",
            "nome": "JPMORGAN CHASE BANK, NATIONAL ASSOCIATION",
            "agencias": [
                {
                    "id": 18265,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 217,
            "banco": "399",
            "nome": "KIRTON BANK S.A. - BANCO MÚLTIPLO",
            "agencias": [
                {
                    "id": 18084,
                    "nome": "AGENCIA 1 DO BANCO KIRTON BANK",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 231,
            "banco": "416",
            "nome": "LAMARA SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18097,
                    "nome": "MATRIZ",
                    "municipio": "FORTALEZA"
                }
            ]
        },
        {
            "id": 234,
            "banco": "421",
            "nome": "LAR COOPERATIVA DE CRÉDITO - LAR CREDI",
            "agencias": [
                {
                    "id": 18100,
                    "nome": "AGENCIA 1 DO BANCO CC LAR CREDI",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 143,
            "banco": "293",
            "nome": "LASTRO RDV DTVM LTDA",
            "agencias": [
                {
                    "id": 15417,
                    "nome": "MATRIZ",
                    "municipio": "ARARAS"
                }
            ]
        },
        {
            "id": 56,
            "banco": "105",
            "nome": "LECCA CRÉDITO, FINANCIAMENTO E INVESTIMENTO S/A",
            "agencias": [
                {
                    "id": 11979,
                    "nome": "MATRIZ",
                    "municipio": "RIO DE JANEIRO"
                }
            ]
        },
        {
            "id": 230,
            "banco": "414",
            "nome": "LEND SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18096,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 86,
            "banco": "145",
            "nome": "LEVYCAM - CORRETORA DE CAMBIO E VALORES LTDA.",
            "agencias": [
                {
                    "id": 12013,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12014,
                    "nome": "VINHEDO",
                    "municipio": "VINHEDO"
                },
                {
                    "id": 12015,
                    "nome": "MOEMA",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 272,
            "banco": "469",
            "nome": "LIGA INVEST DTVM LTDA.",
            "agencias": [
                {
                    "id": 18253,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 297,
            "banco": "519",
            "nome": "LIONS TRUST DTVM",
            "agencias": [
                {
                    "id": 18276,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 215,
            "banco": "397",
            "nome": "LISTO SOCIEDADE DE CREDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18082,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 282,
            "banco": "484",
            "nome": "MAF DTVM SA",
            "agencias": [
                {
                    "id": 18263,
                    "nome": "MAF DISTRIBUIDORA DE T�TULOS E VALORES MOBILI�RIOS",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 248,
            "banco": "442",
            "nome": "MAGNETIS - DTVM",
            "agencias": [
                {
                    "id": 18233,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 292,
            "banco": "511",
            "nome": "MAGNUM SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18272,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 310,
            "banco": "535",
            "nome": "MARÉ SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18283,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 270,
            "banco": "467",
            "nome": "MASTER S/A CCTVM",
            "agencias": [
                {
                    "id": 18251,
                    "nome": "SAO PAULO (SP)",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 296,
            "banco": "518",
            "nome": "MERCADO CRÉDITO SCFI S.A.",
            "agencias": []
        },
        {
            "id": 161,
            "banco": "323",
            "nome": "MERCADO PAGO INSTITUIÇÃO DE PAGAMENTO LTDA.",
            "agencias": [
                {
                    "id": 15468,
                    "nome": "AGENCIA 1 DO BANCO MERCADO PAGO IP LTDA.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 258,
            "banco": "454",
            "nome": "MÉRITO DTVM LTDA.",
            "agencias": [
                {
                    "id": 18241,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 312,
            "banco": "537",
            "nome": "MICROCASH SCMEPP LTDA.",
            "agencias": [
                {
                    "id": 18285,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 182,
            "banco": "358",
            "nome": "MIDWAY S.A. - SCFI",
            "agencias": [
                {
                    "id": 18046,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 252,
            "banco": "447",
            "nome": "MIRAE ASSET CCTVM LTDA",
            "agencias": [
                {
                    "id": 18236,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 303,
            "banco": "526",
            "nome": "MONETARIE SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": []
        },
        {
            "id": 121,
            "banco": "259",
            "nome": "MONEYCORP BANCO DE CÂMBIO S.A.",
            "agencias": [
                {
                    "id": 15394,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 59,
            "banco": "113",
            "nome": "NEON CTVM S.A.",
            "agencias": [
                {
                    "id": 11984,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 238,
            "banco": "426",
            "nome": "NEON FINANCEIRA - CFI S.A.",
            "agencias": [
                {
                    "id": 18223,
                    "nome": "MATRIZ",
                    "municipio": "FLORIANOPOLIS"
                }
            ]
        },
        {
            "id": 311,
            "banco": "536",
            "nome": "NEON PAGAMENTOS S.A. - INSTITUIÇÃO DE PAGAMENTO",
            "agencias": [
                {
                    "id": 18284,
                    "nome": "AGENCIA 1 DO BANCO NEON PAGAMENTOS S.A. IP",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 100,
            "banco": "191",
            "nome": "NOVA FUTURA CTVM LTDA.",
            "agencias": [
                {
                    "id": 12038,
                    "nome": "RIO DE JANEIRO - RJ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 12039,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 344,
            "banco": "753",
            "nome": "NOVO BANCO CONTINENTAL S.A. - BANCO MÚLTIPLO",
            "agencias": [
                {
                    "id": 18487,
                    "nome": "MATRIZ",
                    "municipio": "PORTO ALEGRE"
                },
                {
                    "id": 18488,
                    "nome": "CAXIAS DO SUL-RS",
                    "municipio": "CAXIAS DO SUL"
                },
                {
                    "id": 18489,
                    "nome": "JOINVILLE-SC",
                    "municipio": "JOINVILLE"
                }
            ]
        },
        {
            "id": 206,
            "banco": "386",
            "nome": "NU FINANCEIRA S.A. CFI",
            "agencias": [
                {
                    "id": 18071,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 81,
            "banco": "140",
            "nome": "NU INVEST CORRETORA DE VALORES S.A.",
            "agencias": [
                {
                    "id": 12008,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 122,
            "banco": "260",
            "nome": "NU PAGAMENTOS S.A. - INSTITUIÇÃO DE PAGAMENTO",
            "agencias": [
                {
                    "id": 15395,
                    "nome": "AGENCIA 1 DO BANCO NU PAGAMENTOS - IP",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 233,
            "banco": "419",
            "nome": "NUMBRS SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18099,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 58,
            "banco": "111",
            "nome": "OLIVEIRA TRUST DTVM S.A.",
            "agencias": [
                {
                    "id": 11983,
                    "nome": "OLIVEIRA TRUST DISTRIBUIDORA DE T�TULOS E VALORES ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 157,
            "banco": "319",
            "nome": "OM DTVM LTDA",
            "agencias": [
                {
                    "id": 15457,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 321,
            "banco": "613",
            "nome": "OMNI BANCO S.A.",
            "agencias": [
                {
                    "id": 18303,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 181,
            "banco": "355",
            "nome": "ÓTIMO SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18045,
                    "nome": "MATRIZ",
                    "municipio": "RECIFE"
                }
            ]
        },
        {
            "id": 144,
            "banco": "296",
            "nome": "OZ CORRETORA DE CÂMBIO S.A.",
            "agencias": [
                {
                    "id": 15418,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 141,
            "banco": "290",
            "nome": "PAGSEGURO INTERNET INSTITUIÇÃO DE PAGAMENTO S.A.",
            "agencias": [
                {
                    "id": 15414,
                    "nome": "AGENCIA 1 DO BANCO PAGSEGURO INTERNET IP S.A.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 120,
            "banco": "254",
            "nome": "PARANÁ BANCO S.A.",
            "agencias": [
                {
                    "id": 15393,
                    "nome": "CENTRAL",
                    "municipio": "CURITIBA"
                }
            ]
        },
        {
            "id": 164,
            "banco": "326",
            "nome": "PARATI - CFI S.A.",
            "agencias": [
                {
                    "id": 15471,
                    "nome": "MATRIZ",
                    "municipio": "VITORIA"
                }
            ]
        },
        {
            "id": 101,
            "banco": "194",
            "nome": "PARMETAL DTVM LTDA",
            "agencias": [
                {
                    "id": 12040,
                    "nome": "MATRIZ",
                    "municipio": "BARUERI"
                }
            ]
        },
        {
            "id": 298,
            "banco": "521",
            "nome": "PEAK SOCIEDADE DE EMPRÉSTIMO ENTRE PESSOAS S.A.",
            "agencias": []
        },
        {
            "id": 92,
            "banco": "174",
            "nome": "PEFISA S.A. - C.F.I.",
            "agencias": [
                {
                    "id": 12021,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 36,
            "banco": "79",
            "nome": "PICPAY BANK - BANCO MÚLTIPLO S.A",
            "agencias": [
                {
                    "id": 8422,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 200,
            "banco": "380",
            "nome": "PICPAY INSTITUIÇÃO DE PAGAMENTO S.A.",
            "agencias": [
                {
                    "id": 18065,
                    "nome": "AGENCIA 1 DO BANCO PICPAY",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 306,
            "banco": "529",
            "nome": "PINBANK BRASIL INSTITUIÇÃO DE PAGAMENTO S.A.",
            "agencias": [
                {
                    "id": 18281,
                    "nome": "AGENCIA 1 DO BANCO PINBANK IP",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 52,
            "banco": "100",
            "nome": "PLANNER CORRETORA DE VALORES S.A.",
            "agencias": [
                {
                    "id": 8439,
                    "nome": "RIO DE JANEIRO",
                    "municipio": "RIO DE JANEIRO"
                }
            ]
        },
        {
            "id": 226,
            "banco": "410",
            "nome": "PLANNER SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18091,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 251,
            "banco": "445",
            "nome": "PLANTAE CFI",
            "agencias": [
                {
                    "id": 18235,
                    "nome": "MATRIZ",
                    "municipio": "PRESIDENTE PRUDENTE"
                }
            ]
        },
        {
            "id": 45,
            "banco": "93",
            "nome": "POLOCRED SCMEPP LTDA.",
            "agencias": [
                {
                    "id": 8431,
                    "nome": "MATRIZ",
                    "municipio": "FLORIANOPOLIS"
                }
            ]
        },
        {
            "id": 149,
            "banco": "306",
            "nome": "PORTOPAR DTVM LTDA",
            "agencias": [
                {
                    "id": 15423,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 271,
            "banco": "468",
            "nome": "PORTOSEG S.A. CFI",
            "agencias": [
                {
                    "id": 18252,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 166,
            "banco": "329",
            "nome": "QI SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 15473,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 295,
            "banco": "516",
            "nome": "QISTA S.A. - CRÉDITO, FINANCIAMENTO E INVESTIMENTO",
            "agencias": [
                {
                    "id": 18275,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 137,
            "banco": "283",
            "nome": "RB INVESTIMENTOS DTVM LTDA.",
            "agencias": [
                {
                    "id": 15410,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 305,
            "banco": "528",
            "nome": "REAG DTVM S.A.",
            "agencias": [
                {
                    "id": 18280,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 195,
            "banco": "374",
            "nome": "REALIZE CRÉDITO, FINANCIAMENTO E INVESTIMENTO S.A.",
            "agencias": [
                {
                    "id": 18059,
                    "nome": "MATRIZ",
                    "municipio": "PORTO ALEGRE"
                }
            ]
        },
        {
            "id": 299,
            "banco": "522",
            "nome": "RED SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18277,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 53,
            "banco": "101",
            "nome": "RENASCENCA DTVM LTDA",
            "agencias": [
                {
                    "id": 8440,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 287,
            "banco": "506",
            "nome": "RJI",
            "agencias": [
                {
                    "id": 18268,
                    "nome": "MATRIZ",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 18269,
                    "nome": "RJI CORRETORA DE TITUOLOS E VALORES MOBILIARIOS LT",
                    "municipio": "RIO DE JANEIRO"
                }
            ]
        },
        {
            "id": 61,
            "banco": "116",
            "nome": "RUA DA PRAIA, 153",
            "agencias": []
        },
        {
            "id": 127,
            "banco": "270",
            "nome": "SAGITUR CORRETORA DE CÂMBIO S.A.",
            "agencias": [
                {
                    "id": 15400,
                    "nome": "SHOPPING MORUMBI",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 313,
            "banco": "539",
            "nome": "SANTINVEST S.A. - CFI",
            "agencias": [
                {
                    "id": 18286,
                    "nome": "01 - MATRIZ",
                    "municipio": "FLORIANOPOLIS"
                }
            ]
        },
        {
            "id": 281,
            "banco": "482",
            "nome": "SBCASH SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18262,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 288,
            "banco": "507",
            "nome": "SCFI EFÍ S.A.",
            "agencias": []
        },
        {
            "id": 342,
            "banco": "751",
            "nome": "SCOTIABANK BRASIL S.A. BANCO MÚLTIPLO",
            "agencias": [
                {
                    "id": 18485,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 315,
            "banco": "545",
            "nome": "SENSO CCVM S.A.",
            "agencias": [
                {
                    "id": 18288,
                    "nome": "MATRIZ",
                    "municipio": "RIO DE JANEIRO"
                }
            ]
        },
        {
            "id": 307,
            "banco": "530",
            "nome": "SER FINANCE SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": []
        },
        {
            "id": 99,
            "banco": "190",
            "nome": "SERVICOOP",
            "agencias": [
                {
                    "id": 12037,
                    "nome": "AGENCIA 1 DO BANCO SERVICOOP",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 188,
            "banco": "365",
            "nome": "SIMPAUL",
            "agencias": [
                {
                    "id": 18052,
                    "nome": "PORTO ALEGRE (RS",
                    "municipio": "PORTO ALEGRE"
                }
            ]
        },
        {
            "id": 186,
            "banco": "363",
            "nome": "SINGULARE CTVM S.A.",
            "agencias": [
                {
                    "id": 18050,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 41,
            "banco": "84",
            "nome": "SISPRIME DO BRASIL - COOPERATIVA DE CRÉDITO",
            "agencias": [
                {
                    "id": 8427,
                    "nome": "AGENCIA 1 DO BANCO SISPRIME DO BRASIL - COOP",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 228,
            "banco": "412",
            "nome": "SOCIAL BANK BANCO MÚLTIPLO S/A",
            "agencias": [
                {
                    "id": 18093,
                    "nome": "MATRIZ",
                    "municipio": "SALVADOR"
                }
            ]
        },
        {
            "id": 237,
            "banco": "425",
            "nome": "SOCINAL S.A. CFI",
            "agencias": [
                {
                    "id": 18222,
                    "nome": "MATRIZ",
                    "municipio": "ARARUAMA"
                }
            ]
        },
        {
            "id": 95,
            "banco": "183",
            "nome": "SOCRED SA - SCMEPP",
            "agencias": [
                {
                    "id": 12025,
                    "nome": "MATRIZ",
                    "municipio": "BELEM"
                }
            ]
        },
        {
            "id": 266,
            "banco": "462",
            "nome": "STARK SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18247,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 8,
            "banco": "14",
            "nome": "STATE STREET BRASIL S.A. - BANCO COMERCIAL",
            "agencias": [
                {
                    "id": 4595,
                    "nome": "AG�NCIA MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 104,
            "banco": "197",
            "nome": "STONE INSTITUIÇÃO DE PAGAMENTO S.A.",
            "agencias": [
                {
                    "id": 12043,
                    "nome": "AGENCIA 1 DO BANCO STONE IP S.A.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 222,
            "banco": "404",
            "nome": "SUMUP SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18089,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 173,
            "banco": "340",
            "nome": "SUPERDIGITAL INSTITUIÇÃO DE PAGAMENTO S.A.",
            "agencias": [
                {
                    "id": 15480,
                    "nome": "AGENCIA 1 DO BANCO SUPERDIGITAL I.P. S.A.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 280,
            "banco": "481",
            "nome": "SUPERLÓGICA SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 18261,
                    "nome": "MATRIZ",
                    "municipio": "BARUERI"
                }
            ]
        },
        {
            "id": 150,
            "banco": "307",
            "nome": "TERRA INVESTIMENTOS DTVM",
            "agencias": [
                {
                    "id": 15424,
                    "nome": "FILIAL LONDRINA",
                    "municipio": "LONDRINA"
                }
            ]
        },
        {
            "id": 180,
            "banco": "352",
            "nome": "TORO CTVM S.A.",
            "agencias": [
                {
                    "id": 18044,
                    "nome": "MATRIZ",
                    "municipio": "BELO HORIZONTE"
                }
            ]
        },
        {
            "id": 47,
            "banco": "95",
            "nome": "TRAVELEX BANCO DE CÂMBIO S.A.",
            "agencias": [
                {
                    "id": 8433,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8434,
                    "nome": "4",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 84,
            "banco": "143",
            "nome": "TREVISO CORRETORA DE CÂMBIO S.A.",
            "agencias": [
                {
                    "id": 12011,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 184,
            "banco": "360",
            "nome": "TRINUS CAPITAL DTVM",
            "agencias": [
                {
                    "id": 18048,
                    "nome": "MATRIZ",
                    "municipio": "GOIANIA"
                }
            ]
        },
        {
            "id": 250,
            "banco": "444",
            "nome": "TRINUS SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": []
        },
        {
            "id": 245,
            "banco": "438",
            "nome": "TRUSTEE DTVM LTDA.",
            "agencias": [
                {
                    "id": 18230,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 74,
            "banco": "131",
            "nome": "TULLETT PREBON BRASIL CVC LTDA",
            "agencias": [
                {
                    "id": 12000,
                    "nome": "FILIAL SP",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 12001,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 72,
            "banco": "129",
            "nome": "UBS BRASIL BANCO DE INVESTIMENTO S.A.",
            "agencias": [
                {
                    "id": 11998,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 9,
            "banco": "15",
            "nome": "UBS BRASIL CCTVM S.A.",
            "agencias": [
                {
                    "id": 4596,
                    "nome": "BARUERI",
                    "municipio": "BARUERI"
                }
            ]
        },
        {
            "id": 264,
            "banco": "460",
            "nome": "UNAVANTI SOCIEDADE DE CRÉDITO DIRETO S/A",
            "agencias": []
        },
        {
            "id": 51,
            "banco": "99",
            "nome": "UNIPRIME COOPCENTRAL LTDA.",
            "agencias": [
                {
                    "id": 8438,
                    "nome": "AGENCIA 1 DO BANCO UNIPRIME COOPCENTRAL LTDA.",
                    "municipio": ""
                }
            ]
        },
        {
            "id": 194,
            "banco": "373",
            "nome": "UP.P SOCIEDADE DE EMPRÉSTIMO ENTRE PESSOAS S.A.",
            "agencias": [
                {
                    "id": 18058,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 261,
            "banco": "457",
            "nome": "UY3 SOCIEDADE DE CRÉDITO DIRETO S/A",
            "agencias": [
                {
                    "id": 18243,
                    "nome": "MATRIZ",
                    "municipio": "PORTO ALEGRE"
                }
            ]
        },
        {
            "id": 102,
            "banco": "195",
            "nome": "VALOR SOCIEDADE DE CRÉDITO DIRETO S.A.",
            "agencias": [
                {
                    "id": 12041,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 227,
            "banco": "411",
            "nome": "VIA CERTA FINANCIADORA S.A. - CFI",
            "agencias": [
                {
                    "id": 18092,
                    "nome": "MATRIZ",
                    "municipio": "SANTO CRISTO"
                }
            ]
        },
        {
            "id": 145,
            "banco": "298",
            "nome": "VIP'S CORRETORA DE CÂMBIO LTDA.",
            "agencias": [
                {
                    "id": 15419,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 190,
            "banco": "367",
            "nome": "VITREO DTVM S.A.",
            "agencias": [
                {
                    "id": 18054,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 152,
            "banco": "310",
            "nome": "VORTX DTVM LTDA.",
            "agencias": [
                {
                    "id": 15426,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 193,
            "banco": "371",
            "nome": "WARREN CVMC LTDA",
            "agencias": [
                {
                    "id": 18057,
                    "nome": "MATRIZ",
                    "municipio": "PORTO ALEGRE"
                }
            ]
        },
        {
            "id": 135,
            "banco": "280",
            "nome": "WILL FINANCEIRA S.A.CFI",
            "agencias": [
                {
                    "id": 15408,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 301,
            "banco": "524",
            "nome": "WNT CAPITAL DTVM",
            "agencias": [
                {
                    "id": 18278,
                    "nome": "MATRIZ",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 54,
            "banco": "102",
            "nome": "XP INVESTIMENTOS CCTVM S/A",
            "agencias": [
                {
                    "id": 8441,
                    "nome": "XP INVESTIMENTOS",
                    "municipio": "RIO DE JANEIRO"
                },
                {
                    "id": 8442,
                    "nome": "CLEAR CORRETORA",
                    "municipio": "SAO PAULO"
                },
                {
                    "id": 8443,
                    "nome": "RICO INVESTIMENTOS",
                    "municipio": "SAO PAULO"
                }
            ]
        },
        {
            "id": 183,
            "banco": "359",
            "nome": "ZEMA CRÉDITO, FINANCIAMENTO E INVESTIMENTO S/A",
            "agencias": [
                {
                    "id": 18047,
                    "nome": "MATRIZ",
                    "municipio": "ARAXA"
                }
            ]
        },
        {
            "id": 232,
            "banco": "418",
            "nome": "ZIPDIN SCD S.A.",
            "agencias": [
                {
                    "id": 18098,
                    "nome": "MATRIZ",
                    "municipio": "RIO DE JANEIRO"
                }
            ]
        }
    ],
    "total": 348
}
 

Request      

GET api/bancos

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/montagem-carga

Example request:
curl --request GET \
    --get "http://localhost/api/montagem-carga" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/montagem-carga"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 31
access-control-allow-origin: *
 

{
    "data": [],
    "total": 0,
    "searchTerm": null
}
 

Request      

GET api/montagem-carga

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/montagem-carga

Example request:
curl --request POST \
    "http://localhost/api/montagem-carga" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"fk_companhia\": \"consequatur\",
    \"data\": \"2025-05-22T10:22:15\",
    \"cargas\": [
        {
            \"fk_cliente\": \"consequatur\",
            \"fk_veiculo\": \"consequatur\",
            \"qtd_p13\": 45
        }
    ]
}"
const url = new URL(
    "http://localhost/api/montagem-carga"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "fk_companhia": "consequatur",
    "data": "2025-05-22T10:22:15",
    "cargas": [
        {
            "fk_cliente": "consequatur",
            "fk_veiculo": "consequatur",
            "qtd_p13": 45
        }
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/montagem-carga

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

fk_companhia   string   

The id of an existing record in the companhias table. Example: consequatur

data   string   

Must be a valid date. Example: 2025-05-22T10:22:15

cargas   object[]   

Must have at least 1 items.

fk_cliente   string   

The id of an existing record in the clientes table. Example: consequatur

fk_veiculo   string   

The id of an existing record in the veiculos table. Example: consequatur

qtd_p13   integer   

Must be at least 1. Example: 45

DELETE api/montagem-carga/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/montagem-carga/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/montagem-carga/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/montagem-carga/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the montagem carga. Example: consequatur

GET api/montagem-carga-impressao/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/montagem-carga-impressao/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/montagem-carga-impressao/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 30
access-control-allow-origin: *
 

{
    "error": "Carga não encontrada"
}
 

Request      

GET api/montagem-carga-impressao/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the montagem carga impressao. Example: consequatur

GET api/user

Example request:
curl --request GET \
    --get "http://localhost/api/user" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/user"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/user

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/user

Example request:
curl --request POST \
    "http://localhost/api/user" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"user\": {
        \"name\": \"vmqeopfuudtdsufvyvddq\",
        \"email\": \"kunde.eloisa@example.com\",
        \"password\": \"4[*UyPJ\\\"}6\"
    }
}"
const url = new URL(
    "http://localhost/api/user"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "user": {
        "name": "vmqeopfuudtdsufvyvddq",
        "email": "kunde.eloisa@example.com",
        "password": "4[*UyPJ\"}6"
    }
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/user

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

user   object  optional  
name   string   

Must not be greater than 255 characters. Example: vmqeopfuudtdsufvyvddq

email   string   

Must be a valid email address. Must not be greater than 255 characters. Example: kunde.eloisa@example.com

password   string   

Must be at least 8 characters. Example: 4[*UyPJ"}6

permissions   object  optional  
roles   object  optional  

GET api/user/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/user/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/user/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/user/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the user. Example: consequatur

DELETE api/user/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/user/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/user/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/user/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the user. Example: consequatur

GET api/system

Example request:
curl --request GET \
    --get "http://localhost/api/system" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/system"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/system

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/system

Example request:
curl --request POST \
    "http://localhost/api/system" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"system\": \"vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsju\"
}"
const url = new URL(
    "http://localhost/api/system"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "system": "vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsju"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/system

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

system   string   

Must not be greater than 100 characters. Must be at least 1 character. Example: vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsju

GET api/system/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/system/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/system/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/system/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the system. Example: consequatur

GET api/role

Example request:
curl --request GET \
    --get "http://localhost/api/role" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/role"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/role

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/role

Example request:
curl --request POST \
    "http://localhost/api/role" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
    "http://localhost/api/role"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "vmqeopfuudtdsufvyvddq"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/role

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

name   string   

Must not be greater than 255 characters. Example: vmqeopfuudtdsufvyvddq

permissions   object  optional  

GET api/role/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/role/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/role/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/role/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the role. Example: consequatur

GET api/permission

Example request:
curl --request GET \
    --get "http://localhost/api/permission" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/permission"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/permission

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/unit-type

Example request:
curl --request GET \
    --get "http://localhost/api/unit-type" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/unit-type"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/unit-type

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/unit-type

Example request:
curl --request POST \
    "http://localhost/api/unit-type" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
    "http://localhost/api/unit-type"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "description": "Dolores dolorum amet iste laborum eius est dolor."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/unit-type

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

description   string   

Must not be greater than 100 characters. Must be at least 1 character. Example: Dolores dolorum amet iste laborum eius est dolor.

GET api/unit-type/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/unit-type/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/unit-type/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/unit-type/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the unit type. Example: consequatur

DELETE api/unit-type/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/unit-type/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/unit-type/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/unit-type/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the unit type. Example: consequatur

GET api/unit

Example request:
curl --request GET \
    --get "http://localhost/api/unit" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/unit"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/unit

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/unit

Example request:
curl --request POST \
    "http://localhost/api/unit" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"unit\": \"vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsju\"
}"
const url = new URL(
    "http://localhost/api/unit"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "unit": "vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsju"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/unit

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

unit   string   

Must not be greater than 100 characters. Must be at least 1 character. Example: vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsju

GET api/unit/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/unit/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/unit/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/unit/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the unit. Example: consequatur

DELETE api/unit/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/unit/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/unit/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/unit/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the unit. Example: consequatur

GET api/unit-group

Example request:
curl --request GET \
    --get "http://localhost/api/unit-group" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/unit-group"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/unit-group

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/unit-group/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/unit-group/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/unit-group/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/unit-group/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the unit group. Example: consequatur

GET api/antibiotic

Example request:
curl --request GET \
    --get "http://localhost/api/antibiotic" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/antibiotic"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/antibiotic

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/antibiotic

Example request:
curl --request POST \
    "http://localhost/api/antibiotic" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
    "http://localhost/api/antibiotic"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "description": "Dolores dolorum amet iste laborum eius est dolor."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/antibiotic

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

description   string   

Must not be greater than 100 characters. Must be at least 1 character. Example: Dolores dolorum amet iste laborum eius est dolor.

GET api/antibiotic/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/antibiotic/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/antibiotic/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/antibiotic/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the antibiotic. Example: consequatur

DELETE api/antibiotic/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/antibiotic/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/antibiotic/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/antibiotic/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the antibiotic. Example: consequatur

GET api/blood-type

Example request:
curl --request GET \
    --get "http://localhost/api/blood-type" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/blood-type"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/blood-type

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/blood-type

Example request:
curl --request POST \
    "http://localhost/api/blood-type" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
    "http://localhost/api/blood-type"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "description": "Dolores dolorum amet iste laborum eius est dolor."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/blood-type

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

description   string   

Must not be greater than 50 characters. Must be at least 1 character. Example: Dolores dolorum amet iste laborum eius est dolor.

GET api/blood-type/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/blood-type/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/blood-type/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/blood-type/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the blood type. Example: consequatur

DELETE api/blood-type/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/blood-type/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/blood-type/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/blood-type/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the blood type. Example: consequatur

GET api/classification

Example request:
curl --request GET \
    --get "http://localhost/api/classification" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/classification"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/classification

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/classification

Example request:
curl --request POST \
    "http://localhost/api/classification" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
    "http://localhost/api/classification"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "description": "Dolores dolorum amet iste laborum eius est dolor."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/classification

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

description   string   

Must not be greater than 100 characters. Must be at least 1 character. Example: Dolores dolorum amet iste laborum eius est dolor.

GET api/classification/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/classification/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/classification/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/classification/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the classification. Example: consequatur

DELETE api/classification/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/classification/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/classification/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/classification/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the classification. Example: consequatur

GET api/anesthetist

Example request:
curl --request GET \
    --get "http://localhost/api/anesthetist" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anesthetist"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/anesthetist

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/anesthetist

Example request:
curl --request POST \
    "http://localhost/api/anesthetist" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsju\"
}"
const url = new URL(
    "http://localhost/api/anesthetist"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsju"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/anesthetist

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

name   string   

Must not be greater than 100 characters. Must be at least 1 character. Example: vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsju

GET api/anesthetist/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/anesthetist/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anesthetist/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/anesthetist/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the anesthetist. Example: consequatur

DELETE api/anesthetist/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/anesthetist/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/anesthetist/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/anesthetist/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the anesthetist. Example: consequatur

GET api/specialty

Example request:
curl --request GET \
    --get "http://localhost/api/specialty" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/specialty"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/specialty

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/specialty

Example request:
curl --request POST \
    "http://localhost/api/specialty" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
    "http://localhost/api/specialty"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "description": "Dolores dolorum amet iste laborum eius est dolor."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/specialty

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

description   string   

Must not be greater than 100 characters. Must be at least 1 character. Example: Dolores dolorum amet iste laborum eius est dolor.

GET api/specialty/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/specialty/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/specialty/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/specialty/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the specialty. Example: consequatur

DELETE api/specialty/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/specialty/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/specialty/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/specialty/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the specialty. Example: consequatur

GET api/blood-component

Example request:
curl --request GET \
    --get "http://localhost/api/blood-component" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/blood-component"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/blood-component

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/blood-component

Example request:
curl --request POST \
    "http://localhost/api/blood-component" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
    "http://localhost/api/blood-component"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "description": "Dolores dolorum amet iste laborum eius est dolor."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/blood-component

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

description   string   

Must not be greater than 100 characters. Must be at least 1 character. Example: Dolores dolorum amet iste laborum eius est dolor.

GET api/blood-component/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/blood-component/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/blood-component/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/blood-component/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the blood component. Example: consequatur

DELETE api/blood-component/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/blood-component/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/blood-component/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/blood-component/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the blood component. Example: consequatur

GET api/postoperative

Example request:
curl --request GET \
    --get "http://localhost/api/postoperative" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/postoperative"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/postoperative

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/postoperative

Example request:
curl --request POST \
    "http://localhost/api/postoperative" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
    "http://localhost/api/postoperative"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "description": "Dolores dolorum amet iste laborum eius est dolor."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/postoperative

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

description   string   

Must not be greater than 100 characters. Must be at least 1 character. Example: Dolores dolorum amet iste laborum eius est dolor.

GET api/postoperative/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/postoperative/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/postoperative/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/postoperative/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the postoperative. Example: consequatur

DELETE api/postoperative/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/postoperative/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/postoperative/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/postoperative/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the postoperative. Example: consequatur

GET api/size

Example request:
curl --request GET \
    --get "http://localhost/api/size" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/size"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/size

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/size

Example request:
curl --request POST \
    "http://localhost/api/size" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
    \"time\": \"consequatur\"
}"
const url = new URL(
    "http://localhost/api/size"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "description": "Dolores dolorum amet iste laborum eius est dolor.",
    "time": "consequatur"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/size

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

description   string   

Must not be greater than 100 characters. Must be at least 1 character. Example: Dolores dolorum amet iste laborum eius est dolor.

time   string   

Example: consequatur

GET api/size/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/size/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/size/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/size/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the size. Example: consequatur

DELETE api/size/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/size/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/size/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/size/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the size. Example: consequatur

GET api/patient

Example request:
curl --request GET \
    --get "http://localhost/api/patient" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/patient"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/patient

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/patient

Example request:
curl --request POST \
    "http://localhost/api/patient" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsju\"
}"
const url = new URL(
    "http://localhost/api/patient"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsju"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/patient

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

name   string   

Must not be greater than 100 characters. Must be at least 1 character. Example: vmqeopfuudtdsufvyvddqamniihfqcoynlazghdtqtqxbajwbpilpmufinllwloauydlsmsju

GET api/patient/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/patient/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/patient/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/patient/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the patient. Example: consequatur

DELETE api/patient/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/patient/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/patient/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/patient/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the patient. Example: consequatur

GET api/medical-record

Example request:
curl --request GET \
    --get "http://localhost/api/medical-record" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/medical-record"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/medical-record

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/medical-record/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/medical-record/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/medical-record/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/medical-record/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the medical record. Example: consequatur

GET api/rtp

Example request:
curl --request GET \
    --get "http://localhost/api/rtp" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/rtp"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "auth.unauthorized_access"
}
 

Request      

GET api/rtp

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/admin/rotas

Example request:
curl --request GET \
    --get "http://localhost/api/admin/rotas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/admin/rotas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 29
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 146,
            "descricao": "Acordo X Rota",
            "path": "/financeiro/acordo-rota",
            "fk_categoria": 6,
            "categoria": {
                "id": 6,
                "descricao": "receita"
            }
        },
        {
            "id": 129,
            "descricao": "Atualizar KM",
            "path": "/atualizar-km",
            "fk_categoria": 4,
            "categoria": {
                "id": 4,
                "descricao": "frota"
            }
        },
        {
            "id": 150,
            "descricao": "caixa",
            "path": "/financeiro/caixa",
            "fk_categoria": 2,
            "categoria": {
                "id": 2,
                "descricao": "financeiro"
            }
        },
        {
            "id": 114,
            "descricao": "Cargo",
            "path": "/cargo",
            "fk_categoria": 3,
            "categoria": {
                "id": 3,
                "descricao": "rh"
            }
        },
        {
            "id": 130,
            "descricao": "Carroceria",
            "path": "/veiculos-carroceria",
            "fk_categoria": 4,
            "categoria": {
                "id": 4,
                "descricao": "frota"
            }
        },
        {
            "id": 131,
            "descricao": "Categoria de veículo",
            "path": "/veiculos-categoria",
            "fk_categoria": 4,
            "categoria": {
                "id": 4,
                "descricao": "frota"
            }
        },
        {
            "id": 104,
            "descricao": "Categorias",
            "path": "/permissoes/categorias",
            "fk_categoria": 1,
            "categoria": {
                "id": 1,
                "descricao": "admin"
            }
        },
        {
            "id": 140,
            "descricao": "Cidades",
            "path": "/cidades",
            "fk_categoria": 5,
            "categoria": {
                "id": 5,
                "descricao": "cadastros"
            }
        },
        {
            "id": 151,
            "descricao": "CIF",
            "path": "/financeiro/cif",
            "fk_categoria": 6,
            "categoria": {
                "id": 6,
                "descricao": "receita"
            }
        },
        {
            "id": 152,
            "descricao": "CIF parâmetros",
            "path": "/financeiro/cif_parametros",
            "fk_categoria": 6,
            "categoria": {
                "id": 6,
                "descricao": "receita"
            }
        },
        {
            "id": 141,
            "descricao": "Clientes",
            "path": "/clientes",
            "fk_categoria": 5,
            "categoria": {
                "id": 5,
                "descricao": "cadastros"
            }
        },
        {
            "id": 113,
            "descricao": "Colaboradores",
            "path": "/colaborador",
            "fk_categoria": 3,
            "categoria": {
                "id": 3,
                "descricao": "rh"
            }
        },
        {
            "id": 132,
            "descricao": "Combustível",
            "path": "/veiculos-combustivel",
            "fk_categoria": 4,
            "categoria": {
                "id": 4,
                "descricao": "frota"
            }
        },
        {
            "id": 142,
            "descricao": "Companhias",
            "path": "/companhias",
            "fk_categoria": 5,
            "categoria": {
                "id": 5,
                "descricao": "cadastros"
            }
        },
        {
            "id": 134,
            "descricao": "Consumo Combustível",
            "path": "/veiculos-consumo",
            "fk_categoria": 4,
            "categoria": {
                "id": 4,
                "descricao": "frota"
            }
        },
        {
            "id": 110,
            "descricao": "Contas",
            "path": "/financeiro/contas",
            "fk_categoria": 2,
            "categoria": {
                "id": 2,
                "descricao": "financeiro"
            }
        },
        {
            "id": 108,
            "descricao": "Contas a Pagar",
            "path": "/financeiro/contasapagar",
            "fk_categoria": 2,
            "categoria": {
                "id": 2,
                "descricao": "financeiro"
            }
        },
        {
            "id": 109,
            "descricao": "Contas a Receber",
            "path": "/financeiro/contasareceber",
            "fk_categoria": 2,
            "categoria": {
                "id": 2,
                "descricao": "financeiro"
            }
        },
        {
            "id": 111,
            "descricao": "Contas x Despesas",
            "path": "/financeiro/contasdespesas",
            "fk_categoria": 2,
            "categoria": {
                "id": 2,
                "descricao": "financeiro"
            }
        },
        {
            "id": 149,
            "descricao": "Dashboard",
            "path": "/dashboard",
            "fk_categoria": 7,
            "categoria": {
                "id": 7,
                "descricao": "dashboard"
            }
        },
        {
            "id": 139,
            "descricao": "Empresas",
            "path": "/empresas",
            "fk_categoria": 5,
            "categoria": {
                "id": 5,
                "descricao": "cadastros"
            }
        },
        {
            "id": 115,
            "descricao": "Escalas",
            "path": "/escala",
            "fk_categoria": 3,
            "categoria": {
                "id": 3,
                "descricao": "rh"
            }
        },
        {
            "id": 120,
            "descricao": "Estado Civil",
            "path": "/estado-civil",
            "fk_categoria": 3,
            "categoria": {
                "id": 3,
                "descricao": "rh"
            }
        },
        {
            "id": 112,
            "descricao": "Formas de Pagamento",
            "path": "/financeiro/formasdepagamento",
            "fk_categoria": 2,
            "categoria": {
                "id": 2,
                "descricao": "financeiro"
            }
        },
        {
            "id": 143,
            "descricao": "Fornecedores",
            "path": "/fornecedores",
            "fk_categoria": 5,
            "categoria": {
                "id": 5,
                "descricao": "cadastros"
            }
        },
        {
            "id": 116,
            "descricao": "Horário",
            "path": "/horario-escala",
            "fk_categoria": 3,
            "categoria": {
                "id": 3,
                "descricao": "rh"
            }
        },
        {
            "id": 121,
            "descricao": "Instrução",
            "path": "/instrucao",
            "fk_categoria": 3,
            "categoria": {
                "id": 3,
                "descricao": "rh"
            }
        },
        {
            "id": 135,
            "descricao": "Marca de veículo",
            "path": "/veiculos-marca",
            "fk_categoria": 4,
            "categoria": {
                "id": 4,
                "descricao": "frota"
            }
        },
        {
            "id": 136,
            "descricao": "Modelo de veículo",
            "path": "/veiculos-modelo",
            "fk_categoria": 4,
            "categoria": {
                "id": 4,
                "descricao": "frota"
            }
        },
        {
            "id": 147,
            "descricao": "Montagem de Carga",
            "path": "/montagem_carga",
            "fk_categoria": 6,
            "categoria": {
                "id": 6,
                "descricao": "receita"
            }
        },
        {
            "id": 122,
            "descricao": "Parentesco",
            "path": "/parentesco",
            "fk_categoria": 3,
            "categoria": {
                "id": 3,
                "descricao": "rh"
            }
        },
        {
            "id": 138,
            "descricao": "Perfil Empresa",
            "path": "/perfil",
            "fk_categoria": 5,
            "categoria": {
                "id": 5,
                "descricao": "cadastros"
            }
        },
        {
            "id": 123,
            "descricao": "Raça",
            "path": "/raca",
            "fk_categoria": 3,
            "categoria": {
                "id": 3,
                "descricao": "rh"
            }
        },
        {
            "id": 126,
            "descricao": "Reboque",
            "path": "/veiculos-reboque",
            "fk_categoria": 4,
            "categoria": {
                "id": 4,
                "descricao": "frota"
            }
        },
        {
            "id": 105,
            "descricao": "Rotas",
            "path": "/permissoes/rotas",
            "fk_categoria": 1,
            "categoria": {
                "id": 1,
                "descricao": "admin"
            }
        },
        {
            "id": 117,
            "descricao": "Salário",
            "path": "/salario",
            "fk_categoria": 3,
            "categoria": {
                "id": 3,
                "descricao": "rh"
            }
        },
        {
            "id": 148,
            "descricao": "Serviços",
            "path": "/financeiro/servicos",
            "fk_categoria": 6,
            "categoria": {
                "id": 6,
                "descricao": "receita"
            }
        },
        {
            "id": 118,
            "descricao": "Setor",
            "path": "/setor",
            "fk_categoria": 3,
            "categoria": {
                "id": 3,
                "descricao": "rh"
            }
        },
        {
            "id": 124,
            "descricao": "Sexo",
            "path": "/sexo",
            "fk_categoria": 3,
            "categoria": {
                "id": 3,
                "descricao": "rh"
            }
        },
        {
            "id": 144,
            "descricao": "SubCategorias",
            "path": "/subcategorias",
            "fk_categoria": 5,
            "categoria": {
                "id": 5,
                "descricao": "cadastros"
            }
        },
        {
            "id": 153,
            "descricao": "TESTE",
            "path": "/admin/teste",
            "fk_categoria": 1,
            "categoria": {
                "id": 1,
                "descricao": "admin"
            }
        },
        {
            "id": 137,
            "descricao": "Tipo de veículo",
            "path": "/veiculos-tipo",
            "fk_categoria": 4,
            "categoria": {
                "id": 4,
                "descricao": "frota"
            }
        },
        {
            "id": 119,
            "descricao": "Treinamentos",
            "path": "/treinamentos",
            "fk_categoria": 3,
            "categoria": {
                "id": 3,
                "descricao": "rh"
            }
        },
        {
            "id": 107,
            "descricao": "Usuários",
            "path": "/permissoes/usuarios",
            "fk_categoria": 1,
            "categoria": {
                "id": 1,
                "descricao": "admin"
            }
        },
        {
            "id": 106,
            "descricao": "Usuários X Rotas",
            "path": "/permissoes/usuariosxrotas",
            "fk_categoria": 1,
            "categoria": {
                "id": 1,
                "descricao": "admin"
            }
        },
        {
            "id": 133,
            "descricao": "Valor Combustível",
            "path": "/veiculos-valor-combustivel",
            "fk_categoria": 4,
            "categoria": {
                "id": 4,
                "descricao": "frota"
            }
        },
        {
            "id": 128,
            "descricao": "Veículo X Motorista",
            "path": "/veiculo-colaborador",
            "fk_categoria": 4,
            "categoria": {
                "id": 4,
                "descricao": "frota"
            }
        },
        {
            "id": 127,
            "descricao": "Veículo X Reboque",
            "path": "/veiculo-reboque-veiculo",
            "fk_categoria": 4,
            "categoria": {
                "id": 4,
                "descricao": "frota"
            }
        },
        {
            "id": 125,
            "descricao": "Veículos",
            "path": "/veiculos",
            "fk_categoria": 4,
            "categoria": {
                "id": 4,
                "descricao": "frota"
            }
        },
        {
            "id": 145,
            "descricao": "Vendas",
            "path": "/financeiro/vendas",
            "fk_categoria": 6,
            "categoria": {
                "id": 6,
                "descricao": "receita"
            }
        }
    ],
    "total": 50,
    "searchTerm": null
}
 

Request      

GET api/admin/rotas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/admin/rotas/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/admin/rotas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/admin/rotas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 28
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\adm\\Rota] consequatur"
}
 

Request      

GET api/admin/rotas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the rota. Example: consequatur

PUT api/admin/rotas/{id}

Example request:
curl --request PUT \
    "http://localhost/api/admin/rotas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"path\": \"amniihfqcoynlazghdtqt\",
    \"fk_categoria\": \"consequatur\"
}"
const url = new URL(
    "http://localhost/api/admin/rotas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "path": "amniihfqcoynlazghdtqt",
    "fk_categoria": "consequatur"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/admin/rotas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the rota. Example: consequatur

Body Parameters

descricao   string   

Must not be greater than 255 characters. Example: vmqeopfuudtdsufvyvddq

path   string   

Must not be greater than 255 characters. Example: amniihfqcoynlazghdtqt

fk_categoria   string   

The id of an existing record in the categoria_rota table. Example: consequatur

DELETE api/admin/rotas/{id}

Example request:
curl --request DELETE \
    "http://localhost/api/admin/rotas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/admin/rotas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/admin/rotas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the rota. Example: consequatur

POST api/admin/rotas

Example request:
curl --request POST \
    "http://localhost/api/admin/rotas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"path\": \"amniihfqcoynlazghdtqt\",
    \"fk_categoria\": \"consequatur\"
}"
const url = new URL(
    "http://localhost/api/admin/rotas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "path": "amniihfqcoynlazghdtqt",
    "fk_categoria": "consequatur"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/admin/rotas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

descricao   string   

Must not be greater than 255 characters. Example: vmqeopfuudtdsufvyvddq

path   string   

Must not be greater than 255 characters. Example: amniihfqcoynlazghdtqt

fk_categoria   string   

The id of an existing record in the categoria_rota table. Example: consequatur

GET api/admin/user-rotas/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/admin/user-rotas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/admin/user-rotas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 27
access-control-allow-origin: *
 

{
    "data": [],
    "total": 0
}
 

Request      

GET api/admin/user-rotas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the user rota. Example: consequatur

GET api/admin/user-rotas

Example request:
curl --request GET \
    --get "http://localhost/api/admin/user-rotas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/admin/user-rotas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 60
access-control-allow-origin: *
 

{
    "data": [
        {
            "fk_user": 7,
            "user_name": " kauã - dev",
            "user_email": "kauanog99@gmail.com",
            "rotas": [
                {
                    "id": 104,
                    "descricao": "Categorias",
                    "categoria": "admin",
                    "path": "/permissoes/categorias"
                },
                {
                    "id": 106,
                    "descricao": "Usuários X Rotas",
                    "categoria": "admin",
                    "path": "/permissoes/usuariosxrotas"
                },
                {
                    "id": 105,
                    "descricao": "Rotas",
                    "categoria": "admin",
                    "path": "/permissoes/rotas"
                },
                {
                    "id": 107,
                    "descricao": "Usuários",
                    "categoria": "admin",
                    "path": "/permissoes/usuarios"
                },
                {
                    "id": 150,
                    "descricao": "caixa",
                    "categoria": "financeiro",
                    "path": "/financeiro/caixa"
                },
                {
                    "id": 110,
                    "descricao": "Contas",
                    "categoria": "financeiro",
                    "path": "/financeiro/contas"
                },
                {
                    "id": 108,
                    "descricao": "Contas a Pagar",
                    "categoria": "financeiro",
                    "path": "/financeiro/contasapagar"
                },
                {
                    "id": 109,
                    "descricao": "Contas a Receber",
                    "categoria": "financeiro",
                    "path": "/financeiro/contasareceber"
                },
                {
                    "id": 111,
                    "descricao": "Contas x Despesas",
                    "categoria": "financeiro",
                    "path": "/financeiro/contasdespesas"
                },
                {
                    "id": 112,
                    "descricao": "Formas de Pagamento",
                    "categoria": "financeiro",
                    "path": "/financeiro/formasdepagamento"
                },
                {
                    "id": 140,
                    "descricao": "Cidades",
                    "categoria": "cadastros",
                    "path": "/cidades"
                },
                {
                    "id": 141,
                    "descricao": "Clientes",
                    "categoria": "cadastros",
                    "path": "/clientes"
                },
                {
                    "id": 142,
                    "descricao": "Companhias",
                    "categoria": "cadastros",
                    "path": "/companhias"
                },
                {
                    "id": 139,
                    "descricao": "Empresas",
                    "categoria": "cadastros",
                    "path": "/empresas"
                },
                {
                    "id": 143,
                    "descricao": "Fornecedores",
                    "categoria": "cadastros",
                    "path": "/fornecedores"
                },
                {
                    "id": 138,
                    "descricao": "Perfil Empresa",
                    "categoria": "cadastros",
                    "path": "/perfil"
                },
                {
                    "id": 144,
                    "descricao": "SubCategorias",
                    "categoria": "cadastros",
                    "path": "/subcategorias"
                },
                {
                    "id": 149,
                    "descricao": "Dashboard",
                    "categoria": "dashboard",
                    "path": "/dashboard"
                },
                {
                    "id": 129,
                    "descricao": "Atualizar KM",
                    "categoria": "frota",
                    "path": "/atualizar-km"
                },
                {
                    "id": 130,
                    "descricao": "Carroceria",
                    "categoria": "frota",
                    "path": "/veiculos-carroceria"
                },
                {
                    "id": 131,
                    "descricao": "Categoria de veículo",
                    "categoria": "frota",
                    "path": "/veiculos-categoria"
                },
                {
                    "id": 132,
                    "descricao": "Combustível",
                    "categoria": "frota",
                    "path": "/veiculos-combustivel"
                },
                {
                    "id": 134,
                    "descricao": "Consumo Combustível",
                    "categoria": "frota",
                    "path": "/veiculos-consumo"
                },
                {
                    "id": 135,
                    "descricao": "Marca de veículo",
                    "categoria": "frota",
                    "path": "/veiculos-marca"
                },
                {
                    "id": 136,
                    "descricao": "Modelo de veículo",
                    "categoria": "frota",
                    "path": "/veiculos-modelo"
                },
                {
                    "id": 126,
                    "descricao": "Reboque",
                    "categoria": "frota",
                    "path": "/veiculos-reboque"
                },
                {
                    "id": 137,
                    "descricao": "Tipo de veículo",
                    "categoria": "frota",
                    "path": "/veiculos-tipo"
                },
                {
                    "id": 133,
                    "descricao": "Valor Combustível",
                    "categoria": "frota",
                    "path": "/veiculos-valor-combustivel"
                },
                {
                    "id": 128,
                    "descricao": "Veículo X Motorista",
                    "categoria": "frota",
                    "path": "/veiculo-colaborador"
                },
                {
                    "id": 127,
                    "descricao": "Veículo X Reboque",
                    "categoria": "frota",
                    "path": "/veiculo-reboque-veiculo"
                },
                {
                    "id": 125,
                    "descricao": "Veículos",
                    "categoria": "frota",
                    "path": "/veiculos"
                },
                {
                    "id": 146,
                    "descricao": "Acordo X Rota",
                    "categoria": "receita",
                    "path": "/financeiro/acordo-rota"
                },
                {
                    "id": 147,
                    "descricao": "Montagem de Carga",
                    "categoria": "receita",
                    "path": "/montagem_carga"
                },
                {
                    "id": 148,
                    "descricao": "Serviços",
                    "categoria": "receita",
                    "path": "/financeiro/servicos"
                },
                {
                    "id": 145,
                    "descricao": "Vendas",
                    "categoria": "receita",
                    "path": "/financeiro/vendas"
                },
                {
                    "id": 114,
                    "descricao": "Cargo",
                    "categoria": "rh",
                    "path": "/cargo"
                },
                {
                    "id": 113,
                    "descricao": "Colaboradores",
                    "categoria": "rh",
                    "path": "/colaborador"
                },
                {
                    "id": 115,
                    "descricao": "Escalas",
                    "categoria": "rh",
                    "path": "/escala"
                },
                {
                    "id": 120,
                    "descricao": "Estado Civil",
                    "categoria": "rh",
                    "path": "/estado-civil"
                },
                {
                    "id": 116,
                    "descricao": "Horário",
                    "categoria": "rh",
                    "path": "/horario-escala"
                },
                {
                    "id": 121,
                    "descricao": "Instrução",
                    "categoria": "rh",
                    "path": "/instrucao"
                },
                {
                    "id": 122,
                    "descricao": "Parentesco",
                    "categoria": "rh",
                    "path": "/parentesco"
                },
                {
                    "id": 123,
                    "descricao": "Raça",
                    "categoria": "rh",
                    "path": "/raca"
                },
                {
                    "id": 117,
                    "descricao": "Salário",
                    "categoria": "rh",
                    "path": "/salario"
                },
                {
                    "id": 118,
                    "descricao": "Setor",
                    "categoria": "rh",
                    "path": "/setor"
                },
                {
                    "id": 124,
                    "descricao": "Sexo",
                    "categoria": "rh",
                    "path": "/sexo"
                },
                {
                    "id": 119,
                    "descricao": "Treinamentos",
                    "categoria": "rh",
                    "path": "/treinamentos"
                },
                {
                    "id": 151,
                    "descricao": "CIF",
                    "categoria": "receita",
                    "path": "/financeiro/cif"
                },
                {
                    "id": 152,
                    "descricao": "CIF parâmetros",
                    "categoria": "receita",
                    "path": "/financeiro/cif_parametros"
                }
            ]
        },
        {
            "fk_user": 3,
            "user_name": "Example Super-Admin User",
            "user_email": "superadmin@example.com",
            "rotas": [
                {
                    "id": 104,
                    "descricao": "Categorias",
                    "categoria": "admin",
                    "path": "/permissoes/categorias"
                },
                {
                    "id": 105,
                    "descricao": "Rotas",
                    "categoria": "admin",
                    "path": "/permissoes/rotas"
                },
                {
                    "id": 107,
                    "descricao": "Usuários",
                    "categoria": "admin",
                    "path": "/permissoes/usuarios"
                },
                {
                    "id": 106,
                    "descricao": "Usuários X Rotas",
                    "categoria": "admin",
                    "path": "/permissoes/usuariosxrotas"
                },
                {
                    "id": 140,
                    "descricao": "Cidades",
                    "categoria": "cadastros",
                    "path": "/cidades"
                },
                {
                    "id": 141,
                    "descricao": "Clientes",
                    "categoria": "cadastros",
                    "path": "/clientes"
                },
                {
                    "id": 142,
                    "descricao": "Companhias",
                    "categoria": "cadastros",
                    "path": "/companhias"
                },
                {
                    "id": 139,
                    "descricao": "Empresas",
                    "categoria": "cadastros",
                    "path": "/empresas"
                },
                {
                    "id": 143,
                    "descricao": "Fornecedores",
                    "categoria": "cadastros",
                    "path": "/fornecedores"
                },
                {
                    "id": 138,
                    "descricao": "Perfil Empresa",
                    "categoria": "cadastros",
                    "path": "/perfil"
                },
                {
                    "id": 144,
                    "descricao": "SubCategorias",
                    "categoria": "cadastros",
                    "path": "/subcategorias"
                },
                {
                    "id": 149,
                    "descricao": "Dashboard",
                    "categoria": "dashboard",
                    "path": "/dashboard"
                },
                {
                    "id": 150,
                    "descricao": "caixa",
                    "categoria": "financeiro",
                    "path": "/financeiro/caixa"
                },
                {
                    "id": 110,
                    "descricao": "Contas",
                    "categoria": "financeiro",
                    "path": "/financeiro/contas"
                },
                {
                    "id": 108,
                    "descricao": "Contas a Pagar",
                    "categoria": "financeiro",
                    "path": "/financeiro/contasapagar"
                },
                {
                    "id": 109,
                    "descricao": "Contas a Receber",
                    "categoria": "financeiro",
                    "path": "/financeiro/contasareceber"
                },
                {
                    "id": 111,
                    "descricao": "Contas x Despesas",
                    "categoria": "financeiro",
                    "path": "/financeiro/contasdespesas"
                },
                {
                    "id": 112,
                    "descricao": "Formas de Pagamento",
                    "categoria": "financeiro",
                    "path": "/financeiro/formasdepagamento"
                },
                {
                    "id": 146,
                    "descricao": "Acordo X Rota",
                    "categoria": "receita",
                    "path": "/financeiro/acordo-rota"
                },
                {
                    "id": 151,
                    "descricao": "CIF",
                    "categoria": "receita",
                    "path": "/financeiro/cif"
                },
                {
                    "id": 152,
                    "descricao": "CIF parâmetros",
                    "categoria": "receita",
                    "path": "/financeiro/cif_parametros"
                },
                {
                    "id": 147,
                    "descricao": "Montagem de Carga",
                    "categoria": "receita",
                    "path": "/montagem_carga"
                },
                {
                    "id": 148,
                    "descricao": "Serviços",
                    "categoria": "receita",
                    "path": "/financeiro/servicos"
                },
                {
                    "id": 145,
                    "descricao": "Vendas",
                    "categoria": "receita",
                    "path": "/financeiro/vendas"
                },
                {
                    "id": 114,
                    "descricao": "Cargo",
                    "categoria": "rh",
                    "path": "/cargo"
                },
                {
                    "id": 113,
                    "descricao": "Colaboradores",
                    "categoria": "rh",
                    "path": "/colaborador"
                },
                {
                    "id": 115,
                    "descricao": "Escalas",
                    "categoria": "rh",
                    "path": "/escala"
                },
                {
                    "id": 120,
                    "descricao": "Estado Civil",
                    "categoria": "rh",
                    "path": "/estado-civil"
                },
                {
                    "id": 116,
                    "descricao": "Horário",
                    "categoria": "rh",
                    "path": "/horario-escala"
                },
                {
                    "id": 121,
                    "descricao": "Instrução",
                    "categoria": "rh",
                    "path": "/instrucao"
                },
                {
                    "id": 122,
                    "descricao": "Parentesco",
                    "categoria": "rh",
                    "path": "/parentesco"
                },
                {
                    "id": 123,
                    "descricao": "Raça",
                    "categoria": "rh",
                    "path": "/raca"
                },
                {
                    "id": 117,
                    "descricao": "Salário",
                    "categoria": "rh",
                    "path": "/salario"
                },
                {
                    "id": 118,
                    "descricao": "Setor",
                    "categoria": "rh",
                    "path": "/setor"
                },
                {
                    "id": 124,
                    "descricao": "Sexo",
                    "categoria": "rh",
                    "path": "/sexo"
                },
                {
                    "id": 119,
                    "descricao": "Treinamentos",
                    "categoria": "rh",
                    "path": "/treinamentos"
                }
            ]
        }
    ],
    "total_users": 2,
    "searchTerm": null
}
 

Request      

GET api/admin/user-rotas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

POST api/admin/user-rotas

Example request:
curl --request POST \
    "http://localhost/api/admin/user-rotas" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"fk_user\": 17,
    \"rotas\": [
        {
            \"id\": 17
        }
    ]
}"
const url = new URL(
    "http://localhost/api/admin/user-rotas"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "fk_user": 17,
    "rotas": [
        {
            "id": 17
        }
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/admin/user-rotas

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

fk_user   integer   

The id of an existing record in the users table. Example: 17

rotas   object[]   
id   integer   

The id of an existing record in the rotas table. Example: 17

PUT api/admin/user-rotas/{id}

Example request:
curl --request PUT \
    "http://localhost/api/admin/user-rotas/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\",
    \"path\": \"amniihfqcoynlazghdtqt\"
}"
const url = new URL(
    "http://localhost/api/admin/user-rotas/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq",
    "path": "amniihfqcoynlazghdtqt"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/admin/user-rotas/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the user rota. Example: consequatur

Body Parameters

descricao   string   

Must not be greater than 255 characters. Example: vmqeopfuudtdsufvyvddq

path   string   

Must not be greater than 255 characters. Example: amniihfqcoynlazghdtqt

GET api/admin/categorias

Example request:
curl --request GET \
    --get "http://localhost/api/admin/categorias" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/admin/categorias"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 59
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 1,
            "descricao": "admin"
        },
        {
            "id": 5,
            "descricao": "cadastros"
        },
        {
            "id": 7,
            "descricao": "dashboard"
        },
        {
            "id": 2,
            "descricao": "financeiro"
        },
        {
            "id": 4,
            "descricao": "frota"
        },
        {
            "id": 6,
            "descricao": "receita"
        },
        {
            "id": 8,
            "descricao": "relatorios"
        },
        {
            "id": 3,
            "descricao": "rh"
        }
    ],
    "total": 8,
    "searchTerm": null
}
 

Request      

GET api/admin/categorias

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

GET api/admin/categorias/{id}

Example request:
curl --request GET \
    --get "http://localhost/api/admin/categorias/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/admin/categorias/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 58
access-control-allow-origin: *
 

{
    "message": "No query results for model [App\\Models\\adm\\Categoria] consequatur"
}
 

Request      

GET api/admin/categorias/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the categoria. Example: consequatur

PUT api/admin/categorias/{id}

Example request:
curl --request PUT \
    "http://localhost/api/admin/categorias/consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
    "http://localhost/api/admin/categorias/consequatur"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/admin/categorias/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the categoria. Example: consequatur

Body Parameters

descricao   string   

Must not be greater than 255 characters. Example: vmqeopfuudtdsufvyvddq

POST api/admin/categorias

Example request:
curl --request POST \
    "http://localhost/api/admin/categorias" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"descricao\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
    "http://localhost/api/admin/categorias"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "descricao": "vmqeopfuudtdsufvyvddq"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/admin/categorias

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

descricao   string   

Must not be greater than 255 characters. Example: vmqeopfuudtdsufvyvddq