From e19882b77e154d5ea152521b5761dfeeb33339d3 Mon Sep 17 00:00:00 2001 From: Marcelo Andriolli Date: Wed, 16 May 2018 12:42:16 -0300 Subject: [PATCH 01/10] {WIP} Get data from auctions page --- comprasnet/__init__.py | 90 ++++++++++++++++++++++++++++++++-- tests/test_class_comprasnet.py | 39 ++++++++++++++- 2 files changed, 125 insertions(+), 4 deletions(-) diff --git a/comprasnet/__init__.py b/comprasnet/__init__.py index 21cc5eb..a88369a 100644 --- a/comprasnet/__init__.py +++ b/comprasnet/__init__.py @@ -1,8 +1,10 @@ import logging.config from datetime import datetime, date, timedelta +from unicodedata import normalize import requests from bs4 import BeautifulSoup +from slugify import slugify log = logging.getLogger('comprasnet') @@ -40,6 +42,86 @@ def get_data_dict_to_search_auctions(self): "numpag": 1, } + def get_data_auctions_pages(self, data): + """ Gets data from results page of auctions search and + retrieve a dict with scrapped informations. + """ + is_last_page = False + page_results = [] + + response = requests.get(self.SEARCH_BIDS_URL, data) + print(str(response.status_code)) + if not response.status_code == requests.codes.ok: + log.error('error trying to get auctions from {}, page {}. Status code: {}'.format( + data['dt_publ_ini'], data['numpag'], response.status_code + )) + return None, is_last_page + + bs_object = BeautifulSoup(response.text, "html.parser") + header = [] + for form in bs_object.find_all('form'): + if 'Form' not in form.attrs['name']: + continue + + current_result = {} + td = form.find('tr', class_="tex3").find('td') + + for line in str(td).split("
"): + + if 'digo da UASG' in line: + codigo_da_uasg_chave = line.split(":")[0] + codigo_da_uasg_chave = slugify(codigo_da_uasg_chave) + codigo_da_uasg_valor = line.split("digo da UASG: ")[-1].strip() + current_result[codigo_da_uasg_chave] = codigo_da_uasg_valor + + if 'Pregão Eletrônico Nº' in line: + pregao_eletronico_chave = line.split('Nº')[0].split('')[-1] + pregao_eletronico_chave = slugify(pregao_eletronico_chave) + pregao_eletronico_valor = line.split("Pregão Eletrônico Nº ")[-1].strip() + pregao_eletronico_valor = pregao_eletronico_valor.replace('/', '') + pregao_eletronico_valor = pregao_eletronico_valor.replace('', '') + pregao_eletronico_valor = pregao_eletronico_valor.replace('', '') + current_result[pregao_eletronico_chave] = pregao_eletronico_valor + + if 'Objeto:' in line: + objeto_chave = line.split()[1].split(':')[0].lower() + object_value = line.split('Objeto:')[-1].strip() + current_result[objeto_chave] = object_value + + if 'Edital a partir de' in line: + edital_a_partir_de = line.split(':')[1].strip() + edital_a_partir_de = edital_a_partir_de.split('')[1] + edital_a_partir_de = normalize('NFKD', edital_a_partir_de) + edital_a_partir_de = edital_a_partir_de.split('das')[0] + edital_a_partir_de = edital_a_partir_de.replace(' ', '') + edital_a_partir_de_data = datetime.strptime(edital_a_partir_de, + '%d/%m/%Y').date() + current_result['edital-a-partir-de-str'] = edital_a_partir_de + current_result['edital-a-partir-de'] = edital_a_partir_de_data + + if 'Endereço' in line: + # import pdb; pdb.set_trace() + print(line) + + if 'Telefone' in line: + # import pdb; pdb.set_trace() + print(line) + if 'Entrega da Proposta' in line: + # import pdb; pdb.set_trace() + print(line) + + if 'Abertura da Proposta' in line: + # import pdb; pdb.set_trace() + print(line) + + page_results.append(current_result) + + if not 'id="proximo" name="btn_proximo"' in response.text: + log.info('finished!') + is_last_page = True + + return page_results, is_last_page + def search_auctions_by_date(self, search_date): """Search auctions only by date, retrieve and save page results in tmp directory and return a list of filenames saved.""" @@ -58,7 +140,8 @@ def search_auctions_by_date(self, search_date): data['numpag'] = page log.debug('getting page {:04d}...'.format(page)) - page_results, is_last_page = self.get_search_result_page(data) + # page_results, is_last_page = self.get_search_result_page(data) + page_results, is_last_page = self.get_data_auctions_pages(data) results += page_results if is_last_page: break @@ -133,5 +216,6 @@ def get_search_result_page(self, data): }) comprasnet = ComprasNet() - results = comprasnet.search_auctions_by_date(datetime.now() - timedelta(days=3)) - print(results) + # results = comprasnet.search_auctions_by_date(datetime.now() - timedelta(days=3)) + results_auction_info = comprasnet.search_auctions_by_date(datetime.now()) + print(results_auction_info) diff --git a/tests/test_class_comprasnet.py b/tests/test_class_comprasnet.py index 4c51b73..0ef07f5 100644 --- a/tests/test_class_comprasnet.py +++ b/tests/test_class_comprasnet.py @@ -1,7 +1,7 @@ import codecs import os from collections import namedtuple -from datetime import datetime +from datetime import datetime, date from unittest import mock import requests @@ -38,7 +38,44 @@ def test_should_search_auctions_by_date(get_search_result_page): assert get_search_result_page.called_with(comprasnet.SEARCH_BIDS_URL, comprasnet.get_data_dict_to_search_auctions()) +@mock.patch('comprasnet.requests.get') +def test_get_data_auctions_pages(get): + filename = os.path.join(os.path.dirname(os.path.abspath(__file__)), + 'assets/result_page_sample.html') + with codecs.open(filename, 'r', 'iso-8859-1') as handle: + page_result_content = handle.read() + + MockResponse = namedtuple('Response', 'status_code, text') + MockResponse.status_code = requests.codes.ok + MockResponse.text = page_result_content + get.return_value = MockResponse + + comprasnet = ComprasNet() + page_results, is_last = comprasnet.get_data_auctions_pages({ + 'dt_publ_ini': 'foo', + 'numpag': 'foo', + }) + assert is_last is False + assert page_results[1:3] == [{ + 'codigo-da-uasg': '160228', + 'pregao-eletronico': '112018', + 'objeto': 'Pregão Eletrônico - Aquisição de ' + 'Material de Acondicionamento e Embalagens', + 'edital-a-partir-de-str': '02/05/2018', + 'edital-a-partir-de': datetime.date(2018, 5, 2) + }, { + 'codigo-da-uasg': '160183', + 'pregao-eletronico': '22018', + 'objeto': 'Pregão Eletrônico - Registro de ' + 'preços para eventual contratação de serviços' + ' de gerenciamento, controle e fornecimento' + ' de combustível por meio de sistema ' + 'informatizado e utilização de cartão ' + 'eletrônico ou magnético.', + 'edital-a-partir-de-str': '02/05/2018', + 'edital-a-partir-de': datetime.date(2018, 5, 2) + }] @mock.patch('comprasnet.requests.get') def test_should_search_auctions_by_date(get): filename = os.path.join(os.path.dirname(os.path.abspath(__file__)), From ccf8364fbe7ace9b035bba676d2cd1ff317d4249 Mon Sep 17 00:00:00 2001 From: Marcelo Andriolli Date: Wed, 16 May 2018 12:49:06 -0300 Subject: [PATCH 02/10] {WIP} Fix tests #3 --- tests/test_class_comprasnet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_class_comprasnet.py b/tests/test_class_comprasnet.py index 0ef07f5..e796b1c 100644 --- a/tests/test_class_comprasnet.py +++ b/tests/test_class_comprasnet.py @@ -63,7 +63,7 @@ def test_get_data_auctions_pages(get): 'objeto': 'Pregão Eletrônico - Aquisição de ' 'Material de Acondicionamento e Embalagens', 'edital-a-partir-de-str': '02/05/2018', - 'edital-a-partir-de': datetime.date(2018, 5, 2) + 'edital-a-partir-de': date(2018, 5, 2) }, { 'codigo-da-uasg': '160183', 'pregao-eletronico': '22018', @@ -74,7 +74,7 @@ def test_get_data_auctions_pages(get): 'informatizado e utilização de cartão ' 'eletrônico ou magnético.', 'edital-a-partir-de-str': '02/05/2018', - 'edital-a-partir-de': datetime.date(2018, 5, 2) + 'edital-a-partir-de': date(2018, 5, 2) }] @mock.patch('comprasnet.requests.get') def test_should_search_auctions_by_date(get): From 2dc75e22e6325179c5c092030e066f65e9dca3c5 Mon Sep 17 00:00:00 2001 From: Marcelo Andriolli Date: Thu, 17 May 2018 00:17:59 -0300 Subject: [PATCH 03/10] =?UTF-8?q?{WIP}=20Get=20"endere=C3=A7o",=20"telefon?= =?UTF-8?q?es",=20"fax",=20"entrada=20da=20proposta"=20and=20"abertura=20d?= =?UTF-8?q?a=20proposta",=20info=20from=20=20auction=20page=20#3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- comprasnet/__init__.py | 86 +++++++++++++++++++++++++++---- tests/test_class_comprasnet.py | 92 +++++++++++++++++++++++++++------- 2 files changed, 150 insertions(+), 28 deletions(-) diff --git a/comprasnet/__init__.py b/comprasnet/__init__.py index a88369a..11796fd 100644 --- a/comprasnet/__init__.py +++ b/comprasnet/__init__.py @@ -66,9 +66,19 @@ def get_data_auctions_pages(self, data): current_result = {} td = form.find('tr', class_="tex3").find('td') + titulo_td = form.find_all('td', class_="td_titulo_campo")[1] + cidade = str(titulo_td).split()[-2] + cidade = cidade.strip('-') + uf = str(titulo_td).split()[-1] + uf = uf.strip('') + + current_result['cidade'] = cidade + current_result['uf'] = uf + for line in str(td).split("
"): if 'digo da UASG' in line: + current_result['cabecalho'] = header codigo_da_uasg_chave = line.split(":")[0] codigo_da_uasg_chave = slugify(codigo_da_uasg_chave) codigo_da_uasg_valor = line.split("digo da UASG: ")[-1].strip() @@ -85,8 +95,8 @@ def get_data_auctions_pages(self, data): if 'Objeto:' in line: objeto_chave = line.split()[1].split(':')[0].lower() - object_value = line.split('Objeto:')[-1].strip() - current_result[objeto_chave] = object_value + objeto_valor = line.split('Objeto:')[-1].strip() + current_result[objeto_chave] = objeto_valor if 'Edital a partir de' in line: edital_a_partir_de = line.split(':')[1].strip() @@ -100,26 +110,80 @@ def get_data_auctions_pages(self, data): current_result['edital-a-partir-de'] = edital_a_partir_de_data if 'Endereço' in line: - # import pdb; pdb.set_trace() - print(line) + endereco_chave = line.split()[0].strip('') + endereco_chave = endereco_chave.split(':')[1] + endereco_valor = normalize('NFKD', endereco_valor) + current_result[endereco_chave] = endereco_valor + print(current_result) if 'Telefone' in line: - # import pdb; pdb.set_trace() - print(line) + telefone_chave = line.split(':')[0] + telefone_chave = telefone_chave.split('')[1] + telefone_chave = slugify(telefone_chave) + telefone_valor = line.split(':')[1] + + if telefone_valor: + telefone_valor = telefone_valor.split('')[1] + telefone_valor = normalize('NFKD', telefone_valor) + telefone_valor = telefone_valor.strip(' ') + telefone_valor = telefone_valor.replace('0xx', '') + else: + telefone_valor = None + + current_result[telefone_chave] = telefone_valor + + if 'Fax' in line: + fax_chave = line.split(':')[0] + fax_chave = fax_chave.split('')[1] + fax_chave = slugify(fax_chave) + fax_valor = line.split(':')[1] + + if fax_valor: + fax_valor = fax_valor.split('')[1] + fax_valor = fax_valor.replace(' ', '') + fax_valor = normalize('NFKD', fax_valor) + fax_valor = fax_valor.replace(' ', '') + fax_valor = fax_valor.replace('0xx', '') + else: + fax_valor = None + + current_result[fax_chave] = fax_valor + print(current_result) + if 'Entrega da Proposta' in line: - # import pdb; pdb.set_trace() - print(line) + entrega_proposta_chave = line.split(':')[0] + entrega_proposta_chave = entrega_proposta_chave.split('')[1] + entrega_proposta_chave = slugify(entrega_proposta_chave) + entrega_proposta_chave_str = '{}{}'.format(entrega_proposta_chave, '-str') + + entrega_proposta_valor = line.split(':')[1] + entrega_proposta_valor = entrega_proposta_valor.split('')[1] + entrega_proposta_valor_str = entrega_proposta_valor.split()[3] + entrega_proposta_valor_date = datetime.strptime(entrega_proposta_valor_str, + '%d/%m/%Y').date() + current_result[entrega_proposta_chave_str] = entrega_proposta_valor_str + current_result[entrega_proposta_chave] = entrega_proposta_valor_date if 'Abertura da Proposta' in line: - # import pdb; pdb.set_trace() - print(line) + abertura_proposta_chave = line.split(':')[0] + abertura_proposta_chave = abertura_proposta_chave.split('')[1] + abertura_proposta_chave = slugify(abertura_proposta_chave) + abertura_proposta_chave_str = '{}{}'.format(abertura_proposta_chave, '-str') + abertura_proposta_valor = line.split(':')[1] + abertura_proposta_str = abertura_proposta_valor.split()[2] + abertura_proposta_data = datetime.strptime(abertura_proposta_str, + '%d/%m/%Y').date() + current_result[abertura_proposta_chave_str] = abertura_proposta_str + current_result[abertura_proposta_chave] = abertura_proposta_data page_results.append(current_result) if not 'id="proximo" name="btn_proximo"' in response.text: log.info('finished!') is_last_page = True - return page_results, is_last_page def search_auctions_by_date(self, search_date): diff --git a/tests/test_class_comprasnet.py b/tests/test_class_comprasnet.py index e796b1c..7dee449 100644 --- a/tests/test_class_comprasnet.py +++ b/tests/test_class_comprasnet.py @@ -57,25 +57,83 @@ def test_get_data_auctions_pages(get): }) assert is_last is False - assert page_results[1:3] == [{ - 'codigo-da-uasg': '160228', - 'pregao-eletronico': '112018', - 'objeto': 'Pregão Eletrônico - Aquisição de ' - 'Material de Acondicionamento e Embalagens', - 'edital-a-partir-de-str': '02/05/2018', - 'edital-a-partir-de': date(2018, 5, 2) - }, { + assert page_results[:3] == [{ + 'cabecalho': [ + 'MINISTÉRIO DA DEFESA', + 'Comando do Exército', + 'Comando Militar do Sul', + '1º Batalhão Ferroviário', + ], + 'cidade': 'Lages', + 'uf': 'SC', + 'abertura-da-proposta': date(2018, 5, 14), + 'abertura-da-proposta-str': '14/05/2018', + 'codigo-da-uasg': '160447', + 'edital-a-partir-de': date(2018, 5, 2), + 'edital-a-partir-de-str': '02/05/2018', + 'endereco': ' Rua 2.batalhao Rodoviario,sn * - Conta Dinheiro - Lages (SC)', + 'entrega-da-proposta': date(2018, 5, 2), + 'entrega-da-proposta-str': '02/05/2018', + 'fax': '(49)', + 'objeto': 'Pregão Eletrônico - Eventual aquisição de materiais de ' + 'construção, para utilização na Obra da Construção da Ferrovia das ' + 'Bromélias, Revitalização da Estrada de Acesso ao Destacamento de ' + 'Controle de Espaço Aéreo do Morro da Igreja, Obra da SC 114 ' + '(antiga SC-430), e Sede da OM - manutenção de PNRs e Instalações ' + 'internas do Batalhão.', + 'pregao-eletronico': '122018', + 'telefone': '(49) 32519515'}, + { + 'cabecalho': [ + 'MINISTÉRIO DA DEFESA', + 'Comando do Exército', + 'Comando Militar do Sul', + '5ª Região Militar', + '15ª Brigada de Infantaria Mecanizada', + '26º Grupo de Artilharia de Campanha'], + 'cidade': 'Guarapuava', + 'uf': 'PR', + 'abertura-da-proposta': date(2018, 5, 14), + 'abertura-da-proposta-str': '14/05/2018', + 'codigo-da-uasg': '160228', + 'edital-a-partir-de': date(2018, 5, 2), + 'edital-a-partir-de-str': '02/05/2018', + 'endereco': ' Av Manoel Ribas, 2286 - Centro - Centro - Guarapuava (PR)', + 'entrega-da-proposta': date(2018, 5, 2), + 'entrega-da-proposta-str': '02/05/2018', + 'fax': '(42)', + 'objeto': 'Pregão Eletrônico - Aquisição de Material de Acondicionamento e ' + 'Embalagens', + 'pregao-eletronico': '112018', + 'telefone': '(42) 31419115' + }, + { + 'cabecalho': [ + 'MINISTÉRIO DA DEFESA', + 'Comando do Exército', + 'Comando Militar do Nordeste', + '7ª Região Militar/7º Divisão de Exército', + '10ª Brigada de Infantaria Motorizada', + '72º Batalhão de Infantaria Motorizado'], + 'cidade': 'Petrolina', + 'uf': 'PE', + 'abertura-da-proposta': date(2018, 5, 14), + 'abertura-da-proposta-str': '14/05/2018', 'codigo-da-uasg': '160183', - 'pregao-eletronico': '22018', - 'objeto': 'Pregão Eletrônico - Registro de ' - 'preços para eventual contratação de serviços' - ' de gerenciamento, controle e fornecimento' - ' de combustível por meio de sistema ' - 'informatizado e utilização de cartão ' - 'eletrônico ou magnético.', + 'edital-a-partir-de': date(2018, 5, 2), 'edital-a-partir-de-str': '02/05/2018', - 'edital-a-partir-de': date(2018, 5, 2) - }] + 'endereco': ' Av. Cardoso de Sa, S/n - Vila Eduardo - Vila Eduardo - ' + 'Petrolina (PE)', + 'entrega-da-proposta': date(2018, 5, 2), + 'entrega-da-proposta-str': '02/05/2018', + 'fax': '', + 'objeto': 'Pregão Eletrônico - Registro de preços para eventual contratação ' + 'de serviços de gerenciamento, controle e fornecimento de ' + 'combustível por meio de sistema informatizado e utilização de ' + 'cartão eletrônico ou magnético.', + 'pregao-eletronico': '22018', + 'telefone': '' + }] @mock.patch('comprasnet.requests.get') def test_should_search_auctions_by_date(get): filename = os.path.join(os.path.dirname(os.path.abspath(__file__)), From 30918cb642896fa725b898eabe03ec01be071af8 Mon Sep 17 00:00:00 2001 From: Marcelo Andriolli Date: Thu, 17 May 2018 00:49:24 -0300 Subject: [PATCH 04/10] {WIP} Fix date to search auctions #3 --- comprasnet/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comprasnet/__init__.py b/comprasnet/__init__.py index 11796fd..ccde32d 100644 --- a/comprasnet/__init__.py +++ b/comprasnet/__init__.py @@ -281,5 +281,5 @@ def get_search_result_page(self, data): comprasnet = ComprasNet() # results = comprasnet.search_auctions_by_date(datetime.now() - timedelta(days=3)) - results_auction_info = comprasnet.search_auctions_by_date(datetime.now()) + results_auction_info = comprasnet.search_auctions_by_date(datetime.now() - timedelta(days=1)) print(results_auction_info) From 7f24fb2fef55496b5e41dcaad8d291c9379b23b4 Mon Sep 17 00:00:00 2001 From: Moacir Moda Date: Thu, 17 May 2018 10:47:43 -0300 Subject: [PATCH 05/10] Creating new class called that wraps Dados.gov.br API for ComprasNet database (#9) * removing tests from lib * starting to implement class to wrap api from dados.gov.br * creating file to test samples outside from lib coe * making a separated file to test dependencies * starting a Makefile to wrap some util commands, such test command * updating documentation * adding ComprasNetApi to __init__ lib to make import easy * creating parameter that calls licitacoes/uasgs endpoint * adding missing requirements * adding ComprasNetApi to test in contrib file called example.py --- Makefile | 3 ++ README.md | 10 ++++- comprasnet/__init__.py | 38 +++---------------- comprasnet/api.py | 45 ++++++++++++++++++++++ contrib/__init__.py | 0 contrib/example.py | 36 ++++++++++++++++++ requirements-test.txt | 3 ++ requirements.txt | 1 + tests/test_class_comprasnetapi.py | 63 +++++++++++++++++++++++++++++++ 9 files changed, 165 insertions(+), 34 deletions(-) create mode 100644 Makefile create mode 100644 comprasnet/api.py create mode 100644 contrib/__init__.py create mode 100644 contrib/example.py create mode 100644 requirements-test.txt create mode 100644 tests/test_class_comprasnetapi.py diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..245bb0a --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +test: + pytest -s -vv --cov=comprasnet --cov-report term-missing + diff --git a/README.md b/README.md index 4e340e4..af11551 100644 --- a/README.md +++ b/README.md @@ -12,5 +12,13 @@ How to install How to test =========== +1. Run `pip install -r requirements-test.txt` 1. Install `pytest` -1. Run `pytest tests/` +1. Run `make test` + +Example +======= + +1. See `python contrib/example.py` + + diff --git a/comprasnet/__init__.py b/comprasnet/__init__.py index ccde32d..6a49ab1 100644 --- a/comprasnet/__init__.py +++ b/comprasnet/__init__.py @@ -1,10 +1,12 @@ import logging.config -from datetime import datetime, date, timedelta -from unicodedata import normalize +from datetime import date, datetime import requests from bs4 import BeautifulSoup from slugify import slugify +from unicodedata import normalize + +from .api import ComprasNetApi log = logging.getLogger('comprasnet') @@ -149,7 +151,7 @@ def get_data_auctions_pages(self, data): fax_valor = fax_valor.replace('0xx', '') else: fax_valor = None - + current_result[fax_chave] = fax_valor print(current_result) @@ -253,33 +255,3 @@ def get_search_result_page(self, data): is_last_page = True return page_results, is_last_page - - -if __name__ == '__main__': - logging.config.dictConfig({ - 'version': 1, - 'disable_existing_loggers': False, - 'formatters': { - 'standard': { - 'format': '%(asctime)s [%(levelname)s] %(name)s: %(message)s' - }, - }, - 'handlers': { - 'console': { - 'class': 'logging.StreamHandler', - 'formatter': 'standard', - }, - }, - 'loggers': { - '': { - 'level': 'DEBUG', - 'handlers': ['console'], - 'propagate': False - }, - }, - }) - - comprasnet = ComprasNet() - # results = comprasnet.search_auctions_by_date(datetime.now() - timedelta(days=3)) - results_auction_info = comprasnet.search_auctions_by_date(datetime.now() - timedelta(days=1)) - print(results_auction_info) diff --git a/comprasnet/api.py b/comprasnet/api.py new file mode 100644 index 0000000..da7d8d8 --- /dev/null +++ b/comprasnet/api.py @@ -0,0 +1,45 @@ +import logging + +import requests + +log = logging.getLogger('comprasnet') + + +class ComprasNetApi: + BASE_SEARCH_URL = "http://compras.dados.gov.br/{modulo}/{version}/{metodo}.{formato}" + BASE_DETAIL_URL = "http://compras.dados.gov.br/{modulo}/{version}/{metodo}/{item}.{formato}" + + def __init__(self): + self.last_response = None + + def _raw_request(self, url, **params): + log.info('requesting to {}...'.format(url)) + response = requests.get(url, params=params) + log.debug('response status code: {}'.format(response.status_code)) + + self.last_response = response + return response + + def _request_search(self, modulo, metodo, version='v1', formato='json', **params): + url = self.BASE_SEARCH_URL.format(modulo=modulo, metodo=metodo, version=version, + formato=formato) + return self._raw_request(url, **params) + + def _request_detail(self, modulo, metodo, item, version='id', formato='json', **params): + url = self.BASE_DETAIL_URL.format(modulo=modulo, metodo=metodo, version=version, + formato=formato, item=item) + return self._raw_request(url, **params) + + def get_licitacoes_uasg(self, uasg_id, **params): + """http://compras.dados.gov.br/docs/licitacoes/uasg.html""" + response = self._request_detail('licitacoes', 'uasg', uasg_id, **params) + if response.status_code == 200: + return response.json() + + def get_licitacoes_uasgs(self, **params): + """http://compras.dados.gov.br/docs/licitacoes/v1/uasgs.html""" + response = self._request_search('licitacoes', 'uasgs', **params) + if response.status_code == 200: + return response.json() + + diff --git a/contrib/__init__.py b/contrib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/contrib/example.py b/contrib/example.py new file mode 100644 index 0000000..868264f --- /dev/null +++ b/contrib/example.py @@ -0,0 +1,36 @@ +from comprasnet import ComprasNet, ComprasNetApi +import logging +import sys +from datetime import datetime + +logging.config.dictConfig({ + 'version': 1, + 'disable_existing_loggers': False, + 'formatters': { + 'standard': { + 'format': '%(asctime)s [%(levelname)s] %(name)s: %(message)s' + }, + }, + 'handlers': { + 'console': { + 'class': 'logging.StreamHandler', + 'formatter': 'standard', + }, + }, + 'loggers': { + '': { + 'level': 'DEBUG', + 'handlers': ['console'], + 'propagate': False + }, + }, +}) + +comprasnet = ComprasNet() +results = comprasnet.search_auctions_by_date(datetime.strptime(sys.argv[1], '%d/%m/%Y')) +print(results) + + + +comprasnet_api = ComprasNetApi() +print(comprasnet_api.get_licitacoes_uasgs()) \ No newline at end of file diff --git a/requirements-test.txt b/requirements-test.txt new file mode 100644 index 0000000..a524971 --- /dev/null +++ b/requirements-test.txt @@ -0,0 +1,3 @@ +pytest==3.5.1 +pytest-cov==2.5.1 + diff --git a/requirements.txt b/requirements.txt index e29042b..5e3a013 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ beautifulsoup4==4.6.0 +python-slugify==1.2.5 requests==2.18.4 diff --git a/tests/test_class_comprasnetapi.py b/tests/test_class_comprasnetapi.py new file mode 100644 index 0000000..dd34007 --- /dev/null +++ b/tests/test_class_comprasnetapi.py @@ -0,0 +1,63 @@ +from comprasnet.api import ComprasNetApi +from unittest import mock +from collections import namedtuple + +MockResponse = namedtuple('Response', ['status_code', 'json', 'text']) + + +def test_class(): + comprasnet_api = ComprasNetApi() + assert hasattr(comprasnet_api, 'last_response') + assert comprasnet_api.BASE_SEARCH_URL == "http://compras.dados.gov.br/{modulo}/{version}/{" \ + "metodo}.{formato}" + assert comprasnet_api.BASE_DETAIL_URL == "http://compras.dados.gov.br/{modulo}/{version}/{" \ + "metodo}/{item}.{" \ + "formato}" + + +@mock.patch('comprasnet.api.requests.get') +def test_method_raw_request(get): + fake_response = MockResponse(status_code=200, json={}, text='') + get.return_value = fake_response + + comprasnet_api = ComprasNetApi() + response = comprasnet_api._raw_request('https://google.com.br', foo=1, bar=2) + assert get.called_with('https://google.com.br', foo=1, bar=2) + assert response is fake_response + assert comprasnet_api.last_response is fake_response + + +@mock.patch('comprasnet.api.ComprasNetApi._raw_request') +def test_method_request_search(_raw_request): + comprasnet_api = ComprasNetApi() + comprasnet_api._request_search('modulo', 'metodo', foo=1, bar=2) + + url = comprasnet_api.BASE_SEARCH_URL.format( + modulo='modulo', metodo='metodo', version='v1', formato='json') + assert _raw_request.called_with(url, foo=1, bar=2) + + +@mock.patch('comprasnet.api.ComprasNetApi._raw_request') +def test_method__request_detail(_raw_request): + comprasnet_api = ComprasNetApi() + comprasnet_api._request_detail('modulo', 'metodo', 'item', foo=1, bar=2) + + url = comprasnet_api.BASE_DETAIL_URL.format( + modulo='modulo', metodo='metodo', item='item', version='v1', formato='json') + assert _raw_request.called_with(url, foo=1, bar=2) + + +@mock.patch('comprasnet.api.ComprasNetApi._request_detail') +def test_method_get_licitacoes_uasg(_request_detail): + comprasnet_api = ComprasNetApi() + comprasnet_api.get_licitacoes_uasg('123456', foo=1) + + assert _request_detail.called_with('licitacoes', 'uasg', '123456', foo=1) + +@mock.patch('comprasnet.api.ComprasNetApi._request_search') +def test_method_get_licitacoes_uasg(_request_search): + comprasnet_api = ComprasNetApi() + comprasnet_api.get_licitacoes_uasgs(foo=1) + + assert _request_search.called_with('licitacoes', 'uasgs', foo=1) + From 07f3a82145c9ee38d65b569e662b5790c5c1dfa1 Mon Sep 17 00:00:00 2001 From: Moacir Moda Date: Thu, 17 May 2018 10:56:57 -0300 Subject: [PATCH 06/10] reorganizing structure of tests to isolate unit tests from integration tests --- Makefile | 5 ++++- tests/integration/__init__.py | 0 tests/unit/__init__.py | 0 tests/{ => unit}/test_class_comprasnet.py | 4 ++-- tests/{ => unit}/test_class_comprasnetapi.py | 0 5 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 tests/integration/__init__.py create mode 100644 tests/unit/__init__.py rename tests/{ => unit}/test_class_comprasnet.py (98%) rename tests/{ => unit}/test_class_comprasnetapi.py (100%) diff --git a/Makefile b/Makefile index 245bb0a..2041302 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,6 @@ test: - pytest -s -vv --cov=comprasnet --cov-report term-missing + pytest tests/unit -s -vv --cov=comprasnet --cov-report term-missing + +integration_test: + pytest tests/integration -s -vv --cov=comprasnet --cov-report term-missing diff --git a/tests/integration/__init__.py b/tests/integration/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/unit/__init__.py b/tests/unit/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_class_comprasnet.py b/tests/unit/test_class_comprasnet.py similarity index 98% rename from tests/test_class_comprasnet.py rename to tests/unit/test_class_comprasnet.py index 7dee449..baf2068 100644 --- a/tests/test_class_comprasnet.py +++ b/tests/unit/test_class_comprasnet.py @@ -41,7 +41,7 @@ def test_should_search_auctions_by_date(get_search_result_page): @mock.patch('comprasnet.requests.get') def test_get_data_auctions_pages(get): filename = os.path.join(os.path.dirname(os.path.abspath(__file__)), - 'assets/result_page_sample.html') + '../assets/result_page_sample.html') with codecs.open(filename, 'r', 'iso-8859-1') as handle: page_result_content = handle.read() @@ -137,7 +137,7 @@ def test_get_data_auctions_pages(get): @mock.patch('comprasnet.requests.get') def test_should_search_auctions_by_date(get): filename = os.path.join(os.path.dirname(os.path.abspath(__file__)), - 'assets/result_page_sample.html') + '../assets/result_page_sample.html') with codecs.open(filename, 'r', 'iso-8859-1') as handle: page_result_content = handle.read() diff --git a/tests/test_class_comprasnetapi.py b/tests/unit/test_class_comprasnetapi.py similarity index 100% rename from tests/test_class_comprasnetapi.py rename to tests/unit/test_class_comprasnetapi.py From 12d47d7b805645c8e61d38a032c42ec9fbae280a Mon Sep 17 00:00:00 2001 From: Moacir Moda Date: Thu, 17 May 2018 11:03:30 -0300 Subject: [PATCH 07/10] Updating README.md --- README.md | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index af11551..27e4c46 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,29 @@ How to install How to test =========== -1. Run `pip install -r requirements-test.txt` -1. Install `pytest` -1. Run `make test` +To run all tests you need to install test requirements before: -Example -======= +```bash +pip install -r requirements-test.txt +``` -1. See `python contrib/example.py` +Unit tests +---------- + +```bash +make test +``` + +Integration tests +----------------- + +```bash +make integration_test +``` + +Examples to how to use +====================== + +See `python contrib/example.py` From c1bf09a43d485124bf4bc06afbcc9cd3c5c478ca Mon Sep 17 00:00:00 2001 From: Moacir Moda Date: Thu, 17 May 2018 12:12:47 -0300 Subject: [PATCH 08/10] encapsuling possibly errors on text exctration to avoid breaks total process --- comprasnet/__init__.py | 216 +++++++++++++++++++++++++---------------- 1 file changed, 130 insertions(+), 86 deletions(-) diff --git a/comprasnet/__init__.py b/comprasnet/__init__.py index 6a49ab1..fcafa3a 100644 --- a/comprasnet/__init__.py +++ b/comprasnet/__init__.py @@ -1,5 +1,6 @@ import logging.config from datetime import date, datetime +import re import requests from bs4 import BeautifulSoup @@ -52,7 +53,6 @@ def get_data_auctions_pages(self, data): page_results = [] response = requests.get(self.SEARCH_BIDS_URL, data) - print(str(response.status_code)) if not response.status_code == requests.codes.ok: log.error('error trying to get auctions from {}, page {}. Status code: {}'.format( data['dt_publ_ini'], data['numpag'], response.status_code @@ -80,106 +80,151 @@ def get_data_auctions_pages(self, data): for line in str(td).split("
"): if 'digo da UASG' in line: - current_result['cabecalho'] = header - codigo_da_uasg_chave = line.split(":")[0] - codigo_da_uasg_chave = slugify(codigo_da_uasg_chave) - codigo_da_uasg_valor = line.split("digo da UASG: ")[-1].strip() - current_result[codigo_da_uasg_chave] = codigo_da_uasg_valor + + try: + current_result['cabecalho'] = header + codigo_da_uasg_chave = line.split(":")[0] + codigo_da_uasg_chave = slugify(codigo_da_uasg_chave) + codigo_da_uasg_valor = line.split("digo da UASG: ")[-1].strip() + current_result[codigo_da_uasg_chave] = codigo_da_uasg_valor + except IndexError as e: + log.error('error when trying to extract "código da UASG":') + log.exception(e) + pass if 'Pregão Eletrônico Nº' in line: - pregao_eletronico_chave = line.split('Nº')[0].split('')[-1] - pregao_eletronico_chave = slugify(pregao_eletronico_chave) - pregao_eletronico_valor = line.split("Pregão Eletrônico Nº ")[-1].strip() - pregao_eletronico_valor = pregao_eletronico_valor.replace('/', '') - pregao_eletronico_valor = pregao_eletronico_valor.replace('', '') - pregao_eletronico_valor = pregao_eletronico_valor.replace('', '') - current_result[pregao_eletronico_chave] = pregao_eletronico_valor + try: + pregao_eletronico_chave = line.split('Nº')[0].split('')[-1] + pregao_eletronico_chave = slugify(pregao_eletronico_chave) + pregao_eletronico_valor = line.split("Pregão Eletrônico Nº ")[-1].strip() + pregao_eletronico_valor = pregao_eletronico_valor.replace('/', '') + pregao_eletronico_valor = pregao_eletronico_valor.replace('', '') + pregao_eletronico_valor = pregao_eletronico_valor.replace('', '') + current_result[pregao_eletronico_chave] = pregao_eletronico_valor + except IndexError as e: + log.error('error when trying to extract "Pregão Eletrônico No":') + log.exception(e) + pass if 'Objeto:' in line: - objeto_chave = line.split()[1].split(':')[0].lower() - objeto_valor = line.split('Objeto:')[-1].strip() - current_result[objeto_chave] = objeto_valor + try: + objeto_chave = line.split()[1].split(':')[0].lower() + objeto_valor = line.split('Objeto:')[-1].strip() + current_result[objeto_chave] = objeto_valor + except IndexError as e: + log.error('error when trying to extract "Objeto":') + log.exception(e) + pass if 'Edital a partir de' in line: - edital_a_partir_de = line.split(':')[1].strip() - edital_a_partir_de = edital_a_partir_de.split('')[1] - edital_a_partir_de = normalize('NFKD', edital_a_partir_de) - edital_a_partir_de = edital_a_partir_de.split('das')[0] - edital_a_partir_de = edital_a_partir_de.replace(' ', '') - edital_a_partir_de_data = datetime.strptime(edital_a_partir_de, - '%d/%m/%Y').date() - current_result['edital-a-partir-de-str'] = edital_a_partir_de - current_result['edital-a-partir-de'] = edital_a_partir_de_data + + try: + edital_a_partir_de = line.split(':')[1].strip() + edital_a_partir_de = edital_a_partir_de.split('')[1] + edital_a_partir_de = normalize('NFKD', edital_a_partir_de) + edital_a_partir_de = edital_a_partir_de.split('das')[0] + edital_a_partir_de = edital_a_partir_de.replace(' ', '') + edital_a_partir_de_data = datetime.strptime(edital_a_partir_de, + '%d/%m/%Y').date() + current_result['edital-a-partir-de-str'] = edital_a_partir_de + current_result['edital-a-partir-de'] = edital_a_partir_de_data + except IndexError as e: + log.error('error when trying to extract "Edital a partir de":') + log.exception(e) + pass if 'Endereço' in line: - endereco_chave = line.split()[0].strip('') - endereco_chave = endereco_chave.split(':')[1] - endereco_valor = normalize('NFKD', endereco_valor) - current_result[endereco_chave] = endereco_valor - print(current_result) + try: + endereco_chave = line.split()[0].strip('') + endereco_chave = endereco_chave.split(':')[1] + endereco_valor = normalize('NFKD', endereco_valor) + current_result[endereco_chave] = endereco_valor + except IndexError as e: + log.error('error when trying to extract "Endereço":') + log.exception(e) + pass if 'Telefone' in line: - telefone_chave = line.split(':')[0] - telefone_chave = telefone_chave.split('')[1] - telefone_chave = slugify(telefone_chave) - telefone_valor = line.split(':')[1] - - if telefone_valor: - telefone_valor = telefone_valor.split('')[1] - telefone_valor = normalize('NFKD', telefone_valor) - telefone_valor = telefone_valor.strip(' ') - telefone_valor = telefone_valor.replace('0xx', '') - else: - telefone_valor = None - - current_result[telefone_chave] = telefone_valor + try: + telefone_chave = line.split(':')[0] + telefone_chave = telefone_chave.split('')[1] + telefone_chave = slugify(telefone_chave) + telefone_valor = line.split(':')[1] + + if telefone_valor: + telefone_valor = telefone_valor.split('')[1] + telefone_valor = normalize('NFKD', telefone_valor) + telefone_valor = telefone_valor.strip(' ') + telefone_valor = telefone_valor.replace('0xx', '') + else: + telefone_valor = None + + current_result[telefone_chave] = telefone_valor + except IndexError as e: + log.error('error when trying to extract "Telefone":') + log.exception(e) + pass if 'Fax' in line: - fax_chave = line.split(':')[0] - fax_chave = fax_chave.split('')[1] - fax_chave = slugify(fax_chave) - fax_valor = line.split(':')[1] - - if fax_valor: - fax_valor = fax_valor.split('')[1] - fax_valor = fax_valor.replace(' ', '') - fax_valor = normalize('NFKD', fax_valor) - fax_valor = fax_valor.replace(' ', '') - fax_valor = fax_valor.replace('0xx', '') - else: - fax_valor = None - - current_result[fax_chave] = fax_valor - print(current_result) + try: + fax_chave = line.split(':')[0] + fax_chave = fax_chave.split('')[1] + fax_chave = slugify(fax_chave) + fax_valor = line.split(':')[1] + + if fax_valor: + fax_valor = fax_valor.split('')[1] + fax_valor = fax_valor.replace(' ', '') + fax_valor = normalize('NFKD', fax_valor) + fax_valor = fax_valor.replace(' ', '') + fax_valor = fax_valor.replace('0xx', '') + else: + fax_valor = None + + current_result[fax_chave] = fax_valor + except IndexError as e: + log.error('error when trying to extract "Fax":') + log.exception(e) + pass if 'Entrega da Proposta' in line: - entrega_proposta_chave = line.split(':')[0] - entrega_proposta_chave = entrega_proposta_chave.split('')[1] - entrega_proposta_chave = slugify(entrega_proposta_chave) - entrega_proposta_chave_str = '{}{}'.format(entrega_proposta_chave, '-str') - - entrega_proposta_valor = line.split(':')[1] - entrega_proposta_valor = entrega_proposta_valor.split('')[1] - entrega_proposta_valor_str = entrega_proposta_valor.split()[3] - entrega_proposta_valor_date = datetime.strptime(entrega_proposta_valor_str, - '%d/%m/%Y').date() - current_result[entrega_proposta_chave_str] = entrega_proposta_valor_str - current_result[entrega_proposta_chave] = entrega_proposta_valor_date + try: + entrega_proposta_chave = line.split(':')[0] + entrega_proposta_chave = entrega_proposta_chave.split('')[1] + entrega_proposta_chave = slugify(entrega_proposta_chave) + entrega_proposta_chave_str = '{}{}'.format(entrega_proposta_chave, '-str') + + entrega_proposta_valor = line.split(':')[1] + entrega_proposta_valor = entrega_proposta_valor.split('')[1] + entrega_proposta_valor_str = entrega_proposta_valor.split()[3] + entrega_proposta_valor_date = datetime.strptime(entrega_proposta_valor_str, + '%d/%m/%Y').date() + current_result[entrega_proposta_chave_str] = entrega_proposta_valor_str + current_result[entrega_proposta_chave] = entrega_proposta_valor_date + except IndexError as e: + log.error('error when trying to extract "Entrega da proposta":') + log.exception(e) + pass if 'Abertura da Proposta' in line: - abertura_proposta_chave = line.split(':')[0] - abertura_proposta_chave = abertura_proposta_chave.split('')[1] - abertura_proposta_chave = slugify(abertura_proposta_chave) - abertura_proposta_chave_str = '{}{}'.format(abertura_proposta_chave, '-str') - abertura_proposta_valor = line.split(':')[1] - abertura_proposta_str = abertura_proposta_valor.split()[2] - abertura_proposta_data = datetime.strptime(abertura_proposta_str, - '%d/%m/%Y').date() - current_result[abertura_proposta_chave_str] = abertura_proposta_str - current_result[abertura_proposta_chave] = abertura_proposta_data + try: + abertura_proposta_chave = line.split(':')[0] + abertura_proposta_chave = abertura_proposta_chave.split('')[1] + abertura_proposta_chave = slugify(abertura_proposta_chave) + abertura_proposta_chave_str = '{}{}'.format(abertura_proposta_chave, '-str') + abertura_proposta_valor = line.split(':')[1] + abertura_proposta_str = abertura_proposta_valor.split()[2] + abertura_proposta_data = datetime.strptime(abertura_proposta_str, + '%d/%m/%Y').date() + current_result[abertura_proposta_chave_str] = abertura_proposta_str + current_result[abertura_proposta_chave] = abertura_proposta_data + except IndexError as e: + log.error('error when trying to extract "Abertura da proposta":') + log.exception(e) + pass page_results.append(current_result) @@ -221,7 +266,6 @@ def get_search_result_page(self, data): page_results = [] response = requests.get(self.SEARCH_BIDS_URL, data) - print(str(response.status_code)) if not response.status_code == requests.codes.ok: log.error('error trying to get auctions from {}, page {}. Status code: {}'.format( data['dt_publ_ini'], data['numpag'], response.status_code From 7b128c7c4314e59aeb1afa792df4bd7aac0632e6 Mon Sep 17 00:00:00 2001 From: Moacir Moda Date: Thu, 17 May 2018 12:13:10 -0300 Subject: [PATCH 09/10] adding new integration test --- .../result_test_search_auctions_by_date.json | 8633 +++++++++++++++++ tests/integration/test_class_comprasnet.py | 17 + 2 files changed, 8650 insertions(+) create mode 100644 tests/assets/result_test_search_auctions_by_date.json create mode 100644 tests/integration/test_class_comprasnet.py diff --git a/tests/assets/result_test_search_auctions_by_date.json b/tests/assets/result_test_search_auctions_by_date.json new file mode 100644 index 0000000..8fde1ef --- /dev/null +++ b/tests/assets/result_test_search_auctions_by_date.json @@ -0,0 +1,8633 @@ +[ + { + "cidade": "Pirassununga", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "160478", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa prestadora de Servi\u00e7o M\u00f3vel Pessoal (SMP), \u00e1rea (019).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av Newton Prado, 2251 - Centro - Pirassununga - Sao Paulo - - Pirassununga (SP)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "160055", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de servi\u00e7o de Leiloeiro Oficial para venda de bens m\u00f3veis inserv\u00edveis pertencentes ao Ex\u00e9rcito Brasileiro, em proveito do 16\u00ba Batalh\u00e3o Log\u00edstico, conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas no Edital de convoca\u00e7\u00e3o e anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Duque de Caxias S/no, Setor Militar Urbano - - BRASI\u0301LIA (DF)", + "telefone": "(61) 34157427", + "fax": "(61)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Leopoldo", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "160432", + "pregao-eletronico": "72018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O objeto da presente licita\u00e7\u00e3o \u00e9 o registro de pre\u00e7os para A EVENTUAL AQUISI\u00c7\u00c3O DE PE\u00c7AS PARA TORRE DAS VIATURAS BLINDADAS OPERACIONAIS M109 em proveito do 16\u00ba GAC AP, conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av Theodomiro Porto da Fonseca, S/n - Bairro Cristo Rei - Cristo Rei - Sa\u0303o Leopoldo (RS)", + "telefone": "(54) 35893988", + "fax": "(54)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Ipameri", + "uf": "GO", + "cabecalho": [], + "codigo-da-uasg": "160101", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para eventual contrata\u00e7\u00e3o de servi\u00e7os de recupera\u00e7\u00e3o de viatura e equipamento hidr\u00e1ulico acoplado em seu chassi, com a finalidade de atender \u00e0s necessidades da 23\u00aa Companhia de Engenharia de Combate", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Pandia\u0301 Calo\u0301geras, Nr.49 Centro, Ipameri-go - - Ipameri (GO)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "160274", + "pregao-eletronico": "22018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de suprimentos para manuten\u00e7\u00e3o de viaturas operacionais para atender demandas do plano de manuten\u00e7\u00e3o desta Unidade e GUEs - 9\u00aa Bda Inf Mtz", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Salustiano Silva 395 - Magalhaes Bastos - - Rio de Janeiro (RJ)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Iju\u00ed", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "160375", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Uniformes Hist\u00f3ricos para o 27\u00a8 GAC", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Marechal Mallet, S/n - Ijui\u0301 - Rs - Bairro Penha - Ijui\u0301 (RS)", + "telefone": "(55) 33327520", + "fax": "(55)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Petr\u00f3polis", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "160247", + "pregao-eletronico": "142017", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de material el\u00e9trico e eletr\u00f4nico e de prote\u00e7\u00e3o e seguran\u00e7a para atender as necessidades do 32\u00ba BIL.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Duque de Caxias S/n Presidencia - - Petro\u0301polis (RJ)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Coxim", + "uf": "MS", + "cabecalho": [], + "codigo-da-uasg": "160147", + "pregao-eletronico": "12018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O objeto da presente licita\u00e7\u00e3o \u00e9 o registro de pre\u00e7os para a eventual aquisi\u00e7\u00e3o de material permanente de comunica\u00e7\u00e3o, inform\u00e1tica e comum, para atender as necessidades do 47\u00ba BI, conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas em Edital e seus anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Br 163 Km 729 - Vila Sao Paulo - - Coxim (MS)", + "telefone": "(67) 32911876", + "fax": "(67)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "29/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 29 + } + }, + { + "cidade": "Castro", + "uf": "PR", + "cabecalho": [], + "codigo-da-uasg": "160216", + "pregao-eletronico": "42018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de materiais para manuten\u00e7\u00e3o de bens im\u00f3veis, el\u00e9trico, eletr\u00f4nico e ferramentas para atender as necessidades de manuten\u00e7\u00e3o das instala\u00e7\u00f5es do 5\u00ba Esqd C Mec.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Praca Duque de Caxias S/n - Centro - Centro - Castro (PR)", + "telefone": "(42) 32325949", + "fax": "(42)32325949", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Cuiab\u00e1", + "uf": "MT", + "cabecalho": [], + "codigo-da-uasg": "160157", + "pregao-eletronico": "52018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Eventual aquisi\u00e7\u00e3o de pneus, c\u00e2maras de ar, protetor de c\u00e2mara de ar, v\u00e1lvulas e borrachas de vulcaniza\u00e7\u00e3o, visando atender \u00e0s necessidades das viaturas e equipamentos do 9\u00ba Batalh\u00e3o de Engenharia de Constru\u00e7\u00e3o e seus canteiros de trabalho, conforme descri\u00e7\u00f5es constantes nas Especifica\u00e7\u00f5es T\u00e9cnicas.", + "edital-a-partir-de-str": "15/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 15 + }, + "endereco": " Av. Fernando Correa da Costa, Nr. 2979 - Coxipo da Ponte - Boa Esperanc\u0327a - Cuiaba\u0301 (MT)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "15/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 15 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Resende", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "160249", + "pregao-eletronico": "22018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O objeto da presente licita\u00e7\u00e3o \u00e9 o Registro de Pre\u00e7os para eventual aquisi\u00e7\u00e3o de materiais para a premia\u00e7\u00e3o de competi\u00e7\u00f5es e eventos esportivos em proveito da Se\u00e7\u00e3o de Educa\u00e7\u00e3o F\u00edsica (SEF) da Academia Militar das Agulhas Negras (AMAN), conforme condi\u00e7\u00f5es, quantidades, exig\u00eancias e estimativas, estabelecidas no Edital e seus apensos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rodovia Presidente Dutra, Km 306 - 3o Andar - Resende/rj-01fev11 - - Resende (RJ)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Macei\u00f3", + "uf": "AL", + "cabecalho": [], + "codigo-da-uasg": "925998", + "pregao-eletronico": "141262018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O presente Termo de Refer\u00eancia tem como objeto a contrata\u00e7\u00e3o de empresa prestadora de servi\u00e7os para a execu\u00e7\u00e3o de atividades direcionadas \u00e0 recepcionista, apoio administrativo, motorista, moto-boy, maqueiro, pedreiro, auxiliar de pedreiro, eletricista, lavador de ve\u00edculos, agente de limpeza e copeiragem, nas depend\u00eancias da PER\u00cdCIA OFICIAL DO ESTADO DE ALAGOAS e seus Institutos, no regime de execu\u00e7\u00e3o indireta, menor pre\u00e7o por lote, conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas neste instrumento.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Manoel Nobre, No 281, Farol - - Maceio\u0301 (AL)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Macei\u00f3", + "uf": "AL", + "cabecalho": [], + "codigo-da-uasg": "925998", + "pregao-eletronico": "112132018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - A presente licita\u00e7\u00e3o tem por objeto a AQUISI\u00c7\u00c3O DE MATERIAIS ODONTOL\u00d3GICOS (2) PLS N\u00ba125/2017 EXCLUSIVO ME E EPP", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Manoel Nobre, No 281, Farol - - Maceio\u0301 (AL)", + "telefone": "(82) 99181712", + "fax": "(82)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "04/06/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 6, + "day": 4 + } + }, + { + "cidade": "Macei\u00f3", + "uf": "AL", + "cabecalho": [], + "codigo-da-uasg": "925998", + "pregao-eletronico": "102912018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de microsc\u00f3pios \u00f3pticos e contadores manuais de c\u00e9dulas, conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas neste Edital e seus anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Manoel Nobre, No 281, Farol - - Maceio\u0301 (AL)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "30/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 30 + } + }, + { + "cidade": "Macei\u00f3", + "uf": "AL", + "cabecalho": [], + "codigo-da-uasg": "925998", + "pregao-eletronico": "102892018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - A presente licita\u00e7\u00e3o objetiva o registro de pre\u00e7os para a AQUISI\u00c7\u00c3O DE EQUIPAMENTOS HOSPITALARES (04) PLS N\u00ba 004/2018", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Manoel Nobre, No 281, Farol - - Maceio\u0301 (AL)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "323031", + "pregao-eletronico": "142018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada na presta\u00e7\u00e3o de servi\u00e7os de telefonia fixa comutada (STFC), na modalidade longa dist\u00e2ncia (LDN), conforme edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av Rio Branco No 65 - 12o ao 22 Andar - Bairro Centro - - Rio de Janeiro (RJ)", + "telefone": "(21) 21127713", + "fax": "(21)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Manaus", + "uf": "AM", + "cabecalho": [], + "codigo-da-uasg": "926524", + "pregao-eletronico": "322018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de material el\u00e9trico.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Tito Bittencourt, No 142 - Sa\u0303o Francisco - Sa\u0303o Francisco - Manaus (AM)", + "telefone": "(92) 36328671", + "fax": "(92)36328675", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Manaus", + "uf": "AM", + "cabecalho": [], + "codigo-da-uasg": "926524", + "pregao-eletronico": "192018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de materiais el\u00e9tricos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Tito Bittencourt, No 142 - Sa\u0303o Francisco - Sa\u0303o Francisco - Manaus (AM)", + "telefone": "(92) 36328671", + "fax": "(92)36328673", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "160285", + "pregao-eletronico": "692016", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de material el\u00e9trico para o Arsenal de Guerra do Rio.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Monsenhor Manoel Gomes N. 563 - Caju - Rio de Janeiro (RJ)", + "telefone": "(21) 25803689", + "fax": "(21)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "160285", + "pregao-eletronico": "172018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de cadeiras de escrit\u00f3rio em courvim para o gabinete do Diretor do Arsenal de Guerra do Rio", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Monsenhor Manoel Gomes N. 563 - Caju - Rio de Janeiro (RJ)", + "telefone": "(21) 25803689", + "fax": "(21)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "160285", + "pregao-eletronico": "142018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de ro\u00e7adeira para o Arsenal de Guerra do Rio.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Monsenhor Manoel Gomes N. 563 - Caju - Rio de Janeiro (RJ)", + "telefone": "(21) 25803689", + "fax": "(21)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "160285", + "pregao-eletronico": "122018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de material de consumo para manuten\u00e7\u00e3o e produ\u00e7\u00e3o de equipamentos de vis\u00e3o noturna pela se\u00e7\u00e3o de optr\u00f4nica do Arsenal de Guerra do Rio.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Monsenhor Manoel Gomes N. 563 - Caju - Rio de Janeiro (RJ)", + "telefone": "(21) 25803689", + "fax": "(21)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "160285", + "pregao-eletronico": "22018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Pecas para a Manutencao do Mrt P 120 M2R para a Divis\u00e3o Industrial do Arsenal de Guerra do Rio.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Monsenhor Manoel Gomes N. 563 - Caju - - Rio de Janeiro (RJ)", + "telefone": "(21) 34839017", + "fax": "(21)25803689", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "179087", + "pregao-eletronico": "322018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de solu\u00e7\u00e3o de software de apre\u00e7amento de t\u00edtulos e valores mobili\u00e1rios e instrumentos financeiros derivativos, com direito de uso permanente da licen\u00e7a.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Sbs Ed.sede Qd.3, Bloco b 1.andar - Asa Sul - BRASI\u0301LIA (DF)", + "telefone": "(61) 34141990", + "fax": "(61)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Salvador", + "uf": "BA", + "cabecalho": [], + "codigo-da-uasg": "782801", + "pregao-eletronico": "132018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de servi\u00e7os de empresa especializada para presta\u00e7\u00e3o de Servi\u00e7o Telef\u00f4nico Fixo Comutado (STFC) para atender as necessidades da Complexo Naval de Aratu e \u00f3rg\u00e3os participantes.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Estrada da Base Naval, S/n - Sa\u0303o Tome\u0301 de Paripe - - Salvador (BA)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Bel\u00e9m", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "784800", + "pregao-eletronico": "122018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de v\u00e1lvula de fundo do arrefecimento aberto dos motores de combust\u00e3o principais (MCP) dos Navios Patrulha Bocaina, Bracu\u00ed e Navio Hidroceanogr\u00e1fico Garnier Sampaio.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rodovia Arthur Bernardes, S/n - Val-de-ca\u0303es - Bele\u0301m-pa - Val de Ca\u0303es - Bele\u0301m (PA)", + "telefone": "(91) 32164359", + "fax": "(91)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Bel\u00e9m", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "784800", + "pregao-eletronico": "112018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de chapas e barra quadrada de bronze buchas, especifica\u00e7\u00e3o ASTM B-148, liga UNS C 95700, aplic\u00e1veis \u00e0 manuten\u00e7\u00e3o sistema de propuls\u00e3o (reparo de h\u00e9lices) do Navio Patrulha Bocaina e Bracu\u00ed, visando atender \u00e0s necessidades da Base Naval de Val de C\u00e3es (BNVC).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rodovia Arthur Bernardes, S/n - Val-de-ca\u0303es - Bele\u0301m-pa - Val de Ca\u0303es - Bele\u0301m (PA)", + "telefone": "(91) 32164359", + "fax": "(91)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "731050", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de licen\u00e7a de software.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Prac\u0327a Maua\u0301, S/n, Ilha Das Cobras, Centro Rio de Janeiro/rj - - Rio de Janeiro (RJ)", + "telefone": "(21) 21265282", + "fax": "(21)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "10001", + "pregao-eletronico": "562018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Fornecimento de curativos especiais diversos, pelo per\u00edodo de 12 (doze) meses.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Camara Dos Deputados Edif. Anexo 1 - 14 Andar - Zona Ci\u0301vico-administrativa - BRASI\u0301LIA (DF)", + "telefone": "(61) 32164906", + "fax": "(61)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "926245", + "pregao-eletronico": "132018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de Empresa para presta\u00e7\u00e3o de Servi\u00e7os de Coleta, Transporte e Destina\u00e7\u00e3o Final de Res\u00edduos S\u00f3lidos gerados no \u00c2mbito da Ceasa/DF.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Setor de Industria e Abastecimento Sul Trecho 10 Lote No 05 - - BRASI\u0301LIA (DF)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "13/06/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 6, + "day": 13 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "926245", + "pregao-eletronico": "122018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de tendas piramidais de lonas personalizadas", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Setor de Industria e Abastecimento Sul Trecho 10 Lote No 05 - - BRASI\u0301LIA (DF)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "06/06/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 6, + "day": 6 + } + }, + { + "cidade": "Alegre", + "uf": "ES", + "cabecalho": [], + "codigo-da-uasg": "153050", + "pregao-eletronico": "62018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os, v\u00e1lido por 12 meses, tem como objeto a aquisi\u00e7\u00e3o de produtos agropecu\u00e1rios para atender as demandas das \u00c1reas Experimentais do Centro de Ci\u00eancias Agr\u00e1rias e Engenharias da Universidade Federal do Esp\u00edrito Santo.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Alto Universitario, S/n - Cx. Postal 16 - Guararema - Alegre (ES)", + "telefone": "(28) 35528963", + "fax": "(28)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Grande", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "785810", + "pregao-eletronico": "162018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para eventual contrata\u00e7\u00e3o de empresa para presta\u00e7\u00e3o de servi\u00e7os de translado de pacientes em UTI a\u00e9rea, inter-hospitalar, intermunicipal e interestadual para os usu\u00e1rios do Servi\u00e7o de Sa\u00fade da Marinha na \u00e1rea de jurisdi\u00e7\u00e3o do Comando do 5\u00ba Distrito Naval", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Almirante Maximiano da Fonseca,2000 - 4osec\u0327a\u0303o da Barra - Rio Grande (RS)", + "telefone": "(53) 32336286", + "fax": "(53)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Manaus", + "uf": "AM", + "cabecalho": [], + "codigo-da-uasg": "788820", + "pregao-eletronico": "122017", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Material M\u00e9dico Cir\u00fargico para atender \u00e0s demandas dos usu\u00e1rios da Marinha do Brasil e Popula\u00e7\u00e3o Ribeirinhas do Estado Amazonas atendidas pelos Navios Hospitalares, as Organiza\u00e7\u00f5es Apoiadas do Centro de Intend\u00eancia da Marinha em Manaus, subordinadas ao Comando do 9\u00ba Distrito Naval (Com9\u00baDN), pertencentes ao Comando da Flotilha do Amazonas (ComFlotAM ) e \u00e0 Policl\u00ednica Naval de Manaus (PNMa).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Rio Itaquai, Vila Buriti, S/n - - Manaus (AM)", + "telefone": "(92) 21234688", + "fax": "(92)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "30/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 30 + } + }, + { + "cidade": "Salvador", + "uf": "BA", + "cabecalho": [], + "codigo-da-uasg": "782802", + "pregao-eletronico": "52018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Preg\u00e3o Eletr\u00f4nico para Registro de Pre\u00e7os, visando aquisi\u00e7\u00e3o de material de limpeza, para atender \u00e0s necessidades das Organiza\u00e7\u00f5es Militares jurisdicionadas ao Comando do 2\u00ba Distrito Naval, bem como aos navios em tr\u00e2nsito na \u00e1rea, conforme Termo de Refer\u00eancia n\u00ba 01/2018/CEIMSA.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Estrada da Base Naval, S/n, Sao Tome de Paripe/salvador-ba - Sa\u0303o Tome\u0301 de Paripe - Salvador (BA)", + "telefone": "(71) 33073696", + "fax": "(71)33073691", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Niter\u00f3i", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "791904", + "pregao-eletronico": "12018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de servi\u00e7os de sondagens geot\u00e9cnicas na \u00e1rea das futuras instala\u00e7\u00f5es do Centro de Manuten\u00e7\u00e3o de Embarca\u00e7\u00f5es Mi\u00fadas (CMEM), conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas neste instrumento, e seus anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Ilha de Mocangue S/n - - Nitero\u0301i (RJ)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Igua\u00e7u", + "uf": "PR", + "cabecalho": [], + "codigo-da-uasg": "926136", + "pregao-eletronico": "62018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Servi\u00e7os de limpeza com corte de vegeta\u00e7\u00e3o na faixa de servid\u00e3o, em trechos n\u00e3o cont\u00ednuos, e dos acessos \u00e0s torres das Linhas de Transmiss\u00e3o 600kV CC Foz do Igua\u00e7u-Ibi\u00fana 1, 2, 3 e 4; LTs 750kV CA Foz do Igua\u00e7u-Ivaipor\u00e3 1, 2 e 3 e LTs 750kV CA Itaber\u00e1-Ivaipor\u00e3 1, 2 e 3, sob responsabilidade da Divis\u00e3o de Opera\u00e7\u00e3o Ivaipor\u00e3 - DOIV.O, subordinada a Ger\u00eancia de Produ\u00e7\u00e3o Paran\u00e1 GRP.O.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida Tarquinio Joslin Dos Santos, 3555 - Cidade Nova - Foz do Iguac\u0327u (PR)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Recife", + "uf": "PE", + "cabecalho": [], + "codigo-da-uasg": "240137", + "pregao-eletronico": "22018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os com vistas \u00e0 aquisi\u00e7\u00e3o de materiais de limpeza, conforme as especifica\u00e7\u00f5es constantes no Termo de Refer\u00eancia Anexo I do edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Prof. Luis Freire, 1 - Cidade Universitaria - Cidade Universita\u0301ria - Recife (PE)", + "telefone": "(81) 33347241", + "fax": "(81)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Gon\u00e7alo", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "744030", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os para aquisi\u00e7\u00e3o de baterias tracionarias para operacionaliza\u00e7\u00e3o de plataforma a\u00e9rea, conforme condi\u00e7\u00f5es, quantidades, exig\u00eancias e estimativas estabelecidas no Termo de Refer\u00eancia.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Paiva S/n - Ilha do Engenho - Porto Velho - Sa\u0303o Gonc\u0327alo (RJ)", + "telefone": "(21) 37079035", + "fax": "(21)37079043", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Paulo", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "742000", + "pregao-eletronico": "542018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de pe\u00e7as sobressalentes para motor diesel marca Scania, modelo DS14, 8 cilindros em V, tipo 44-A-21T, n\u00ba s\u00e9rie 3106314.1.3. Os bens objeto da aquisi\u00e7\u00e3o est\u00e3o dentro da padroniza\u00e7\u00e3o seguida pelo \u00f3rg\u00e3o, conforme especifica\u00e7\u00f5es t\u00e9cnicas e requisitos de desempenho constantes do Cat\u00e1logo Unificado de Materiais - CATMAT do SIASG. Em caso de diverg\u00eancia entre as descri\u00e7\u00f5es e especifica\u00e7\u00f5es constantes do CATMAT e do presente Termo de Refer\u00eancia, prevalecem estas \u00faltimas", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Professor Lineu Prestes, 2468 - - Sa\u0303o Paulo (SP)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "19/07/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 7, + "day": 19 + } + }, + { + "cidade": "Claros", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "195005", + "objeto": "Execu\u00e7\u00e3o das obras de pavimenta\u00e7\u00e3o asf\u00e1ltica em pr\u00e9-misturado a frio com emuls\u00e3o asf\u00e1ltica (PMF) nas comunidades de Morrinhos e Camilo Prates, numa \u00e1rea total de 4.987,50m2, localizadas no munic\u00edpio de Bocai\u00fava, estado de Minas Gerais, na \u00e1rea de atua\u00e7\u00e3o da 1\u00aa Superintend\u00eancia Regional da Codevasf.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av.geraldo Athayde, N.o 483, Alto Sa\u0303o Joa\u0303o - - Montes Claros (MG)", + "telefone": "(38) 21047823", + "fax": "(38)21047824" + }, + { + "cidade": "Recife", + "uf": "PE", + "cabecalho": [], + "codigo-da-uasg": "910813", + "pregao-eletronico": "902018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Reparo e calibracao em instrumentos de ensaio megger", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Delmiro Gouveia, 333 Bongi - Recife - - Recife (PE)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Recife", + "uf": "PE", + "cabecalho": [], + "codigo-da-uasg": "910813", + "pregao-eletronico": "892018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Conectores para el mondubim se fortaleza 69 kv", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Delmiro Gouveia, 333 Bongi - Recife - - Recife (PE)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Maria", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "160413", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa(s) especializada(s) na presta\u00e7\u00e3o de Servi\u00e7o Telef\u00f4nico Fixo Comutado (fixo-fixo e fixo-m\u00f3vel), a ser executado de forma cont\u00ednua, para atender as organiza\u00e7\u00f5es militares situadas nas cidades de Santa Maria-RS.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Dr Bozano n 15 - Bonfim - - Santa Maria (RS)", + "telefone": "(55) 32126097", + "fax": "(55)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Florian\u00f3polis", + "uf": "SC", + "cabecalho": [], + "codigo-da-uasg": "160444", + "pregao-eletronico": "62018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de servi\u00e7os para Adequa\u00e7\u00e3o do Corpo da Guarda do Comando da 14\u00aa Brigada de Infantaria Motorizada de acordo com o descrito no Edital e seus anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Bocaiuva N. 1858 - Centro - Centro - Floriano\u0301polis (SC)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "160296", + "pregao-eletronico": "212018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Cess\u00e3o de uso de atividade de apoio de Posto Banc\u00e1rio.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Gen. Benedito da Silveira, S/n - Vila Militar - Deodoro-vila Militar - Rio de Janeiro (RJ)", + "telefone": "(21) 24571039", + "fax": "(21)24571258", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "160298", + "pregao-eletronico": "22018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de material de consumo (limpeza)", + "edital-a-partir-de-str": "14/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 14 + }, + "endereco": " Praca Duque de Caxias, 25 - Centro - - Rio de Janeiro (RJ)", + "telefone": "(21) 25195609", + "fax": "(21)", + "entrega-da-proposta-str": "14/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 14 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "160065", + "pregao-eletronico": "62018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada na presta\u00e7\u00e3o exclusiva de servi\u00e7os continuados de gerenciamento de res\u00edduos s\u00f3lidos urbanos n\u00e3o perigosos, abrangendo as etapas de coleta, transporte, transbordo, tratamento e destina\u00e7\u00e3o ou disposi\u00e7\u00e3o final ambientalmente adequada, gerados nas depend\u00eancias das Organiza\u00e7\u00f5es Militares sediadas no complexo do Comando Militar do Planalto/11\u00aa Regi\u00e3o Militar (QG CMP/11\u00aa RM, B Adm/Ap CMP e PMB).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida do Exe\u0301rcito S/n - Setor Militar Urbano (smu) - - BRASI\u0301LIA (DF)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Guajar\u00e1-Mirim", + "uf": "RO", + "cabecalho": [], + "codigo-da-uasg": "160346", + "pregao-eletronico": "82018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para eventual aquisi\u00e7\u00e3o de material de consumo e permanente, a fim de atender \u00e0 demanda do Setor de Material (Almoxarifado) do Comando de Fronteira Rond\u00f4nia/6\u00ba Batalh\u00e3o de Infantaria de Selva. Preg\u00e3o SRP 08/2018.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Leopoldo de Matos, 2329 - Comando de Fronteira Rondonia/6obis - Tamandare - Guajara\u0301-Mirim (RO)", + "telefone": "(69) 3541", + "fax": "(69)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Guajar\u00e1-Mirim", + "uf": "RO", + "cabecalho": [], + "codigo-da-uasg": "160346", + "pregao-eletronico": "62018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os para eventual aquisi\u00e7\u00e3o de combust\u00edveis, \u00f3leo diesel e gasolina, conforme as condi\u00e7\u00f5es estabelecidas no edital e seus anexos. Preg\u00e3o 06/2018.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Leopoldo de Matos, 2329 - Bairro Tamandare - Guajara Mirim - - Guajara\u0301-Mirim (RO)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "781000", + "pregao-eletronico": "112018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O objeto da presente licita\u00e7\u00e3o \u00e9 a escolha da proposta mais vantajosa para a contrata\u00e7\u00e3o de servi\u00e7o de coleta, transporte e destina\u00e7\u00e3o final de res\u00edduos s\u00f3lidos gerados pelo Hotel de Tr\u00e2nsito da Marinha no Rio de Janeiro (HTM-RJ).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Praca Maua, 65 Centro - Centro - Rio de Janeiro (RJ)", + "telefone": "(21) 21046156", + "fax": "(21)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Manaus", + "uf": "AM", + "cabecalho": [], + "codigo-da-uasg": "925788", + "pregao-eletronico": "1172018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de servi\u00e7os especializados e continuados de lavagem, limpeza e desinfec\u00e7\u00e3o dos ve\u00edculos do Servi\u00e7o de Atendimento M\u00f3vel de Urg\u00eancia (SAMU) da SEMSA.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Constantino Nery, 4080 - Chapada - Manaus (AM)", + "telefone": "(92) 36422178", + "fax": "(92)36422178", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Paulo", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "113202", + "objeto": "Aquisi\u00e7\u00e3o de kits reagentes grau qu\u00edmico.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Travessa R, 400 - Bloco D2 P1 Te\u0301rreo - Cidade Universita\u0301ria - Butanta\u0303 - Sa\u0303o Paulo (SP)", + "telefone": "(11) 31339105", + "fax": "(11)" + }, + { + "cidade": "Joinville", + "uf": "SC", + "cabecalho": [], + "codigo-da-uasg": "926377", + "pregao-eletronico": "462018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de rel\u00e9s eletr\u00f4nicos de prote\u00e7\u00e3o para motores.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Xv de Novembro, 3950 - Glo\u0301ria - Joinville (SC)", + "telefone": "(47) 21051648", + "fax": "(47)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Joinville", + "uf": "SC", + "cabecalho": [], + "codigo-da-uasg": "926377", + "pregao-eletronico": "252018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para aquisi\u00e7\u00e3o de motobombas helicoidais e medidores de vaz\u00e3o.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Xv de Novembro, 3950 - Glo\u0301ria - Joinville (SC)", + "telefone": "(47) 21051648", + "fax": "(47)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "974200", + "pregao-eletronico": "722018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para fornecimento, remanejamento, montagem e desmontagem de paredes divis\u00f3rias e arm\u00e1rios, remanejamento de mobili\u00e1rios, fornecimento e coloca\u00e7\u00e3o de piso elevado, substitui\u00e7\u00e3o de vidros e portas, para manuten\u00e7\u00e3o por demanda para as unidades da CAESB, na forma de execu\u00e7\u00e3o indireta, sob regime de empreitada por pre\u00e7o unit\u00e1rio", + "edital-a-partir-de-str": "15/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 15 + }, + "endereco": " Sibipiruna - Aguas Claras - BRASI\u0301LIA (DF)", + "telefone": "(61) 32137130", + "fax": "(61)", + "entrega-da-proposta-str": "15/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 15 + }, + "abertura-da-proposta-str": "30/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 30 + } + }, + { + "cidade": "Fora", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "925894", + "pregao-eletronico": "532018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Implanta\u00e7\u00e3o do Sistema de Registro de Pre\u00e7os, pelo prazo de 12 meses, para eventual aquisi\u00e7\u00e3o de cimento para uso da CESAMA", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Rio Branco, 1843 - 8o ao 11o Andares - Centro - Centro - Juiz de Fora (MG)", + "telefone": "(32) 36929201", + "fax": "(32)9202", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Vit\u00f3ria", + "uf": "ES", + "cabecalho": [], + "codigo-da-uasg": "135458", + "pregao-eletronico": "52018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de material de consumo (expediente, alimenta\u00e7\u00e3o, descart\u00e1veis, limpeza e processamento de dados), visando abastecimento do almoxarifado da Sede da CONAB, no Esp\u00edrito Santo.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Princesa Isabel, 629 Ed. Vitoria Center Sala 702- Centro - - Vito\u0301ria (ES)", + "telefone": "(27) 30414020", + "fax": "(27)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "926442", + "pregao-eletronico": "42018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de licen\u00e7as do pacote adobe Creative Cloud, AutoCad e Windows CAL", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida Repu\u0301blica do Chile 230, 23o Andar - Centro - Rio de Janeiro (RJ)", + "telefone": "(21) 39163911", + "fax": "(21)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "389320", + "pregao-eletronico": "122018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O presente edital tem por objeto a contrata\u00e7\u00e3o de profissional ou empresa da \u00e1rea de engenharia/arquitetura, que tenha atribui\u00e7\u00f5es na \u00e1rea de Avalia\u00e7\u00e3o de Im\u00f3veis Urbanos, segundo a NBR 14.653 da ABNT, para prestar servi\u00e7o de per\u00edcia e elabora\u00e7\u00e3o de Laudo de Avalia\u00e7\u00e3o com objetivo de estabelecer o valor de mercado dos im\u00f3veis do Conselho Federal de Enfermagem - Cofen situados em SCLN 304, Bloco E, Lote 9, CEP: 70.736-550, Bras\u00edlia-DF e no Edif\u00edcio Apiac\u00e1s, na Rua da Gl\u00f3ria, no. 190 CEP: 20.241-180, Rio de Janeiro-RJ. 1.2. Em caso de discord\u00e2ncia entre as especifica\u00e7\u00f5es deste objeto descritas no Comprasnet e as especifica\u00e7\u00f5es constantes deste Edital, prevalecer\u00e3o as \u00faltimas.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Slcn 304, Bloco e Lote 9 Asa Norte/brasilia - Asa Norte - BRASI\u0301LIA (DF)", + "telefone": "(61) 33295831", + "fax": "(61)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "29/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 29 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "925158", + "pregao-eletronico": "122018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - A presente licita\u00e7\u00e3o tem por objeto a contrata\u00e7\u00e3o de empresa especializada para PRESTA\u00c7\u00c3O DE SERVI\u00c7OS DE GERENCIAMENTO, ASSIST\u00caNCIA T\u00c9CNICA, MANUTEN\u00c7\u00c3O CORRETIVA E PREVENTIVA COM REPOSI\u00c7\u00c3O DE PE\u00c7AS E COMPONENTES DO SISTEMA TELEF\u00d4NICO PABX BUSINESSPHONE 250 ERICSSON, equipado com 72 Ramais Anal\u00f3gicos (4 placas ELUA 16 posi\u00e7\u00f5es cada e 1 placa ELUA de 8 posi\u00e7\u00f5es) 40 Ramais Digitais (2 placa ELUD de 16 posi\u00e7\u00f5es e 1 placa ELUD DE 8 posi\u00e7\u00f5es) 8 Troncos Anal\u00f3gicos (1 placa BTUA de 8 posi\u00e7\u00f5es) 60 Troncos Digitais (2 placas BTUD de 30 posi\u00e7\u00f5es cada) Atendimento autom\u00e1tico (16 Canais), software de Tarifa\u00e7\u00e3o Infomatec INFO360, Conjunto de Baterias 4(quatro) unidades, mesa de telefonista, equipamentos de for\u00e7a (bateria/retificador/carregador), conforme descri\u00e7\u00f5es e demais condi\u00e7\u00f5es estabelecidas no Termo de Refer\u00eancia, anexo I. 1.2 - Em caso de discord\u00e2ncia existente entre as especifica\u00e7\u00f5es deste objeto descritas no Comprasnet e as especifica\u00e7\u00f5es constantes deste Edital, prevalecer\u00e3o as \u00faltimas", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Sgas 905 Lote 72 - Asa Sul - BRASI\u0301LIA (DF)", + "telefone": "(61) 34455934", + "fax": "(61)34460231", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Paulo", + "uf": "SP", + "cabecalho": [], + "td-style-padding": "389461", + "pregao-eletronico": "242018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada para loca\u00e7\u00e3o, montagem e desmontagem de estande do Conselho Regional de Farm\u00e1cia do Estado de S\u00e3o Paulo - CRF-SP no 13\u00ba Congresso Internacional Consulfarma, a ser realizado no per\u00edodo de 07 a 09 de junho de 2018, na Cidade de S\u00e3o Paulo / SP, em conformidade com o OBJETO ANEXO I.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Capote Valente, 487 - 1 Andar - Jardim Ame\u0301rica - Sa\u0303o Paulo (SP)", + "telefone": "(11) 30671478", + "fax": "(11)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Paulo", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "926089", + "pregao-eletronico": "182018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de pel\u00edcula adesiva protetora para c\u00e9dula de identidade profissional para o Departamento de Registro de Pessoa F\u00edsica do CREF4/SP, conforme as especifica\u00e7\u00f5es t\u00e9cnicas do Anexo I do instrumento convocat\u00f3rio.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Li\u0301bero Badaro\u0301, 377 - 16o Andar - Centro - Sa\u0303o Paulo (SP)", + "telefone": "(11) 32921716", + "fax": "(11)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Paulo", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "926310", + "pregao-eletronico": "52018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de Servi\u00e7os de transcri\u00e7\u00e3o de m\u00eddia, tais como: VHS, CASSETE, CD\u00b4S, DVD\u00b4S em processos administrativos judiciais.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Frei Caneca, 1282 - Consolac\u0327a\u0303o - Sa\u0303o Paulo (SP)", + "telefone": "(11) 43499951", + "fax": "(11)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Florian\u00f3polis", + "uf": "SC", + "cabecalho": [], + "codigo-da-uasg": "926099", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de materiais de inform\u00e1tica para o CRCSC", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Osvaldo Rodrigues Cabra, 1900 - Caixa Postal 76 - Centro - Floriano\u0301polis (SC)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "926690", + "pregao-eletronico": "52018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para aquisi\u00e7\u00e3o de materiais de inform\u00e1tica.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Arau\u0301jo Porto Alegre, 70 32,42,52andares - Centro - Centro - Rio de Janeiro (RJ)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "250110", + "pregao-eletronico": "122018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os para eventual aquisi\u00e7\u00e3o de inseticida, tipo piretr\u00f3ide, impregnada em rede de poli\u00e9ster, para rede, e inseticida tipo piretr\u00f3ide, impregnada em rede de poli\u00e9ster, para cama, c\u00f4nico, conforme condi\u00e7\u00f5es, quantidades, exig\u00eancias e estimativas, inclusive as encaminhadas pelas \u00e1reas demandantes", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Edifi\u0301cio Anexo a Sala 317 do Ministe\u0301rio da Sau\u0301de - - BRASI\u0301LIA (DF)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Afonso", + "uf": "BA", + "cabecalho": [], + "codigo-da-uasg": "194018", + "pregao-eletronico": "12018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O objeto da presente licita\u00e7\u00e3o \u00e9 a escolha da proposta mais vantajosa para a contrata\u00e7\u00e3o de servi\u00e7os de Guarda e Vigil\u00e2ncia Armada, conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas neste Edital e seus anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Floriano Peixoto,855 - Centro - Paulo Afonso (BA)", + "telefone": "(75) 32813484", + "fax": "(75)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "290002", + "pregao-eletronico": "332018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada para a presta\u00e7\u00e3o de servi\u00e7os de manuten\u00e7\u00e3o preventiva e corretiva em sistemas de condicionamento de ar na Unidade da Defensoria P\u00fablica da Uni\u00e3o em C\u00e1ceres/MT, com fornecimento de pe\u00e7as necess\u00e1rias para a execu\u00e7\u00e3o dos servi\u00e7os, de acordo com as especifica\u00e7\u00f5es deste Edital e seus Anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Setor de Artarquias Norte, Quadra 5, Lote C, Torre c - Asa Norte - BRASI\u0301LIA (DF)", + "telefone": "(61) 33184363", + "fax": "(61)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Natal", + "uf": "RN", + "cabecalho": [], + "codigo-da-uasg": "925772", + "pregao-eletronico": "142018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Presta\u00e7\u00e3o de servi\u00e7os de Passagens a\u00e9reas para a DPE/RN.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Duque de Caxias, 102/104 - Ribeira - Ribeira - Natal (RN)", + "telefone": "(84) 32327421", + "fax": "(84)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Macei\u00f3", + "uf": "AL", + "cabecalho": [], + "codigo-da-uasg": "457697", + "pregao-eletronico": "172018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa para presta\u00e7\u00e3o de servi\u00e7os de seguro de ve\u00edculos automotores pertencentes \u00e0 frota da Defensoria P\u00fablica do Estado de Alagoas.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Fernandes Lima, 3296 - - Maceio\u0301 (AL)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Maria", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "170183", + "pregao-eletronico": "22018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de ra\u00e7\u00e3o canina, visando atender as necessidades da Delegacia da Receita Federal do Brasil em Santa Maria-RS, com entrega parcelada, conforme especifica\u00e7\u00f5es e quantidades estabelecidas no edital e seus Anexos", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Riachuelo, 80 - Centro - Santa Maria (RS)", + "telefone": "(55) 33043177", + "fax": "(55)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Valadares", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "257035", + "pregao-eletronico": "102018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada no servi\u00e7o de fornecimento de servi\u00e7os de alimenta\u00e7\u00e3o, fornecendo refei\u00e7\u00f5es individualizadas em embalagem t\u00e9rmica descart\u00e1vel, para atender as demandas no \u00e2mbito do Distrito Sanit\u00e1rio Especial Ind\u00edgena - DSEI/MGES, especificamente para o Polo Base Tipo II, situado na Rua Engenheiro Celso Murta, n\u00ba 91, Bairro Olga Prates Correia, CEP: 39.803-087. Te\u00f3filo Otoni/MG.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Piracicaba, 325 Ilha Dos Araujo - - Governador Valadares (MG)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Reden\u00e7\u00e3o", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "257044", + "pregao-eletronico": "62018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de servi\u00e7os de SERVI\u00c7O TELEF\u00d4NICO FIXO COMUTADO-STFC LOCAL E LONGA DISTANCIA NACIONAL-LDN, Intra-Regional e Inter-Regional, fixo-fixo, fixo-m\u00f3vel, com liga\u00e7\u00f5es originadas na sede do Distrito Sanit\u00e1rio Especial Ind\u00edgena Kaiap\u00f3 do Par\u00e1 e nos Polos Base de Ouril\u00e2ndia do Norte, S\u00e3o Felix do Xingu e nas Casais de Ouril\u00e2ndia do Norte, S\u00e3o F\u00e9lix do Xingu, Reden\u00e7\u00e3o, Tucum\u00e3 e Santana do Araguaia.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Brasil, No 4191 - Park Dos Burutis - Redenc\u0327a\u0303o (PA)", + "telefone": "(94) 34241462", + "fax": "(94)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "30/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 30 + } + }, + { + "cidade": "Cuiab\u00e1", + "uf": "MT", + "cabecalho": [], + "codigo-da-uasg": "257039", + "pregao-eletronico": "92018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Medicamentos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Rui Barbosa, 282 - Goiabeiras - Cuiaba/mt - - Cuiaba\u0301 (MT)", + "telefone": "(65) 36220291", + "fax": "(65)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "04/06/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 6, + "day": 4 + } + }, + { + "cidade": "Cuiab\u00e1", + "uf": "MT", + "cabecalho": [], + "codigo-da-uasg": "257039", + "pregao-eletronico": "82018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de equipamentos para o atendimento das equipes de sa\u00fade dos polos base, casas de sa\u00fade e central de abastecimento, conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas neste Edital e seus anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Rui Barbosa, 282 - Goiabeiras - Cuiaba/mt - - Cuiaba\u0301 (MT)", + "telefone": "(65) 36220291", + "fax": "(65)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Cuiab\u00e1", + "uf": "MT", + "cabecalho": [], + "codigo-da-uasg": "257039", + "pregao-eletronico": "72018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Insumos de Higiene Bucal, para atender \u00e0s necessidades do DSEI/CUIAB\u00c1, de acordo com a justificativa, as especifica\u00e7\u00f5es e quantidades estabelecidas neste Termo de Refer\u00eancia.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Rui Barbosa, 282 - Goiabeiras - Cuiaba/mt - - Cuiaba\u0301 (MT)", + "telefone": "(65) 36220291", + "fax": "(65)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Palmas", + "uf": "TO", + "cabecalho": [], + "codigo-da-uasg": "257054", + "objeto": "Contrata\u00e7\u00e3o de empresa de engenharia para execu\u00e7\u00e3o de REFORMA E ADEQUA\u00c7\u00c3O DA UNIDADE B\u00c1SICA DE SA\u00daDE IND\u00cdGENA DA ALDEIA LANKRAR\u00c9, etnia Krah\u00f4-Kanela, Munic\u00edpio de Lagoa da Confus\u00e3o - TO, conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas neste instrumento e seus anexos, a fim de atender as necessidades do Distrito Sanit\u00e1rio Especial Ind\u00edgena - Tocantins", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Quadra 103 Sul Av. Lo 01 Lote 82 - Centro - Palmas/to - Plano Diretor Sul - Palmas (TO)", + "telefone": "", + "fax": "" + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "910847", + "pregao-eletronico": "312018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Resina trocadora \u00edons", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Candela\u0301ria 65 2o Andar - Centro - Rio de Janeiro (RJ)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "30/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 30 + } + }, + { + "cidade": "Florian\u00f3polis", + "uf": "SC", + "cabecalho": [], + "codigo-da-uasg": "910810", + "pregao-eletronico": "100532018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Retrofit do Sistema de Automa\u00e7\u00e3o da Central de \u00c1gua Gelada - CAG e Sistema de Exaustores da Sede da Eletrosul, com Fornecimento dos Equipamentos, Materiais e Servi\u00e7os, conforme disposto na ET-DGI-0035/2017", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Deputado Anto\u0302nio Edu Vieira, 999 - Pantanal - Pantanal - Floriano\u0301polis (SC)", + "telefone": "(48) 32317064", + "fax": "(48)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Florian\u00f3polis", + "uf": "SC", + "cabecalho": [], + "codigo-da-uasg": "910810", + "pregao-eletronico": "100422018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Servi\u00e7os de Subscri\u00e7\u00e3o e Suporte T\u00e9cnico Aplicados \u00e0s Licen\u00e7as da Suite de Produtos IBM Colabora\u00e7\u00e3o (Domino, Notes e Connections).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Deputado Anto\u0302nio Edu Vieira, 999 - Pantanal - - Floriano\u0301polis (SC)", + "telefone": "(48) 32317064", + "fax": "(48)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Londrina", + "uf": "PR", + "cabecalho": [], + "codigo-da-uasg": "135029", + "pregao-eletronico": "72018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de etiquetas e ribbons.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Site.www.comprasgovernamentais.gov.br - - Londrina (PR)", + "telefone": "(43) 33716021", + "fax": "(43)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Londrina", + "uf": "PR", + "cabecalho": [], + "codigo-da-uasg": "135029", + "pregao-eletronico": "52018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de detergentes e lubrificantes.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rodovia Carlos Joa\u0303o Strass, Distrito de Warta - Cx Postal 231 - Warta - Londrina (PR)", + "telefone": "(43) 33716026", + "fax": "(43)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Grande", + "uf": "PB", + "cabecalho": [], + "codigo-da-uasg": "135011", + "pregao-eletronico": "72018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de reagentes e produtos qu\u00edmicos para o N\u00facleo do Cerrado da Embrapa Algod\u00e3o.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Osvaldo Cruz, 1143 - Centena\u0301rio - Campina Grande (PB)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Lagoas", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "135016", + "pregao-eletronico": "82018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada para manuten\u00e7\u00e3o preventiva, corretiva de condicionadores de ar, equipamentos de refrigera\u00e7\u00e3o e fornecimento de pe\u00e7as.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rod. Mg 424 - Km 65 Caixa Postal 151 - Esmeraldas Ii - Sete Lagoas (MG)", + "telefone": "(31) 30271220", + "fax": "(31)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Recife", + "uf": "PE", + "cabecalho": [], + "td-style-padding": "926171", + "pregao-eletronico": "82018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada na presta\u00e7\u00e3o de servi\u00e7os de outsourcing de impress\u00e3o.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Professor Aloi\u0301sio Pessoa de Arau\u0301jo, No 75, Edifi\u0301cio Boa Viagem Corporate, 8o e 9 - Boa Viagem - Recife (PE)", + "telefone": "(81) 34649675", + "fax": "(81)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "115406", + "pregao-eletronico": "102018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada na presta\u00e7\u00e3o dos servi\u00e7os de administra\u00e7\u00e3o e gerenciamento informatizado de abastecimento de combust\u00edveis, (gasolina, etanol e \u00f3leo diesel), sob demanda, com tecnologia de cart\u00e3o eletr\u00f4nico com tarja magn\u00e9tica ou chip , em rede de postos de servi\u00e7os credenciados, em todo territ\u00f3rio nacional, para os ve\u00edculos, trator, empilhadeiras e grupos motores geradores, pertencentes \u00e0 EBC, para in\u00edcio no exerc\u00edcio de 2018.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Scs Qd. 08, Ed. Super Center Vena\u0302ncio 2000, Bl. B-50/60_1o Subsol - Asa Sul - BRASI\u0301LIA (DF)", + "telefone": "(61) 37995656", + "fax": "(61)37995657", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "115406", + "pregao-eletronico": "92018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Presta\u00e7\u00e3o dos Servi\u00e7os Ostensivos de Vigil\u00e2ncia Armada para Seguran\u00e7a F\u00edsica dos empregados, materiais, equipamentos, instala\u00e7\u00f5es, pr\u00e9dios, ve\u00edculos e unidades m\u00f3veis da EBC - Superintend\u00eancia Regional do Maranh\u00e3o, em S\u00e3o Lu\u00eds/MA", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Scs Qd. 08, Ed. Super Center Vena\u0302ncio 2000, Bl. B-50/60_1o Subsol - Asa Sul - BRASI\u0301LIA (DF)", + "telefone": "(61) 37995657", + "fax": "(61)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Luis", + "uf": "MA", + "cabecalho": [], + "codigo-da-uasg": "155010", + "pregao-eletronico": "952018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Para aquisi\u00e7\u00e3o de material de consumo utilizado nos procedimentos de Tipifica\u00e7\u00e3o HLA e de Prova Cruzada por Citometria de Fluxo, no Laborat\u00f3rio de Histocompatibilidade desta Unidade Laborat\u00f3rio de An\u00e1lises Cl\u00ednicas e Histocompatibilidade.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Bara\u0303o de Itapary, No 227, Centro - - Sa\u0303o Luis (MA)", + "telefone": "(98) 21091071", + "fax": "(98)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Luis", + "uf": "MA", + "cabecalho": [], + "codigo-da-uasg": "155010", + "pregao-eletronico": "692018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Para aquisi\u00e7\u00e3o de material de consumo de uso hospitalar, do tipo produtos para sa\u00fade: AGULHAS DE ESCLEROSE PARA ENDOSCOPIA DIGESTIVA, BAL\u00d5ES EXTRATORES DE C\u00c1LCULOS BILIARES, CATETERES PARA CPRE, PAPIL\u00d3TOMOS DESCART\u00c1VEIS E CORRELATOS nas especifica\u00e7\u00f5es e quantidades constantes no item 3 do Termo de Refer\u00eancia Anexo I.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Bara\u0303o de Itapary, No 227, Centro - - Sa\u0303o Luis (MA)", + "telefone": "(98) 21091071", + "fax": "(98)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Luis", + "uf": "MA", + "cabecalho": [], + "codigo-da-uasg": "925810", + "pregao-eletronico": "132018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada para a presta\u00e7\u00e3o de servi\u00e7os de assessoramento, manuten\u00e7\u00e3o e conserva\u00e7\u00e3o de sinaliza\u00e7\u00e3o n\u00e1utica, com fornecimento tempor\u00e1rio de boia BL-E similar as existentes, atrav\u00e9s de aluguel, para a substitui\u00e7\u00e3o das boias pr\u00f3prias durante a manuten\u00e7\u00e3o peri\u00f3dica das mesmas, materiais sobressalentes e disponibiliza\u00e7\u00e3o de embarca\u00e7\u00e3o em casco met\u00e1lico para apoio as essas fainas, no Porto do Itaqui, em S\u00e3o Lu\u00eds MA, conforme NORMAM-17/DHN NPCP/MA", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Porto do Itaqui - Sa\u0303o Luis - Itaqui - Sa\u0303o Luis (MA)", + "telefone": "(98) 32166533", + "fax": "(98)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Campinas", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "160468", + "pregao-eletronico": "52018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Servi\u00e7o de transporte a\u00e9reo por de empresa especializada, em condi\u00e7\u00f5es de seguran\u00e7a e sigilo, envolvendo transporte e controle dos cadernos de quest\u00f5es, cart\u00f5es de respostas, folhas de reda\u00e7\u00e3o e outros impressos destinados \u00e0 realiza\u00e7\u00e3o do Concurso de Admiss\u00e3o \u00e0 EsPCEx,", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av Papa Pio Xii, 350 - Jardim Chapadao - Jardim Chapadao - Campinas (SP)", + "telefone": "(19) 37442065", + "fax": "(19)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "365001", + "pregao-eletronico": "132018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa para fornecimento de m\u00e3o de obra tempor\u00e1ria, contratada conforme a Lei n\u00a8 6.019/74, e disponibilizada \u00e0 Finep em fun\u00e7\u00e3o de acr\u00e9scimo extraordin\u00e1rio decorrente do Ac\u00f3rd\u00e3o TCU 3235/2017, sendo vedada a subcontrata\u00e7\u00e3o.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Rep. do Chile, 330 10o, 11o, 12o, 15o, 16o e 17o Andares - Torre Oeste - - Rio de Janeiro (RJ)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Cristov\u00e3o", + "uf": "SE", + "cabecalho": [], + "codigo-da-uasg": "925584", + "pregao-eletronico": "42018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada em restaurante no entorno da Universidade Federal de Sergipe - UFS para atender \u00e0s necessidades do Projeto CV 2600.0101182.16.4 Projeto de Pesquisa e extens\u00e3o junto as comunidades Costeiras- PEAC (PEAC SOCIAL 2016-MM798) , gerenciado pela FAPESE.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Pre\u0301dio do Nupeg,ufs, Bloco h , Sala 06. - Rosa Elze - Sa\u0303o Cristova\u0303o (SE)", + "telefone": "(79) 31947466", + "fax": "(79)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Fora", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "925770", + "pregao-eletronico": "182018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - A presente licita\u00e7\u00e3o tem por objeto a contrata\u00e7\u00e3o de empresa especializada na presta\u00e7\u00e3o de servi\u00e7os de produ\u00e7\u00e3o de materiais gr\u00e1ficos, em condi\u00e7\u00f5es especiais de seguran\u00e7a e sigilo, envolvendo a diagrama\u00e7\u00e3o, impress\u00e3o, acabamento, o manuseio, embalagem, rotulagem, e log\u00edstica de entrega no estado da Para\u00edba, a fim de atender as demandas do CAED (Centro de Pol\u00edticas P\u00fablicas e Avalia\u00e7\u00e3o da Educa\u00e7\u00e3o).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av Dr. Paulo Japiassu Coelho, 545 - Cascatinha - Juiz de Fora (MG)", + "telefone": "(32) 32312120", + "fax": "(32)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "168001", + "pregao-eletronico": "82018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada para organiza\u00e7\u00e3o, prepara\u00e7\u00e3o, confer\u00eancia, microfilmagem e revis\u00e3o de at\u00e9 165.000 (cento e sessenta e cinco mil) documentos cont\u00e1beis, de diversos formatos, referentes ao ano de 2016, em filme AHU de 16mm, com c\u00f3pia em filme diazo, conforme Termo de Refer\u00eancia (Anexo I) do edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Duque de Caxias - Setor Militar Urbano, Ed. Sede, 2o Andar - Smu - BRASI\u0301LIA (DF)", + "telefone": "(61)", + "fax": "(61)33147620", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Aracaju", + "uf": "SE", + "cabecalho": [], + "codigo-da-uasg": "926775", + "pregao-eletronico": "1342018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7o para aquisi\u00e7\u00e3o de materiais para cirurgias da especialidade de urologia, com fornecimento de equipamentos em comodato, para atender demanda do HUSE Hospital de Urg\u00eancias de Sergipe da Secretaria de Estado da Sa\u00fade.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Augusto Franco, No 3150 - Ponto Novo - Aracaju (SE)", + "telefone": "(79) 32268337", + "fax": "(79)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "29/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 29 + } + }, + { + "cidade": "Aracaju", + "uf": "SE", + "cabecalho": [], + "codigo-da-uasg": "926775", + "pregao-eletronico": "1332018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada na presta\u00e7\u00e3o de servi\u00e7os laboratoriais para atender \u00e0s necessidades da Rede Hospitalar de Sa\u00fade do Estado de Sergipe", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Augusto Franco, 3150 - Centro Administrativo de Sau\u0301de - Ponto Novo - Aracaju (SE)", + "telefone": "(79) 32268337", + "fax": "(79)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Aracaju", + "uf": "SE", + "cabecalho": [], + "codigo-da-uasg": "926775", + "pregao-eletronico": "1212018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para relicita\u00e7\u00e3o dos medicamentos de A\u00e7\u00e3o Judicial desertos e fracassados dos PEs 084/20147 e 027/2017, visando atender \u00e0s necessidades da Secretaria de Estado da Sa\u00fade", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Augusto Franco, No 3150 - Ponto Novo - Aracaju (SE)", + "telefone": "(79) 32268337", + "fax": "(79)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "30/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 30 + } + }, + { + "cidade": "Aracaju", + "uf": "SE", + "cabecalho": [], + "codigo-da-uasg": "926775", + "pregao-eletronico": "1022018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para aquisi\u00e7\u00e3o de medicamentos do sangue e hematopoi\u00e9ticos do aparelho respirat\u00f3rio do sistema nervoso do HUSE.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida Augusto Franco, 3150. - Ponto Novo - Aracaju (SE)", + "telefone": "(79) 32268337", + "fax": "(79)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "29/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 29 + } + }, + { + "cidade": "Vista", + "uf": "RR", + "cabecalho": [], + "codigo-da-uasg": "936001", + "pregao-eletronico": "252018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de VIATURAS POLICIAIS, destinadas a atender ao Conv\u00eanio SENASP/MJ N\u00ba 853795/2017, de acordo com as quantidades e especifica\u00e7\u00f5es t\u00e9cnicas constantes do TERMO DE REFER\u00caNCIA, Anexo IV e MODELO DA PROPOSTA DE PRE\u00c7OS, Anexo VI do Edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Nossa Senhora da Consolata, N \u0308 472 - Centro - Boa Vista (RR)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Vista", + "uf": "RR", + "cabecalho": [], + "codigo-da-uasg": "936001", + "pregao-eletronico": "242018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Eventual aquisi\u00e7\u00e3o de materiais de consumo, g\u00eanero de alimenta\u00e7\u00e3o (caf\u00e9, a\u00e7\u00facar e ado\u00e7ante) e copa e cozinha (copos), de acordo com as quantidades e especifica\u00e7\u00f5es t\u00e9cnicas constantes do TERMO DE REFER\u00caNCIA, Anexo IV e MODELO DA PROPOSTA DE PRE\u00c7OS, Anexo VI do Edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Nossa Senhora da Consolata, N \u0308 472 - Centro - Boa Vista (RR)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Fortaleza", + "uf": "CE", + "cabecalho": [], + "codigo-da-uasg": "943001", + "pregao-eletronico": "4982018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Servi\u00e7os de loca\u00e7\u00e3o de transporte de passageiros das Escolas Estaduais de Educa\u00e7\u00e3o Profissional - EEEP, em \u00f4nibus, micro-\u00f4nibus ou van, envolvidos nos eventos referentes \u00e0 pr\u00e1ticas de campo das unidades escolares, distribu\u00eddas em todo o Estado do Cear\u00e1, de acordo com as especifica\u00e7\u00f5es e quantitativos previstos no Anexo I Termo de Refer\u00eancia deste edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Dr. Jose\u0301 Martins Rodrigues, 150 - Cent. Adm. Barbara de Alenc - Edson Queiroz - Fortaleza (CE)", + "telefone": "(85) 34596378", + "fax": "(85)31016636", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Fortaleza", + "uf": "CE", + "cabecalho": [], + "codigo-da-uasg": "943001", + "pregao-eletronico": "4972018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Servi\u00e7os t\u00e9cnicos de apoio log\u00edstico (alimenta\u00e7\u00e3o, hospedagem, transporte, impress\u00e3o de material did\u00e1tico e contrata\u00e7\u00e3o de formador e palestrante para realiza\u00e7\u00e3o dos Eventos Formativos com foco na Base Nacional Comum Curricular BNCC a ser realizado em Fortaleza e nos demais munic\u00edpios do Estado do Cear\u00e1, de acordo com as especifica\u00e7\u00f5es e quantitativos previstos no Anexo I Termo de Refer\u00eancia deste edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Dr. Jose\u0301 Martins Rodrigues, 150 - Cent. Adm. Barbara de Alenc - Edson Queiroz - Fortaleza (CE)", + "telefone": "(85) 34596368", + "fax": "(85)31016636", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Fortaleza", + "uf": "CE", + "cabecalho": [], + "codigo-da-uasg": "943001", + "pregao-eletronico": "4962018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de impressoras Braille, visando atender a demanda do Centro de Refer\u00eancia Especializado do Estado do Cear\u00e1 - CREAECE, de acordo com as especifica\u00e7\u00f5es e quantitativos previstos no Anexo I - Termo de Refer\u00eancia deste edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Dr. Jose\u0301 Martins Rodrigues, 150 - Cent. Adm. Barbara de Alenc - Edson Queiroz - Fortaleza (CE)", + "telefone": "(85) 34596390", + "fax": "(85)31016636", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Fortaleza", + "uf": "CE", + "cabecalho": [], + "codigo-da-uasg": "943001", + "pregao-eletronico": "4642018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Servi\u00e7os de manuten\u00e7\u00e3o preventiva, corretiva, com reposi\u00e7\u00e3o de pe\u00e7as, acess\u00f3rios e consum\u00edveis por parte da contratada, em 58 (cinquenta e oito) Ventiladores (Respiradores), de marca Bird e Intermed, pertencentes ao Hospital Geral Dr. C\u00e9sar Cals de Oliveira, de acordo com as especifica\u00e7\u00f5es e quantitativos previstos no Anexo I Termo de Refer\u00eancia deste edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Dr. Jose\u0301 Martins Rodrigues, 150 - Cent. Adm. Barbara de Alenc - Edson Queiroz - Fortaleza (CE)", + "telefone": "34596368", + "fax": "31016636", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Fortaleza", + "uf": "CE", + "cabecalho": [], + "codigo-da-uasg": "943001", + "pregao-eletronico": "4612018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registros de Pre\u00e7os para futuras e eventuais aquisi\u00e7\u00f5es de Material M\u00e9dico Hospitalar (Lanceta), de acordo com as especifica\u00e7\u00f5es e quantitativos previstos no Anexo I Termo de Refer\u00eancia deste edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Dr. Jose\u0301 Martins Rodrigues, 150 - Cent. Adm. Barbara de Alenc - Edson Queiroz - Fortaleza (CE)", + "telefone": "(85) 34596368", + "fax": "(85)31016636", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Fortaleza", + "uf": "CE", + "cabecalho": [], + "codigo-da-uasg": "943001", + "pregao-eletronico": "4462018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o e instala\u00e7\u00e3o de 04 balan\u00e7as rodovi\u00e1rias para o Terminal Portu\u00e1rio do Pec\u00e9m. de acordo com as especifica\u00e7\u00f5es e quantitativos previstos no Anexo I Termo de Refer\u00eancia deste edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Dr. Jose\u0301 Martins Rodrigues, 150 - Cent. Adm. Barbara de Alenc - Edson Queiroz - Fortaleza (CE)", + "telefone": "(85) 34596390", + "fax": "(85)31016636", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Fortaleza", + "uf": "CE", + "cabecalho": [], + "codigo-da-uasg": "943001", + "pregao-eletronico": "3902018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de EQUIPAMENTOS M\u00c9DICO-HOSPITALARES para a Secretaria da Sa\u00fade do Estado do Cear\u00e1 SESA, que complementa a implanta\u00e7\u00e3o dos servi\u00e7os de sa\u00fade programados para atender unidade de sa\u00fade, de acordo com as especifica\u00e7\u00f5es e quantitativos previstos no Anexo I Termo de Refer\u00eancia, deste edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Dr. Jose\u0301 Martins Rodrigues, 150 - Cent. Adm. Barbara de Alenc - Edson Queiroz - Fortaleza (CE)", + "telefone": "(85) 34596368", + "fax": "(85)31016636", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Fortaleza", + "uf": "CE", + "cabecalho": [], + "codigo-da-uasg": "943001", + "pregao-eletronico": "2672018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Material Permanente, para atender as necessidades do Centro de Fisioterapia, do Hospital C\u00e9sar Cals de Oliveira, de acordo com as especifica\u00e7\u00f5es e quantitativos previstos no Anexo I Termo de Refer\u00eancia deste Edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Dr. Jose\u0301 Martins Rodrigues, 150 - Cent. Adm. Barbara de Alenc - Edson Queiroz - Fortaleza (CE)", + "telefone": "(85) 34596378", + "fax": "(85)31016636", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Fortaleza", + "uf": "CE", + "cabecalho": [], + "codigo-da-uasg": "943001", + "pregao-eletronico": "2172018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de pe\u00e7as de reposi\u00e7\u00e3o (rolamentos, acoplamentos e retentores), para bombas e motores das esta\u00e7\u00f5es de bombeamento das bacias metropolitanas (EB PACOTI; EB 1; EB 2; EB DI PACAJUS; EB BERMAS; EB ITAI\u00c7ABA; EB GAVI\u00c3O; EB MARANGUAPE; EB DI MARACANA\u00da; EB CATUANA; EB PEC\u00c9M; EE-0; EE-1; EE-2; EE-3), de acordo com as especifica\u00e7\u00f5es e quantitativos previstos no Anexo I Termo de Refer\u00eancia deste edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Dr. Jose\u0301 Martins Rodrigues, 150 - Cent. Adm. Barbara de Alenc - Edson Queiroz - Fortaleza (CE)", + "telefone": "(85) 34596390", + "fax": "(85)31016636", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Canoas", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "120629", + "pregao-eletronico": "342018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O objeto da presente licita\u00e7\u00e3o \u00e9 o registro de pre\u00e7os para eventual fornecimento de Materiais de Limpeza e Higieniza\u00e7\u00e3o para o Grupamento de apoio da Canoas e Unidades Apoiadas, conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas no Edital e seus anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av Guilherme Schell - 3950 - Fa\u0301tima - Fa\u0301tima - Canoas (RS)", + "telefone": "(51) 34621367", + "fax": "(51)34621242", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Recife", + "uf": "PE", + "cabecalho": [], + "codigo-da-uasg": "120632", + "pregao-eletronico": "312018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada para execu\u00e7\u00e3o de servi\u00e7o comum de instala\u00e7\u00e3o de cabeamento de telefonia, rede, enlaces sem fio e fibra \u00f3ptica, com fornecimento de material", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av Armindo Moura - 500 - Boa Viagem - - Recife (PE)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Campos", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "120016", + "pregao-eletronico": "292018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Cess\u00e3o de uso onerosa de uma \u00e1rea de 32,00m\u00b2 em terreno considerado de mesma \u00e1rea, localizado no andar t\u00e9rreo do Hotel de Tr\u00e2nsito dos Oficiais, sob a responsabilidade do Comando da Aeron\u00e1utica, GAP-SJ, destinada \u00e0 explora\u00e7\u00e3o de atividades de Sal\u00e3o de Beleza.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Prac\u0327a Marechal do Ar Eduardo Gomes, 50 - Vila Das Aca\u0301cias - Vila Das Aca\u0301cias - Sa\u0303o Jose\u0301 dos Campos (SP)", + "telefone": "(12) 39473032", + "fax": "(12)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "120645", + "pregao-eletronico": "192018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de servi\u00e7o de comunica\u00e7\u00e3o multimidia para vigil\u00e2ncia eletr\u00f4nica.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Est Alfredo Rocha - 495 - Galea\u0303o - - Rio de Janeiro (RJ)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "120645", + "pregao-eletronico": "182018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de materiais de infraestrutura para o DTINFRA.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Est Alfredo Rocha - 495 - Galea\u0303o - - Rio de Janeiro (RJ)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Florian\u00f3polis", + "uf": "SC", + "cabecalho": [], + "codigo-da-uasg": "160445", + "pregao-eletronico": "82018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de g\u00eaneros de alimenta\u00e7\u00e3o (produtos de panifica\u00e7\u00e3o e confeitaria)", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Silva Jardim Nr 441 - Centro - Floriano\u0301polis (SC)", + "telefone": "(48) 30254839", + "fax": "(48)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Goi\u00e2nia", + "uf": "GO", + "cabecalho": [], + "codigo-da-uasg": "153054", + "pregao-eletronico": "952018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para futuras aquisi\u00e7\u00f5es de material m\u00e9dico hospitalar (papel grau cir\u00fargico).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Praca Universitaria, Snr. Setor Leste Universitario - - Goia\u0302nia (GO)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Goi\u00e2nia", + "uf": "GO", + "cabecalho": [], + "codigo-da-uasg": "153054", + "pregao-eletronico": "762018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os para aquisi\u00e7\u00e3o de Material para Reabilita\u00e7\u00e3o - OPME (Placa de reconstru\u00e7\u00e3o de tit\u00e2nio e Placa espec\u00edfica de tit\u00e2nio). De acordo com exig\u00eancias, descri\u00e7\u00f5es e quantidades do Edital da licita\u00e7\u00e3o e seus Anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Primeira Avenida, No. 545 - Setor Leste Universita\u0301rio - Goia\u0302nia (GO)", + "telefone": "(62) 32698500", + "fax": "(62)32698418", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "112408", + "pregao-eletronico": "212018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de material de sa\u00fade para a Se\u00e7\u00e3o Central de Abastecimento de Material M\u00e9dico Hospitalar SCAMMH, destinado a atender \u00e0s necessidades de consumo do Hospital das For\u00e7as Armadas HFA", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Estrada Contorno do Bosque S/n - Shc/sul (cruzeiro Novo/df) - Sudoeste - BRASI\u0301LIA (DF)", + "telefone": "(61) 39662496", + "fax": "(61)39662407", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Fora", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "160121", + "pregao-eletronico": "152018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de pr\u00f3teses auditivas e aparelhos para apneia obstrutiva do sono CPAP com seus acess\u00f3rios.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Gen Deschamps Cavalcanti S/n - Fa\u0301brica - Juiz de Fora - Fa\u0301brica - Juiz de Fora (MG)", + "telefone": "(32) 32574563", + "fax": "(32)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Horizonte", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "926658", + "pregao-eletronico": "602018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de tubos e traqueias para atender a demanda de forma cont\u00ednua por um per\u00edodo de 12 (doze) meses do Hospital Metropolitano Odilon Behrens e suas unidades, conforme especifica\u00e7\u00e3o t\u00e9cnica e condi\u00e7\u00f5es comerciais contidas no Anexo I do Instrumento Convocat\u00f3rio.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av Jose\u0301 Bonifa\u0301cio S/n - Sa\u0303o Cristo\u0301va\u0303o - Belo Horizonte (MG)", + "telefone": "(31) 32776178", + "fax": "(31)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Lad\u00e1rio", + "uf": "MS", + "cabecalho": [], + "codigo-da-uasg": "786700", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Servi\u00e7o de recapacita\u00e7\u00e3o de instala\u00e7\u00e3o el\u00e9trica predial com fornecimento de material para o Hospital Naval de Lad\u00e1rio com 1-Liga\u00e7\u00e3o de QDP 300kVA, 3#2x(300(150)150), Duas vias Eletroduto 4 PEAD subterr\u00e2neo em valeta de 50cm de profundidade (20m)/2- QDG - Quadro de Distribui\u00e7\u00e3o Geral (cabine entrada), de a\u00e7o estampado, Geral 750A, embutido em alvenaria, de 1500x1000mm, com 20 circuitos trif\u00e1sicos e DPS 175V-40kA (1un)/3- Medidor de m\u00faltiplas grandezas el\u00e9tricas polif\u00e1sico, conforme Item 6.1.13. (1un)/4-Ponto de Ilumina\u00e7\u00e3o, em sa\u00edda subterr\u00e2nea, bra\u00e7o e lumin\u00e1ria de ilumina\u00e7\u00e3o p\u00fablica, vapor met\u00e1lico, 250W, 220V.(1un)/5-Ponto de tomada externa de embutir, para circuito auxiliar 3#25(25)25, com tomada tipo industrial estanque 3P+N+T.(1un)/6-Linha el\u00e9trica tronco, sobre eletrocalha perfurada em a\u00e7o zincado, 200x50x3000 com septo divisor para comportar cabeamento estruturado, conforme Item 6.1.15.(170 m)/7-Recomposi\u00e7\u00e3o da alvenaria e jardinagem (1un)/8-Quadro distribui\u00e7\u00e3o chapa pintada - sobrepor, Barr. trif., disj. geral, - DIN (Ref. Moratori)(25 un/9-Linhas auxiliares, tomadas, canaletas pl\u00e1sticas e conex\u00f5es (200 m)/10- Sistema TI -M\u00e9dico,10kVA , conforme Item 6.2(5 un)/11-Banco de capacitor, trif\u00e1sico,20kVAr , conforme Item 6.1.14 (1un).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. 14 de Marc\u0327o, S/no - Centro - Lada\u0301rio (MS)", + "telefone": "(67) 32341232", + "fax": "(67)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "154035", + "pregao-eletronico": "10092018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de medicamentos padronizados, Grupo A", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Mariz e Barros, 775 - Tijuca - Rio de Janeiro (RJ)", + "telefone": "(21) 22646879", + "fax": "(21)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Grande", + "uf": "MS", + "cabecalho": [], + "codigo-da-uasg": "155124", + "pregao-eletronico": "182018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de MICROCOMPUTADORES, de acordo com o inciso II do art. 3\u00ba do Decreto 7892/13, para atender as necessidades do Hospital Universit\u00e1rio Maria Aparecida Pedrossian - HUMAP-UFMS.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida Senador Filinto Muller, 355 - Ipiranga - Campo Grande (MS)", + "telefone": "(67) 3345", + "fax": "(67)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Grande", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "150218", + "pregao-eletronico": "502018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa para presta\u00e7\u00e3o de servi\u00e7o de limpeza e desinfec\u00e7\u00e3o dos reservat\u00f3rios de \u00e1gua pot\u00e1vel do HU/FURG", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Visconde de Paranagua\u0301, 112 - - Rio Grande (RS)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Grande", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "150218", + "pregao-eletronico": "282018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de luvas cir\u00fargicas e de procedimentos, m\u00e1scaras, prop\u00e9s e toucas descart\u00e1veis.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Visconde de Paranagua\u0301, 112 - - Rio Grande (RS)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Cruz", + "uf": "RN", + "cabecalho": [], + "codigo-da-uasg": "155014", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Presta\u00e7\u00e3o de Servi\u00e7os de Loca\u00e7\u00e3o de uma Central de Suprimento de Ar Comprimido Medicinal com Compressor e de uma Central de V\u00e1cuo Cl\u00ednico, pelo per\u00edodo de 12 (doze) meses.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Praca Tequinha Farias, 13 - Centro - - Santa Cruz (RN)", + "telefone": "(84) 32912324", + "fax": "(84)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Fora", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "155903", + "pregao-eletronico": "282018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Preg\u00e3o Eletr\u00f4nico Tradicional, para a loca\u00e7\u00e3o de 02 (dois) equipamentos id\u00eanticos com fornecimento de reagentes para realiza\u00e7\u00e3o de Exames Bioqu\u00edmicos, a fim de abastecer o Hospital Universit\u00e1rio da UFJF Filial Ebserh, conforme condi\u00e7\u00f5es, quantidades, exig\u00eancias e estimativas, estabelecidas neste instrumento.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua", + "telefone": "(32) 40065160", + "fax": "(32)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Fora", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "155903", + "pregao-eletronico": "162018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - SRP - futura e eventual aquisi\u00e7\u00e3o de equipamentos de ar-condicionado, a serem instalados nas Unidades da Empresa Brasileira de Servi\u00e7os Hospitalares (Ebserh), Filial Hospital Universit\u00e1rio da Universidade Federal de Juiz de Fora (HU-UFJF), conforme quantidades, exig\u00eancias e estimativas, estabelecidas neste instrumento e seu(s) encarte(s).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Catulo Breviglieri, S/n - Santa Catarina - Juiz de Fora (MG)", + "telefone": "(32) 40095160", + "fax": "(32)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Fora", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "155903", + "pregao-eletronico": "152018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O registro de pre\u00e7os para futura e eventual aquisi\u00e7\u00e3o de mobili\u00e1rio para a Empresa Brasileira de Servi\u00e7os Hospitalares (Ebserh), filial Hospital Universit\u00e1rio da Universidade Federal de Juiz de Fora (HU-UFJF).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Catulo Breviglieri, Sn - Santa Catarina - Juiz de Fora (MG)", + "telefone": "(32) 40095206", + "fax": "(32)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Maria", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "155125", + "pregao-eletronico": "1342017", + "objeto": "Preg\u00e3o Eletr\u00f4nico - LoCA\u00c7\u00c3O DE EQUIPAMENTO DE AUTOTRANSFUS\u00c3O AUTOM\u00c1TICA CUMULADO COM FORNECIMENTO DO CONJUNTO DE AUTOTRANSFUS\u00c3O, PARA O HOSPITAL UNIVERSIT\u00c1RIO DA UNIVERSIDADE FEDERAL DE SANTA MARIA (HUSM-UFSM),", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Roraima, N. 1000, Ed.22, Bairro Camobi - - Santa Maria (RS)", + "telefone": "(55) 32131692", + "fax": "(55)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Maria", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "155125", + "pregao-eletronico": "422018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - PrESTA\u00c7\u00c3O DE SERVI\u00c7OS DE MANUTEN\u00c7\u00c3O PREVENTIVA E CORRETIVA COM SUBSTITUI\u00c7\u00c3O DE PE\u00c7AS EM EQUIPAMENTOS DA UNIDADE DE NUTRI\u00c7\u00c3O CL\u00cdNICA DO HOSPITAL UNIVERSIT\u00c1RIO DA UNIVERSIDADE FEDERAL DE SANTA MARIA (EBSERH-HUSM),", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Roraima, N. 1000, Ed.22, Bairro Camobi - - Santa Maria (RS)", + "telefone": "(55) 32131692", + "fax": "(55)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Maria", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "155125", + "pregao-eletronico": "402018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - AqUISI\u00c7\u00c3O DE KIT DE LIGADURA EL\u00c1STICA, CURATIVOS, BOLSAS PARA COLETA DE SANGUE E COLOSTOMIA, PR\u00d3TESES VASCULARES, SISTEMA DE BOMBAS DE INFUS\u00c3O ELASTOM\u00c9RICA, PLACA TERMOPL\u00c1STICA, CATETERES E INSTRUMENTOS DE SUTURA MEC\u00c2NICA, PARA O HOSPITAL UNIVERSIT\u00c1RIO DA UNIVERSIDADE FEDERAL DE SANTA MARIA (EBSERH-HUSM)", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Roraima, N. 1000, Ed.22, Bairro Camobi - - Santa Maria (RS)", + "telefone": "(55) 32131692", + "fax": "(55)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Pessoa", + "uf": "PB", + "cabecalho": [], + "codigo-da-uasg": "155023", + "pregao-eletronico": "872017", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Servi\u00e7o de loca\u00e7\u00e3o de central de ar comprimido medicinal, incluindo instala\u00e7\u00e3o, manuten\u00e7\u00e3o preventiva e corretiva com reposi\u00e7\u00e3o de pe\u00e7as e eventual troca de equipamentos", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Campus 1, S/no Cidade Universita\u0301ria - Castelo Branco - Joa\u0303o Pessoa (PB)", + "telefone": "(83) 32167299", + "fax": "(83)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Natal", + "uf": "RN", + "cabecalho": [], + "codigo-da-uasg": "193120", + "pregao-eletronico": "22018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa fornecedora de forma \u00fanica com entrega parcelada, de g\u00e1s de cozinha, \u00e1gua mineral, caf\u00e9 mo\u00eddo, a\u00e7\u00facar, para atender a Superintend\u00eancia do IBAMA no Estado do Rio Grande do Norte.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av.almirante Alexandrino de Alencar, 1399 - Tirol - Tirol - Natal (RN)", + "telefone": "(83) 33420419", + "fax": "(83)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Livramento", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "154773", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Telefonia Fixa Comutada, na Modalidade Local (STFC-LO) e nas Modalidades de Longa Dist\u00e2ncia Nacional e Internacional", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida Paul Harris, No 410 - Fortim - Santana do Livramento (RS)", + "telefone": "(55) 32429090", + "fax": "(55)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Sul", + "uf": "SC", + "cabecalho": [], + "codigo-da-uasg": "158631", + "pregao-eletronico": "42018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Eventual Contrata\u00e7\u00e3o de Empresa Especializada para Organizar e Executar a XI Mostra Nacional de Inicia\u00e7\u00e3o Cient\u00edfica e Tecnol\u00f3gica MICTI e IV IF Cultura, a ser realizada no IFC - Campus S\u00e3o Bento do Sul.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Paulo Chapiewski, 931, - Bairro Centena\u0301rio - Sa\u0303o Bento do Sul (SC)", + "telefone": "(47) 31881707", + "fax": "(47)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Branco", + "uf": "AC", + "cabecalho": [], + "codigo-da-uasg": "373015", + "pregao-eletronico": "1172018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os para Contrata\u00e7\u00e3o de empresa especializada para o fornecimento de combust\u00edveis automotivos de alta qualidade, (\u00d3leo Diesel Comum, \u00d3leo Diesel B-S10 e Gasolina Comum), para abastecimento dos ve\u00edculos oficiais do INCRA nos Munic\u00edpios de Cruzeiro do Sul, Sena Madureira, Feij\u00f3 e Tarauac\u00e1/AC, com observ\u00e2ncia aos quantitativos, e demais informa\u00e7\u00f5es contidas no Termo de Refer\u00eancia, Anexo I, parte integrante deste edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Santa Ine\u0302s, No 135 - Avia\u0301rio - Rio Branco (AC)", + "telefone": "(68) 32143008", + "fax": "(68)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Rosa", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "158504", + "objeto": "O objeto desta licita\u00e7\u00e3o \u00e9 a concess\u00e3o/permiss\u00e3o de uso, a t\u00edtulo oneroso, de uma \u00e1rea, medindo 33,93 m2 (trinta e tr\u00eas, v\u00edrgula noventa e tr\u00eas metros quadrados), situada nas depend\u00eancias do Pr\u00e9dio Pedag\u00f3gico 2 do Instituto Federal Farroupilha - Campus Santa Rosa, im\u00f3vel de propriedade da Uni\u00e3o, localizado na Rua Uruguai, 1.675, Bairro Central, em Santa Rosa - RS.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Cel. Bra\u0301ulio de Oliveira, 1.400 - Central - Santa Rosa (RS)", + "telefone": "(55) 20130200", + "fax": "(55)" + }, + { + "cidade": "Bel\u00e9m", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "925157", + "pregao-eletronico": "82018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - A presente licita\u00e7\u00e3o ter\u00e1 como objeto a CONTRATA\u00c7\u00c3O DE EMPRESA ESPECIALIZADA PARA FORNECIMENTO DE INSUMOS AGR\u00cdCOLAS E MATERIAIS DIVERSOS, DE ACORDO COM A ESPECIFICA\u00c7\u00c3O T\u00c9CNICA, conforme especifica\u00e7\u00e3o no anexo I deste Edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Joa\u0303o Paulo Ii, S/n - Parque Estadual do Utinga - Peut - Curio\u0301 - Utinga - Bele\u0301m (PA)", + "telefone": "(91) 33422669", + "fax": "(91)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Claros", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "158437", + "pregao-eletronico": "72018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os visando eventual e futura aquisi\u00e7\u00e3o de material m\u00e9dico e odontol\u00f3gico, a fim de atender as necessidades do IFNMG Campus Montes Claros, conforme condi\u00e7\u00f5es, quantidades, exig\u00eancias e estimativas", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Dois, No 300 - Vilage do Lago - Montes Claros (MG)", + "telefone": "(38) 21034108", + "fax": "(38)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Salinas", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "158377", + "objeto": "A presente licita\u00e7\u00e3o tem por objeto a contrata\u00e7\u00e3o de empresa especializada na execu\u00e7\u00e3o de 05 (cinco) Unidades de tratamento (Fossas S\u00e9pticas, filtro anaer\u00f3bicos e sumidouros), mediante o regime empreitada por (pre\u00e7o global), no valor de 46.579,58 ( quarenta e seis mil, quinhentos e setenta e nove reais e cinquenta e oito centavos), conforme especifica\u00e7\u00f5es constantes no Projeto B\u00e1sico e Memorial Descritivo ANEXOS a este edital, que \u00e9 parte integrante deste Edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Fazenda Varginha, Km 02, Rod. Mg-404 - Zona Rural - Salinas (MG)", + "telefone": "(38) 38417034", + "fax": "(38)38417034" + }, + { + "cidade": "Macei\u00f3", + "uf": "AL", + "cabecalho": [], + "codigo-da-uasg": "158381", + "pregao-eletronico": "82017", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os para eventual aquisi\u00e7\u00e3o de M\u00c1QUINA UNIVERSAL DE ENSAIOS utilizada em o laborat\u00f3rio de Materiais de Constru\u00e7\u00e3o da \u00e1rea de Infraestrutura dos Cursos de Edifica\u00e7\u00f5es, Constru\u00e7\u00e3o de Edif\u00edcios, Estradas e Engenharia Civil.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida do Ferrovia\u0301rio, 530 - Centro - Maceio\u0301 (AL)", + "telefone": "(82) 21267077", + "fax": "(82)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Satuba", + "uf": "AL", + "cabecalho": [], + "codigo-da-uasg": "158382", + "pregao-eletronico": "12018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para futura e eventual aquisi\u00e7\u00e3o de materiais farmacol\u00f3gicos para o Instituto Federal de Alagoas, conforme condi\u00e7\u00f5es, quantidades, exig\u00eancias e estimativas, inclusive as encaminhadas pelos \u00f3rg\u00e3os e entidades participantes, estabelecidas neste instrumento.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua 17 de Agosto S/n Bairro Centro - - Satuba (AL)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "04/06/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 6, + "day": 4 + } + }, + { + "cidade": "Macei\u00f3", + "uf": "AL", + "cabecalho": [], + "codigo-da-uasg": "158147", + "pregao-eletronico": "112018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O presente Termo de Refer\u00eancia tem como finalidade aquisi\u00e7\u00e3o de materiais de consumo a serem utilizados nos cursos ofertados de forma conjunta pelo Programa Nacional de Acesso ao Ensino T\u00e9cnico e Emprego - PRONATEC, em Unidades Remotas do Instituto Federal de alagoas (IFAL) vinculadas aos Campus de Coruripe e Unidade Avan\u00e7ada no Benedito Bentes, cuja especifica\u00e7\u00f5es de Unidades Remotas estar\u00e3o presentes nas respectivas tabelas de produtos a serem adquiridos para o Curso de TORNEIRO MEC\u00c2NICO, SOLDADOR NO PROC. ELETRODO REVESTIDO A\u00c7O CARBONO E A\u00c7O BAIXA LIGA e SOLDADOR NO PROCESSO TIG .", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Odilon de Vasconcelos 103 - Jatiu\u0301ca - Maceio\u0301 (AL)", + "telefone": "(82) 31941157", + "fax": "(82)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Uberaba", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "158099", + "pregao-eletronico": "232018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O presente Preg\u00e3o Eletr\u00f4nico tem como objeto a contrata\u00e7\u00e3o de empresa para presta\u00e7\u00e3o de servi\u00e7o de telecomunica\u00e7\u00e3o de dados e servi\u00e7os de acesso \u00e0 internet para o Instituto Federal de Educa\u00e7\u00e3o, Ci\u00eancia e Tecnologia do Tri\u00e2ngulo Mineiro Campus Avan\u00e7ado Campina Verde.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Dr.randolfo Borges Ju\u0301nior, 2900 - - Uberaba (MG)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Oeste", + "uf": "RO", + "cabecalho": [], + "codigo-da-uasg": "158341", + "pregao-eletronico": "112018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Acervo Bibliografico", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Br 435, Km 63, S/n - Zona Rural - - Colorado do Oeste (RO)", + "telefone": "(69) 33417679", + "fax": "(69)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Crato", + "uf": "CE", + "cabecalho": [], + "codigo-da-uasg": "158321", + "pregao-eletronico": "72018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Escolha de proposta mais vantajosa para a aquisi\u00e7\u00e3o de material de consumo - MATERIAL DE USO FARMACOL\u00d3GICO.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rodovia Ce 292, Km-15, Bairro Gise\u0301lia Pinheiro - Bairro Gise\u0301lia Pinheiro - Crato (CE)", + "telefone": "(88) 35868133", + "fax": "(88)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Confresa", + "uf": "MT", + "cabecalho": [], + "codigo-da-uasg": "158496", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de materiais de consumo para copa para atender a demanda dos campi e reitoria do IFMT", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Vilmar Fernandes 300 Setor Santa Luzia - Santa Luzia - Confresa (MT)", + "telefone": "(66) 35642604", + "fax": "(66)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "30/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 30 + } + }, + { + "cidade": "Castanhal", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "158308", + "pregao-eletronico": "42018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro De Pre\u00e7os Para Futura Aquisi\u00e7\u00e3o De Insumos e Ferramentas Agropecu\u00e1rias Para Atendimento Da Fazenda Escola Do IFPA Campus Castanhal.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rod. Br 316 Km 61 - Saudade Ii - Castanhal (PA)", + "telefone": "(91) 34121605", + "fax": "(91)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Uberl\u00e2ndia", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "158312", + "objeto": "Contrata\u00e7\u00e3o de empresa especializada para a implanta\u00e7\u00e3o do tratamento dos dejetos l\u00edquidos gerados na bovinocultura.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rodovia Munic Joaquim Ferreira S/n Km 9 Faz Sobradinho Zona Rural - - Uberla\u0302ndia (MG)", + "telefone": "", + "fax": "" + }, + { + "cidade": "Barretos", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "158583", + "pregao-eletronico": "55832018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de servi\u00e7o continuado de manuten\u00e7\u00e3o preventiva e corretiva de aparelhos de ar condicionado, com fornecimento de todos os materiais, pe\u00e7as e acess\u00f3rios que forem necess\u00e1rios para execu\u00e7\u00e3o dos servi\u00e7os (exceto os aparelhos de ar condicionado e suas unidades de condensa\u00e7\u00e3o), para o Instituto Federal de Educa\u00e7\u00e3o, Ci\u00eancia e Tecnologia de S\u00e3o Paulo (IFSP) - Campus Barretos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida c 1, 250 - Bairro Ide Daher - Barretos (SP)", + "telefone": "(17) 33120700", + "fax": "(17)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Recife", + "uf": "PE", + "cabecalho": [], + "codigo-da-uasg": "254421", + "objeto": "Presta\u00e7\u00e3o de Servi\u00e7o de Engenharia para Recupera\u00e7\u00e3o de Estruturas Met\u00e1licas e Amplia\u00e7\u00e3o dos Acessos \u00e0s Cobertas do Instituto Aggeu Magalh\u00e3es (IAM), conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas neste Edital e seus Anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Prof. Moraes Rego S/n - Cidade Universitaria - Campus da Ufpe - Recife - Recife (PE)", + "telefone": "(81) 25237841", + "fax": "(81)" + }, + { + "cidade": "Florian\u00f3polis", + "uf": "SC", + "cabecalho": [], + "codigo-da-uasg": "158516", + "pregao-eletronico": "572018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de mobili\u00e1rio para sala de reuni\u00f5es da Reitoria do IFSC", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua 14 de Julho, 150 - Coqueiros - Floriano\u0301polis (SC)", + "telefone": "(48) 38779033", + "fax": "(48)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "160327", + "pregao-eletronico": "102018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de aparelho de scanner.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Praca Gen. Tiburcio, 80 - Praia Vermelha - Urca - Rio de Janeiro (RJ)", + "telefone": "(21)", + "fax": "(21)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Salvador", + "uf": "BA", + "cabecalho": [], + "codigo-da-uasg": "90012", + "pregao-eletronico": "202018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Presta\u00e7\u00e3o de servi\u00e7os de telefonia", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Ulysses Guimaraes, 2799 - Cab Centro Administrativo - Sussuarana - Salvador (BA)", + "telefone": "(71) 36179269", + "fax": "(71)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Luis", + "uf": "MA", + "cabecalho": [], + "codigo-da-uasg": "90004", + "pregao-eletronico": "92018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os para aquisi\u00e7\u00e3o futura de envelope pardo para a Se\u00e7\u00e3o Judici\u00e1ria do Maranh\u00e3o, conforme discrimina\u00e7\u00e3o constante do Termo de Refer\u00eancia Anexo I.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av.senador Vitorino Freire, N. 300, Areinha - - Sa\u0303o Luis (MA)", + "telefone": "(98) 32145754", + "fax": "(98)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Florian\u00f3polis", + "uf": "SC", + "cabecalho": [], + "codigo-da-uasg": "120073", + "pregao-eletronico": "152018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o para a execu\u00e7\u00e3o dos servi\u00e7os de impress\u00e3o e produ\u00e7\u00e3o.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Santos Dumont, S/n - Tapera - (cx Postal 289) - Tapera - Floriano\u0301polis (SC)", + "telefone": "(48) 32295071", + "fax": "(48)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Florian\u00f3polis", + "uf": "SC", + "cabecalho": [], + "codigo-da-uasg": "153163", + "pregao-eletronico": "1602018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os para a eventual aquisi\u00e7\u00e3o de tecidos, linhas, cortinas e tapetes para atender ao Campus Blumenau e ao Campus Ararangu\u00e1 da Universidade Federal de Santa Catarina (UFSC).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Desemb. Vitor Lima 222 S.501 Reitoria 2 Trindade Florian - Trindade - Floriano\u0301polis (SC)", + "telefone": "(48) 37214424", + "fax": "(48)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "30/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 30 + } + }, + { + "cidade": "Florian\u00f3polis", + "uf": "SC", + "cabecalho": [], + "codigo-da-uasg": "153163", + "pregao-eletronico": "1462018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os para a eventual aquisi\u00e7\u00e3o de material agropecu\u00e1rio visando atender ao Departamento de Ci\u00eancia e Tecnologia de Alimentos e ao Departamento de Fitotecnia do Centro de Ci\u00eancias Agr\u00e1rias (CCA), ao Centro de Ci\u00eancias F\u00edsicas e Matem\u00e1ticas (CFM), ao Campus Curitibanos e ao Campus Blumenau da Universidade Federal de Santa Catarina (UFSC).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Desemb. Vitor Lima 222 S.501 Reitoria 2 Trindade Florian - Trindade - Floriano\u0301polis (SC)", + "telefone": "(48) 37214424", + "fax": "(48)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "30/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 30 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "154003", + "pregao-eletronico": "132018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de pessoa jur\u00eddica especializada para presta\u00e7\u00e3o de servi\u00e7os continuados de loca\u00e7\u00e3o de sistema de seguran\u00e7a eletr\u00f4nica incluindo Circuito Fechado de Televis\u00e3o (CFTV), Sistema de Controle de Acesso (SCA) todos integrados entre si, incluindo monitoramento remoto, manuten\u00e7\u00e3o preventiva e corretiva dos equipamentos e sistemas, elabora\u00e7\u00e3o de projetos, instala\u00e7\u00e3o, configura\u00e7\u00e3o e comissionamento dos sistemas visando garantir a seguran\u00e7a e prote\u00e7\u00e3o das pessoas e patrim\u00f4nio nas depend\u00eancias dos edif\u00edcios da Coordena\u00e7\u00e3o de Aperfei\u00e7oamento de Pessoal de N\u00edvel Superior - CAPES.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Setor Banca\u0301rio Norte Quadra 02 Bloco l Lote 06 - - BRASI\u0301LIA (DF)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "154003", + "pregao-eletronico": "92018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada para eventual presta\u00e7\u00e3o de servi\u00e7os de imuniza\u00e7\u00e3o preventiva contra a gripe, incluindo fornecimento e aplica\u00e7\u00e3o (gesto vacinal) de at\u00e9 1.000 doses de vacina combinada tetravalente contra a influenza, conforme condi\u00e7\u00f5es, quantidades, exig\u00eancias e estimativas, inclusive as encaminhadas pelos \u00f3rg\u00e3os e entidades participantes (quando for o caso), estabelecidas neste instrumento.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Setor Banca\u0301rio Norte Quadra 02 Bloco l Lote 06 - - BRASI\u0301LIA (DF)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Cristov\u00e3o", + "uf": "SE", + "cabecalho": [], + "codigo-da-uasg": "154050", + "pregao-eletronico": "382018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa para presta\u00e7\u00e3o de servi\u00e7os de administra\u00e7\u00e3o do fornecimento, gerenciamento, controle e aquisi\u00e7\u00e3o de combust\u00edveis (Gasolina e \u00d3leo Diesel)", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Marechal Rondon, S/n, Bairro Jardim Rosa Elze - - Sa\u0303o Cristova\u0303o (SE)", + "telefone": "(79) 31946955", + "fax": "(79)31946956", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Cristov\u00e3o", + "uf": "SE", + "cabecalho": [], + "codigo-da-uasg": "154050", + "pregao-eletronico": "342018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de material de expediente PARA SUPRIR A DEMANDA DO ALMOXARIFADO CENTRAL DA UFS 2018.", + "edital-a-partir-de-str": "17/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 17 + }, + "endereco": " Av. Marechal Rondon, S/n - Jardim Rosa Elze - Sa\u0303o Cristova\u0303o (SE)", + "telefone": "(79) 31946955", + "fax": "(79)", + "entrega-da-proposta-str": "17/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 17 + }, + "abertura-da-proposta-str": "04/06/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 6, + "day": 4 + } + }, + { + "cidade": "Fora", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "153061", + "pregao-eletronico": "232018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de l\u00e2mpadas para projetores multim\u00eddia para a Universidade Federal de Juiz de Fora, conforme condi\u00e7\u00f5es e exig\u00eancias estabelecidas no Edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Jose\u0301 Lourenc\u0327o Kelmer, S/no - Bairro Sa\u0303o Pedro - Sa\u0303o Pedro - Juiz de Fora (MG)", + "telefone": "(32) 21023742", + "fax": "(32)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Fora", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "153061", + "pregao-eletronico": "112018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O objeto da licita\u00e7\u00e3o \u00e9 a escolha da proposta mais vantajosa para o fornecimento de g\u00e1s liquefeito - GLP, em botij\u00f5es de 13 kg, de forma parcelada, \u00e0 Universidade Federal de Juiz de Fora.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Jose\u0301 Lourenc\u0327o Kelmer, S/no - Bairro Sa\u0303o Pedro - Sa\u0303o Pedro - Juiz de Fora (MG)", + "telefone": "(32) 21023742", + "fax": "(32)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Salvador", + "uf": "BA", + "cabecalho": [], + "codigo-da-uasg": "153040", + "pregao-eletronico": "132018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7o para contrata\u00e7\u00e3o de empresa especializada na presta\u00e7\u00e3o de servi\u00e7o de inspe\u00e7\u00e3o e certifica\u00e7\u00e3o e fornecimento de filtro para cabines de seguran\u00e7a biol\u00f3gica (capela de fluxo laminar) do Complexo Hospitalar Prof. Edgard Santos (COMPLEXO HUPES).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Augusto Viana,s/n - Canela - Canela - Salvador (BA)", + "telefone": "(71) 32838166", + "fax": "(71)32838193", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Vista", + "uf": "MS", + "cabecalho": [], + "codigo-da-uasg": "160133", + "pregao-eletronico": "12018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de g\u00eaneros de alimenta\u00e7\u00e3o para o 10\u00ba Regimento de Cavalaria Mecanizado.", + "edital-a-partir-de-str": "14/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 14 + }, + "endereco": " Pca Cmt Pedro Rufino, Nr. 627 - Centro - - Bela Vista (MS)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "14/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 14 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Barueri", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "160529", + "pregao-eletronico": "292017", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de cabine de pintura.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rodovia Marechal Rondon, Km 29 - Centro - - Barueri (SP)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Araraquara", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "170322", + "pregao-eletronico": "12018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Servi\u00e7os continuados de limpeza, asseio e conserva\u00e7\u00e3o, com fornecimento de materiais domissanit\u00e1rios.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida Rodrigo Fernando Grillo, 2775 - Jardim Das Flores - Jardim Das Flores - Araraquara (SP)", + "telefone": "(16) 33053112", + "fax": "(16)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "29/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 29 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "280101", + "pregao-eletronico": "102018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de servi\u00e7os para aquisi\u00e7\u00e3o e aplica\u00e7\u00e3o de 788 (setecentos oitenta e oito) doses de vacina contra o v\u00edrus quadrivalente da gripe (influenza) recomendado pela Organiza\u00e7\u00e3o Mundial de Sa\u00fade - OMS para a temporada 2018, conforme especificado na Resolu\u00e7\u00e3o ANVISA RE N\u00ba 2.696, de 6 de outubro de 2017.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Esplanada Dos Ministe\u0301rios Bl. j - Asa Norte - Zona Ci\u0301vica Administrativa - BRASI\u0301LIA (DF)", + "telefone": "(61) 20278034", + "fax": "(61)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "td-style-padding": "925153", + "pregao-eletronico": "542018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de geladeiras e frigobares (SISTEMA DE REGISTRO DE PRE\u00c7OS).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Marechal Ca\u0302mara, No 350, 9o Andar - Centro - - Rio de Janeiro (RJ)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Velho", + "uf": "RO", + "cabecalho": [], + "codigo-da-uasg": "925040", + "pregao-eletronico": "162018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Forma\u00e7\u00e3o de Registro de Pre\u00e7os para contrata\u00e7\u00e3o, sob demanda, de servi\u00e7os de manuten\u00e7\u00e3o predial nas edifica\u00e7\u00f5es do Minist\u00e9rio P\u00fablico do Estado de Rond\u00f4nia (capital e interior)", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Jamari - 1555 - Olaria - Porto Velho (RO)", + "telefone": "(69) 32163853", + "fax": "(69)32163974", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "29/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 29 + } + }, + { + "cidade": "Velho", + "uf": "RO", + "cabecalho": [], + "codigo-da-uasg": "925040", + "pregao-eletronico": "132018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Forma\u00e7\u00e3o de Registro de Pre\u00e7os para aquisi\u00e7\u00e3o de g\u00eaneros aliment\u00edcios (a\u00e7\u00facar, ado\u00e7ante, leite e caf\u00e9) visando atender as necessidades do Minist\u00e9rio P\u00fablico do Estado de Rond\u00f4nia.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Jamari - 1555 - Olaria - Porto Velho (RO)", + "telefone": "(69) 32163969", + "fax": "(69)32163974", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "29/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 29 + } + }, + { + "cidade": "Bel\u00e9m", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "925980", + "pregao-eletronico": "172018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para contrata\u00e7\u00e3o de empresa especializada na presta\u00e7\u00e3o de servi\u00e7os de loca\u00e7\u00e3o de ve\u00edculos sem motorista, por quilometragem livre, sem combust\u00edvel", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Joa\u0303o Diogo No 100, 1o Andar - - Bele\u0301m (PA)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Recife", + "uf": "PE", + "cabecalho": [], + "codigo-da-uasg": "200008", + "pregao-eletronico": "232018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de pessoa jur\u00eddica para presta\u00e7\u00e3o de servi\u00e7os de copeiragem, para atender \u00e0 Procuradoria de Justi\u00e7a Militar em Recife/PE PJM/PE, conforme especifica\u00e7\u00f5es e condi\u00e7\u00f5es do Edital e seus Anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Medeiros e Albuquerque, No 117 - Grac\u0327as - Recife (PE)", + "telefone": "(61) 32557460", + "fax": "(61)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "200008", + "pregao-eletronico": "222018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de pessoa jur\u00eddica para presta\u00e7\u00e3o de servi\u00e7os de reprodu\u00e7\u00e3o de c\u00f3pias e impress\u00f5es monocrom\u00e1ticas, conforme as especifica\u00e7\u00f5es do Edital, visando atender \u00e0 Procuradoria-Geral de Justi\u00e7a Militar - PGJM e as Procuradorias de Justi\u00e7a Militar nos Estados e no Distrito Federal.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Setor de Embaixadas Norte, Lote No 43 - Asa Norte - BRASI\u0301LIA (DF)", + "telefone": "(61) 32557460", + "fax": "(61)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Bel\u00e9m", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "160074", + "pregao-eletronico": "122018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Eventual aquisi\u00e7\u00e3o de pe\u00e7as de motores de POPA ,que atendam \u00e0s mesmas especifica\u00e7\u00f5es t\u00e9cnicas e padr\u00f5es de qualidade das pe\u00e7as de produ\u00e7\u00e3o original/genu\u00edna (ABNT NBR 15296/2015), como crit\u00e9rio de julgamento maior desconto dentro do tipo de licita\u00e7\u00e3o menor pre\u00e7o\u00b4 com base no valor das pe\u00e7as das tabelas das fabricantes/montadoras, com possibilidade de consulta por interm\u00e9dio de Software de Or\u00e7amenta\u00e7\u00e3o Eletr\u00f4nica de empresa especializada.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Tv. Pedro A\u0301lvares Cabral, 1106, Prox. Tavares Bastos / Marambaia - - Bele\u0301m (PA)", + "telefone": "(91) 32432327", + "fax": "(91)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Branco", + "uf": "PR", + "cabecalho": [], + "codigo-da-uasg": "450996", + "pregao-eletronico": "202018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - A presente licita\u00e7\u00e3o tem por objeto a implanta\u00e7\u00e3o de Registro de Pre\u00e7os para futura e eventual aquisi\u00e7\u00e3o de Materiais M\u00e9dicos Odontol\u00f3gicos, atendendo as necessidades do Centro de Especialidades Odontol\u00f3gicas CEO, bem como \u00e0s Unidades B\u00e1sicas de Sa\u00fade - UBS, atendendo as necessidades da Secretaria Municipal de Sa\u00fade.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Caramuru, 271 - - Pato Branco (PR)", + "telefone": "(46) 32201511", + "fax": "(46)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "08/06/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 6, + "day": 8 + } + }, + { + "cidade": "Paulo", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "925104", + "pregao-eletronico": "1692018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - AQUISI\u00c7\u00c3O DE FIO KIT OBSTETR\u00cdCIA COMPOSTO DE 3 FIOS E FIO SINT\u00c9TICO ABSORVIVEL MONOFILAMENTAR 4-0, AG 1,9 CM, 3/8 CIRC, TRI PARA AS UNIDADES DA AUTARQUIA HOSPITALAR MUNICIPAL. Srs. Licitantes, favor atentar para o Descritivo do objeto - Anexo I do Edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida Paulista, No 07 - Bela Vista - Sa\u0303o Paulo (SP)", + "telefone": "(11) 33946800", + "fax": "(11)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "11/06/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 6, + "day": 11 + } + }, + { + "cidade": "Paulo", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "925104", + "pregao-eletronico": "1672018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - AQUISI\u00c7\u00c3O DE FIO DE POLIPROPILENO 3-0, 2 AG, 3,0 CM, 1/2 CIRC, CIL, 90 CM, FIO DE POLIPROPILENO 5-0, 2 AG, 1,5 CM, 1/2 CIRC, CIL, 75CM, FIO DE POLIPROPILENO 6-0, 2 AG, 1,3 CM, 3/8 CIRC, CIL, 75 CM, FIO SINT\u00c9TICO ABSORV\u00cdVEL TRAN\u00c7ADO 0, AG 3,0 CM, 3/8 CIRC, CIL, 70 CM, FIO SINT\u00c9TICO ABSORV\u00cdVEL TRAN\u00c7ADO 1, AG 3,5 CM, 1/2 CIRC, TRI, 70 CM, FIO SINT\u00c9TICO ABSORV\u00cdVEL TRAN\u00c7ADO 2-0, AG 4,0 CM, 1/2 CIRC, CIL, 70 CM e FIO DE POLI\u00c9STER C/ COBERTURA TRAN\u00c7ADO 2-0, 2 AG 2,2 CM, \u00bd CIRC, CIL, 75 CMPARA UNIDADES AUTARQUIA HOSPITALAR MUNICIPAL. Srs. Licitantes, favor atentar p o Descritivo do Objeto - Anexo I do Edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida Paulista, No 07 - Bela Vista - Sa\u0303o Paulo (SP)", + "telefone": "(11) 33946800", + "fax": "(11)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "13/06/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 6, + "day": 13 + } + }, + { + "cidade": "Paulo", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "925218", + "pregao-eletronico": "252018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - CONTRATA\u00c7\u00c3O DE EMPRESA ESPECIALIZADA NA PRESTA\u00c7\u00c3O DE SERVI\u00c7OS DE REMO\u00c7\u00c3O E TRANSPORTE DE EQUIPAMENTOS INSERV\u00cdVEIS DE PORTES LEVE E PESADO. Descritivo completo verificar ANEXO I do edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Santa Isabel, 181 - 11o Andar - Vila Buarque - Sa\u0303o Paulo (SP)", + "telefone": "(11) 33978252", + "fax": "(11)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Paulo", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "925218", + "pregao-eletronico": "242018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - AQUISI\u00c7\u00c3O DE ADESIVOS PARA FAIXA DE SINALIZA\u00c7\u00c3O E COMPROVANTES DE VACINA\u00c7\u00c3O 2018. Senhores Licitantes atentar-se somente nas descri\u00e7\u00f5es dos materiais contidas no Anexo I do edital para elaborarem suas propostas, pois as descri\u00e7\u00f5es dos CATMAT\u00b4s dos materiais nem sempre s\u00e3o totalmente compat\u00edveis com o solicitado.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Santa Isabel, No 181 11o Andar - Vila Buarque - Sa\u0303o Paulo (SP)", + "telefone": "(11) 33978251", + "fax": "(11)33978215", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Paulo", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "925211", + "pregao-eletronico": "42018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada m Loca\u00e7\u00e3o de Duplicador Digital com Operador", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Fernandes Moreira, 1470 - Chacara Santo Antonio - Sa\u0303o Paulo (SP)", + "telefone": "(11) 20751253", + "fax": "(11)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Bel\u00e9m", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "925621", + "pregao-eletronico": "92018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o, pelo menor pre\u00e7o por item/lote, de empresa especializada na presta\u00e7\u00e3o de servi\u00e7os, por demanda, de imuniza\u00e7\u00e3o e controle de pragas (desinsetiza\u00e7\u00e3o, desratiza\u00e7\u00e3o, descupiniza\u00e7\u00e3o), repel\u00eancia/desalojamento de morcego e pombo com desinfec\u00e7\u00e3o e desinsetiza\u00e7\u00e3o de seus piolhos, limpeza e esgotamento de fossas, sumidouros, caixas de gordura e tubula\u00e7\u00f5es em geral nas instala\u00e7\u00f5es dos im\u00f3veis da Pol\u00edcia Civil", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Magalha\u0303es Barata, 209, Bairro de Nazare\u0301 - Nazare - Bele\u0301m (PA)", + "telefone": "(91) 32426148", + "fax": "(91)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "td-style-padding": "926015", + "pregao-eletronico": "232018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada para realizar os servi\u00e7os de limpeza, descontamina\u00e7\u00e3o qu\u00edmica e bacteriol\u00f3gica, troca de pe\u00e7as danificadas e ou desgastadas, calibra\u00e7\u00e3o e Emiss\u00e3o de Certificado de Conformidade para 58 (cinquenta e oito) micropipetas autom\u00e1ticas de precis\u00e3o e 24 (vinte e quatro) micropipetas eletr\u00f4nicas, da marca Gilson, utilizadas pelo Instituto de Pesquisa de DNA Forense da Pol\u00edcia Civil do Distrito Federal, conforme especifica\u00e7\u00f5es e condi\u00e7\u00f5es estabelecidas no termo de refer\u00eancia constante do Anexo I do Edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Sai/so Bloco a 1o Andar - Spo - BRASI\u0301LIA (DF)", + "telefone": "(61) 32074071", + "fax": "(61)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Londrina", + "uf": "PR", + "cabecalho": [], + "td-style-padding": "987667", + "pregao-eletronico": "762018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Equipamentos Permanentes para Academias ao Ar Livre e Futebol.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Duque de Caxias, 635, Jardim Mazzei - Mazzei - Londrina (PR)", + "telefone": "(43) 33724953", + "fax": "(43)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Tomazina", + "uf": "PR", + "cabecalho": [], + "codigo-da-uasg": "987929", + "pregao-eletronico": "232018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Caminh\u00e3o Ca\u00e7amba Basculante 6x4 com Pot\u00eancia Minima efetiva de 270 CV, conforme caracter\u00edsticas T\u00e9cnicas constantes no modelo 7 do Edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Prac\u0327a Tenente Joa\u0303o Jose\u0301 Ribeiro, 99 - Centro - Centro - Tomazina (PR)", + "telefone": "(43) 35631133", + "fax": "(43)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Tomazina", + "uf": "PR", + "cabecalho": [], + "codigo-da-uasg": "987929", + "pregao-eletronico": "222018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Ve\u00edculo Utilit\u00e1rio sendo: Lote 1 - 01 (UM) Ve\u00edculo Utilit\u00e1rio tipo PICK UP, capacidade 2 passageiros, carga \u00fatil 1.000kg, pot\u00eancia m\u00ednima de 140 CV", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Prac\u0327a Tenente Joa\u0303o Jose\u0301 Ribeiro, 99 - Centro - Centro - Tomazina (PR)", + "telefone": "(43) 35631133", + "fax": "(43)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Tomazina", + "uf": "PR", + "cabecalho": [], + "codigo-da-uasg": "987929", + "pregao-eletronico": "212018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Caminh\u00e3o Ca\u00e7amba Basculante 6x4 com Pot\u00eancia Minima efetiva de 270 CV, conforme caracter\u00edsticas T\u00e9cnicas constantes no modelo 7 do Edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Prac\u0327a Tenente Joa\u0303o Jose\u0301 Ribeiro, 99 - Centro - Centro - Tomazina (PR)", + "telefone": "(43) 35631133", + "fax": "(43)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Tomazina", + "uf": "PR", + "cabecalho": [], + "codigo-da-uasg": "987929", + "pregao-eletronico": "202018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Caminh\u00e3o Ca\u00e7amba Basculante 6x4 com Pot\u00eancia Minima efetiva de 270 CV, conforme caracter\u00edsticas T\u00e9cnicas constantes no modelo 7 do Edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Prac\u0327a Tenente Joa\u0303o Jose\u0301 Ribeiro, 99 - Centro - Centro - Tomazina (PR)", + "telefone": "(43) 35631133", + "fax": "(43)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Ita\u00fana", + "uf": "MG", + "cabecalho": [], + "td-style-padding": "984675", + "pregao-eletronico": "2022017", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para poss\u00edvel aquisi\u00e7\u00e3o de medicamentos para fornecimento a pacientes, atrav\u00e9s de mandado judicial; conforme descri\u00e7\u00f5es constantes no Anexo I do Edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Prac\u0327a Dr Augusto Gonc\u0327alves - Centro - Itau\u0301na (MG)", + "telefone": "(37) 32414999", + "fax": "(37)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Pinhais", + "uf": "PR", + "cabecalho": [], + "codigo-da-uasg": "987885", + "pregao-eletronico": "962018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - REGISTRO DE PRE\u00c7OS para presta\u00e7\u00e3o de servi\u00e7os de atendimento a emerg\u00eancias m\u00e9dicas em ambul\u00e2ncias tipo B suporte b\u00e1sico e D - suporte avan\u00e7ado para atendimento ao p\u00fablico, atletas e servidores durante as competi\u00e7\u00f5es esportivas, festas e outros eventos promovidos pela Secretaria Municipal de Esporte e Lazer e as demais Secretarias do Munic\u00edpio", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Passos de Oliveira, 1101 - Centro, - - Sa\u0303o Jose\u0301 dos Pinhais (PR)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Pinhais", + "uf": "PR", + "cabecalho": [], + "codigo-da-uasg": "987885", + "pregao-eletronico": "922018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - REGISTRO DE PRE\u00c7OS para aquisi\u00e7\u00e3o, recarga, servi\u00e7os de manuten\u00e7\u00e3o e reparos de extintores prediais.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Passos de Oliveira, 1101 - Centro, - - Sa\u0303o Jose\u0301 dos Pinhais (PR)", + "telefone": "(41) 33816693", + "fax": "(41)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "986001", + "pregao-eletronico": "1832018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7o para Aquisi\u00e7\u00e3o de Ponteiras de Ultrassom Odontol\u00f3gico, classe 6520, para as Unidades de Sa\u00fade da Aten\u00e7\u00e3o B\u00e1sica do Munic\u00edpio do Rio de Janeiro, que n\u00e3o s\u00e3o mantidas pelo contrato de gest\u00e3o com as Organiza\u00e7\u00f5es Sociais de Sa\u00fade.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": "RuaAfonsoCavalcanti,nr.455CidadeNovaTel.02122735413Fax021--RiodeJaneiro(RJ)", + "telefone": "(21) 29762022", + "fax": "(21)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "986001", + "pregao-eletronico": "1822018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Puxador escovado, fechadura, rod\u00edzio cinza, passa fio e dobradi\u00e7a de press\u00e3o.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Major A\u0301vila, 358 - Te\u0301rreo - Tijuca - Rio de Janeiro (RJ)", + "telefone": "(21) 22147040", + "fax": "(21)22147080", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "986001", + "pregao-eletronico": "1802018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de tela galvanizada e arame galvanizado, revestidos em PVC, verde.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Major A\u0301vila, 358 - Te\u0301rreo - Tijuca - Rio de Janeiro (RJ)", + "telefone": "(21) 22147040", + "fax": "(21)22147080", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Grande", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "988815", + "pregao-eletronico": "202018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de material de consumo - Aquisi\u00e7\u00e3o de \u00f3leos, lubrificantes e flu\u00eddos de freio para a manuten\u00e7\u00e3o de frota da SMI", + "edital-a-partir-de-str": "14/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 14 + }, + "endereco": " Gen. Bacelar, 264 2 \u0308 Andar - Centro - Rio Grande (RS)", + "telefone": "(53) 32336055", + "fax": "(53)", + "entrega-da-proposta-str": "14/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 14 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Grande", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "988815", + "pregao-eletronico": "162018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de equipamento e material permanente - Equipamento de processamento de dados.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Gen. Bacelar, 264 2 \u0308 Andar - Centro - Rio Grande (RS)", + "telefone": "(53) 32336055", + "fax": "(53)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Ariquemes", + "uf": "RO", + "cabecalho": [], + "codigo-da-uasg": "450522", + "pregao-eletronico": "192018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o e instala\u00e7\u00e3o de 03 (tr\u00eas) parques infantis, para atender as necessidades das escolas: Henrique Dias, Pedro Louback e Eva dos Santos de Oliveira, atrav\u00e9s da Secretaria Municipal de Educa\u00e7\u00e3o.", + "edital-a-partir-de-str": "14/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 14 + }, + "endereco": " Avenida Trancredo Neves, 2166 Setor Institucional - - Ariquemes (RO)", + "telefone": "(69) 35162021", + "fax": "(69)", + "entrega-da-proposta-str": "14/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 14 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Bel\u00e9m", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "925387", + "pregao-eletronico": "472018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Futura e eventual AQUISI\u00c7\u00c3O DE PURIFICADORES E REFIS DE \u00c1GUA , da GUARDA MUNICIPAL DE BEL\u00c9M GMB, pelo per\u00edodo de 12 (doze) meses, conforme especifica\u00e7\u00f5es, quantidades estimadas e condi\u00e7\u00f5es estabelecidas neste Edital e seus Anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Gov. Jose\u0301 Malcher, 2110 - Sa\u0303o Braz - Bele\u0301m (PA)", + "telefone": "(91) 32029919", + "fax": "(91)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Jacare\u00ed", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "986589", + "pregao-eletronico": "702018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para fornecimento de material hospitalar - grupo 05", + "edital-a-partir-de-str": "14/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 14 + }, + "endereco": " Prac\u0327a Dos Tre\u0302s Poderes 73 Centro Jacarei - Centro - Jacarei\u0301 (SP)", + "telefone": "(12) 39559045", + "fax": "(12)", + "entrega-da-proposta-str": "14/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 14 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Jaru", + "uf": "RO", + "cabecalho": [], + "codigo-da-uasg": "453187", + "pregao-eletronico": "562018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - REGISTRO DE PRE\u00c7O para Eventual e Futura Aquisi\u00e7\u00e3o de M\u00e1quina Pesada, sendo (Caminh\u00e3o Basculante e Retroescavadeira).", + "edital-a-partir-de-str": "17/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 17 + }, + "endereco": " Rua Raimundo Cantanhede 1080 - Setor 02 - Jaru (RO)", + "telefone": "(69) 35216993", + "fax": "(69)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "01/06/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 6, + "day": 1 + } + }, + { + "cidade": "Jaru", + "uf": "RO", + "cabecalho": [], + "codigo-da-uasg": "453187", + "pregao-eletronico": "552018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Insumos Para Raio X.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Raimundo Cantanhede - Setor 02 - Jaru (RO)", + "telefone": "(69) 35216993", + "fax": "(69)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Jaru", + "uf": "RO", + "cabecalho": [], + "codigo-da-uasg": "453187", + "pregao-eletronico": "542018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os Para Eventual e Futura Aquisi\u00e7\u00e3o de Material de Consumo, Manuten\u00e7\u00e3o, Permanente, Ferramentas e Fiscaliza\u00e7\u00e3o das Vias P\u00fablicas do Munic\u00edpio.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Raimundo Cantanhede 1080 - Setor 02 - Jaru (RO)", + "telefone": "(69) 35216993", + "fax": "(69)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Jaru", + "uf": "RO", + "cabecalho": [], + "codigo-da-uasg": "453187", + "pregao-eletronico": "532018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7o Para Futura e Eventual Aquisi\u00e7\u00e3o de Placas de Sinaliza\u00e7\u00e3o.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Raimundo Cantanhede 1080 - Setor 02 - Jaru (RO)", + "telefone": "(69) 35216993", + "fax": "(69)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Jaru", + "uf": "RO", + "cabecalho": [], + "codigo-da-uasg": "453187", + "pregao-eletronico": "522018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7o Para Futura e Eventual AQUISI\u00c7\u00c3O DE MATERIAIS EL\u00c9TRICO.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Raimundo Cantanhede 1080 - Setor 02 - Jaru (RO)", + "telefone": "(69) 35216993", + "fax": "(69)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Quitandinha", + "uf": "PR", + "cabecalho": [], + "codigo-da-uasg": "454811", + "pregao-eletronico": "342018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de veiculo micro \u00f4nibus", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Jose de Sa Ribas 238 Centro - Centro - Quitandinha (PR)", + "telefone": "(41) 36231231", + "fax": "(41)36232118", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Luis", + "uf": "MA", + "cabecalho": [], + "codigo-da-uasg": "980921", + "pregao-eletronico": "802018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - A presente licita\u00e7\u00e3o tem como objeto contrata\u00e7\u00e3o de empresa especializada na confec\u00e7\u00e3o de placas de identifica\u00e7\u00e3o, conforme especifica\u00e7\u00f5es constantes do Anexo I - Termo de Refer\u00eancia.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Dos Ouric\u0327os, Lote 11, Quadra 09, Cep 65071-820 - Calhau - Sa\u0303o Luis (MA)", + "telefone": "(98) 32277749", + "fax": "(98)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Redonda", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "450068", + "pregao-eletronico": "1012018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Baterias automotivas", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Prac\u0327a Sa\u0301vio Gama, 63 - Aterrado - Volta Redonda (RJ)", + "telefone": "(24) 33399037", + "fax": "(24)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "04/06/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 6, + "day": 4 + } + }, + { + "cidade": "Redonda", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "450068", + "pregao-eletronico": "992018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de No-Break", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Prac\u0327a Sa\u0301vio Gama, No 53 - Aterrado - Volta Redonda (RJ)", + "telefone": "(24) 33399037", + "fax": "(24)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Redonda", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "450068", + "pregao-eletronico": "982018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de Empresa Especializada no Fornecimento de Alimenta\u00e7\u00e3o Escolar", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Prac\u0327a Sa\u0301vio Gama, No 53 - Aterrado - Volta Redonda (RJ)", + "telefone": "(24) 33399037", + "fax": "(24)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Redonda", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "450068", + "pregao-eletronico": "952018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Servi\u00e7os Gr\u00e1ficos", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Prac\u0327a Sa\u0301vio Gama, No 53 - Aterrado - Volta Redonda (RJ)", + "telefone": "(24) 33399037", + "fax": "(24)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Redonda", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "450068", + "pregao-eletronico": "932018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa para executar servi\u00e7o de recauchutagem de pneus a frio.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Prac\u0327a Sa\u0301vio Gama, No 53 Aterrado - - Volta Redonda (RJ)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Pessoa", + "uf": "PB", + "cabecalho": [], + "codigo-da-uasg": "200087", + "pregao-eletronico": "82018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7o, para eventual aquisi\u00e7\u00e3o de aparelhos eletrodom\u00e9sticos e equipamentos de v\u00eddeo e som, para atender a demanda da Procuradoria da Rep\u00fablica na Para\u00edba e de suas Unidades municipais no Estado da Para\u00edba.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Epita\u0301cio Pessoa, No 1.800 - Expediciona\u0301rios - Joa\u0303o Pessoa (PB)", + "telefone": "(83) 30446279", + "fax": "(83)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Curitiba", + "uf": "PR", + "cabecalho": [], + "codigo-da-uasg": "200053", + "pregao-eletronico": "102018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os visando a contrata\u00e7\u00e3o de empresa(s) para fornecimento de materiais de manuten\u00e7\u00e3o predial, com fretes, seguros e demais despesas consideradas inclusas, para a Procuradoria da Rep\u00fablica no Paran\u00e1, em Curitiba/PR.", + "edital-a-partir-de-str": "14/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 14 + }, + "endereco": " Rua Marechal Deodoro, 933 - Centro - Curitiba (PR)", + "telefone": "(41)", + "fax": "(41)32198886", + "entrega-da-proposta-str": "14/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 14 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Salvador", + "uf": "BA", + "cabecalho": [], + "codigo-da-uasg": "926302", + "pregao-eletronico": "412018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os de etiqueta e fita da marca Brother", + "edital-a-partir-de-str": "15/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 15 + }, + "endereco": " 5a Avenida, No 750, Centro Administrativo da Bahia - - Salvador (BA)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Vista", + "uf": "RR", + "cabecalho": [], + "codigo-da-uasg": "926196", + "pregao-eletronico": "62018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada na realiza\u00e7\u00e3o de recarga de 88 (oitenta e oito) extintores de inc\u00eandio, nas quantidades e especifica\u00e7\u00f5es constantes no Termo de Refer\u00eancia Anexo I do Edital, para atender ao Minist\u00e9rio P\u00fablico do Estado de Roraima.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Santos Dumont No 710 - Sa\u0303o Pedro - - Boa Vista (RR)", + "telefone": "(95) 91142159", + "fax": "(95)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Branco", + "uf": "AC", + "cabecalho": [], + "codigo-da-uasg": "925141", + "pregao-eletronico": "152018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de botinas de seguran\u00e7a.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Nac\u0327o\u0303es Unidas, No 3535 - Estac\u0327a\u0303o Experintental - Rio Branco (AC)", + "telefone": "(68) 32144737", + "fax": "(68)32144773", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Natal", + "uf": "RN", + "cabecalho": [], + "codigo-da-uasg": "925377", + "pregao-eletronico": "102018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Material de Consumo: (expediente).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Br 101 - Centro Administrativo - Bl. Iii 2 Andar - Lagoa Nova - Lagoa Nova - Natal (RN)", + "telefone": "(84) 32321318", + "fax": "(84)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "30/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 30 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "200100", + "pregao-eletronico": "262018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada na presta\u00e7\u00e3o de servi\u00e7os de adequa\u00e7\u00e3o de sistemas de capta\u00e7\u00e3o, exibi\u00e7\u00e3o e grava\u00e7\u00e3o de imagens, com fornecimento e instala\u00e7\u00e3o de equipamentos, a fim de atualizar os sistemas existentes no audit\u00f3rio Juscelino Kubitschek e no audit\u00f3rio do Conselho Superior do Minist\u00e9rio P\u00fablico Federal, ambos localizados no Edif\u00edcio Sede da Procuradoria Geral da Rep\u00fablica.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Saf Sul, Qd. 4, Conj. \u0301c \u0301, Blocos de \u0301a \u0301 a \u0301f \u0301 - Plano Piloto - - BRASI\u0301LIA (DF)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "160089", + "pregao-eletronico": "22018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de pan\u00f3plias, distintivos, tapetes e bras\u00e3o, conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas no Edital e seus anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida do Exe\u0301rcito - Qgex - Bloco i - 2 \u0308 Piso - Smu - BRASI\u0301LIA (DF)", + "telefone": "(61) 20353180", + "fax": "(61)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Branco", + "uf": "AC", + "cabecalho": [], + "codigo-da-uasg": "925307", + "pregao-eletronico": "742018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de VE\u00cdCULO TIPO CAMINHONETE COM XADREZ (ve\u00edculo com cela), CAMINHONETE SEM XADREZ (ve\u00edculo sem cela), MICRO-\u00d4NIBUS e CAMINHONETE SIMPLES, zero Km, para atender \u00e0 Secretaria de Estado de Seguran\u00e7a P\u00fablica - SESP, atrav\u00e9s do Conv\u00eanio n\u00a8 853691/2017/SENASP/MJ (Reaparelhamento das Unidades do SISP), solicitado por meio do Of\u00edcio n\u00ba. 489/2018/GAB/SESP.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Estrada do Avia\u0301rio 927 - Avia\u0301rio - Rio Branco (AC)", + "telefone": "(68) 32154603", + "fax": "(68)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Bel\u00e9m", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "925887", + "pregao-eletronico": "42018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de material de consumo, para atender necessidades da Secretaria de Estado de Comunica\u00e7\u00e3o SECOM, conforme detalhamento constante no Anexo I - Termo de Refer\u00eancia.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Dr. Freitas 2531 - Pedreira - Bele\u0301m (PA)", + "telefone": "(91) 32020900", + "fax": "(91)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Bel\u00e9m", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "925315", + "pregao-eletronico": "242018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresas para fornecimento de MATERIAL DE CONSUMO para atender as demandas desta Secretaria.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rodovia Br 316, Km \u03010 \u0301 - Ed. Acsimo\u0303es - Castanheira - Bele\u0301m (PA)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Bel\u00e9m", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "925799", + "pregao-eletronico": "102018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de Empresa Especializada no Fornecimento de Bebedouros", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Travessa Lomas Valentina, No 2717 - Bairro Marco - - Bele\u0301m (PA)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "926119", + "pregao-eletronico": "1642018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de material de consumo de PAPEL GRAU CIR\u00daRGICO e outros em sistema de registro de pre\u00e7os para atender \u00e0s necessidades da Secretaria de Sa\u00fade DF, conforme especifica\u00e7\u00f5es e quantitativos constantes no Anexo I do Edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Sain - Parque Rural Estac\u0327a\u0303o Biologica-asa Norte 1o Andar Sala 124 - Asa Norte - BRASI\u0301LIA (DF)", + "telefone": "(61) 91652175", + "fax": "(61)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "926119", + "pregao-eletronico": "1632018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o regular do material de consumo: HEMOST\u00c1TICO ABSORV\u00cdVEL ESPONJA DE GELATINA LIOFILIZADA EST\u00c9RIL e FIO DE SUTURA em sistema de registro de pre\u00e7os, para atender \u00e0s necessidades da Secretaria de Sa\u00fade DF, conforme especifica\u00e7\u00f5es e quantitativos constantes no Anexo I do Edital.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Sain - Parque Rural Estac\u0327a\u0303o Biologica-asa Norte 1o Andar Sala 124 - Asa Norte - BRASI\u0301LIA (DF)", + "telefone": "(61) 91652175", + "fax": "(61)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Bel\u00e9m", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "925856", + "pregao-eletronico": "1042018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Medicamentos para atender pacientes da URE/DIPE/SESPA.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Joa\u0303o Paulo Ii No 602 2o Andar - Marco - Bele\u0301m (PA)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Caruar\u00fa", + "uf": "PE", + "cabecalho": [], + "codigo-da-uasg": "926809", + "pregao-eletronico": "12018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Ddsdksmdlksamd vwabdjhqwbjh", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida Vera Cruz No 654 - Bairro Sa\u0303o Francisco - - Caruaru\u0301 (PE)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "50001", + "pregao-eletronico": "792018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de mesas de higieniza\u00e7\u00e3o.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Safs Quadra 06 Lote 01-trecho 03-administracao 01 Andar - Asa Sul - BRASI\u0301LIA (DF)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Paulo", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "925068", + "pregao-eletronico": "82018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - A aquisi\u00e7\u00e3o de diversos materiais para execu\u00e7\u00e3o de servi\u00e7os de manuten\u00e7\u00e3o, conserva\u00e7\u00e3o e reforma em v\u00e1rios locais na circunscri\u00e7\u00e3o da Prefeitura Regional Capela do Socorro, conforme especifica\u00e7\u00f5es constantes do Anexo I deste Edital.", + "edital-a-partir-de-str": "16/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 16 + }, + "endereco": " Rua Cassiano Dos Santos, 499 - Jd. Cliper/sp - - Sa\u0303o Paulo (SP)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "16/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 16 + }, + "abertura-da-proposta-str": "29/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 29 + } + }, + { + "cidade": "Paulo", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "926392", + "pregao-eletronico": "102018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Tubos de A\u00e7o Galvanizados.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Candapui, 492 - Vila Marieta - Vila Marieta - Sa\u0303o Paulo (SP)", + "telefone": "(11) 33975114", + "fax": "(11)33975225", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Paulo", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "170133", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O objeto da presente licita\u00e7\u00e3o \u00e9 a escolha da proposta mais vantajosa para a contrata\u00e7\u00e3o dos seguintes servi\u00e7os: 1. servi\u00e7os n\u00e3o continuados de fornecimento e instala\u00e7\u00e3o de pe\u00e7as, conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas no Edital e anexos; 2. servi\u00e7os continuados de manuten\u00e7\u00e3o preventiva e corretiva de elevadores, com fornecimento de pe\u00e7as, conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas no Edital e anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Prestes Maia, 733, 11 Andar - Luz - Sa\u0303o Paulo (SP)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Alegre", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "110097", + "pregao-eletronico": "82018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Escolha da proposta mais vantajosa para a contrata\u00e7\u00e3o de servi\u00e7os de mudan\u00e7a: desmontagem, embalagem, carregamento, transporte rodovi\u00e1rio local de carga, descarregamento, desembalagem, montagem de m\u00f3veis comerciais, equipamentos (mec\u00e2nicos, eletr\u00f4nicos, eletrodom\u00e9sticos e de inform\u00e1tica), materiais de escrit\u00f3rio, documentos arquiv\u00edsticos, alimentos, ferramentas, ornamentos e demais, conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas no Edital e seus anexo, em Curitiba/PR", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Mostardeiro, 483 - Independe\u0302ncia - Porto Alegre (RS)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Bel\u00e9m", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "533013", + "pregao-eletronico": "52018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os para futura contrata\u00e7\u00e3o de empresa especializada para execu\u00e7\u00e3o indireta dos servi\u00e7os de transporte de servidores em servi\u00e7o \u00e0 SUDAM, incluindo a disponibiliza\u00e7\u00e3o de ve\u00edculos com motoristas, ve\u00edculos sem motoristas ou somente motoristas para conduzir a frota veicular de propriedade da SUDAM,", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Tv Antonio Baena No1.113 Bairro Marco - - Bele\u0301m (PA)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Velho", + "uf": "RO", + "cabecalho": [], + "codigo-da-uasg": "925373", + "pregao-eletronico": "2362018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os para futura e eventual aquisi\u00e7\u00e3o de artigos de uso m\u00e9dico-hospitalar (materiais de consumo: descart\u00e1veis, instrumentais e insumos), conforme quantidades, condi\u00e7\u00f5es e exig\u00eancias estabelecidas no presente Termo de Refer\u00eancia e seus anexos, a fim de atender \u00e0s demandas do Instituto M\u00e9dico Legal, pertencente \u00e0 estrutura organizacional da Pol\u00edcia Civil do Estado de Rond\u00f4nia.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Pala\u0301cio Rio Madeira Edifi\u0301cio Central Rio Pacaa\u0301s Novos - 2o Andar - Pedrinhas - Porto Velho (RO)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "05/06/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 6, + "day": 5 + } + }, + { + "cidade": "Velho", + "uf": "RO", + "cabecalho": [], + "codigo-da-uasg": "925373", + "pregao-eletronico": "2132018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os para Contrata\u00e7\u00e3o de Empresa Prestadora de Servi\u00e7os gr\u00e1ficos e confec\u00e7\u00e3o de material educacional, para atender \u00e0s necessidades do Centro de Educa\u00e7\u00e3o T\u00e9cnico Profissional na \u00c1rea de Sa\u00fade - CETAS/SESAU/RO.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Farquar, S/n - Complemento", + "telefone": "(69) 32129268", + "fax": "(69)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "30/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 30 + } + }, + { + "cidade": "Velho", + "uf": "RO", + "cabecalho": [], + "codigo-da-uasg": "925373", + "pregao-eletronico": "762018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de Material Permanente: aparelho de espir\u00f4metro, visando atender as necessidades do setor de diagn\u00f3stico deste Hospital de Base \u00b4Dr. Ary Pinheiro\u00b4 HBAP/SESAU/RO, a pedido da Secretaria de Estado da Sa\u00fade SESAU/RO.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av Farquar N \u0308 2986 - Pedrinhas - Porto Velho (RO)", + "telefone": "(69) 32129265", + "fax": "(69)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "07/06/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 6, + "day": 7 + } + }, + { + "cidade": "Velho", + "uf": "RO", + "cabecalho": [], + "codigo-da-uasg": "925373", + "pregao-eletronico": "212018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de Pre\u00e7os para futura e eventual aquisi\u00e7\u00e3o de Material de Limpeza e Produtos de Higieniza\u00e7\u00e3o, para atender as necessidades das Unidades de Atendimento do SINE/SEAS dos Munic\u00edpios de Porto Velho, Jaru, Ouro Preto, Ji-Paran\u00e1, Cacoal, Pimenta Bueno, Rolim de Moura, para melhor conforto, comodidade, funcionamento do ambiente e ao p\u00fablico, atrav\u00e9s desta Secretaria de Estado da Assist\u00eancia e do Desenvolvimento Social SEAS, por um per\u00edodo de 12 meses.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Farquar, S/n. Complexo Rio Madeira, Ed. Rio Pacaas Novos, 2o Andar - Pedrinhas - Porto Velho (RO)", + "telefone": "(69) 32129267", + "fax": "(69)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Alegre", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "170175", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O objeto da presente licita\u00e7\u00e3o \u00e9 o registro de pre\u00e7os para futura aquisi\u00e7\u00e3o de material de consumo: para expediente e eletr\u00f4nica, a fim de atender as demandas da Superintend\u00eancia de Administra\u00e7\u00e3o do MF/RS e suas unidades jurisdicionadas.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Jose Loureiro da Silva, 445 - 8.andar - Sala 839 - Centro Histo\u0301rico - Porto Alegre (RS)", + "telefone": "(51) 32904842", + "fax": "(51)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Manaus", + "uf": "AM", + "cabecalho": [], + "codigo-da-uasg": "323010", + "pregao-eletronico": "42018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de servi\u00e7os cont\u00ednuos de limpeza, asseio, conserva\u00e7\u00e3o e copeiragem nas instala\u00e7\u00f5es do Edif\u00edcio-sede da Superintend\u00eancia do DNPM/AM, ou entidade que o substituir, com o fornecimento de m\u00e3o-de-obra, materiais, equipamentos e utens\u00edlios necess\u00e1rios \u00e0 sua execu\u00e7\u00e3o, conforme condi\u00e7\u00f5es, quantidades e exig\u00eancias estabelecidas no Edital e seus anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Andre Araujo, 2150 - Petro\u0301polis - - Manaus (AM)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Grande", + "uf": "MS", + "cabecalho": [], + "codigo-da-uasg": "200128", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada na presta\u00e7\u00e3o de servi\u00e7o terceirizado para o posto de Administrador de Sistemas Computacionais, em regime de dedica\u00e7\u00e3o exclusiva, nas depend\u00eancias da Superintend\u00eancia Regional de Pol\u00edcia Rodovi\u00e1ria Federal no Estado do Mato Grosso do Sul - SRPRF-MS", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Antonio Maria Coelho, 3033 - Jardim Dos Estados - Jardim Dos Estados - Campo Grande (MS)", + "telefone": "(67) 33203710", + "fax": "(67)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "200116", + "pregao-eletronico": "42018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para eventual e futura aquisi\u00e7\u00e3o de materiais de consumo diversos (caf\u00e9, a\u00e7\u00facar, ado\u00e7ante e derivados).", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rodovia Presidente Dutra, Km 163 - Viga\u0301rio Geral - Rio de Janeiro (RJ)", + "telefone": "(21) 35039036", + "fax": "(21)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Macei\u00f3", + "uf": "AL", + "cabecalho": [], + "codigo-da-uasg": "200358", + "pregao-eletronico": "32018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de G\u00eaneros Aliment\u00edcios (CAF\u00c9/A\u00c7\u00daCAR/\u00c1GUA)", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Walter Ananias 705 Bairro", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "30001", + "pregao-eletronico": "322018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de mesas e cadeiras de alum\u00ednio para \u00e1rea externa conforme quantidades e especifica\u00e7\u00f5es t\u00e9cnicas constantes do Edital, para o Tribunal de Contas da Uni\u00e3o (TCU)", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Setor de Administracao Federal Sul; Lote 1, Sala 103 - Asa Sul - BRASI\u0301LIA (DF)", + "telefone": "(61) 33167375", + "fax": "(61)33167531", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Curitiba", + "uf": "PR", + "cabecalho": [], + "codigo-da-uasg": "925457", + "pregao-eletronico": "72018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de solu\u00e7\u00e3o composta de pacote de softwares e treinamento para permitir a elabora\u00e7\u00e3o de projetos de arquitetura e engenharia, incluindo capacita\u00e7\u00e3o no uso dos softwares sob a orienta\u00e7\u00e3o da metodologia de Modelagem de Informa\u00e7\u00f5es de Constru\u00e7\u00e3o (Building Information Modeling BIM), necess\u00e1rias ao melhor desempenho das atividades t\u00e9cnicas final\u00edsticas, conforme condi\u00e7\u00f5es, quantidades, exig\u00eancias e estimativas, estabelecidas no Edital e seus anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Prac\u0327a Nossa Senhora da Salete S/n - Centro Ci\u0301vico - - Curitiba (PR)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Vit\u00f3ria", + "uf": "ES", + "cabecalho": [], + "codigo-da-uasg": "925968", + "pregao-eletronico": "422018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - REGISTRO DE PRE\u00c7OS de servi\u00e7os e loca\u00e7\u00e3o de produtos para atender demandas de organiza\u00e7\u00e3o de eventos pelo Poder Judici\u00e1rio do Estado do Esp\u00edrito Santo.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Desenbargador Homero Mafra, 60 - Enseada do Sua\u0301 - Vito\u0301ria (ES)", + "telefone": "(27) 33342335", + "fax": "(27)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Bel\u00e9m", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "925942", + "pregao-eletronico": "332018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O presente Termo de Refer\u00eancia tem por objetivo a aquisi\u00e7\u00e3o de materiais de avalia\u00e7\u00e3o psicol\u00f3gica forense, para atendimento das necessidades de Equipes Multidisciplinares diversos no \u00e2mbito desta Corte.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " End Almirante Barroso - Souza - Bele\u0301m (PA)", + "telefone": "(91) 32053257", + "fax": "(91)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Natal", + "uf": "RN", + "cabecalho": [], + "codigo-da-uasg": "925869", + "pregao-eletronico": "232018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contratar empresa para presta\u00e7\u00e3o, POR DEMANDA, de servi\u00e7os de fornecimento de Refei\u00e7\u00f5es e Lanches, para as sess\u00f5es do Tribunal do J\u00fari Popular das Comarcas de Natal (1\u00aa e 2\u00aa Varas Criminais e Vara da Inf\u00e2ncia e Juventude por ocasi\u00e3o do Carnatal) e demais Comarcas do Interior.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Prac\u0327a 7 de Setembro, S/no, Cidade Alta - Centro - Natal (RN)", + "telefone": "(84) 36166316", + "fax": "(84)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "28/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 28 + } + }, + { + "cidade": "Recife", + "uf": "PE", + "cabecalho": [], + "codigo-da-uasg": "80006", + "pregao-eletronico": "122018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de material de consumo.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Cais do Apolo No 739, Bairro do Recife, Recife/pe. - - Recife (PE)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Florian\u00f3polis", + "uf": "SC", + "cabecalho": [], + "codigo-da-uasg": "70020", + "pregao-eletronico": "372018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Fornecimento, sob demanda, de carimbos e de almofadas para carimbos autoentintados.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Esteves Junior Nr. 80 - Centro - Floriano\u0301polis (SC)", + "telefone": "(48) 32513834", + "fax": "(48)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Paulo", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "70018", + "pregao-eletronico": "442018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - REGISTRO DE PRE\u00c7O para fornecimento de livros.", + "edital-a-partir-de-str": "17/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 17 + }, + "endereco": " Rua Francisca Miquelina, 123 - Bela Vista - Sa\u0303o Paulo (SP)", + "telefone": "(11) 31302185", + "fax": "(11)31302195", + "entrega-da-proposta-str": "17/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 17 + }, + "abertura-da-proposta-str": "29/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 29 + } + }, + { + "cidade": "Paulo", + "uf": "SP", + "cabecalho": [], + "codigo-da-uasg": "70018", + "pregao-eletronico": "432018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de cobertura securit\u00e1ria para os ve\u00edculos da frota, para os im\u00f3veis e outros bens do Tribunal Regional Eleitoral de S\u00e3o Paulo", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Francisca Miquelina, 123 - Bela Vista - Sa\u0303o Paulo (SP)", + "telefone": "(11) 31302185", + "fax": "(11)31302195", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Branco", + "uf": "AC", + "cabecalho": [], + "codigo-da-uasg": "70002", + "pregao-eletronico": "332018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa para presta\u00e7\u00e3o de servi\u00e7os de CONSERVA\u00c7\u00c3O DE URNAS ELETR\u00d4NICAS em conformidade com as especifica\u00e7\u00f5es contidas no termo de refer\u00eancia (Anexo I do edital), que integra este ato convocat\u00f3rio.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Anto\u0302nio da Rocha Viana, N.o 1389 - Bosque - Rio Branco (AC)", + "telefone": "(68) 32124453", + "fax": "(68)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Manaus", + "uf": "AM", + "cabecalho": [], + "td-style-padding": "70003", + "pregao-eletronico": "122018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para futura e eventual aquisi\u00e7\u00e3o de 02 (dois) ve\u00edculos automotores terrestres tipo sedan superior, conforme descri\u00e7\u00f5es e especifica\u00e7\u00f5es constantes no Termo de Refer\u00eancia n.\u00ba 001/2018-SETRAN/TRE-AM.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida Andre Araujo S/n. - Aleixo - Manaus (AM)", + "telefone": "(92) 36324455", + "fax": "(92)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Manaus", + "uf": "AM", + "cabecalho": [], + "td-style-padding": "70003", + "pregao-eletronico": "112018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para futura e eventual aquisi\u00e7\u00e3o de materiais de consumo diversos, conforme descri\u00e7\u00f5es e quantidades constantes do Anexo I do Termo de Refer\u00eancia n.\u00ba 005/2018 SEALM/TRE-AM.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida Andre Araujo S/n. - Aleixo - Manaus (AM)", + "telefone": "(92) 36324455", + "fax": "(92)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Fortaleza", + "uf": "CE", + "cabecalho": [], + "codigo-da-uasg": "70007", + "pregao-eletronico": "252018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada em fornecimento de m\u00e3o de obra terceirizada, atrav\u00e9s d a instala\u00e7\u00e3o, por prazo determinado, de 191 (cento e noventa e um) postos de Auxiliares de Servi\u00e7os Gerais, a serem distribu\u00eddos na capital e interior do Estado do Cear\u00e1, no intuito de dar suporte as atividades e infraestrutura das Elei\u00e7\u00f5es 2018, conforme as especifica\u00e7\u00f5es constantes no Termo de Refer\u00eancia e demais exig\u00eancias do Edital, conforme condi\u00e7\u00f5es, quantitativos e especifica\u00e7\u00f5es constantes no Termo de Refer\u00eancia.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Jaime Benevolo 21 - Centro - - Fortaleza (CE)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "29/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 29 + } + }, + { + "cidade": "Natal", + "uf": "RN", + "cabecalho": [], + "codigo-da-uasg": "70008", + "pregao-eletronico": "252018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de servi\u00e7o de transporte da for\u00e7a policial respons\u00e1vel pela seguran\u00e7a das Elei\u00e7\u00f5es Gerais de 2018 no Estado do Rio Grande do Norte.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Praca Andre de Albuquerque, 534 - Cidade Alta - - Natal (RN)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Janeiro", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "90028", + "pregao-eletronico": "692018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada para presta\u00e7\u00e3o de servi\u00e7os de suporte e manuten\u00e7\u00e3o corretiva de hardware, com cobertura total de pe\u00e7as de reposi\u00e7\u00e3o em servidores de rack.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Acre No 80, Sala 604 - Centro - Rio de Janeiro (RJ)", + "telefone": "(21) 22828682", + "fax": "(21)22828016", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "80001", + "pregao-eletronico": "502018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de m\u00f3dulo controlador visual para centr\u00edfuga de ar condicionado.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Safs Qd 8, Lt 1, Bl A, Sala 332. - Asa Sul - BRASI\u0301LIA (DF)", + "telefone": "(61) 30433700", + "fax": "(61)30434102", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "BRAS\u00cdLIA", + "uf": "DF", + "cabecalho": [], + "codigo-da-uasg": "70001", + "pregao-eletronico": "372018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de materiais e equipamentos de v\u00eddeo para adequa\u00e7\u00e3o ao novo layout do CDE 2018, conforme especifica\u00e7\u00f5es, exig\u00eancias e prazos constantes do Termo de Refer\u00eancia - Anexo I do Edital.", + "edital-a-partir-de-str": "14/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 14 + }, + "endereco": " Pca.dos Tribunais Superiores,bloco C(secretaria de Administracao) - - BRASI\u0301LIA (DF)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "14/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 14 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Teres\u00f3polis", + "uf": "RJ", + "cabecalho": [], + "codigo-da-uasg": "443036", + "pregao-eletronico": "12018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada para a presta\u00e7\u00e3o de servi\u00e7os continuados de servi\u00e7os auxiliares de apoio operacional, com dedica\u00e7\u00e3o exclusiva de m\u00e3o de obra, de recepcionista e Motorista, conforme condi\u00e7\u00f5es, quantitativos, exig\u00eancias e especificidades contidas no instrumento convocat\u00f3rio e seus anexos.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Avenida Rotariana S/n Soberbo - Tereso\u0301polis - Soberbo - Tereso\u0301polis (RJ)", + "telefone": "(21) 21521140", + "fax": "(21)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Vista", + "uf": "RR", + "cabecalho": [], + "codigo-da-uasg": "926195", + "pregao-eletronico": "132018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada para aquisi\u00e7\u00e3o de Materiais Permanentes para a Divis\u00e3o de Almoxarifado e Patrim\u00f4nio para atender a demanda da Universidade Estadual de Roraima - UERR.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Sete de Setembro, 231 - Canarinho - Boa Vista (RR)", + "telefone": "(95) 21210921", + "fax": "(95)21210921", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Pelotas", + "uf": "RS", + "cabecalho": [], + "codigo-da-uasg": "154047", + "pregao-eletronico": "272018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Contrata\u00e7\u00e3o de empresa especializada na presta\u00e7\u00e3o de servi\u00e7os de lavanderia hospitalar, envolvendo todas as etapas do controle e processamento do enxoval hospitalar", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Gomes Carneiro Num. 01 - Centro - Pelotas (RS)", + "telefone": "(53) 32843924", + "fax": "(53)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Vi\u00e7osa", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "154051", + "pregao-eletronico": "852018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - G\u00e1s comprimido - Nitrog\u00eanio l\u00edquido.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av.p.h.rolfs - S/n - Campus Universita\u0301rio - Campus Ufv - Vic\u0327osa (MG)", + "telefone": "(31) 38991520", + "fax": "(31)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "30/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 30 + } + }, + { + "cidade": "Vi\u00e7osa", + "uf": "MG", + "cabecalho": [], + "codigo-da-uasg": "154051", + "pregao-eletronico": "532018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Registro de pre\u00e7os para aquisi\u00e7\u00e3o de insumos para fabrica\u00e7\u00e3o de ra\u00e7\u00e3o.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av.p.h.rolfs - S/n - Campus Universita\u0301rio - Campus Ufv - Vic\u0327osa (MG)", + "telefone": "(31) 38991520", + "fax": "(31)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "30/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 30 + } + }, + { + "cidade": "Norte", + "uf": "CE", + "cabecalho": [], + "codigo-da-uasg": "158719", + "pregao-eletronico": "52018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de material esportivo para o N\u00facleo de esporte e Cultura do movimento da Pr\u00f3-Reitoria de Cultura-PROCULT.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Interventor Francisco Erivano Cruz No 120 - Centro Multiuso - 3oandar Sala 16 - Centro - Juazeiro do Norte (CE)", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "24/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 24 + } + }, + { + "cidade": "Vit\u00f3ria", + "uf": "ES", + "cabecalho": [], + "codigo-da-uasg": "153046", + "pregao-eletronico": "232018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Forma\u00e7\u00e3o de Registro de Pre\u00e7os para aquisi\u00e7\u00e3o de \u00c1GUA MINERAL, para atender as demandas de diversos setores da UFES para o ano de 2018", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Fernando Ferrari No 514 Campus Universitario-goiabeiras - - Vito\u0301ria (ES)", + "telefone": "(27) 40092923", + "fax": "(27)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Barreiras", + "uf": "BA", + "cabecalho": [], + "codigo-da-uasg": "158717", + "pregao-eletronico": "72018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Eventual contrata\u00e7\u00e3o de servi\u00e7os de eventos, para atender \u00e0s necessidades da Universidade Federal do Oeste da Bahia", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Rua Professor Jose Seabra, 316, Centro - Recanto Dos Pa\u0301ssaros - Barreiras (BA)", + "telefone": "(77) 36143524", + "fax": "(77)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "25/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 25 + } + }, + { + "cidade": "Castanhal", + "uf": "PA", + "cabecalho": [], + "codigo-da-uasg": "153063", + "pregao-eletronico": "272018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - Aquisi\u00e7\u00e3o de mobili\u00e1rios (Mesas e Cadeiras) para o Restaurante Universit\u00e1rio do Campus de Castanhal.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av.", + "telefone": "", + "fax": "", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + }, + { + "cidade": "Proc\u00f3pio", + "uf": "PR", + "cabecalho": [], + "codigo-da-uasg": "153176", + "pregao-eletronico": "12018", + "objeto": "Preg\u00e3o Eletr\u00f4nico - O objeto da presente licita\u00e7\u00e3o \u00e9 o registro de pre\u00e7os para eventual contrata\u00e7\u00e3o de empresa especializada na presta\u00e7\u00e3o de servi\u00e7o de transporte rodovi\u00e1rio de passageiros, com \u00f4nibus, micro-\u00f4nibus e ve\u00edculo executivo, no \u00e2mbito municipal, intermunicipal e interestadual, para execu\u00e7\u00e3o de viagens destinadas a atender as necessidades da UTFPR.", + "edital-a-partir-de-str": "11/05/2018", + "edital-a-partir-de": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "endereco": " Av. Alberto Carazzai , 1640 - Centro - Corne\u0301lio Proco\u0301pio (PR)", + "telefone": "(43) 35204018", + "fax": "(43)", + "entrega-da-proposta-str": "11/05/2018", + "entrega-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 11 + }, + "abertura-da-proposta-str": "23/05/2018", + "abertura-da-proposta": { + "__date__": null, + "year": 2018, + "month": 5, + "day": 23 + } + } +] \ No newline at end of file diff --git a/tests/integration/test_class_comprasnet.py b/tests/integration/test_class_comprasnet.py new file mode 100644 index 0000000..37f4b9f --- /dev/null +++ b/tests/integration/test_class_comprasnet.py @@ -0,0 +1,17 @@ +from comprasnet import ComprasNet +from datetime import date +from json_tricks import load, dump +import os + + +def test_search_auctions_by_date(): + filename = os.path.join(os.path.dirname(os.path.abspath(__file__)), + '../assets/result_test_search_auctions_by_date.json') + + with open(filename) as handle: + local_results = load(handle) + + comprasnet = ComprasNet() + results = comprasnet.search_auctions_by_date(date(year=2018, month=5, day=11)) + assert results == local_results + From 25c67979487892b31bfeaf8a0b92ae86c55f80da Mon Sep 17 00:00:00 2001 From: Moacir Moda Date: Thu, 17 May 2018 12:23:04 -0300 Subject: [PATCH 10/10] adding useful notebooks that helps in project --- ...s vezes cada item aparece em um json.ipynb | 79 +++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 contrib/notebooks/Verificar quantas vezes cada item aparece em um json.ipynb diff --git a/contrib/notebooks/Verificar quantas vezes cada item aparece em um json.ipynb b/contrib/notebooks/Verificar quantas vezes cada item aparece em um json.ipynb new file mode 100644 index 0000000..064ada7 --- /dev/null +++ b/contrib/notebooks/Verificar quantas vezes cada item aparece em um json.ipynb @@ -0,0 +1,79 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'abertura-da-proposta': 266,\n", + " 'abertura-da-proposta-str': 266,\n", + " 'cabecalho': 273,\n", + " 'cidade': 273,\n", + " 'codigo-da-uasg': 265,\n", + " 'edital-a-partir-de': 273,\n", + " 'edital-a-partir-de-str': 273,\n", + " 'endereco': 273,\n", + " 'entrega-da-proposta': 266,\n", + " 'entrega-da-proposta-str': 266,\n", + " 'fax': 273,\n", + " 'objeto': 273,\n", + " 'pregao-eletronico': 266,\n", + " 'td-style-padding': 8,\n", + " 'telefone': 273,\n", + " 'uf': 273}\n" + ] + } + ], + "source": [ + "from json_tricks import load\n", + "\n", + "with open('/tmp/file.json') as handle:\n", + " results = load(handle)\n", + "\n", + "keys = {}\n", + "for item in results:\n", + " for key in item:\n", + " if not key in keys:\n", + " keys[key] = 0\n", + " keys[key] += 1\n", + "\n", + "from pprint import pprint\n", + "pprint(keys)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.0" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}