diff --git a/Changelog.md b/Changelog.md index 27f84a2afeb405470ca395781681f5e28440463f..626a90a4abad1a6e6d6fda2fc00becc600036b42 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,9 @@ All notable changes to this project will be documented in this file. +## [0.10] - 2023-04-12 +- TODO: Saket will fill this in later + ## [0.9] - 2023-03-21 - Changed survey-publisher-2022 to function with newer sqlalchemy versions - Changed fundingsource graph to be centered diff --git a/Compendium-V2.postman_collection.json b/Compendium-V2.postman_collection.json deleted file mode 100644 index e1b4e04c5c2ac45ff243979921844cd97aa7f309..0000000000000000000000000000000000000000 --- a/Compendium-V2.postman_collection.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "info": { - "_postman_id": "146d579a-945d-42d9-a914-7ed19084256b", - "name": "Compendium-V2", - "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" - }, - "item": [ - { - "name": "reporting", - "item": [ - { - "name": "get-budget-data", - "request": { - "method": "GET", - "header": [], - "url": { - "raw": "{{API_URL}}/things", - "host": [ - "{{API_URL}}" - ], - "path": [ - "things" - ] - } - }, - "response": [] - } - ] - }, - { - "name": "DEV-version", - "request": { - "method": "GET", - "header": [], - "url": { - "raw": "{{DEV_URL}}/version", - "host": [ - "{{DEV_URL}}" - ], - "path": [ - "version" - ] - } - }, - "response": [] - }, - { - "name": "TEST-version", - "request": { - "method": "GET", - "header": [], - "url": { - "raw": "{{TEST_URL}}/version", - "host": [ - "{{TEST_URL}}" - ], - "path": [ - "version" - ] - } - }, - "response": [] - }, - { - "name": "UAT-version", - "request": { - "method": "GET", - "header": [], - "url": { - "raw": "{{UAT_URL}}/version", - "host": [ - "{{UAT_URL}}" - ], - "path": [ - "version" - ] - } - }, - "response": [] - } - ], - "event": [ - { - "listen": "prerequest", - "script": { - "type": "text/javascript", - "exec": [ - "" - ] - } - }, - { - "listen": "test", - "script": { - "type": "text/javascript", - "exec": [ - "" - ] - } - } - ], - "variable": [ - { - "key": "DEV_URL", - "value": "http://127.0.0.1:5000", - "type": "default" - }, - { - "key": "TEST_URL", - "value": "https://test-compendium01.geant.org", - "type": "default" - }, - { - "key": "API_BASE_URL", - "value": "{{TEST_URL}}/api/", - "type": "default" - }, - { - "key": "UAT_URL", - "value": "https://uat-compendium01.geant.org", - "type": "default" - } - ] -} \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in index 94a24304ea2662153f864d60a20dbc3e7bd0a6da..c82116d256db69a4ac9e5fb88ecaf4e29e28cccd 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,4 @@ recursive-include compendium_v2/static * -include compendium_v2/datasources/dummy-service-matrix.json * include compendium_v2/templates/index.html * recursive-include compendium_v2/migrations/versions * recursive-include compendium_v2/background_task/xlsx * diff --git a/compendium_v2/__init__.py b/compendium_v2/__init__.py index 23c4f0a41110cfc62d869f34b6c18ac15d0ec1bf..ad265a9b8ab03285741c96033afc18648cb11a26 100644 --- a/compendium_v2/__init__.py +++ b/compendium_v2/__init__.py @@ -43,9 +43,6 @@ def create_app() -> Flask: from compendium_v2.routes import api app.register_blueprint(api.routes, url_prefix='/api') - from compendium_v2.routes import service_matrix - app.register_blueprint(service_matrix.routes, url_prefix='/service-matrix') - logging.info('Flask app initialized') environment.setup_logging() diff --git a/compendium_v2/app.py b/compendium_v2/app.py index 33cd019af8ffc615457ed6d02f81b6dbf108d0d6..08783494ae0b24ec84019dc142db66462f3a9ad8 100644 --- a/compendium_v2/app.py +++ b/compendium_v2/app.py @@ -8,4 +8,4 @@ environment.setup_logging() app = compendium_v2.create_app() if __name__ == '__main__': - app.run(host='::', port='33333') + app.run(host='::', port='5000') diff --git a/compendium_v2/background_task/parse_excel_data.py b/compendium_v2/background_task/parse_excel_data.py new file mode 100644 index 0000000000000000000000000000000000000000..69f54c6a474d357e89c98f1a76ecc1382a1e37b2 --- /dev/null +++ b/compendium_v2/background_task/parse_excel_data.py @@ -0,0 +1,114 @@ +import openpyxl +import os +import logging + +from compendium_v2.environment import setup_logging + +setup_logging() + +logger = logging.getLogger(__name__) + +EXCEL_FILE = os.path.join( + os.path.dirname(__file__), "xlsx", + "2021_Organisation_DataSeries.xlsx") + + +def fetch_budget_excel_data(): + + # load the xlsx file + sheet_name = "1. Budget" + wb = openpyxl.load_workbook(EXCEL_FILE, data_only=True, read_only=True) + + # select the active worksheet + ws = wb[sheet_name] + # iterate over the rows in the worksheet + for row in range(14, 57): + for col in range(3, 8): + # extract the data from the row + nren = ws.cell(row=row, column=2).value + budget = ws.cell(row=row, column=col).value + year = ws.cell(row=13, column=col).value + + if budget is not None: + budget = round(budget / 1000000, 2) + if budget > 200: + logger.info( + f'{nren} has budget set to ' + f'>200M EUR for {year}. ({budget})') + + # process the data (e.g. save to database) + # print(f"NREN: {nren}, Budget: {budget}, Year: {year}") + + yield nren, budget, year + + +def fetch_funding_excel_data(): + + # load the xlsx file + wb = openpyxl.load_workbook(EXCEL_FILE, data_only=True, read_only=True) + + # select the active worksheet + sheet_name = "2. Income Sources" + ws = wb[sheet_name] + + def hard_number_convert(s, source_name, nren, year): + if s is None: + logger.info( + f'Invalid Value :{nren} has empty value for {source_name}.' + + f'for year ({year})') + return float(0) + """ Returns True if string is a number. """ + try: + return float(s) + except ValueError: + logger.info( + f'Invalid Value :{nren} has empty value for {source_name}.' + + f'for year ({year}) with value ({s})') + return float(0) + + # iterate over the rows in the worksheet + + def create_points_for_year(start_row, end_row, year, col_start): + for row in range(start_row, end_row): + # extract the data from the row + nren = ws.cell(row=row, column=col_start).value + client_institution = ws.cell(row=row, + column=col_start + 3).value + european_funding = ws.cell(row=row, column=col_start + 4).value + gov_public_bodies = ws.cell(row=row, + column=col_start + 5).value + commercial = ws.cell(row=row, column=col_start + 6).value + other = ws.cell(row=row, column=col_start + 7).value + + client_institution = hard_number_convert( + client_institution, "client institution", nren, year) + european_funding = hard_number_convert( + european_funding, "european funding", nren, year) + gov_public_bodies = hard_number_convert( + gov_public_bodies, "gov/public_bodies", nren, year) + commercial = hard_number_convert( + commercial, "commercial", nren, year) + other = hard_number_convert( + other, "other", nren, year) + + # process the data (e.g. save to database) + if nren is not None: + yield (nren, year, client_institution, + european_funding, + gov_public_bodies, + commercial, other) + + # For 2016 + yield from create_points_for_year(8, 50, 2016, 43) + + # For 2017 + yield from create_points_for_year(8, 50, 2017, 32) + + # For 2018 + yield from create_points_for_year(8, 50, 2018, 21) + + # For 2019 + yield from create_points_for_year(8, 50, 2019, 12) + + # For 2020 + yield from create_points_for_year(8, 50, 2020, 3) diff --git a/compendium_v2/background_task/xlsx_to_csv_sheet_parsing_task.py b/compendium_v2/background_task/xlsx_to_csv_sheet_parsing_task.py deleted file mode 100644 index ee13a4b9e6917f6d37b895f9a3b859104fd65ed7..0000000000000000000000000000000000000000 --- a/compendium_v2/background_task/xlsx_to_csv_sheet_parsing_task.py +++ /dev/null @@ -1,149 +0,0 @@ -import openpyxl -import csv -import os -from compendium_v2 import db -from compendium_v2.db import model -from compendium_v2.environment import setup_logging -import logging - -setup_logging() - -logger = logging.getLogger('xlsx_to_csv_sheet_parsing_task') - - -# Import the data to database -def import_countries(): - with db.session_scope() as session: - with open('csv/BudgetCsvFile.csv') as csvfile: - reader = csv.DictReader(csvfile) - for row in reader: - data = model.BudgetEntry( - nren=row[0], budget=row[1], year=row[2]) - data.save() - session.add(data) - - -def parse_budget_xlsx_file(): - try: - # load the xlsx file - filename = "compendium_v2/background_task/xlsx" \ - "/2021_Organisation_DataSeries.xlsx " - csv_out_file = "compendium_v2/background_task/csv/BudgetCsvFile.csv" - sheet_name = "1. Budget" - wb = openpyxl.load_workbook( - filename, data_only=True, read_only=True) - - # select the active worksheet - ws = wb[sheet_name] - if os.path.exists(csv_out_file) and os.path.isfile(csv_out_file): - os.remove(csv_out_file) - print("file deleted " + csv_out_file) - # iterate over the rows in the worksheet - for row in range(14, 57): - for col in range(3, 8): - # extract the data from the row - nren = ws.cell(row=row, column=2).value - budget = ws.cell(row=row, column=col).value - year = ws.cell(row=13, column=col).value - - if budget is not None: - budget = round(budget / 1000000, 2) - if budget > 200: - logger.info( - f'{nren} has budget set to ' - f'>200M EUR for {year}. ({budget})') - - # process the data (e.g. save to database) - # print(f"NREN: {nren}, Budget: {budget}, Year: {year}") - output_csv_file = csv.writer( - open(csv_out_file, 'a'), - delimiter=",") - output_csv_file.writerow([nren, budget, year]) - output_csv_file - except Exception as e: - print(e) - - # import_countries() - - -def parse_income_source_xlsx_file(): - try: - # load the xlsx file - filename = "compendium_v2/background_task/xlsx" \ - "/2021_Organisation_DataSeries.xlsx " - csv_out_file = "compendium_v2/background_task/csv" \ - "/FundingSourceCsvFile.csv " - sheet_name = "2. Income Sources" - wb = openpyxl.load_workbook( - filename, data_only=True, read_only=True) - - # select the active worksheet - ws = wb[sheet_name] - if os.path.exists(csv_out_file) and os.path.isfile(csv_out_file): - os.remove(csv_out_file) - print("file deleted " + csv_out_file) - - def hard_number_convert(s, source_name, nren, year): - if s is None: - logger.info( - f'Invalid Value :{nren} has empty value for {source_name}.' - + f'for year ({year})') - return float(0) - """ Returns True if string is a number. """ - try: - return float(s) - except ValueError: - logger.info( - f'Invalid Value :{nren} has empty value for {source_name}.' - + f'for year ({year}) with value ({s})') - return float(0) - - # iterate over the rows in the worksheet - - def create_csv_per_year(start_row, end_row, yearI, col_start): - for row in range(start_row, end_row): - # extract the data from the row - nren = ws.cell(row=row, column=col_start).value - client_institution = ws.cell(row=row, - column=col_start + 3).value - european_funding = ws.cell(row=row, column=col_start + 4).value - gov_public_bodies = ws.cell(row=row, - column=col_start + 5).value - commercial = ws.cell(row=row, column=col_start + 6).value - other = ws.cell(row=row, column=col_start + 7).value - year = yearI - - client_institution = hard_number_convert( - client_institution, "client institution", nren, year) - european_funding = hard_number_convert( - european_funding, "european funding", nren, year) - gov_public_bodies = hard_number_convert( - gov_public_bodies, "gov/public_bodies", nren, year) - commercial = hard_number_convert( - commercial, "commercial", nren, year) - other = hard_number_convert( - other, "other", nren, year) - - # process the data (e.g. save to database) - if nren is not None: - output_csv_file = csv.writer( - open(csv_out_file, 'a'), - delimiter=",") - output_csv_file.writerow([nren, year, client_institution, - european_funding, - gov_public_bodies, - commercial, other]) - - # For 2020 - create_csv_per_year(8, 50, 2020, 3) - # # For 2019 - create_csv_per_year(8, 50, 2019, 12) - # # For 2018 - create_csv_per_year(8, 50, 2018, 21) - # # For 2017 - create_csv_per_year(8, 50, 2017, 32) - # # For 2016 - create_csv_per_year(8, 50, 2016, 43) - - except Exception as e: - print(e) diff --git a/compendium_v2/datasources/__init__.py b/compendium_v2/datasources/__init__.py deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/compendium_v2/datasources/dummy-service-matrix.json b/compendium_v2/datasources/dummy-service-matrix.json deleted file mode 100644 index 3afb0bc689d7e66932d47c112265eba7eaa2dd75..0000000000000000000000000000000000000000 --- a/compendium_v2/datasources/dummy-service-matrix.json +++ /dev/null @@ -1,87421 +0,0 @@ -{ - "key":"Services per NREN", - "nrens":[ - { - "name":"UzSciNet", - "nren_id":47, - "tags":[ - - ] - }, - { - "name":"NITC", - "nren_id":24, - "tags":[ - - ] - }, - { - "name":"RHnet", - "nren_id":19, - "tags":[ - "terena_member", - "geant_member" - ] - }, - { - "name":"Internet2", - "nren_id":93, - "tags":[ - - ] - }, - { - "name":"AARNet", - "nren_id":74, - "tags":[ - - ] - }, - { - "name":"IRANET/IPM", - "nren_id":20, - "tags":[ - "terena_member" - ] - }, - { - "name":"GCC", - "nren_id":55, - "tags":[ - - ] - }, - { - "name":"KAZRENA", - "nren_id":56, - "tags":[ - - ] - }, - { - "name":"RNRT", - "nren_id":43, - "tags":[ - - ] - }, - { - "name":"BIHARNET", - "nren_id":50, - "tags":[ - - ] - }, - { - "name":"FREEnet", - "nren_id":53, - "tags":[ - - ] - }, - { - "name":"SHERN", - "nren_id":60, - "tags":[ - - ] - }, - { - "name":"UNREN", - "nren_id":61, - "tags":[ - - ] - }, - { - "name":"IRANET", - "nren_id":62, - "tags":[ - "terena_member" - ] - }, - { - "name":"TARENA", - "nren_id":64, - "tags":[ - - ] - }, - { - "name":"TuRENA", - "nren_id":65, - "tags":[ - - ] - }, - { - "name":"RENATA", - "nren_id":76, - "tags":[ - - ] - }, - { - "name":"UARNet", - "nren_id":67, - "tags":[ - - ] - }, - { - "name":"RAAP", - "nren_id":80, - "tags":[ - - ] - }, - { - "name":"RAU", - "nren_id":82, - "tags":[ - - ] - }, - { - "name":"RENU", - "nren_id":84, - "tags":[ - - ] - }, - { - "name":"CNTI", - "nren_id":85, - "tags":[ - - ] - }, - { - "name":"MoRENet", - "nren_id":86, - "tags":[ - - ] - }, - { - "name":"CEDIA", - "nren_id":78, - "tags":[ - - ] - }, - { - "name":"MAREN", - "nren_id":83, - "tags":[ - - ] - }, - { - "name":"RAGIE", - "nren_id":79, - "tags":[ - - ] - }, - { - "name":"CUDI", - "nren_id":81, - "tags":[ - - ] - }, - { - "name":"KRENA-AKNET", - "nren_id":66, - "tags":[ - - ] - }, - { - "name":"RNP", - "nren_id":97, - "tags":[ - - ] - }, - { - "name":"LEARN", - "nren_id":230, - "tags":[ - - ] - }, - { - "name":"CANARIE", - "nren_id":88, - "tags":[ - - ] - }, - { - "name":"TENET", - "nren_id":91, - "tags":[ - - ] - }, - { - "name":"KENET", - "nren_id":98, - "tags":[ - - ] - }, - { - "name":"PADI2", - "nren_id":99, - "tags":[ - - ] - }, - { - "name":"REACCIUN", - "nren_id":96, - "tags":[ - - ] - }, - { - "name":"NCHC", - "nren_id":95, - "tags":[ - - ] - }, - { - "name":"RENER", - "nren_id":214, - "tags":[ - - ] - }, - { - "name":"NiCT", - "nren_id":222, - "tags":[ - - ] - }, - { - "name":"CERNET", - "nren_id":217, - "tags":[ - - ] - }, - { - "name":"CSTNet", - "nren_id":218, - "tags":[ - - ] - }, - { - "name":"NREN", - "nren_id":203, - "tags":[ - - ] - }, - { - "name":"SANReN", - "nren_id":202, - "tags":[ - - ] - }, - { - "name":"ZAMREN", - "nren_id":206, - "tags":[ - - ] - }, - { - "name":"eb@le", - "nren_id":207, - "tags":[ - - ] - }, - { - "name":"CameroonianNREN", - "nren_id":213, - "tags":[ - - ] - }, - { - "name":"RwEdNet", - "nren_id":215, - "tags":[ - - ] - }, - { - "name":"ITB", - "nren_id":221, - "tags":[ - - ] - }, - { - "name":"HARNET", - "nren_id":219, - "tags":[ - - ] - }, - { - "name":"ERNET", - "nren_id":220, - "tags":[ - - ] - }, - { - "name":"SingAREN", - "nren_id":229, - "tags":[ - - ] - }, - { - "name":"KOREN", - "nren_id":224, - "tags":[ - - ] - }, - { - "name":"LERNET", - "nren_id":225, - "tags":[ - - ] - }, - { - "name":"PERN", - "nren_id":227, - "tags":[ - - ] - }, - { - "name":"PREGINET", - "nren_id":228, - "tags":[ - - ] - }, - { - "name":"ThaiREN", - "nren_id":231, - "tags":[ - - ] - }, - { - "name":"TERNET", - "nren_id":210, - "tags":[ - - ] - }, - { - "name":"RNU", - "nren_id":208, - "tags":[ - - ] - }, - { - "name":"BdREN", - "nren_id":216, - "tags":[ - - ] - }, - { - "name":"GARNET", - "nren_id":212, - "tags":[ - - ] - }, - { - "name":"NII", - "nren_id":223, - "tags":[ - - ] - }, - { - "name":"ngNER", - "nren_id":150, - "tags":[ - - ] - }, - { - "name":"snRER", - "nren_id":151, - "tags":[ - - ] - }, - { - "name":"ASGC", - "nren_id":251, - "tags":[ - - ] - }, - { - "name":"JUNet", - "nren_id":92, - "tags":[ - - ] - }, - { - "name":"BOLNET", - "nren_id":233, - "tags":[ - - ] - }, - { - "name":"INNOVA|RED", - "nren_id":235, - "tags":[ - - ] - }, - { - "name":"CRNet", - "nren_id":236, - "tags":[ - - ] - }, - { - "name":"RedUNIV", - "nren_id":237, - "tags":[ - - ] - }, - { - "name":"UNITEC", - "nren_id":238, - "tags":[ - - ] - }, - { - "name":"RENIA", - "nren_id":239, - "tags":[ - - ] - }, - { - "name":"RedCyT", - "nren_id":240, - "tags":[ - - ] - }, - { - "name":"Arandu", - "nren_id":241, - "tags":[ - - ] - }, - { - "name":"RUB", - "nren_id":244, - "tags":[ - - ] - }, - { - "name":"Brunet", - "nren_id":245, - "tags":[ - - ] - }, - { - "name":"ITC", - "nren_id":246, - "tags":[ - - ] - }, - { - "name":"PNGARNet", - "nren_id":247, - "tags":[ - - ] - }, - { - "name":"Qatar Foundation", - "nren_id":249, - "tags":[ - - ] - }, - { - "name":"KAUST", - "nren_id":250, - "tags":[ - - ] - }, - { - "name":"VinaREN", - "nren_id":232, - "tags":[ - - ] - }, - { - "name":"KREONET", - "nren_id":243, - "tags":[ - - ] - }, - { - "name":"SAREN", - "nren_id":253, - "tags":[ - - ] - }, - { - "name":"SARNET", - "nren_id":252, - "tags":[ - - ] - }, - { - "name":"CNRS", - "nren_id":26, - "tags":[ - - ] - }, - { - "name":"SudREN", - "nren_id":209, - "tags":[ - - ] - }, - { - "name":"RoEduNet", - "nren_id":52, - "tags":[ - "terena_member", - "geant_member" - ] - }, - { - "name":"REANNZ", - "nren_id":90, - "tags":[ - - ] - }, - { - "name":"MaliREN", - "nren_id":148, - "tags":[ - - ] - }, - { - "name":"REUNA", - "nren_id":87, - "tags":[ - - ] - }, - { - "name":"RADEI", - "nren_id":154, - "tags":[ - - ] - }, - { - "name":"EUN", - "nren_id":59, - "tags":[ - - ] - }, - { - "name":"iRENALA", - "nren_id":255, - "tags":[ - - ] - }, - { - "name":"OMREN", - "nren_id":256, - "tags":[ - - ] - }, - { - "name":"EtherNet", - "nren_id":257, - "tags":[ - - ] - }, - { - "name":"Somaliren", - "nren_id":258, - "tags":[ - - ] - }, - { - "name":"TTRENT", - "nren_id":153, - "tags":[ - - ] - }, - { - "name":"AfgREN", - "nren_id":259, - "tags":[ - - ] - }, - { - "name":"mmREN", - "nren_id":260, - "tags":[ - - ] - }, - { - "name":"ErdemNet", - "nren_id":261, - "tags":[ - - ] - }, - { - "name":"SUREN", - "nren_id":262, - "tags":[ - - ] - }, - { - "name":"JREN", - "nren_id":263, - "tags":[ - - ] - }, - { - "name":"BARNet", - "nren_id":264, - "tags":[ - - ] - }, - { - "name":"RerBenin", - "nren_id":265, - "tags":[ - - ] - }, - { - "name":"NigerREN", - "nren_id":266, - "tags":[ - - ] - }, - { - "name":"ngREN", - "nren_id":211, - "tags":[ - - ] - }, - { - "name":"Ankabut", - "nren_id":248, - "tags":[ - - ] - }, - { - "name":"RAICES", - "nren_id":77, - "tags":[ - - ] - }, - { - "name":"MYREN", - "nren_id":226, - "tags":[ - - ] - }, - { - "name":"GabonREN", - "nren_id":147, - "tags":[ - - ] - }, - { - "name":"RITER", - "nren_id":146, - "tags":[ - - ] - }, - { - "name":"RNERT", - "nren_id":152, - "tags":[ - - ] - }, - { - "name":"IUCC", - "nren_id":22, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"SWITCH", - "nren_id":42, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"BREN", - "nren_id":58, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"UoM/RicerkaNet", - "nren_id":29, - "tags":[ - "terena_member", - "geant_member" - ] - }, - { - "name":"GRNET S.A.", - "nren_id":17, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"BASNET", - "nren_id":54, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"AzScienceNet", - "nren_id":49, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"ANA", - "nren_id":1, - "tags":[ - "europe", - "geant_member" - ] - }, - { - "name":"ARENA", - "nren_id":3, - "tags":[ - "europe" - ] - }, - { - "name":"ARN", - "nren_id":2, - "tags":[ - "europe" - ] - }, - { - "name":"AzRena", - "nren_id":57, - "tags":[ - "europe" - ] - }, - { - "name":"DeIC", - "nren_id":9, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"DFN", - "nren_id":16, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"e-ARENA", - "nren_id":37, - "tags":[ - "europe" - ] - }, - { - "name":"EENet", - "nren_id":11, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"FCCN", - "nren_id":35, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"Funet", - "nren_id":12, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"GRENA", - "nren_id":15, - "tags":[ - "europe", - "geant_member" - ] - }, - { - "name":"LITNET", - "nren_id":27, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"MARnet", - "nren_id":14, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"MARWAN", - "nren_id":31, - "tags":[ - "europe" - ] - }, - { - "name":"RedIRIS", - "nren_id":40, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"RENATER", - "nren_id":13, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"SANET", - "nren_id":38, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"SUNET", - "nren_id":41, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"SURFnet", - "nren_id":32, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"ULAKBIM", - "nren_id":44, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"URAN", - "nren_id":45, - "tags":[ - "europe", - "geant_member" - ] - }, - { - "name":"AAF - Australian Access Federation", - "nren_id":267, - "tags":[ - "terena_member" - ] - }, - { - "name":"ACOnet", - "nren_id":4, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"AMRES", - "nren_id":48, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"ARNES", - "nren_id":39, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"ASNET-AM", - "nren_id":200, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"Belnet", - "nren_id":5, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"CYNET", - "nren_id":7, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"GARR", - "nren_id":23, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"HEAnet", - "nren_id":21, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"MREN", - "nren_id":100, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"PIONIER", - "nren_id":34, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"RENAM", - "nren_id":30, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"Jisc", - "nren_id":46, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"CARNET", - "nren_id":6, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"Uninett", - "nren_id":33, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"KIFU", - "nren_id":18, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"CESNET", - "nren_id":8, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"RESTENA", - "nren_id":28, - "tags":[ - "terena_member", - "europe", - "geant_member" - ] - }, - { - "name":"KREN", - "nren_id":269, - "tags":[ - - ] - }, - { - "name":"LANET", - "nren_id":51, - "tags":[ - "geant_member" - ] - }, - { - "name":"SigmaNet", - "nren_id":25, - "tags":[ - "terena_member" - ] - } - ], - "services":[ - { - "48":{ - "id":365634, - "value":"No", - "question_id":12919, - "created_at":"2017-09-06T12:18:51.066+02:00", - "updated_at":"2017-09-06T12:18:51.066+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365692, - "value":"No", - "question_id":12919, - "created_at":"2017-09-07T15:33:20.689+02:00", - "updated_at":"2017-09-07T15:33:20.689+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365921, - "value":"Yes", - "question_id":12919, - "created_at":"2017-09-13T13:45:47.561+02:00", - "updated_at":"2017-09-13T13:45:47.561+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366365, - "value":"No", - "question_id":12919, - "created_at":"2017-09-29T13:52:28.835+02:00", - "updated_at":"2017-09-29T13:52:28.835+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366588, - "value":"Yes", - "question_id":12919, - "created_at":"2017-10-08T09:18:43.866+02:00", - "updated_at":"2017-10-08T09:18:43.866+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366882, - "value":"No", - "question_id":12919, - "created_at":"2017-10-11T09:35:55.313+02:00", - "updated_at":"2017-10-11T09:35:55.313+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367154, - "value":"Yes", - "question_id":12919, - "created_at":"2017-10-11T13:42:25.748+02:00", - "updated_at":"2017-10-11T13:42:25.748+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367490, - "value":"Yes", - "question_id":12919, - "created_at":"2017-10-17T12:05:26.973+02:00", - "updated_at":"2017-10-17T12:05:26.973+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":367658, - "value":"Yes", - "question_id":12919, - "created_at":"2017-10-23T12:25:11.154+02:00", - "updated_at":"2017-10-23T12:25:11.154+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367755, - "value":"No", - "question_id":12919, - "created_at":"2017-10-23T19:33:56.873+02:00", - "updated_at":"2017-10-23T19:33:56.873+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367958, - "value":"Yes", - "question_id":12919, - "created_at":"2017-10-24T13:28:05.593+02:00", - "updated_at":"2017-10-24T13:28:05.593+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368563, - "value":"Planned", - "question_id":12919, - "created_at":"2017-10-31T14:40:23.022+01:00", - "updated_at":"2017-10-31T14:40:23.022+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368938, - "value":"Yes", - "question_id":12919, - "created_at":"2017-11-08T15:49:26.246+01:00", - "updated_at":"2017-11-08T15:49:26.246+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369080, - "value":"No", - "question_id":12919, - "created_at":"2017-11-10T11:15:15.266+01:00", - "updated_at":"2017-11-10T11:15:15.266+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369243, - "value":"Yes", - "question_id":12919, - "created_at":"2017-11-10T15:39:31.433+01:00", - "updated_at":"2017-11-10T15:39:31.433+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370233, - "value":"No", - "question_id":12919, - "created_at":"2017-11-23T14:12:42.526+01:00", - "updated_at":"2017-11-23T14:12:42.526+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":370368, - "value":"No", - "question_id":12919, - "created_at":"2017-11-24T16:14:02.779+01:00", - "updated_at":"2017-11-24T16:14:02.779+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370778, - "value":"No", - "question_id":12919, - "created_at":"2017-11-27T09:36:39.166+01:00", - "updated_at":"2017-11-27T09:36:39.166+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371290, - "value":"No", - "question_id":12919, - "created_at":"2017-11-27T14:29:17.645+01:00", - "updated_at":"2017-11-27T14:29:17.645+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371781, - "value":"No", - "question_id":12919, - "created_at":"2017-11-28T13:18:48.589+01:00", - "updated_at":"2017-11-28T13:18:48.589+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372328, - "value":"No", - "question_id":12919, - "created_at":"2017-11-29T12:34:15.639+01:00", - "updated_at":"2017-11-29T12:34:15.639+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":373183, - "value":"Yes", - "question_id":12919, - "created_at":"2017-12-01T17:40:07.192+01:00", - "updated_at":"2017-12-01T17:40:07.192+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373261, - "value":"Yes", - "question_id":12919, - "created_at":"2017-12-04T11:15:08.039+01:00", - "updated_at":"2017-12-04T11:15:08.039+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373714, - "value":"Yes", - "question_id":12919, - "created_at":"2017-12-04T18:00:25.588+01:00", - "updated_at":"2017-12-04T18:00:25.588+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374355, - "value":"Yes", - "question_id":12919, - "created_at":"2017-12-06T13:15:09.778+01:00", - "updated_at":"2017-12-06T13:15:09.778+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374690, - "value":"Yes", - "question_id":12919, - "created_at":"2017-12-13T10:06:18.458+01:00", - "updated_at":"2017-12-13T10:06:18.458+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375042, - "value":"Yes", - "question_id":12919, - "created_at":"2017-12-14T14:22:00.137+01:00", - "updated_at":"2017-12-14T14:22:00.137+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375470, - "value":"Yes", - "question_id":12919, - "created_at":"2017-12-28T10:20:07.610+01:00", - "updated_at":"2017-12-28T10:20:07.610+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375731, - "value":"Yes", - "question_id":12919, - "created_at":"2018-01-18T13:27:47.041+01:00", - "updated_at":"2018-01-18T13:27:47.041+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378669, - "value":"", - "question_id":12919, - "created_at":"2018-04-26T10:04:46.620+02:00", - "updated_at":"2018-04-26T10:04:46.620+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378671, - "value":"", - "question_id":12919, - "created_at":"2018-04-26T10:04:46.640+02:00", - "updated_at":"2018-04-26T10:04:46.640+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":378675, - "value":"", - "question_id":12919, - "created_at":"2018-04-26T10:04:46.672+02:00", - "updated_at":"2018-04-26T10:04:46.672+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378676, - "value":"", - "question_id":12919, - "created_at":"2018-04-26T10:04:46.697+02:00", - "updated_at":"2018-04-26T10:04:46.697+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378678, - "value":"", - "question_id":12919, - "created_at":"2018-04-26T10:04:46.753+02:00", - "updated_at":"2018-04-26T10:04:46.753+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378679, - "value":"", - "question_id":12919, - "created_at":"2018-04-26T10:04:46.761+02:00", - "updated_at":"2018-04-26T10:04:46.761+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378680, - "value":"", - "question_id":12919, - "created_at":"2018-04-26T10:04:46.782+02:00", - "updated_at":"2018-04-26T10:04:46.782+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":384009, - "value":"No", - "question_id":12919, - "created_at":"2017-12-06T13:40:28.289+01:00", - "updated_at":"2017-12-06T13:40:28.289+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618230, - "value":"Yes", - "question_id":12919, - "created_at":"2018-10-28T18:36:16.773+01:00", - "updated_at":"2018-10-28T18:36:16.773+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641559, - "value":"Yes", - "question_id":12919, - "created_at":"2018-10-30T13:55:19.987+01:00", - "updated_at":"2018-10-30T13:55:19.987+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756382, - "value":"Yes", - "question_id":12919, - "created_at":"2018-11-05T14:06:17.007+01:00", - "updated_at":"2018-11-05T14:06:17.007+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774396, - "value":"Yes", - "question_id":12919, - "created_at":"2018-11-15T12:47:51.351+01:00", - "updated_at":"2018-11-15T12:47:51.351+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378681, - "value":"", - "question_id":12919, - "created_at":"2018-04-26T10:04:46.792+02:00", - "updated_at":"2018-04-26T10:04:46.792+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":1506685, - "value":"Yes", - "question_id":12919, - "created_at":"2021-11-23T12:48:41.417+01:00", - "updated_at":"2021-11-23T12:48:41.417+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"anti-spam", - "title":"Do you offer Email filtering?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Anti-spam solution", - "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365633, - "value":"No", - "question_id":12893, - "created_at":"2017-09-06T12:18:43.418+02:00", - "updated_at":"2017-09-06T12:18:43.418+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365691, - "value":"No", - "question_id":12893, - "created_at":"2017-09-07T15:32:47.407+02:00", - "updated_at":"2017-09-07T15:32:47.407+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365919, - "value":"No", - "question_id":12893, - "created_at":"2017-09-13T13:45:43.203+02:00", - "updated_at":"2017-09-13T13:45:43.203+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366363, - "value":"No", - "question_id":12893, - "created_at":"2017-09-29T13:52:20.678+02:00", - "updated_at":"2017-09-29T13:52:20.678+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366587, - "value":"No", - "question_id":12893, - "created_at":"2017-10-08T09:18:34.800+02:00", - "updated_at":"2017-10-08T09:18:34.800+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":366667, - "value":"Planned", - "question_id":12893, - "created_at":"2017-10-09T11:17:40.701+02:00", - "updated_at":"2017-10-09T11:17:40.701+02:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366884, - "value":"No", - "question_id":12893, - "created_at":"2017-10-11T09:36:15.448+02:00", - "updated_at":"2017-10-11T09:36:15.448+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367485, - "value":"No", - "question_id":12893, - "created_at":"2017-10-17T12:05:11.078+02:00", - "updated_at":"2017-10-17T12:05:11.078+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367753, - "value":"No", - "question_id":12893, - "created_at":"2017-10-23T19:33:47.587+02:00", - "updated_at":"2017-10-23T19:33:47.587+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367956, - "value":"No", - "question_id":12893, - "created_at":"2017-10-24T13:27:39.094+02:00", - "updated_at":"2017-10-24T13:27:39.094+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368197, - "value":"No", - "question_id":12893, - "created_at":"2017-10-30T09:27:00.459+01:00", - "updated_at":"2017-10-30T09:27:00.459+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368935, - "value":"No", - "question_id":12893, - "created_at":"2017-11-08T15:48:49.210+01:00", - "updated_at":"2017-11-08T15:48:49.210+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369082, - "value":"No", - "question_id":12893, - "created_at":"2017-11-10T11:15:25.413+01:00", - "updated_at":"2017-11-10T11:15:25.413+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369241, - "value":"Planned", - "question_id":12893, - "created_at":"2017-11-10T15:39:24.297+01:00", - "updated_at":"2017-11-10T15:39:24.297+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370231, - "value":"No", - "question_id":12893, - "created_at":"2017-11-23T14:12:35.374+01:00", - "updated_at":"2017-11-23T14:12:35.374+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370776, - "value":"No", - "question_id":12893, - "created_at":"2017-11-27T09:36:33.609+01:00", - "updated_at":"2017-11-27T09:36:33.609+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371295, - "value":"No", - "question_id":12893, - "created_at":"2017-11-27T14:29:29.924+01:00", - "updated_at":"2017-11-27T14:29:29.924+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371427, - "value":"No", - "question_id":12893, - "created_at":"2017-11-27T14:47:47.231+01:00", - "updated_at":"2017-11-27T14:47:47.231+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371584, - "value":"No", - "question_id":12893, - "created_at":"2017-11-27T16:43:59.565+01:00", - "updated_at":"2017-11-27T16:43:59.565+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371779, - "value":"No", - "question_id":12893, - "created_at":"2017-11-28T13:18:40.727+01:00", - "updated_at":"2017-11-28T13:18:40.727+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372326, - "value":"No", - "question_id":12893, - "created_at":"2017-11-29T12:34:04.363+01:00", - "updated_at":"2017-11-29T12:34:04.363+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372649, - "value":"No", - "question_id":12893, - "created_at":"2017-11-29T21:46:59.700+01:00", - "updated_at":"2017-11-29T21:46:59.700+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372772, - "value":"No", - "question_id":12893, - "created_at":"2017-11-30T08:33:54.945+01:00", - "updated_at":"2017-11-30T08:33:54.945+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373712, - "value":"No", - "question_id":12893, - "created_at":"2017-12-04T18:00:16.243+01:00", - "updated_at":"2017-12-04T18:00:16.243+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374066, - "value":"No", - "question_id":12893, - "created_at":"2017-12-06T07:26:27.724+01:00", - "updated_at":"2017-12-06T07:26:27.724+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374353, - "value":"No", - "question_id":12893, - "created_at":"2017-12-06T13:14:50.062+01:00", - "updated_at":"2017-12-06T13:14:50.062+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375040, - "value":"No", - "question_id":12893, - "created_at":"2017-12-14T14:21:52.558+01:00", - "updated_at":"2017-12-14T14:21:52.558+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375503, - "value":"Yes", - "question_id":12893, - "created_at":"2017-12-28T10:36:43.671+01:00", - "updated_at":"2017-12-28T10:36:43.671+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375700, - "value":"No", - "question_id":12893, - "created_at":"2018-01-09T17:27:43.567+01:00", - "updated_at":"2018-01-09T17:27:43.567+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375906, - "value":"No", - "question_id":12893, - "created_at":"2018-01-23T12:33:33.749+01:00", - "updated_at":"2018-01-23T12:33:33.749+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378564, - "value":"", - "question_id":12893, - "created_at":"2018-04-26T10:04:45.747+02:00", - "updated_at":"2018-04-26T10:04:45.747+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":378565, - "value":"", - "question_id":12893, - "created_at":"2018-04-26T10:04:45.756+02:00", - "updated_at":"2018-04-26T10:04:45.756+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378566, - "value":"", - "question_id":12893, - "created_at":"2018-04-26T10:04:45.761+02:00", - "updated_at":"2018-04-26T10:04:45.761+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":378568, - "value":"", - "question_id":12893, - "created_at":"2018-04-26T10:04:45.770+02:00", - "updated_at":"2018-04-26T10:04:45.770+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":378569, - "value":"", - "question_id":12893, - "created_at":"2018-04-26T10:04:45.776+02:00", - "updated_at":"2018-04-26T10:04:45.776+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378570, - "value":"", - "question_id":12893, - "created_at":"2018-04-26T10:04:45.788+02:00", - "updated_at":"2018-04-26T10:04:45.788+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378571, - "value":"", - "question_id":12893, - "created_at":"2018-04-26T10:04:45.798+02:00", - "updated_at":"2018-04-26T10:04:45.798+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378572, - "value":"", - "question_id":12893, - "created_at":"2018-04-26T10:04:45.804+02:00", - "updated_at":"2018-04-26T10:04:45.804+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":378573, - "value":"", - "question_id":12893, - "created_at":"2018-04-26T10:04:45.814+02:00", - "updated_at":"2018-04-26T10:04:45.814+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":378574, - "value":"", - "question_id":12893, - "created_at":"2018-04-26T10:04:45.821+02:00", - "updated_at":"2018-04-26T10:04:45.821+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378575, - "value":"", - "question_id":12893, - "created_at":"2018-04-26T10:04:45.826+02:00", - "updated_at":"2018-04-26T10:04:45.826+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383935, - "value":"Yes", - "question_id":12893, - "created_at":"2017-12-06T13:39:47.858+01:00", - "updated_at":"2017-12-06T13:39:47.858+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378576, - "value":"", - "question_id":12893, - "created_at":"2018-04-26T10:04:45.833+02:00", - "updated_at":"2018-04-26T10:04:45.833+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"class-registration", - "title":"Do you offer Class registration tool?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Class registration tool", - "title_detailed":"Software for teachers to register students for classes etc.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365613, - "value":"No", - "question_id":12895, - "created_at":"2017-09-06T12:17:07.986+02:00", - "updated_at":"2017-09-06T12:17:07.986+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365905, - "value":"Yes", - "question_id":12895, - "created_at":"2017-09-13T13:44:14.486+02:00", - "updated_at":"2017-09-13T13:44:14.486+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365963, - "value":"Yes", - "question_id":12895, - "created_at":"2017-09-13T14:15:59.427+02:00", - "updated_at":"2017-09-13T14:15:59.427+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366806, - "value":"Yes", - "question_id":12895, - "created_at":"2017-10-10T14:29:05.677+02:00", - "updated_at":"2017-10-10T14:29:05.677+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366941, - "value":"Planned", - "question_id":12895, - "created_at":"2017-10-11T10:47:38.565+02:00", - "updated_at":"2017-10-11T10:47:38.565+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367246, - "value":"Yes", - "question_id":12895, - "created_at":"2017-10-11T14:17:20.823+02:00", - "updated_at":"2017-10-11T14:17:20.823+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367310, - "value":"Yes", - "question_id":12895, - "created_at":"2017-10-11T20:51:21.990+02:00", - "updated_at":"2017-10-11T20:51:21.990+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367729, - "value":"Yes", - "question_id":12895, - "created_at":"2017-10-23T19:28:51.784+02:00", - "updated_at":"2017-10-23T19:28:51.784+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367940, - "value":"No", - "question_id":12895, - "created_at":"2017-10-24T13:22:34.687+02:00", - "updated_at":"2017-10-24T13:22:34.687+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":368499, - "value":"Planned", - "question_id":12895, - "created_at":"2017-10-31T14:25:32.923+01:00", - "updated_at":"2017-10-31T14:25:32.923+01:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368914, - "value":"Yes", - "question_id":12895, - "created_at":"2017-11-08T15:39:56.096+01:00", - "updated_at":"2017-11-08T15:39:56.096+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369224, - "value":"Yes", - "question_id":12895, - "created_at":"2017-11-10T15:37:12.433+01:00", - "updated_at":"2017-11-10T15:37:12.433+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369275, - "value":"Yes", - "question_id":12895, - "created_at":"2017-11-10T16:51:49.846+01:00", - "updated_at":"2017-11-10T16:51:49.846+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":369530, - "value":"Yes", - "question_id":12895, - "created_at":"2017-11-13T20:34:46.434+01:00", - "updated_at":"2017-11-13T20:34:46.434+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":369544, - "value":"Yes", - "question_id":12895, - "created_at":"2017-11-15T17:24:36.144+01:00", - "updated_at":"2017-11-15T17:24:36.144+01:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":369569, - "value":"Yes", - "question_id":12895, - "created_at":"2017-11-17T08:04:26.633+01:00", - "updated_at":"2017-11-17T08:04:26.633+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369833, - "value":"Yes", - "question_id":12895, - "created_at":"2017-11-21T13:49:20.962+01:00", - "updated_at":"2017-11-21T13:49:20.962+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370209, - "value":"No", - "question_id":12895, - "created_at":"2017-11-23T14:08:05.933+01:00", - "updated_at":"2017-11-23T14:08:05.933+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370762, - "value":"No", - "question_id":12895, - "created_at":"2017-11-27T09:35:24.564+01:00", - "updated_at":"2017-11-27T09:35:24.564+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371123, - "value":"Yes", - "question_id":12895, - "created_at":"2017-11-27T13:47:32.664+01:00", - "updated_at":"2017-11-27T13:47:32.664+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371763, - "value":"Yes", - "question_id":12895, - "created_at":"2017-11-28T13:17:13.093+01:00", - "updated_at":"2017-11-28T13:17:13.093+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":373092, - "value":"No", - "question_id":12895, - "created_at":"2017-12-01T15:42:03.705+01:00", - "updated_at":"2017-12-01T15:42:03.705+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":373179, - "value":"Planned", - "question_id":12895, - "created_at":"2017-12-01T17:31:00.809+01:00", - "updated_at":"2017-12-01T17:31:00.809+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373251, - "value":"Planned", - "question_id":12895, - "created_at":"2017-12-04T11:13:26.748+01:00", - "updated_at":"2017-12-04T11:13:26.748+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373695, - "value":"No", - "question_id":12895, - "created_at":"2017-12-04T17:57:59.744+01:00", - "updated_at":"2017-12-04T17:57:59.744+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374327, - "value":"Yes", - "question_id":12895, - "created_at":"2017-12-06T13:07:28.714+01:00", - "updated_at":"2017-12-06T13:07:28.714+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375029, - "value":"Yes", - "question_id":12895, - "created_at":"2017-12-14T14:20:57.473+01:00", - "updated_at":"2017-12-14T14:20:57.473+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375347, - "value":"Yes", - "question_id":12895, - "created_at":"2017-12-27T14:48:39.223+01:00", - "updated_at":"2017-12-27T14:48:39.223+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375456, - "value":"Yes", - "question_id":12895, - "created_at":"2017-12-28T10:18:43.374+01:00", - "updated_at":"2017-12-28T10:18:43.374+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375722, - "value":"No", - "question_id":12895, - "created_at":"2018-01-18T13:25:13.811+01:00", - "updated_at":"2018-01-18T13:25:13.811+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "267":{ - "id":375973, - "value":"Planned", - "question_id":12895, - "created_at":"2018-02-13T16:51:12.063+01:00", - "updated_at":"2018-02-13T16:51:12.063+01:00", - "response_id":null, - "nren_id":267, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"AAF - Australian Access Federation", - "country_name":"Australia", - "country_code":"AU", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378045, - "value":"", - "question_id":12895, - "created_at":"2018-04-26T10:04:41.005+02:00", - "updated_at":"2018-04-26T10:04:41.005+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378047, - "value":"", - "question_id":12895, - "created_at":"2018-04-26T10:04:41.021+02:00", - "updated_at":"2018-04-26T10:04:41.021+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378051, - "value":"", - "question_id":12895, - "created_at":"2018-04-26T10:04:41.051+02:00", - "updated_at":"2018-04-26T10:04:41.051+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378052, - "value":"", - "question_id":12895, - "created_at":"2018-04-26T10:04:41.062+02:00", - "updated_at":"2018-04-26T10:04:41.062+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378053, - "value":"", - "question_id":12895, - "created_at":"2018-04-26T10:04:41.068+02:00", - "updated_at":"2018-04-26T10:04:41.068+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378054, - "value":"", - "question_id":12895, - "created_at":"2018-04-26T10:04:41.085+02:00", - "updated_at":"2018-04-26T10:04:41.085+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":384005, - "value":"Yes", - "question_id":12895, - "created_at":"2017-12-06T13:33:22.171+01:00", - "updated_at":"2017-12-06T13:33:22.171+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618214, - "value":"Yes", - "question_id":12895, - "created_at":"2018-10-28T18:31:27.650+01:00", - "updated_at":"2018-10-28T18:31:27.650+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641548, - "value":"No", - "question_id":12895, - "created_at":"2018-10-30T13:51:11.923+01:00", - "updated_at":"2018-10-30T13:51:11.923+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756374, - "value":"Yes", - "question_id":12895, - "created_at":"2018-11-05T14:03:59.815+01:00", - "updated_at":"2018-11-05T14:03:59.815+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378055, - "value":"", - "question_id":12895, - "created_at":"2018-04-26T10:04:41.092+02:00", - "updated_at":"2018-04-26T10:04:41.092+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1481998, - "value":"Yes", - "question_id":12895, - "created_at":"2020-11-10T12:22:17.462+01:00", - "updated_at":"2020-11-10T12:22:17.462+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":1494271, - "value":"No", - "question_id":12895, - "created_at":"2021-01-14T14:59:57.614+01:00", - "updated_at":"2021-01-14T14:59:57.614+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"cloud-service-end-user", - "title":"Do you offer Cloud service: end user?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Cloud storage (end user)", - "title_detailed":"Browser based virtual storage service for individuals.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365559, - "value":"Yes", - "question_id":12955, - "created_at":"2017-09-06T12:08:07.572+02:00", - "updated_at":"2017-09-06T12:08:07.572+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365671, - "value":"Yes", - "question_id":12955, - "created_at":"2017-09-07T15:30:17.094+02:00", - "updated_at":"2017-09-07T15:30:17.094+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365869, - "value":"Yes", - "question_id":12955, - "created_at":"2017-09-13T13:36:59.012+02:00", - "updated_at":"2017-09-13T13:36:59.012+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366119, - "value":"Yes", - "question_id":12955, - "created_at":"2017-09-19T14:35:39.037+02:00", - "updated_at":"2017-09-19T14:35:39.037+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366293, - "value":"Yes", - "question_id":12955, - "created_at":"2017-09-29T13:38:18.852+02:00", - "updated_at":"2017-09-29T13:38:18.852+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366540, - "value":"Yes", - "question_id":12955, - "created_at":"2017-10-08T08:45:40.477+02:00", - "updated_at":"2017-10-08T08:45:40.477+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366738, - "value":"Yes", - "question_id":12955, - "created_at":"2017-10-10T10:49:23.223+02:00", - "updated_at":"2017-10-10T10:49:23.223+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367315, - "value":"Yes", - "question_id":12955, - "created_at":"2017-10-11T20:52:26.767+02:00", - "updated_at":"2017-10-11T20:52:26.767+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367683, - "value":"Yes", - "question_id":12955, - "created_at":"2017-10-23T19:23:56.142+02:00", - "updated_at":"2017-10-23T19:23:56.142+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367871, - "value":"Yes", - "question_id":12955, - "created_at":"2017-10-24T12:59:20.881+02:00", - "updated_at":"2017-10-24T12:59:20.881+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368614, - "value":"Yes", - "question_id":12955, - "created_at":"2017-11-02T09:52:34.145+01:00", - "updated_at":"2017-11-02T09:52:34.145+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368684, - "value":"Yes", - "question_id":12955, - "created_at":"2017-11-02T13:20:12.048+01:00", - "updated_at":"2017-11-02T13:20:12.048+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369315, - "value":"Yes", - "question_id":12955, - "created_at":"2017-11-11T20:17:22.378+01:00", - "updated_at":"2017-11-11T20:17:22.378+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369803, - "value":"Yes", - "question_id":12955, - "created_at":"2017-11-21T13:33:54.814+01:00", - "updated_at":"2017-11-21T13:33:54.814+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369861, - "value":"Yes", - "question_id":12955, - "created_at":"2017-11-21T15:46:29.401+01:00", - "updated_at":"2017-11-21T15:46:29.401+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370117, - "value":"Yes", - "question_id":12955, - "created_at":"2017-11-23T13:36:02.240+01:00", - "updated_at":"2017-11-23T13:36:02.240+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370698, - "value":"Yes", - "question_id":12955, - "created_at":"2017-11-27T09:29:01.621+01:00", - "updated_at":"2017-11-27T09:29:01.621+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371099, - "value":"Yes", - "question_id":12955, - "created_at":"2017-11-27T13:44:05.913+01:00", - "updated_at":"2017-11-27T13:44:05.913+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371693, - "value":"Yes", - "question_id":12955, - "created_at":"2017-11-28T13:05:18.640+01:00", - "updated_at":"2017-11-28T13:05:18.640+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":372102, - "value":"Yes", - "question_id":12955, - "created_at":"2017-11-28T17:35:15.580+01:00", - "updated_at":"2017-11-28T17:35:15.580+01:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372213, - "value":"Yes", - "question_id":12955, - "created_at":"2017-11-29T11:57:12.375+01:00", - "updated_at":"2017-11-29T11:57:12.375+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":372496, - "value":"No", - "question_id":12955, - "created_at":"2017-11-29T20:20:16.477+01:00", - "updated_at":"2017-11-29T20:20:16.477+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372564, - "value":"Yes", - "question_id":12955, - "created_at":"2017-11-29T21:31:32.208+01:00", - "updated_at":"2017-11-29T21:31:32.208+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373276, - "value":"Yes", - "question_id":12955, - "created_at":"2017-12-04T11:17:09.058+01:00", - "updated_at":"2017-12-04T11:17:09.058+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373634, - "value":"Yes", - "question_id":12955, - "created_at":"2017-12-04T17:48:50.566+01:00", - "updated_at":"2017-12-04T17:48:50.566+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374218, - "value":"Yes", - "question_id":12955, - "created_at":"2017-12-06T10:53:28.388+01:00", - "updated_at":"2017-12-06T10:53:28.388+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374687, - "value":"Yes", - "question_id":12955, - "created_at":"2017-12-13T09:54:13.180+01:00", - "updated_at":"2017-12-13T09:54:13.180+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374901, - "value":"Yes", - "question_id":12955, - "created_at":"2017-12-14T12:44:37.322+01:00", - "updated_at":"2017-12-14T12:44:37.322+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":374968, - "value":"Yes", - "question_id":12955, - "created_at":"2017-12-14T14:14:27.527+01:00", - "updated_at":"2017-12-14T14:14:27.527+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375390, - "value":"Yes", - "question_id":12955, - "created_at":"2017-12-28T10:00:33.192+01:00", - "updated_at":"2017-12-28T10:00:33.192+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375784, - "value":"Yes", - "question_id":12955, - "created_at":"2018-01-22T00:37:28.683+01:00", - "updated_at":"2018-01-22T00:37:28.683+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376270, - "value":"", - "question_id":12955, - "created_at":"2018-04-26T10:04:22.516+02:00", - "updated_at":"2018-04-26T10:04:22.516+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376272, - "value":"", - "question_id":12955, - "created_at":"2018-04-26T10:04:22.537+02:00", - "updated_at":"2018-04-26T10:04:22.537+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376276, - "value":"", - "question_id":12955, - "created_at":"2018-04-26T10:04:22.583+02:00", - "updated_at":"2018-04-26T10:04:22.583+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376278, - "value":"", - "question_id":12955, - "created_at":"2018-04-26T10:04:22.603+02:00", - "updated_at":"2018-04-26T10:04:22.603+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376279, - "value":"", - "question_id":12955, - "created_at":"2018-04-26T10:04:22.627+02:00", - "updated_at":"2018-04-26T10:04:22.627+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383945, - "value":"Yes", - "question_id":12955, - "created_at":"2017-12-05T15:42:32.266+01:00", - "updated_at":"2017-12-05T15:42:32.266+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618207, - "value":"Yes", - "question_id":12955, - "created_at":"2018-10-28T18:28:54.723+01:00", - "updated_at":"2018-10-28T18:28:54.723+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641542, - "value":"Yes", - "question_id":12955, - "created_at":"2018-10-30T13:48:26.042+01:00", - "updated_at":"2018-10-30T13:48:26.042+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774381, - "value":"Yes", - "question_id":12955, - "created_at":"2018-11-15T12:42:09.906+01:00", - "updated_at":"2018-11-15T12:42:09.906+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":826839, - "value":"Yes", - "question_id":12955, - "created_at":"2019-09-17T09:41:27.372+02:00", - "updated_at":"2019-09-17T09:41:27.372+02:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":999963, - "value":"Yes", - "question_id":12955, - "created_at":"2019-11-03T22:50:25.739+01:00", - "updated_at":"2019-11-03T22:50:25.739+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":371477, - "value":"Yes", - "question_id":12955, - "created_at":"2017-11-27T14:59:58.067+01:00", - "updated_at":"2017-11-27T14:59:58.067+01:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"connectivity", - "title":"Do you offer IP connectivity?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"IP connectivity", - "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365622, - "value":"Yes", - "question_id":12897, - "created_at":"2017-09-06T12:18:04.937+02:00", - "updated_at":"2017-09-06T12:18:04.937+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365680, - "value":"Yes", - "question_id":12897, - "created_at":"2017-09-07T15:32:16.732+02:00", - "updated_at":"2017-09-07T15:32:16.732+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366579, - "value":"Yes", - "question_id":12897, - "created_at":"2017-10-08T09:16:43.782+02:00", - "updated_at":"2017-10-08T09:16:43.782+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366895, - "value":"Yes", - "question_id":12897, - "created_at":"2017-10-11T09:37:05.587+02:00", - "updated_at":"2017-10-11T09:37:05.587+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367251, - "value":"Yes", - "question_id":12897, - "created_at":"2017-10-11T14:18:46.756+02:00", - "updated_at":"2017-10-11T14:18:46.756+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367947, - "value":"Yes", - "question_id":12897, - "created_at":"2017-10-24T13:25:15.125+02:00", - "updated_at":"2017-10-24T13:25:15.125+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369233, - "value":"Yes", - "question_id":12897, - "created_at":"2017-11-10T15:38:37.393+01:00", - "updated_at":"2017-11-10T15:38:37.393+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369697, - "value":"Yes", - "question_id":12897, - "created_at":"2017-11-21T11:40:27.104+01:00", - "updated_at":"2017-11-21T11:40:27.104+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369900, - "value":"Yes", - "question_id":12897, - "created_at":"2017-11-21T16:50:57.238+01:00", - "updated_at":"2017-11-21T16:50:57.238+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370217, - "value":"No", - "question_id":12897, - "created_at":"2017-11-23T14:09:11.709+01:00", - "updated_at":"2017-11-23T14:09:11.709+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":370361, - "value":"No", - "question_id":12897, - "created_at":"2017-11-24T16:13:27.261+01:00", - "updated_at":"2017-11-24T16:13:27.261+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371315, - "value":"Yes", - "question_id":12897, - "created_at":"2017-11-27T14:30:19.838+01:00", - "updated_at":"2017-11-27T14:30:19.838+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371770, - "value":"No", - "question_id":12897, - "created_at":"2017-11-28T13:18:15.541+01:00", - "updated_at":"2017-11-28T13:18:15.541+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372638, - "value":"Yes", - "question_id":12897, - "created_at":"2017-11-29T21:45:36.424+01:00", - "updated_at":"2017-11-29T21:45:36.424+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372758, - "value":"Yes", - "question_id":12897, - "created_at":"2017-11-30T08:33:02.720+01:00", - "updated_at":"2017-11-30T08:33:02.720+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":372809, - "value":"No", - "question_id":12897, - "created_at":"2017-11-30T08:59:17.953+01:00", - "updated_at":"2017-11-30T08:59:17.953+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373252, - "value":"Yes", - "question_id":12897, - "created_at":"2017-12-04T11:14:21.853+01:00", - "updated_at":"2017-12-04T11:14:21.853+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373703, - "value":"Yes", - "question_id":12897, - "created_at":"2017-12-04T17:59:20.466+01:00", - "updated_at":"2017-12-04T17:59:20.466+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374341, - "value":"Yes", - "question_id":12897, - "created_at":"2017-12-06T13:12:16.852+01:00", - "updated_at":"2017-12-06T13:12:16.852+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374739, - "value":"Yes", - "question_id":12897, - "created_at":"2017-12-13T11:27:16.293+01:00", - "updated_at":"2017-12-13T11:27:16.293+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375032, - "value":"Yes", - "question_id":12897, - "created_at":"2017-12-14T14:21:24.605+01:00", - "updated_at":"2017-12-14T14:21:24.605+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375462, - "value":"Yes", - "question_id":12897, - "created_at":"2017-12-28T10:19:37.647+01:00", - "updated_at":"2017-12-28T10:19:37.647+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375895, - "value":"Yes", - "question_id":12897, - "created_at":"2018-01-23T12:30:29.082+01:00", - "updated_at":"2018-01-23T12:30:29.082+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378180, - "value":"", - "question_id":12897, - "created_at":"2018-04-26T10:04:42.055+02:00", - "updated_at":"2018-04-26T10:04:42.055+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378182, - "value":"", - "question_id":12897, - "created_at":"2018-04-26T10:04:42.073+02:00", - "updated_at":"2018-04-26T10:04:42.073+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378186, - "value":"", - "question_id":12897, - "created_at":"2018-04-26T10:04:42.114+02:00", - "updated_at":"2018-04-26T10:04:42.114+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378187, - "value":"", - "question_id":12897, - "created_at":"2018-04-26T10:04:42.128+02:00", - "updated_at":"2018-04-26T10:04:42.128+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378188, - "value":"", - "question_id":12897, - "created_at":"2018-04-26T10:04:42.137+02:00", - "updated_at":"2018-04-26T10:04:42.137+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":378189, - "value":"", - "question_id":12897, - "created_at":"2018-04-26T10:04:42.145+02:00", - "updated_at":"2018-04-26T10:04:42.145+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378191, - "value":"", - "question_id":12897, - "created_at":"2018-04-26T10:04:42.171+02:00", - "updated_at":"2018-04-26T10:04:42.171+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":384007, - "value":"Yes", - "question_id":12897, - "created_at":"2017-12-05T15:57:43.997+01:00", - "updated_at":"2017-12-05T15:57:43.997+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":463855, - "value":"Yes", - "question_id":12897, - "created_at":"2018-10-11T14:53:38.787+02:00", - "updated_at":"2018-10-11T14:53:38.787+02:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618220, - "value":"Yes", - "question_id":12897, - "created_at":"2018-10-28T18:33:31.991+01:00", - "updated_at":"2018-10-28T18:33:31.991+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756379, - "value":"Yes", - "question_id":12897, - "created_at":"2018-11-05T14:05:29.202+01:00", - "updated_at":"2018-11-05T14:05:29.202+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":1248626, - "value":"Yes", - "question_id":12897, - "created_at":"2019-12-02T17:29:39.882+01:00", - "updated_at":"2019-12-02T17:29:39.882+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378192, - "value":"", - "question_id":12897, - "created_at":"2018-04-26T10:04:42.183+02:00", - "updated_at":"2018-04-26T10:04:42.183+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":1470693, - "value":"Yes", - "question_id":12897, - "created_at":"2020-10-16T13:57:49.735+02:00", - "updated_at":"2020-10-16T13:57:49.735+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1482002, - "value":"Yes", - "question_id":12897, - "created_at":"2020-11-10T12:24:20.929+01:00", - "updated_at":"2020-11-10T12:24:20.929+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":1488523, - "value":"Yes", - "question_id":12897, - "created_at":"2020-11-27T09:50:43.063+01:00", - "updated_at":"2020-11-27T09:50:43.063+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493629, - "value":"Yes", - "question_id":12897, - "created_at":"2020-12-18T14:47:42.109+01:00", - "updated_at":"2020-12-18T14:47:42.109+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":1496991, - "value":"Yes", - "question_id":12897, - "created_at":"2021-08-31T08:41:08.475+02:00", - "updated_at":"2021-08-31T08:41:08.475+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":1500366, - "value":"Yes", - "question_id":12897, - "created_at":"2021-11-08T12:27:53.740+01:00", - "updated_at":"2021-11-08T12:27:53.740+01:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":1518023, - "value":"Yes", - "question_id":12897, - "created_at":"2022-10-10T14:42:19.749+02:00", - "updated_at":"2022-10-10T14:42:19.749+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"consultancy", - "title":"Do you offer Consultancy and training services?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Consultancy/training", - "title_detailed":"Training and consultancy services provided by the NREN.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365648, - "value":"No", - "question_id":12899, - "created_at":"2017-09-06T12:19:39.225+02:00", - "updated_at":"2017-09-06T12:19:39.225+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366377, - "value":"No", - "question_id":12899, - "created_at":"2017-09-29T13:53:42.185+02:00", - "updated_at":"2017-09-29T13:53:42.185+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366868, - "value":"Yes", - "question_id":12899, - "created_at":"2017-10-11T09:34:56.852+02:00", - "updated_at":"2017-10-11T09:34:56.852+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366953, - "value":"No", - "question_id":12899, - "created_at":"2017-10-11T10:51:56.660+02:00", - "updated_at":"2017-10-11T10:51:56.660+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367158, - "value":"No", - "question_id":12899, - "created_at":"2017-10-11T13:45:22.297+02:00", - "updated_at":"2017-10-11T13:45:22.297+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367512, - "value":"No", - "question_id":12899, - "created_at":"2017-10-17T12:09:24.527+02:00", - "updated_at":"2017-10-17T12:09:24.527+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367768, - "value":"No", - "question_id":12899, - "created_at":"2017-10-23T19:40:32.617+02:00", - "updated_at":"2017-10-23T19:40:32.617+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367972, - "value":"No", - "question_id":12899, - "created_at":"2017-10-24T13:31:57.892+02:00", - "updated_at":"2017-10-24T13:31:57.892+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368372, - "value":"Yes", - "question_id":12899, - "created_at":"2017-10-31T08:58:37.616+01:00", - "updated_at":"2017-10-31T08:58:37.616+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368569, - "value":"No", - "question_id":12899, - "created_at":"2017-10-31T14:42:33.236+01:00", - "updated_at":"2017-10-31T14:42:33.236+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369257, - "value":"Yes", - "question_id":12899, - "created_at":"2017-11-10T15:40:41.408+01:00", - "updated_at":"2017-11-10T15:40:41.408+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369821, - "value":"No", - "question_id":12899, - "created_at":"2017-11-21T13:46:29.321+01:00", - "updated_at":"2017-11-21T13:46:29.321+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370247, - "value":"No", - "question_id":12899, - "created_at":"2017-11-23T14:13:26.077+01:00", - "updated_at":"2017-11-23T14:13:26.077+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370796, - "value":"No", - "question_id":12899, - "created_at":"2017-11-27T09:38:00.980+01:00", - "updated_at":"2017-11-27T09:38:00.980+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371134, - "value":"Yes", - "question_id":12899, - "created_at":"2017-11-27T13:57:14.438+01:00", - "updated_at":"2017-11-27T13:57:14.438+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371251, - "value":"No", - "question_id":12899, - "created_at":"2017-11-27T14:21:43.617+01:00", - "updated_at":"2017-11-27T14:21:43.617+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371798, - "value":"No", - "question_id":12899, - "created_at":"2017-11-28T13:19:47.741+01:00", - "updated_at":"2017-11-28T13:19:47.741+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372342, - "value":"No", - "question_id":12899, - "created_at":"2017-11-29T12:35:31.351+01:00", - "updated_at":"2017-11-29T12:35:31.351+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372666, - "value":"No", - "question_id":12899, - "created_at":"2017-11-29T21:49:18.093+01:00", - "updated_at":"2017-11-29T21:49:18.093+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373729, - "value":"No", - "question_id":12899, - "created_at":"2017-12-04T18:02:07.042+01:00", - "updated_at":"2017-12-04T18:02:07.042+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374073, - "value":"No", - "question_id":12899, - "created_at":"2017-12-06T07:28:18.915+01:00", - "updated_at":"2017-12-06T07:28:18.915+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374392, - "value":"No", - "question_id":12899, - "created_at":"2017-12-06T13:26:12.815+01:00", - "updated_at":"2017-12-06T13:26:12.815+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375505, - "value":"Yes", - "question_id":12899, - "created_at":"2017-12-28T10:37:13.396+01:00", - "updated_at":"2017-12-28T10:37:13.396+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375684, - "value":"No", - "question_id":12899, - "created_at":"2018-01-08T16:02:10.726+01:00", - "updated_at":"2018-01-08T16:02:10.726+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375736, - "value":"No", - "question_id":12899, - "created_at":"2018-01-18T13:32:13.870+01:00", - "updated_at":"2018-01-18T13:32:13.870+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379360, - "value":"", - "question_id":12899, - "created_at":"2018-04-26T10:04:52.979+02:00", - "updated_at":"2018-04-26T10:04:52.979+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":379361, - "value":"", - "question_id":12899, - "created_at":"2018-04-26T10:04:52.992+02:00", - "updated_at":"2018-04-26T10:04:52.992+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379362, - "value":"", - "question_id":12899, - "created_at":"2018-04-26T10:04:52.999+02:00", - "updated_at":"2018-04-26T10:04:52.999+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":379365, - "value":"", - "question_id":12899, - "created_at":"2018-04-26T10:04:53.022+02:00", - "updated_at":"2018-04-26T10:04:53.022+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":379366, - "value":"", - "question_id":12899, - "created_at":"2018-04-26T10:04:53.030+02:00", - "updated_at":"2018-04-26T10:04:53.030+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":379367, - "value":"", - "question_id":12899, - "created_at":"2018-04-26T10:04:53.045+02:00", - "updated_at":"2018-04-26T10:04:53.045+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":379368, - "value":"", - "question_id":12899, - "created_at":"2018-04-26T10:04:53.058+02:00", - "updated_at":"2018-04-26T10:04:53.058+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379369, - "value":"", - "question_id":12899, - "created_at":"2018-04-26T10:04:53.065+02:00", - "updated_at":"2018-04-26T10:04:53.065+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":379370, - "value":"", - "question_id":12899, - "created_at":"2018-04-26T10:04:53.073+02:00", - "updated_at":"2018-04-26T10:04:53.073+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":379371, - "value":"", - "question_id":12899, - "created_at":"2018-04-26T10:04:53.080+02:00", - "updated_at":"2018-04-26T10:04:53.080+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":379372, - "value":"", - "question_id":12899, - "created_at":"2018-04-26T10:04:53.094+02:00", - "updated_at":"2018-04-26T10:04:53.094+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379373, - "value":"", - "question_id":12899, - "created_at":"2018-04-26T10:04:53.105+02:00", - "updated_at":"2018-04-26T10:04:53.105+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":379375, - "value":"", - "question_id":12899, - "created_at":"2018-04-26T10:04:53.122+02:00", - "updated_at":"2018-04-26T10:04:53.122+02:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756406, - "value":"Yes", - "question_id":12899, - "created_at":"2018-11-05T14:33:59.122+01:00", - "updated_at":"2018-11-05T14:33:59.122+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":964665, - "value":"No", - "question_id":12899, - "created_at":"2019-10-31T14:46:13.235+01:00", - "updated_at":"2019-10-31T14:46:13.235+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379374, - "value":"", - "question_id":12899, - "created_at":"2018-04-26T10:04:53.115+02:00", - "updated_at":"2018-04-26T10:04:53.115+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1517913, - "value":"No", - "question_id":12899, - "created_at":"2022-09-29T14:43:27.159+02:00", - "updated_at":"2022-09-29T14:43:27.159+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-delivery-hosting", - "title":"Do you offer Content delivery hosting?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Content delivery hosting", - "title_detailed":"Hosting of content delivery servers e.g. Akamai.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365649, - "value":"No", - "question_id":12901, - "created_at":"2017-09-06T12:19:41.714+02:00", - "updated_at":"2017-09-06T12:19:41.714+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":366194, - "value":"No", - "question_id":12901, - "created_at":"2017-09-26T09:19:39.902+02:00", - "updated_at":"2017-09-26T09:19:39.902+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366378, - "value":"No", - "question_id":12901, - "created_at":"2017-09-29T13:53:47.688+02:00", - "updated_at":"2017-09-29T13:53:47.688+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366954, - "value":"Yes", - "question_id":12901, - "created_at":"2017-10-11T10:52:06.931+02:00", - "updated_at":"2017-10-11T10:52:06.931+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366866, - "value":"No", - "question_id":12901, - "created_at":"2017-10-11T09:34:52.871+02:00", - "updated_at":"2017-10-11T09:34:52.871+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367159, - "value":"No", - "question_id":12901, - "created_at":"2017-10-11T13:45:32.795+02:00", - "updated_at":"2017-10-11T13:45:32.795+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367513, - "value":"No", - "question_id":12901, - "created_at":"2017-10-17T12:09:37.623+02:00", - "updated_at":"2017-10-17T12:09:37.623+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367769, - "value":"No", - "question_id":12901, - "created_at":"2017-10-23T19:40:36.154+02:00", - "updated_at":"2017-10-23T19:40:36.154+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367973, - "value":"No", - "question_id":12901, - "created_at":"2017-10-24T13:32:07.584+02:00", - "updated_at":"2017-10-24T13:32:07.584+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368374, - "value":"No", - "question_id":12901, - "created_at":"2017-10-31T08:58:59.956+01:00", - "updated_at":"2017-10-31T08:58:59.956+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368568, - "value":"No", - "question_id":12901, - "created_at":"2017-10-31T14:42:31.473+01:00", - "updated_at":"2017-10-31T14:42:31.473+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368947, - "value":"No", - "question_id":12901, - "created_at":"2017-11-08T15:52:40.632+01:00", - "updated_at":"2017-11-08T15:52:40.632+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369258, - "value":"Yes", - "question_id":12901, - "created_at":"2017-11-10T15:40:46.893+01:00", - "updated_at":"2017-11-10T15:40:46.893+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369819, - "value":"No", - "question_id":12901, - "created_at":"2017-11-21T13:46:16.018+01:00", - "updated_at":"2017-11-21T13:46:16.018+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370248, - "value":"No", - "question_id":12901, - "created_at":"2017-11-23T14:13:30.252+01:00", - "updated_at":"2017-11-23T14:13:30.252+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":370404, - "value":"No", - "question_id":12901, - "created_at":"2017-11-24T16:44:10.685+01:00", - "updated_at":"2017-11-24T16:44:10.685+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370797, - "value":"No", - "question_id":12901, - "created_at":"2017-11-27T09:38:02.784+01:00", - "updated_at":"2017-11-27T09:38:02.784+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371135, - "value":"No", - "question_id":12901, - "created_at":"2017-11-27T13:57:23.764+01:00", - "updated_at":"2017-11-27T13:57:23.764+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371249, - "value":"No", - "question_id":12901, - "created_at":"2017-11-27T14:21:35.467+01:00", - "updated_at":"2017-11-27T14:21:35.467+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371799, - "value":"No", - "question_id":12901, - "created_at":"2017-11-28T13:19:49.143+01:00", - "updated_at":"2017-11-28T13:19:49.143+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372344, - "value":"Yes", - "question_id":12901, - "created_at":"2017-11-29T12:35:39.860+01:00", - "updated_at":"2017-11-29T12:35:39.860+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372667, - "value":"No", - "question_id":12901, - "created_at":"2017-11-29T21:49:22.353+01:00", - "updated_at":"2017-11-29T21:49:22.353+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373273, - "value":"Yes", - "question_id":12901, - "created_at":"2017-12-04T11:16:48.370+01:00", - "updated_at":"2017-12-04T11:16:48.370+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373730, - "value":"Yes", - "question_id":12901, - "created_at":"2017-12-04T18:02:15.671+01:00", - "updated_at":"2017-12-04T18:02:15.671+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374728, - "value":"Yes", - "question_id":12901, - "created_at":"2017-12-13T11:17:22.064+01:00", - "updated_at":"2017-12-13T11:17:22.064+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375485, - "value":"Yes", - "question_id":12901, - "created_at":"2017-12-28T10:23:45.895+01:00", - "updated_at":"2017-12-28T10:23:45.895+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379412, - "value":"", - "question_id":12901, - "created_at":"2018-04-26T10:04:53.497+02:00", - "updated_at":"2018-04-26T10:04:53.497+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":379413, - "value":"", - "question_id":12901, - "created_at":"2018-04-26T10:04:53.510+02:00", - "updated_at":"2018-04-26T10:04:53.510+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379414, - "value":"", - "question_id":12901, - "created_at":"2018-04-26T10:04:53.518+02:00", - "updated_at":"2018-04-26T10:04:53.518+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":379416, - "value":"", - "question_id":12901, - "created_at":"2018-04-26T10:04:53.535+02:00", - "updated_at":"2018-04-26T10:04:53.535+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":379417, - "value":"", - "question_id":12901, - "created_at":"2018-04-26T10:04:53.543+02:00", - "updated_at":"2018-04-26T10:04:53.543+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":379418, - "value":"", - "question_id":12901, - "created_at":"2018-04-26T10:04:53.559+02:00", - "updated_at":"2018-04-26T10:04:53.559+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379420, - "value":"", - "question_id":12901, - "created_at":"2018-04-26T10:04:53.578+02:00", - "updated_at":"2018-04-26T10:04:53.578+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":379421, - "value":"", - "question_id":12901, - "created_at":"2018-04-26T10:04:53.586+02:00", - "updated_at":"2018-04-26T10:04:53.586+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":379422, - "value":"", - "question_id":12901, - "created_at":"2018-04-26T10:04:53.601+02:00", - "updated_at":"2018-04-26T10:04:53.601+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379423, - "value":"", - "question_id":12901, - "created_at":"2018-04-26T10:04:53.612+02:00", - "updated_at":"2018-04-26T10:04:53.612+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":379424, - "value":"", - "question_id":12901, - "created_at":"2018-04-26T10:04:53.619+02:00", - "updated_at":"2018-04-26T10:04:53.619+02:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":379426, - "value":"", - "question_id":12901, - "created_at":"2018-04-26T10:04:53.635+02:00", - "updated_at":"2018-04-26T10:04:53.635+02:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383928, - "value":"Yes", - "question_id":12901, - "created_at":"2017-12-06T13:43:57.524+01:00", - "updated_at":"2017-12-06T13:43:57.524+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379425, - "value":"", - "question_id":12901, - "created_at":"2018-04-26T10:04:53.628+02:00", - "updated_at":"2018-04-26T10:04:53.628+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1483388, - "value":"No", - "question_id":12901, - "created_at":"2020-11-16T13:56:10.170+01:00", - "updated_at":"2020-11-16T13:56:10.170+01:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":1502661, - "value":"No", - "question_id":12901, - "created_at":"2021-11-16T00:43:58.774+01:00", - "updated_at":"2021-11-16T00:43:58.774+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":1518022, - "value":"Yes", - "question_id":12901, - "created_at":"2022-10-10T14:39:57.063+02:00", - "updated_at":"2022-10-10T14:39:57.063+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"content-management-system", - "title":"Do you provide Content Management System?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"CMS", - "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365578, - "value":"Yes", - "question_id":12903, - "created_at":"2017-09-06T12:13:03.086+02:00", - "updated_at":"2017-09-06T12:13:03.086+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365675, - "value":"Yes", - "question_id":12903, - "created_at":"2017-09-07T15:31:21.916+02:00", - "updated_at":"2017-09-07T15:31:21.916+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365890, - "value":"Yes", - "question_id":12903, - "created_at":"2017-09-13T13:41:43.938+02:00", - "updated_at":"2017-09-13T13:41:43.938+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366148, - "value":"Yes", - "question_id":12903, - "created_at":"2017-09-19T14:55:33.311+02:00", - "updated_at":"2017-09-19T14:55:33.311+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366557, - "value":"Yes", - "question_id":12903, - "created_at":"2017-10-08T09:09:44.031+02:00", - "updated_at":"2017-10-08T09:09:44.031+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366746, - "value":"Yes", - "question_id":12903, - "created_at":"2017-10-10T12:47:33.159+02:00", - "updated_at":"2017-10-10T12:47:33.159+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367303, - "value":"Yes", - "question_id":12903, - "created_at":"2017-10-11T20:49:27.626+02:00", - "updated_at":"2017-10-11T20:49:27.626+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367705, - "value":"Yes", - "question_id":12903, - "created_at":"2017-10-23T19:26:03.517+02:00", - "updated_at":"2017-10-23T19:26:03.517+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367898, - "value":"Yes", - "question_id":12903, - "created_at":"2017-10-24T13:08:37.120+02:00", - "updated_at":"2017-10-24T13:08:37.120+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368154, - "value":"Yes", - "question_id":12903, - "created_at":"2017-10-30T09:18:57.880+01:00", - "updated_at":"2017-10-30T09:18:57.880+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":368225, - "value":"Yes", - "question_id":12903, - "created_at":"2017-10-30T12:40:40.357+01:00", - "updated_at":"2017-10-30T12:40:40.357+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368384, - "value":"Yes", - "question_id":12903, - "created_at":"2017-10-31T13:02:05.327+01:00", - "updated_at":"2017-10-31T13:02:05.327+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368714, - "value":"Yes", - "question_id":12903, - "created_at":"2017-11-02T13:22:44.322+01:00", - "updated_at":"2017-11-02T13:22:44.322+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":369103, - "value":"Yes", - "question_id":12903, - "created_at":"2017-11-10T14:28:55.393+01:00", - "updated_at":"2017-11-10T14:28:55.393+01:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369189, - "value":"Yes", - "question_id":12903, - "created_at":"2017-11-10T15:32:41.512+01:00", - "updated_at":"2017-11-10T15:32:41.512+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369351, - "value":"Yes", - "question_id":12903, - "created_at":"2017-11-11T20:34:22.040+01:00", - "updated_at":"2017-11-11T20:34:22.040+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370155, - "value":"Yes", - "question_id":12903, - "created_at":"2017-11-23T13:52:04.461+01:00", - "updated_at":"2017-11-23T13:52:04.461+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370724, - "value":"Yes", - "question_id":12903, - "created_at":"2017-11-27T09:31:50.992+01:00", - "updated_at":"2017-11-27T09:31:50.992+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370927, - "value":"Yes", - "question_id":12903, - "created_at":"2017-11-27T10:36:15.554+01:00", - "updated_at":"2017-11-27T10:36:15.554+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371329, - "value":"Yes", - "question_id":12903, - "created_at":"2017-11-27T14:32:03.794+01:00", - "updated_at":"2017-11-27T14:32:03.794+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371722, - "value":"Yes", - "question_id":12903, - "created_at":"2017-11-28T13:08:32.615+01:00", - "updated_at":"2017-11-28T13:08:32.615+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372254, - "value":"Yes", - "question_id":12903, - "created_at":"2017-11-29T12:15:57.069+01:00", - "updated_at":"2017-11-29T12:15:57.069+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372588, - "value":"Yes", - "question_id":12903, - "created_at":"2017-11-29T21:36:02.898+01:00", - "updated_at":"2017-11-29T21:36:02.898+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373663, - "value":"Yes", - "question_id":12903, - "created_at":"2017-12-04T17:53:15.290+01:00", - "updated_at":"2017-12-04T17:53:15.290+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374035, - "value":"Planned", - "question_id":12903, - "created_at":"2017-12-06T06:57:21.916+01:00", - "updated_at":"2017-12-06T06:57:21.916+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374257, - "value":"No", - "question_id":12903, - "created_at":"2017-12-06T11:11:31.945+01:00", - "updated_at":"2017-12-06T11:11:31.945+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374688, - "value":"Yes", - "question_id":12903, - "created_at":"2017-12-13T09:55:13.655+01:00", - "updated_at":"2017-12-13T09:55:13.655+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":374997, - "value":"Yes", - "question_id":12903, - "created_at":"2017-12-14T14:18:24.000+01:00", - "updated_at":"2017-12-14T14:18:24.000+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375420, - "value":"Yes", - "question_id":12903, - "created_at":"2017-12-28T10:06:01.015+01:00", - "updated_at":"2017-12-28T10:06:01.015+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375709, - "value":"Yes", - "question_id":12903, - "created_at":"2018-01-18T13:21:08.733+01:00", - "updated_at":"2018-01-18T13:21:08.733+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377003, - "value":"", - "question_id":12903, - "created_at":"2018-04-26T10:04:30.991+02:00", - "updated_at":"2018-04-26T10:04:30.991+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377005, - "value":"", - "question_id":12903, - "created_at":"2018-04-26T10:04:31.007+02:00", - "updated_at":"2018-04-26T10:04:31.007+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":377009, - "value":"", - "question_id":12903, - "created_at":"2018-04-26T10:04:31.036+02:00", - "updated_at":"2018-04-26T10:04:31.036+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377010, - "value":"", - "question_id":12903, - "created_at":"2018-04-26T10:04:31.053+02:00", - "updated_at":"2018-04-26T10:04:31.053+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377011, - "value":"", - "question_id":12903, - "created_at":"2018-04-26T10:04:31.067+02:00", - "updated_at":"2018-04-26T10:04:31.067+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377012, - "value":"", - "question_id":12903, - "created_at":"2018-04-26T10:04:31.075+02:00", - "updated_at":"2018-04-26T10:04:31.075+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377013, - "value":"", - "question_id":12903, - "created_at":"2018-04-26T10:04:31.094+02:00", - "updated_at":"2018-04-26T10:04:31.094+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":384000, - "value":"Yes", - "question_id":12903, - "created_at":"2017-12-05T15:45:34.789+01:00", - "updated_at":"2017-12-05T15:45:34.789+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618210, - "value":"Yes", - "question_id":12903, - "created_at":"2018-10-28T18:29:46.093+01:00", - "updated_at":"2018-10-28T18:29:46.093+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756370, - "value":"Yes", - "question_id":12903, - "created_at":"2018-11-05T14:02:48.808+01:00", - "updated_at":"2018-11-05T14:02:48.808+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377014, - "value":"", - "question_id":12903, - "created_at":"2018-04-26T10:04:31.104+02:00", - "updated_at":"2018-04-26T10:04:31.104+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493606, - "value":"Yes", - "question_id":12903, - "created_at":"2020-12-18T14:40:02.158+01:00", - "updated_at":"2020-12-18T14:40:02.158+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1501057, - "value":"Planned", - "question_id":12903, - "created_at":"2021-11-09T16:14:00.888+01:00", - "updated_at":"2021-11-09T16:14:00.888+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"csirt", - "title":"Do you offer CSIRT/CERT?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"CERT/CSIRT", - "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "16":{ - "id":366149, - "value":"Yes", - "question_id":12913, - "created_at":"2017-09-19T14:55:42.615+02:00", - "updated_at":"2017-09-19T14:55:42.615+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366747, - "value":"Yes", - "question_id":12913, - "created_at":"2017-10-10T12:48:26.221+02:00", - "updated_at":"2017-10-10T12:48:26.221+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366914, - "value":"Yes", - "question_id":12913, - "created_at":"2017-10-11T10:42:08.417+02:00", - "updated_at":"2017-10-11T10:42:08.417+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367706, - "value":"Yes", - "question_id":12913, - "created_at":"2017-10-23T19:26:07.150+02:00", - "updated_at":"2017-10-23T19:26:07.150+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367900, - "value":"Yes", - "question_id":12913, - "created_at":"2017-10-24T13:09:04.563+02:00", - "updated_at":"2017-10-24T13:09:04.563+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":368226, - "value":"Yes", - "question_id":12913, - "created_at":"2017-10-30T12:40:55.633+01:00", - "updated_at":"2017-10-30T12:40:55.633+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368386, - "value":"Yes", - "question_id":12913, - "created_at":"2017-10-31T13:03:00.039+01:00", - "updated_at":"2017-10-31T13:03:00.039+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368715, - "value":"Yes", - "question_id":12913, - "created_at":"2017-11-02T13:22:49.891+01:00", - "updated_at":"2017-11-02T13:22:49.891+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369190, - "value":"Yes", - "question_id":12913, - "created_at":"2017-11-10T15:32:45.256+01:00", - "updated_at":"2017-11-10T15:32:45.256+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369354, - "value":"Yes", - "question_id":12913, - "created_at":"2017-11-11T20:35:02.701+01:00", - "updated_at":"2017-11-11T20:35:02.701+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370157, - "value":"Yes", - "question_id":12913, - "created_at":"2017-11-23T13:52:44.249+01:00", - "updated_at":"2017-11-23T13:52:44.249+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370930, - "value":"Planned", - "question_id":12913, - "created_at":"2017-11-27T10:36:41.000+01:00", - "updated_at":"2017-11-27T10:36:41.000+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371151, - "value":"Yes", - "question_id":12913, - "created_at":"2017-11-27T14:04:47.531+01:00", - "updated_at":"2017-11-27T14:04:47.531+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372248, - "value":"Yes", - "question_id":12913, - "created_at":"2017-11-29T12:04:37.142+01:00", - "updated_at":"2017-11-29T12:04:37.142+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372589, - "value":"Yes", - "question_id":12913, - "created_at":"2017-11-29T21:36:09.530+01:00", - "updated_at":"2017-11-29T21:36:09.530+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372743, - "value":"Yes", - "question_id":12913, - "created_at":"2017-11-30T08:28:03.659+01:00", - "updated_at":"2017-11-30T08:28:03.659+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373664, - "value":"No", - "question_id":12913, - "created_at":"2017-12-04T17:53:21.848+01:00", - "updated_at":"2017-12-04T17:53:21.848+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374036, - "value":"Planned", - "question_id":12913, - "created_at":"2017-12-06T06:57:24.660+01:00", - "updated_at":"2017-12-06T06:57:24.660+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374259, - "value":"Planned", - "question_id":12913, - "created_at":"2017-12-06T11:11:51.479+01:00", - "updated_at":"2017-12-06T11:11:51.479+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375336, - "value":"Yes", - "question_id":12913, - "created_at":"2017-12-27T14:45:25.923+01:00", - "updated_at":"2017-12-27T14:45:25.923+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375421, - "value":"Yes", - "question_id":12913, - "created_at":"2017-12-28T10:06:04.225+01:00", - "updated_at":"2017-12-28T10:06:04.225+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375711, - "value":"Yes", - "question_id":12913, - "created_at":"2018-01-18T13:21:30.780+01:00", - "updated_at":"2018-01-18T13:21:30.780+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":376006, - "value":"Yes", - "question_id":12913, - "created_at":"2018-02-16T09:43:46.718+01:00", - "updated_at":"2018-02-16T09:43:46.718+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377037, - "value":"", - "question_id":12913, - "created_at":"2018-04-26T10:04:31.421+02:00", - "updated_at":"2018-04-26T10:04:31.421+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377039, - "value":"", - "question_id":12913, - "created_at":"2018-04-26T10:04:31.441+02:00", - "updated_at":"2018-04-26T10:04:31.441+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377043, - "value":"", - "question_id":12913, - "created_at":"2018-04-26T10:04:31.490+02:00", - "updated_at":"2018-04-26T10:04:31.490+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377044, - "value":"", - "question_id":12913, - "created_at":"2018-04-26T10:04:31.505+02:00", - "updated_at":"2018-04-26T10:04:31.505+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377045, - "value":"", - "question_id":12913, - "created_at":"2018-04-26T10:04:31.515+02:00", - "updated_at":"2018-04-26T10:04:31.515+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":377046, - "value":"", - "question_id":12913, - "created_at":"2018-04-26T10:04:31.524+02:00", - "updated_at":"2018-04-26T10:04:31.524+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377047, - "value":"", - "question_id":12913, - "created_at":"2018-04-26T10:04:31.546+02:00", - "updated_at":"2018-04-26T10:04:31.546+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618221, - "value":"Yes", - "question_id":12913, - "created_at":"2018-10-28T18:33:50.723+01:00", - "updated_at":"2018-10-28T18:33:50.723+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756376, - "value":"Yes", - "question_id":12913, - "created_at":"2018-11-05T14:04:35.860+01:00", - "updated_at":"2018-11-05T14:04:35.860+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774392, - "value":"Yes", - "question_id":12913, - "created_at":"2018-11-15T12:46:08.533+01:00", - "updated_at":"2018-11-15T12:46:08.533+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":797997, - "value":"Planned", - "question_id":12913, - "created_at":"2018-11-27T19:09:51.795+01:00", - "updated_at":"2018-11-27T19:09:51.795+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":827096, - "value":"Yes", - "question_id":12913, - "created_at":"2019-10-02T17:03:25.526+02:00", - "updated_at":"2019-10-02T17:03:25.526+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377048, - "value":"", - "question_id":12913, - "created_at":"2018-04-26T10:04:31.557+02:00", - "updated_at":"2018-04-26T10:04:31.557+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":1483500, - "value":"Yes", - "question_id":12913, - "created_at":"2020-11-16T14:07:07.915+01:00", - "updated_at":"2020-11-16T14:07:07.915+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":1488526, - "value":"Yes", - "question_id":12913, - "created_at":"2020-11-27T09:56:03.361+01:00", - "updated_at":"2020-11-27T09:56:03.361+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":1494270, - "value":"Yes", - "question_id":12913, - "created_at":"2021-01-14T14:59:09.689+01:00", - "updated_at":"2021-01-14T14:59:09.689+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1503256, - "value":"Planned", - "question_id":12913, - "created_at":"2021-11-17T08:08:13.509+01:00", - "updated_at":"2021-11-17T08:08:13.509+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "48":{ - "id":1504163, - "value":"Yes", - "question_id":12913, - "created_at":"2021-11-17T17:00:33.106+01:00", - "updated_at":"2021-11-17T17:00:33.106+01:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1517911, - "value":"Yes", - "question_id":12913, - "created_at":"2022-09-29T14:37:22.515+02:00", - "updated_at":"2022-09-29T14:37:22.515+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ddos-prevention", - "title":"Do you offer DDoS mitigation?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"DDos mitigation", - "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365587, - "value":"Yes", - "question_id":12915, - "created_at":"2017-09-06T12:14:05.904+02:00", - "updated_at":"2017-09-06T12:14:05.904+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365897, - "value":"No", - "question_id":12915, - "created_at":"2017-09-13T13:42:40.864+02:00", - "updated_at":"2017-09-13T13:42:40.864+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366154, - "value":"Yes", - "question_id":12915, - "created_at":"2017-09-19T14:57:38.895+02:00", - "updated_at":"2017-09-19T14:57:38.895+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366612, - "value":"Yes", - "question_id":12915, - "created_at":"2017-10-08T09:22:05.747+02:00", - "updated_at":"2017-10-08T09:22:05.747+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366754, - "value":"Yes", - "question_id":12915, - "created_at":"2017-10-10T12:54:34.595+02:00", - "updated_at":"2017-10-10T12:54:34.595+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367304, - "value":"Yes", - "question_id":12915, - "created_at":"2017-10-11T20:49:59.580+02:00", - "updated_at":"2017-10-11T20:49:59.580+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367714, - "value":"Yes", - "question_id":12915, - "created_at":"2017-10-23T19:27:05.730+02:00", - "updated_at":"2017-10-23T19:27:05.730+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367915, - "value":"Yes", - "question_id":12915, - "created_at":"2017-10-24T13:15:40.975+02:00", - "updated_at":"2017-10-24T13:15:40.975+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368163, - "value":"Yes", - "question_id":12915, - "created_at":"2017-10-30T09:20:07.654+01:00", - "updated_at":"2017-10-30T09:20:07.654+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368729, - "value":"Yes", - "question_id":12915, - "created_at":"2017-11-02T13:23:48.412+01:00", - "updated_at":"2017-11-02T13:23:48.412+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368801, - "value":"Yes", - "question_id":12915, - "created_at":"2017-11-06T16:13:04.048+01:00", - "updated_at":"2017-11-06T16:13:04.048+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369200, - "value":"Yes", - "question_id":12915, - "created_at":"2017-11-10T15:34:02.835+01:00", - "updated_at":"2017-11-10T15:34:02.835+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369371, - "value":"Yes", - "question_id":12915, - "created_at":"2017-11-11T20:41:01.600+01:00", - "updated_at":"2017-11-11T20:41:01.600+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369846, - "value":"No", - "question_id":12915, - "created_at":"2017-11-21T14:57:52.429+01:00", - "updated_at":"2017-11-21T14:57:52.429+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370174, - "value":"Yes", - "question_id":12915, - "created_at":"2017-11-23T13:58:35.583+01:00", - "updated_at":"2017-11-23T13:58:35.583+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370739, - "value":"No", - "question_id":12915, - "created_at":"2017-11-27T09:32:48.393+01:00", - "updated_at":"2017-11-27T09:32:48.393+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370939, - "value":"No", - "question_id":12915, - "created_at":"2017-11-27T10:37:52.747+01:00", - "updated_at":"2017-11-27T10:37:52.747+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371373, - "value":"No", - "question_id":12915, - "created_at":"2017-11-27T14:37:32.920+01:00", - "updated_at":"2017-11-27T14:37:32.920+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371564, - "value":"Yes", - "question_id":12915, - "created_at":"2017-11-27T16:38:01.869+01:00", - "updated_at":"2017-11-27T16:38:01.869+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371733, - "value":"No", - "question_id":12915, - "created_at":"2017-11-28T13:09:31.230+01:00", - "updated_at":"2017-11-28T13:09:31.230+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":372108, - "value":"Yes", - "question_id":12915, - "created_at":"2017-11-28T17:39:33.958+01:00", - "updated_at":"2017-11-28T17:39:33.958+01:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372272, - "value":"Yes", - "question_id":12915, - "created_at":"2017-11-29T12:19:33.935+01:00", - "updated_at":"2017-11-29T12:19:33.935+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372602, - "value":"No", - "question_id":12915, - "created_at":"2017-11-29T21:38:02.111+01:00", - "updated_at":"2017-11-29T21:38:02.111+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":372885, - "value":"Yes", - "question_id":12915, - "created_at":"2017-11-30T14:20:56.969+01:00", - "updated_at":"2017-11-30T14:20:56.969+01:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373304, - "value":"No", - "question_id":12915, - "created_at":"2017-12-04T11:22:52.789+01:00", - "updated_at":"2017-12-04T11:22:52.789+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373675, - "value":"Yes", - "question_id":12915, - "created_at":"2017-12-04T17:54:45.423+01:00", - "updated_at":"2017-12-04T17:54:45.423+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374272, - "value":"No", - "question_id":12915, - "created_at":"2017-12-06T11:15:13.728+01:00", - "updated_at":"2017-12-06T11:15:13.728+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374670, - "value":"Yes", - "question_id":12915, - "created_at":"2017-12-13T09:39:59.473+01:00", - "updated_at":"2017-12-13T09:39:59.473+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375425, - "value":"Yes", - "question_id":12915, - "created_at":"2017-12-28T10:07:27.586+01:00", - "updated_at":"2017-12-28T10:07:27.586+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":376045, - "value":"No", - "question_id":12915, - "created_at":"2018-02-16T11:25:33.045+01:00", - "updated_at":"2018-02-16T11:25:33.045+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377540, - "value":"", - "question_id":12915, - "created_at":"2018-04-26T10:04:36.671+02:00", - "updated_at":"2018-04-26T10:04:36.671+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377542, - "value":"", - "question_id":12915, - "created_at":"2018-04-26T10:04:36.685+02:00", - "updated_at":"2018-04-26T10:04:36.685+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":377546, - "value":"", - "question_id":12915, - "created_at":"2018-04-26T10:04:36.715+02:00", - "updated_at":"2018-04-26T10:04:36.715+02:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377547, - "value":"", - "question_id":12915, - "created_at":"2018-04-26T10:04:36.723+02:00", - "updated_at":"2018-04-26T10:04:36.723+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377548, - "value":"", - "question_id":12915, - "created_at":"2018-04-26T10:04:36.729+02:00", - "updated_at":"2018-04-26T10:04:36.729+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377549, - "value":"", - "question_id":12915, - "created_at":"2018-04-26T10:04:36.744+02:00", - "updated_at":"2018-04-26T10:04:36.744+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":384017, - "value":"Yes", - "question_id":12915, - "created_at":"2017-12-05T15:47:58.478+01:00", - "updated_at":"2017-12-05T15:47:58.478+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618222, - "value":"Yes", - "question_id":12915, - "created_at":"2018-10-28T18:34:03.290+01:00", - "updated_at":"2018-10-28T18:34:03.290+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756385, - "value":"Yes", - "question_id":12915, - "created_at":"2018-11-05T14:24:46.450+01:00", - "updated_at":"2018-11-05T14:24:46.450+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774394, - "value":"Yes", - "question_id":12915, - "created_at":"2018-11-15T12:46:55.456+01:00", - "updated_at":"2018-11-15T12:46:55.456+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377550, - "value":"", - "question_id":12915, - "created_at":"2018-04-26T10:04:36.751+02:00", - "updated_at":"2018-04-26T10:04:36.751+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1503270, - "value":"Planned", - "question_id":12915, - "created_at":"2021-11-17T08:14:14.955+01:00", - "updated_at":"2021-11-17T08:14:14.955+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1508458, - "value":"No", - "question_id":12915, - "created_at":"2021-11-25T10:26:40.584+01:00", - "updated_at":"2021-11-25T10:26:40.584+01:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"domain-registration", - "title":"Do you offer Domain name registration?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Domain name registration", - "title_detailed":"Administration/registration of top and second level domain names.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365595, - "value":"Yes", - "question_id":12917, - "created_at":"2017-09-06T12:14:52.507+02:00", - "updated_at":"2017-09-06T12:14:52.507+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365775, - "value":"Yes", - "question_id":12917, - "created_at":"2017-09-07T15:49:09.579+02:00", - "updated_at":"2017-09-07T15:49:09.579+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365901, - "value":"Yes", - "question_id":12917, - "created_at":"2017-09-13T13:43:11.051+02:00", - "updated_at":"2017-09-13T13:43:11.051+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366155, - "value":"Yes", - "question_id":12917, - "created_at":"2017-09-19T14:58:21.181+02:00", - "updated_at":"2017-09-19T14:58:21.181+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366340, - "value":"Yes", - "question_id":12917, - "created_at":"2017-09-29T13:48:06.238+02:00", - "updated_at":"2017-09-29T13:48:06.238+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366704, - "value":"Yes", - "question_id":12917, - "created_at":"2017-10-10T09:39:18.704+02:00", - "updated_at":"2017-10-10T09:39:18.704+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366759, - "value":"Yes", - "question_id":12917, - "created_at":"2017-10-10T12:57:33.980+02:00", - "updated_at":"2017-10-10T12:57:33.980+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":366815, - "value":"Yes", - "question_id":12917, - "created_at":"2017-10-10T16:17:43.865+02:00", - "updated_at":"2017-10-10T16:17:43.865+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366938, - "value":"Yes", - "question_id":12917, - "created_at":"2017-10-11T10:46:58.767+02:00", - "updated_at":"2017-10-11T10:46:58.767+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367306, - "value":"Yes", - "question_id":12917, - "created_at":"2017-10-11T20:50:26.976+02:00", - "updated_at":"2017-10-11T20:50:26.976+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367926, - "value":"Yes", - "question_id":12917, - "created_at":"2017-10-24T13:18:48.278+02:00", - "updated_at":"2017-10-24T13:18:48.278+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368172, - "value":"Yes", - "question_id":12917, - "created_at":"2017-10-30T09:21:14.328+01:00", - "updated_at":"2017-10-30T09:21:14.328+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":369528, - "value":"Yes", - "question_id":12917, - "created_at":"2017-11-13T20:33:37.574+01:00", - "updated_at":"2017-11-13T20:33:37.574+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369839, - "value":"Yes", - "question_id":12917, - "created_at":"2017-11-21T14:55:00.727+01:00", - "updated_at":"2017-11-21T14:55:00.727+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370195, - "value":"Yes", - "question_id":12917, - "created_at":"2017-11-23T14:05:42.382+01:00", - "updated_at":"2017-11-23T14:05:42.382+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370751, - "value":"Yes", - "question_id":12917, - "created_at":"2017-11-27T09:33:50.288+01:00", - "updated_at":"2017-11-27T09:33:50.288+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371114, - "value":"Yes", - "question_id":12917, - "created_at":"2017-11-27T13:46:44.032+01:00", - "updated_at":"2017-11-27T13:46:44.032+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371573, - "value":"Yes", - "question_id":12917, - "created_at":"2017-11-27T16:39:41.980+01:00", - "updated_at":"2017-11-27T16:39:41.980+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371746, - "value":"Yes", - "question_id":12917, - "created_at":"2017-11-28T13:10:39.423+01:00", - "updated_at":"2017-11-28T13:10:39.423+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372285, - "value":"Yes", - "question_id":12917, - "created_at":"2017-11-29T12:21:41.986+01:00", - "updated_at":"2017-11-29T12:21:41.986+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":372889, - "value":"Yes", - "question_id":12917, - "created_at":"2017-11-30T14:22:49.719+01:00", - "updated_at":"2017-11-30T14:22:49.719+01:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373239, - "value":"Yes", - "question_id":12917, - "created_at":"2017-12-04T11:10:23.109+01:00", - "updated_at":"2017-12-04T11:10:23.109+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373686, - "value":"Yes", - "question_id":12917, - "created_at":"2017-12-04T17:56:18.706+01:00", - "updated_at":"2017-12-04T17:56:18.706+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":373830, - "value":"Yes", - "question_id":12917, - "created_at":"2017-12-05T09:50:14.098+01:00", - "updated_at":"2017-12-05T09:50:14.098+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374281, - "value":"Yes", - "question_id":12917, - "created_at":"2017-12-06T11:18:33.310+01:00", - "updated_at":"2017-12-06T11:18:33.310+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374680, - "value":"Yes", - "question_id":12917, - "created_at":"2017-12-13T09:43:24.834+01:00", - "updated_at":"2017-12-13T09:43:24.834+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374922, - "value":"Yes", - "question_id":12917, - "created_at":"2017-12-14T12:47:28.968+01:00", - "updated_at":"2017-12-14T12:47:28.968+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375019, - "value":"Yes", - "question_id":12917, - "created_at":"2017-12-14T14:20:01.378+01:00", - "updated_at":"2017-12-14T14:20:01.378+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375431, - "value":"Yes", - "question_id":12917, - "created_at":"2017-12-28T10:07:53.908+01:00", - "updated_at":"2017-12-28T10:07:53.908+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377759, - "value":"", - "question_id":12917, - "created_at":"2018-04-26T10:04:38.348+02:00", - "updated_at":"2018-04-26T10:04:38.348+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377761, - "value":"", - "question_id":12917, - "created_at":"2018-04-26T10:04:38.362+02:00", - "updated_at":"2018-04-26T10:04:38.362+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377765, - "value":"", - "question_id":12917, - "created_at":"2018-04-26T10:04:38.397+02:00", - "updated_at":"2018-04-26T10:04:38.397+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377766, - "value":"", - "question_id":12917, - "created_at":"2018-04-26T10:04:38.413+02:00", - "updated_at":"2018-04-26T10:04:38.413+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":384019, - "value":"No", - "question_id":12917, - "created_at":"2017-12-05T15:54:31.219+01:00", - "updated_at":"2017-12-05T15:54:31.219+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":441042, - "value":"Yes", - "question_id":12917, - "created_at":"2018-10-04T17:20:50.166+02:00", - "updated_at":"2018-10-04T17:20:50.166+02:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":441600, - "value":"Yes", - "question_id":12917, - "created_at":"2018-10-11T13:39:21.005+02:00", - "updated_at":"2018-10-11T13:39:21.005+02:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618206, - "value":"Yes", - "question_id":12917, - "created_at":"2018-10-28T18:27:45.423+01:00", - "updated_at":"2018-10-28T18:27:45.423+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756365, - "value":"Yes", - "question_id":12917, - "created_at":"2018-11-05T14:01:54.569+01:00", - "updated_at":"2018-11-05T14:01:54.569+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774382, - "value":"Yes", - "question_id":12917, - "created_at":"2018-11-15T12:42:24.714+01:00", - "updated_at":"2018-11-15T12:42:24.714+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377767, - "value":"", - "question_id":12917, - "created_at":"2018-04-26T10:04:38.420+02:00", - "updated_at":"2018-04-26T10:04:38.420+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":1482908, - "value":"Yes", - "question_id":12917, - "created_at":"2020-11-14T15:57:46.453+01:00", - "updated_at":"2020-11-14T15:57:46.453+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":1496801, - "value":"Yes", - "question_id":12917, - "created_at":"2021-08-30T10:29:35.634+02:00", - "updated_at":"2021-08-30T10:29:35.634+02:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":1496990, - "value":"Yes", - "question_id":12917, - "created_at":"2021-08-31T08:40:08.930+02:00", - "updated_at":"2021-08-31T08:40:08.930+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"eduroam-wifi", - "title":"Do you offer eduroam?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Eduroam", - "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", - "tags":[ - "identity", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365635, - "value":"No", - "question_id":12921, - "created_at":"2017-09-06T12:18:53.252+02:00", - "updated_at":"2017-09-06T12:18:53.252+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365700, - "value":"No", - "question_id":12921, - "created_at":"2017-09-07T15:33:50.522+02:00", - "updated_at":"2017-09-07T15:33:50.522+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365922, - "value":"No", - "question_id":12921, - "created_at":"2017-09-13T13:45:51.951+02:00", - "updated_at":"2017-09-13T13:45:51.951+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366366, - "value":"No", - "question_id":12921, - "created_at":"2017-09-29T13:52:32.149+02:00", - "updated_at":"2017-09-29T13:52:32.149+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366589, - "value":"Yes", - "question_id":12921, - "created_at":"2017-10-08T09:18:51.818+02:00", - "updated_at":"2017-10-08T09:18:51.818+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366881, - "value":"No", - "question_id":12921, - "created_at":"2017-10-11T09:35:53.168+02:00", - "updated_at":"2017-10-11T09:35:53.168+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367155, - "value":"Yes", - "question_id":12921, - "created_at":"2017-10-11T13:42:38.244+02:00", - "updated_at":"2017-10-11T13:42:38.244+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367545, - "value":"No", - "question_id":12921, - "created_at":"2017-10-17T14:42:11.589+02:00", - "updated_at":"2017-10-17T14:42:11.589+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":367660, - "value":"No", - "question_id":12921, - "created_at":"2017-10-23T12:25:33.798+02:00", - "updated_at":"2017-10-23T12:25:33.798+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367756, - "value":"No", - "question_id":12921, - "created_at":"2017-10-23T19:34:00.499+02:00", - "updated_at":"2017-10-23T19:34:00.499+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367959, - "value":"Yes", - "question_id":12921, - "created_at":"2017-10-24T13:28:15.480+02:00", - "updated_at":"2017-10-24T13:28:15.480+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368939, - "value":"No", - "question_id":12921, - "created_at":"2017-11-08T15:49:53.870+01:00", - "updated_at":"2017-11-08T15:49:53.870+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369083, - "value":"No", - "question_id":12921, - "created_at":"2017-11-10T11:15:31.596+01:00", - "updated_at":"2017-11-10T11:15:31.596+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369244, - "value":"Yes", - "question_id":12921, - "created_at":"2017-11-10T15:39:36.310+01:00", - "updated_at":"2017-11-10T15:39:36.310+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369825, - "value":"No", - "question_id":12921, - "created_at":"2017-11-21T13:47:44.594+01:00", - "updated_at":"2017-11-21T13:47:44.594+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370234, - "value":"No", - "question_id":12921, - "created_at":"2017-11-23T14:12:45.828+01:00", - "updated_at":"2017-11-23T14:12:45.828+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370779, - "value":"No", - "question_id":12921, - "created_at":"2017-11-27T09:36:42.823+01:00", - "updated_at":"2017-11-27T09:36:42.823+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371158, - "value":"No", - "question_id":12921, - "created_at":"2017-11-27T14:11:14.887+01:00", - "updated_at":"2017-11-27T14:11:14.887+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371277, - "value":"Yes", - "question_id":12921, - "created_at":"2017-11-27T14:23:08.362+01:00", - "updated_at":"2017-11-27T14:23:08.362+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371586, - "value":"No", - "question_id":12921, - "created_at":"2017-11-27T16:44:30.471+01:00", - "updated_at":"2017-11-27T16:44:30.471+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371782, - "value":"No", - "question_id":12921, - "created_at":"2017-11-28T13:18:50.246+01:00", - "updated_at":"2017-11-28T13:18:50.246+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372329, - "value":"No", - "question_id":12921, - "created_at":"2017-11-29T12:34:19.772+01:00", - "updated_at":"2017-11-29T12:34:19.772+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372652, - "value":"Yes", - "question_id":12921, - "created_at":"2017-11-29T21:47:17.948+01:00", - "updated_at":"2017-11-29T21:47:17.948+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":373196, - "value":"No", - "question_id":12921, - "created_at":"2017-12-03T13:50:15.503+01:00", - "updated_at":"2017-12-03T13:50:15.503+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373262, - "value":"Yes", - "question_id":12921, - "created_at":"2017-12-04T11:15:10.088+01:00", - "updated_at":"2017-12-04T11:15:10.088+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373715, - "value":"Yes", - "question_id":12921, - "created_at":"2017-12-04T18:00:36.005+01:00", - "updated_at":"2017-12-04T18:00:36.005+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374360, - "value":"Yes", - "question_id":12921, - "created_at":"2017-12-06T13:16:16.160+01:00", - "updated_at":"2017-12-06T13:16:16.160+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374692, - "value":"Yes", - "question_id":12921, - "created_at":"2017-12-13T10:13:44.925+01:00", - "updated_at":"2017-12-13T10:13:44.925+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375043, - "value":"Yes", - "question_id":12921, - "created_at":"2017-12-14T14:22:02.459+01:00", - "updated_at":"2017-12-14T14:22:02.459+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375471, - "value":"Yes", - "question_id":12921, - "created_at":"2017-12-28T10:20:09.930+01:00", - "updated_at":"2017-12-28T10:20:09.930+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375733, - "value":"Yes", - "question_id":12921, - "created_at":"2018-01-18T13:28:14.842+01:00", - "updated_at":"2018-01-18T13:28:14.842+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378713, - "value":"", - "question_id":12921, - "created_at":"2018-04-26T10:04:47.101+02:00", - "updated_at":"2018-04-26T10:04:47.101+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":378714, - "value":"", - "question_id":12921, - "created_at":"2018-04-26T10:04:47.111+02:00", - "updated_at":"2018-04-26T10:04:47.111+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378715, - "value":"", - "question_id":12921, - "created_at":"2018-04-26T10:04:47.117+02:00", - "updated_at":"2018-04-26T10:04:47.117+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378719, - "value":"", - "question_id":12921, - "created_at":"2018-04-26T10:04:47.150+02:00", - "updated_at":"2018-04-26T10:04:47.150+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378721, - "value":"", - "question_id":12921, - "created_at":"2018-04-26T10:04:47.166+02:00", - "updated_at":"2018-04-26T10:04:47.166+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378722, - "value":"", - "question_id":12921, - "created_at":"2018-04-26T10:04:47.173+02:00", - "updated_at":"2018-04-26T10:04:47.173+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378723, - "value":"", - "question_id":12921, - "created_at":"2018-04-26T10:04:47.192+02:00", - "updated_at":"2018-04-26T10:04:47.192+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":384010, - "value":"Yes", - "question_id":12921, - "created_at":"2017-12-05T15:59:25.505+01:00", - "updated_at":"2017-12-05T15:59:25.505+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618235, - "value":"Yes", - "question_id":12921, - "created_at":"2018-10-28T18:39:29.994+01:00", - "updated_at":"2018-10-28T18:39:29.994+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641563, - "value":"Yes", - "question_id":12921, - "created_at":"2018-10-30T13:57:29.674+01:00", - "updated_at":"2018-10-30T13:57:29.674+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":999965, - "value":"Yes", - "question_id":12921, - "created_at":"2019-11-03T22:52:14.409+01:00", - "updated_at":"2019-11-03T22:52:14.409+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378724, - "value":"", - "question_id":12921, - "created_at":"2018-04-26T10:04:47.200+02:00", - "updated_at":"2018-04-26T10:04:47.200+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"email-services", - "title":"Do you offer Email server hosting?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Email server hosting", - "title_detailed":"NREN hosted email servers.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365651, - "value":"Yes", - "question_id":12929, - "created_at":"2017-09-06T12:19:54.733+02:00", - "updated_at":"2017-09-06T12:19:54.733+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365723, - "value":"Yes", - "question_id":12929, - "created_at":"2017-09-07T15:35:33.418+02:00", - "updated_at":"2017-09-07T15:35:33.418+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":366195, - "value":"Planned", - "question_id":12929, - "created_at":"2017-09-26T09:19:46.944+02:00", - "updated_at":"2017-09-26T09:19:46.944+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366863, - "value":"Yes", - "question_id":12929, - "created_at":"2017-10-11T09:34:30.230+02:00", - "updated_at":"2017-10-11T09:34:30.230+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366958, - "value":"Yes", - "question_id":12929, - "created_at":"2017-10-11T10:52:31.524+02:00", - "updated_at":"2017-10-11T10:52:31.524+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367376, - "value":"Yes", - "question_id":12929, - "created_at":"2017-10-11T21:21:50.039+02:00", - "updated_at":"2017-10-11T21:21:50.039+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367519, - "value":"No", - "question_id":12929, - "created_at":"2017-10-17T12:10:09.884+02:00", - "updated_at":"2017-10-17T12:10:09.884+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367771, - "value":"Yes", - "question_id":12929, - "created_at":"2017-10-23T19:40:47.398+02:00", - "updated_at":"2017-10-23T19:40:47.398+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367975, - "value":"No", - "question_id":12929, - "created_at":"2017-10-24T13:32:32.024+02:00", - "updated_at":"2017-10-24T13:32:32.024+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368376, - "value":"Yes", - "question_id":12929, - "created_at":"2017-10-31T08:59:14.211+01:00", - "updated_at":"2017-10-31T08:59:14.211+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368948, - "value":"Yes", - "question_id":12929, - "created_at":"2017-11-08T15:52:54.465+01:00", - "updated_at":"2017-11-08T15:52:54.465+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369260, - "value":"Yes", - "question_id":12929, - "created_at":"2017-11-10T15:40:55.091+01:00", - "updated_at":"2017-11-10T15:40:55.091+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":369537, - "value":"Yes", - "question_id":12929, - "created_at":"2017-11-13T20:37:46.066+01:00", - "updated_at":"2017-11-13T20:37:46.066+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369817, - "value":"Yes", - "question_id":12929, - "created_at":"2017-11-21T13:45:47.457+01:00", - "updated_at":"2017-11-21T13:45:47.457+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370250, - "value":"Yes", - "question_id":12929, - "created_at":"2017-11-23T14:13:40.926+01:00", - "updated_at":"2017-11-23T14:13:40.926+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370800, - "value":"Yes", - "question_id":12929, - "created_at":"2017-11-27T09:38:15.360+01:00", - "updated_at":"2017-11-27T09:38:15.360+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371801, - "value":"No", - "question_id":12929, - "created_at":"2017-11-28T13:19:55.366+01:00", - "updated_at":"2017-11-28T13:19:55.366+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372347, - "value":"Yes", - "question_id":12929, - "created_at":"2017-11-29T12:36:26.523+01:00", - "updated_at":"2017-11-29T12:36:26.523+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372669, - "value":"Yes", - "question_id":12929, - "created_at":"2017-11-29T21:49:32.329+01:00", - "updated_at":"2017-11-29T21:49:32.329+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373271, - "value":"Yes", - "question_id":12929, - "created_at":"2017-12-04T11:16:39.824+01:00", - "updated_at":"2017-12-04T11:16:39.824+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373732, - "value":"Planned", - "question_id":12929, - "created_at":"2017-12-04T18:02:27.528+01:00", - "updated_at":"2017-12-04T18:02:27.528+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374710, - "value":"Yes", - "question_id":12929, - "created_at":"2017-12-13T10:21:46.682+01:00", - "updated_at":"2017-12-13T10:21:46.682+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375060, - "value":"Planned", - "question_id":12929, - "created_at":"2017-12-14T14:23:18.862+01:00", - "updated_at":"2017-12-14T14:23:18.862+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375487, - "value":"Yes", - "question_id":12929, - "created_at":"2017-12-28T10:23:55.976+01:00", - "updated_at":"2017-12-28T10:23:55.976+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375738, - "value":"Yes", - "question_id":12929, - "created_at":"2018-01-18T15:40:28.713+01:00", - "updated_at":"2018-01-18T15:40:28.713+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379502, - "value":"", - "question_id":12929, - "created_at":"2018-04-26T10:04:54.400+02:00", - "updated_at":"2018-04-26T10:04:54.400+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379504, - "value":"", - "question_id":12929, - "created_at":"2018-04-26T10:04:54.419+02:00", - "updated_at":"2018-04-26T10:04:54.419+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":379508, - "value":"", - "question_id":12929, - "created_at":"2018-04-26T10:04:54.459+02:00", - "updated_at":"2018-04-26T10:04:54.459+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379510, - "value":"", - "question_id":12929, - "created_at":"2018-04-26T10:04:54.477+02:00", - "updated_at":"2018-04-26T10:04:54.477+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":379511, - "value":"", - "question_id":12929, - "created_at":"2018-04-26T10:04:54.485+02:00", - "updated_at":"2018-04-26T10:04:54.485+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":379512, - "value":"", - "question_id":12929, - "created_at":"2018-04-26T10:04:54.499+02:00", - "updated_at":"2018-04-26T10:04:54.499+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379513, - "value":"", - "question_id":12929, - "created_at":"2018-04-26T10:04:54.510+02:00", - "updated_at":"2018-04-26T10:04:54.510+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383912, - "value":"No", - "question_id":12929, - "created_at":"2017-12-05T16:01:25.887+01:00", - "updated_at":"2017-12-05T16:01:25.887+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618226, - "value":"Yes", - "question_id":12929, - "created_at":"2018-10-28T18:35:08.547+01:00", - "updated_at":"2018-10-28T18:35:08.547+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641555, - "value":"Yes", - "question_id":12929, - "created_at":"2018-10-30T13:54:02.324+01:00", - "updated_at":"2018-10-30T13:54:02.324+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756377, - "value":"Yes", - "question_id":12929, - "created_at":"2018-11-05T14:04:46.574+01:00", - "updated_at":"2018-11-05T14:04:46.574+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774393, - "value":"Yes", - "question_id":12929, - "created_at":"2018-11-15T12:46:34.263+01:00", - "updated_at":"2018-11-15T12:46:34.263+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":1165431, - "value":"Yes", - "question_id":12929, - "created_at":"2019-11-12T20:15:02.904+01:00", - "updated_at":"2019-11-12T20:15:02.904+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379514, - "value":"", - "question_id":12929, - "created_at":"2018-04-26T10:04:54.519+02:00", - "updated_at":"2018-04-26T10:04:54.519+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":1488893, - "value":"Yes", - "question_id":12929, - "created_at":"2020-11-27T11:55:26.008+01:00", - "updated_at":"2020-11-27T11:55:26.008+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493630, - "value":"Planned", - "question_id":12929, - "created_at":"2020-12-18T14:48:20.336+01:00", - "updated_at":"2020-12-18T14:48:20.336+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":1494278, - "value":"No", - "question_id":12929, - "created_at":"2021-01-15T10:34:37.272+01:00", - "updated_at":"2021-01-15T10:34:37.272+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":1500367, - "value":"Yes", - "question_id":12929, - "created_at":"2021-11-08T12:29:51.081+01:00", - "updated_at":"2021-11-08T12:29:51.081+01:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"filesender", - "title":"Do you offer Filesender?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Filesender", - "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "42":{ - "id":365804, - "value":"No", - "question_id":12933, - "created_at":"2017-09-07T15:51:35.271+02:00", - "updated_at":"2017-09-07T15:51:35.271+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365891, - "value":"No", - "question_id":12933, - "created_at":"2017-09-13T13:41:50.992+02:00", - "updated_at":"2017-09-13T13:41:50.992+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366318, - "value":"Yes", - "question_id":12933, - "created_at":"2017-09-29T13:43:32.981+02:00", - "updated_at":"2017-09-29T13:43:32.981+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366916, - "value":"Planned", - "question_id":12933, - "created_at":"2017-10-11T10:42:28.837+02:00", - "updated_at":"2017-10-11T10:42:28.837+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367137, - "value":"Yes", - "question_id":12933, - "created_at":"2017-10-11T13:30:16.807+02:00", - "updated_at":"2017-10-11T13:30:16.807+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367531, - "value":"No", - "question_id":12933, - "created_at":"2017-10-17T14:29:23.139+02:00", - "updated_at":"2017-10-17T14:29:23.139+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367707, - "value":"Yes", - "question_id":12933, - "created_at":"2017-10-23T19:26:14.265+02:00", - "updated_at":"2017-10-23T19:26:14.265+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367902, - "value":"No", - "question_id":12933, - "created_at":"2017-10-24T13:09:45.537+02:00", - "updated_at":"2017-10-24T13:09:45.537+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368155, - "value":"Yes", - "question_id":12933, - "created_at":"2017-10-30T09:19:08.064+01:00", - "updated_at":"2017-10-30T09:19:08.064+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368387, - "value":"No", - "question_id":12933, - "created_at":"2017-10-31T13:03:11.993+01:00", - "updated_at":"2017-10-31T13:03:11.993+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368717, - "value":"Planned", - "question_id":12933, - "created_at":"2017-11-02T13:22:59.340+01:00", - "updated_at":"2017-11-02T13:22:59.340+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":369108, - "value":"No", - "question_id":12933, - "created_at":"2017-11-10T14:31:02.027+01:00", - "updated_at":"2017-11-10T14:31:02.027+01:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369191, - "value":"Yes", - "question_id":12933, - "created_at":"2017-11-10T15:32:57.630+01:00", - "updated_at":"2017-11-10T15:32:57.630+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369356, - "value":"Planned", - "question_id":12933, - "created_at":"2017-11-11T20:35:34.391+01:00", - "updated_at":"2017-11-11T20:35:34.391+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370159, - "value":"No", - "question_id":12933, - "created_at":"2017-11-23T13:53:05.070+01:00", - "updated_at":"2017-11-23T13:53:05.070+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":370357, - "value":"Yes", - "question_id":12933, - "created_at":"2017-11-24T16:12:18.945+01:00", - "updated_at":"2017-11-24T16:12:18.945+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370727, - "value":"No", - "question_id":12933, - "created_at":"2017-11-27T09:32:05.016+01:00", - "updated_at":"2017-11-27T09:32:05.016+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370931, - "value":"Planned", - "question_id":12933, - "created_at":"2017-11-27T10:36:45.171+01:00", - "updated_at":"2017-11-27T10:36:45.171+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371107, - "value":"No", - "question_id":12933, - "created_at":"2017-11-27T13:45:48.333+01:00", - "updated_at":"2017-11-27T13:45:48.333+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371558, - "value":"Planned", - "question_id":12933, - "created_at":"2017-11-27T16:36:58.304+01:00", - "updated_at":"2017-11-27T16:36:58.304+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371724, - "value":"Yes", - "question_id":12933, - "created_at":"2017-11-28T13:08:42.275+01:00", - "updated_at":"2017-11-28T13:08:42.275+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":372029, - "value":"Yes", - "question_id":12933, - "created_at":"2017-11-28T16:42:00.376+01:00", - "updated_at":"2017-11-28T16:42:00.376+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372437, - "value":"No", - "question_id":12933, - "created_at":"2017-11-29T12:59:30.577+01:00", - "updated_at":"2017-11-29T12:59:30.577+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372590, - "value":"No", - "question_id":12933, - "created_at":"2017-11-29T21:36:14.953+01:00", - "updated_at":"2017-11-29T21:36:14.953+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372969, - "value":"No", - "question_id":12933, - "created_at":"2017-11-30T16:44:05.211+01:00", - "updated_at":"2017-11-30T16:44:05.211+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373665, - "value":"Planned", - "question_id":12933, - "created_at":"2017-12-04T17:53:25.459+01:00", - "updated_at":"2017-12-04T17:53:25.459+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374037, - "value":"Planned", - "question_id":12933, - "created_at":"2017-12-06T06:57:28.297+01:00", - "updated_at":"2017-12-06T06:57:28.297+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374260, - "value":"Planned", - "question_id":12933, - "created_at":"2017-12-06T11:12:00.552+01:00", - "updated_at":"2017-12-06T11:12:00.552+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375338, - "value":"Yes", - "question_id":12933, - "created_at":"2017-12-27T14:46:14.266+01:00", - "updated_at":"2017-12-27T14:46:14.266+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375422, - "value":"Yes", - "question_id":12933, - "created_at":"2017-12-28T10:06:07.442+01:00", - "updated_at":"2017-12-28T10:06:07.442+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375713, - "value":"Planned", - "question_id":12933, - "created_at":"2018-01-18T13:22:12.035+01:00", - "updated_at":"2018-01-18T13:22:12.035+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":376040, - "value":"Yes", - "question_id":12933, - "created_at":"2018-02-16T11:17:49.577+01:00", - "updated_at":"2018-02-16T11:17:49.577+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377075, - "value":"", - "question_id":12933, - "created_at":"2018-04-26T10:04:31.926+02:00", - "updated_at":"2018-04-26T10:04:31.926+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":377076, - "value":"", - "question_id":12933, - "created_at":"2018-04-26T10:04:31.941+02:00", - "updated_at":"2018-04-26T10:04:31.941+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377077, - "value":"", - "question_id":12933, - "created_at":"2018-04-26T10:04:31.949+02:00", - "updated_at":"2018-04-26T10:04:31.949+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377080, - "value":"", - "question_id":12933, - "created_at":"2018-04-26T10:04:31.983+02:00", - "updated_at":"2018-04-26T10:04:31.983+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377081, - "value":"", - "question_id":12933, - "created_at":"2018-04-26T10:04:31.997+02:00", - "updated_at":"2018-04-26T10:04:31.997+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377082, - "value":"", - "question_id":12933, - "created_at":"2018-04-26T10:04:32.005+02:00", - "updated_at":"2018-04-26T10:04:32.005+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377083, - "value":"", - "question_id":12933, - "created_at":"2018-04-26T10:04:32.026+02:00", - "updated_at":"2018-04-26T10:04:32.026+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383891, - "value":"No", - "question_id":12933, - "created_at":"2017-12-05T15:47:01.735+01:00", - "updated_at":"2017-12-05T15:47:01.735+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "48":{ - "id":1131006, - "value":"Planned", - "question_id":12933, - "created_at":"2019-11-08T19:37:20.348+01:00", - "updated_at":"2019-11-08T19:37:20.348+01:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377084, - "value":"", - "question_id":12933, - "created_at":"2018-04-26T10:04:32.035+02:00", - "updated_at":"2018-04-26T10:04:32.035+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":1485839, - "value":"No", - "question_id":12933, - "created_at":"2020-11-17T15:20:43.709+01:00", - "updated_at":"2020-11-17T15:20:43.709+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"firewall-on-demand", - "title":"Do you offer Firewall on demand?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Firewall-on-demand", - "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365570, - "value":"Yes", - "question_id":13031, - "created_at":"2017-09-06T12:11:53.482+02:00", - "updated_at":"2017-09-06T12:11:53.482+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365881, - "value":"No", - "question_id":13031, - "created_at":"2017-09-13T13:40:34.625+02:00", - "updated_at":"2017-09-13T13:40:34.625+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367092, - "value":"No", - "question_id":13031, - "created_at":"2017-10-11T13:20:00.918+02:00", - "updated_at":"2017-10-11T13:20:00.918+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367695, - "value":"No", - "question_id":13031, - "created_at":"2017-10-23T19:25:02.743+02:00", - "updated_at":"2017-10-23T19:25:02.743+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367886, - "value":"Yes", - "question_id":13031, - "created_at":"2017-10-24T13:04:59.813+02:00", - "updated_at":"2017-10-24T13:04:59.813+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369338, - "value":"Yes", - "question_id":13031, - "created_at":"2017-11-11T20:30:42.885+01:00", - "updated_at":"2017-11-11T20:30:42.885+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370136, - "value":"No", - "question_id":13031, - "created_at":"2017-11-23T13:48:50.921+01:00", - "updated_at":"2017-11-23T13:48:50.921+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":370595, - "value":"Planned", - "question_id":13031, - "created_at":"2017-11-26T10:25:04.847+01:00", - "updated_at":"2017-11-26T10:25:04.847+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370713, - "value":"No", - "question_id":13031, - "created_at":"2017-11-27T09:30:50.545+01:00", - "updated_at":"2017-11-27T09:30:50.545+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370918, - "value":"Yes", - "question_id":13031, - "created_at":"2017-11-27T10:34:55.168+01:00", - "updated_at":"2017-11-27T10:34:55.168+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371124, - "value":"Yes", - "question_id":13031, - "created_at":"2017-11-27T13:50:29.592+01:00", - "updated_at":"2017-11-27T13:50:29.592+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371550, - "value":"Planned", - "question_id":13031, - "created_at":"2017-11-27T16:35:22.850+01:00", - "updated_at":"2017-11-27T16:35:22.850+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":371481, - "value":"Yes", - "question_id":13031, - "created_at":"2017-11-27T15:00:51.244+01:00", - "updated_at":"2017-11-27T15:00:51.244+01:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371707, - "value":"No", - "question_id":13031, - "created_at":"2017-11-28T13:06:43.683+01:00", - "updated_at":"2017-11-28T13:06:43.683+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372430, - "value":"No", - "question_id":13031, - "created_at":"2017-11-29T12:57:22.019+01:00", - "updated_at":"2017-11-29T12:57:22.019+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373285, - "value":"Yes", - "question_id":13031, - "created_at":"2017-12-04T11:18:58.644+01:00", - "updated_at":"2017-12-04T11:18:58.644+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373649, - "value":"Yes", - "question_id":13031, - "created_at":"2017-12-04T17:51:45.020+01:00", - "updated_at":"2017-12-04T17:51:45.020+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":373778, - "value":"No", - "question_id":13031, - "created_at":"2017-12-04T19:10:54.820+01:00", - "updated_at":"2017-12-04T19:10:54.820+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":374983, - "value":"Planned", - "question_id":13031, - "created_at":"2017-12-14T14:17:22.814+01:00", - "updated_at":"2017-12-14T14:17:22.814+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375363, - "value":"No", - "question_id":13031, - "created_at":"2017-12-27T14:51:30.199+01:00", - "updated_at":"2017-12-27T14:51:30.199+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375401, - "value":"Yes", - "question_id":13031, - "created_at":"2017-12-28T10:01:37.158+01:00", - "updated_at":"2017-12-28T10:01:37.158+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375811, - "value":"No", - "question_id":13031, - "created_at":"2018-01-22T00:47:46.144+01:00", - "updated_at":"2018-01-22T00:47:46.144+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376858, - "value":"", - "question_id":13031, - "created_at":"2018-04-26T10:04:29.411+02:00", - "updated_at":"2018-04-26T10:04:29.411+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376860, - "value":"", - "question_id":13031, - "created_at":"2018-04-26T10:04:29.432+02:00", - "updated_at":"2018-04-26T10:04:29.432+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":376862, - "value":"", - "question_id":13031, - "created_at":"2018-04-26T10:04:29.448+02:00", - "updated_at":"2018-04-26T10:04:29.448+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":376864, - "value":"", - "question_id":13031, - "created_at":"2018-04-26T10:04:29.465+02:00", - "updated_at":"2018-04-26T10:04:29.465+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":376865, - "value":"", - "question_id":13031, - "created_at":"2018-04-26T10:04:29.477+02:00", - "updated_at":"2018-04-26T10:04:29.477+02:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":376866, - "value":"", - "question_id":13031, - "created_at":"2018-04-26T10:04:29.488+02:00", - "updated_at":"2018-04-26T10:04:29.488+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376867, - "value":"", - "question_id":13031, - "created_at":"2018-04-26T10:04:29.496+02:00", - "updated_at":"2018-04-26T10:04:29.496+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376869, - "value":"", - "question_id":13031, - "created_at":"2018-04-26T10:04:29.516+02:00", - "updated_at":"2018-04-26T10:04:29.516+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":376870, - "value":"", - "question_id":13031, - "created_at":"2018-04-26T10:04:29.525+02:00", - "updated_at":"2018-04-26T10:04:29.525+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376872, - "value":"", - "question_id":13031, - "created_at":"2018-04-26T10:04:29.553+02:00", - "updated_at":"2018-04-26T10:04:29.553+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383987, - "value":"No", - "question_id":13031, - "created_at":"2017-12-05T15:44:41.548+01:00", - "updated_at":"2017-12-05T15:44:41.548+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618237, - "value":"Yes", - "question_id":13031, - "created_at":"2018-10-28T18:40:29.721+01:00", - "updated_at":"2018-10-28T18:40:29.721+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":618358, - "value":"Planned", - "question_id":13031, - "created_at":"2018-10-29T11:49:09.799+01:00", - "updated_at":"2018-10-29T11:49:09.799+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":1165434, - "value":"Yes", - "question_id":13031, - "created_at":"2019-11-12T20:18:46.855+01:00", - "updated_at":"2019-11-12T20:18:46.855+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":1248628, - "value":"Planned", - "question_id":13031, - "created_at":"2019-12-02T17:31:48.574+01:00", - "updated_at":"2019-12-02T17:31:48.574+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":1470700, - "value":"Planned", - "question_id":13031, - "created_at":"2020-10-16T14:54:57.381+02:00", - "updated_at":"2020-10-16T14:54:57.381+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":1491221, - "value":"Yes", - "question_id":13031, - "created_at":"2020-12-02T20:18:15.920+01:00", - "updated_at":"2020-12-02T20:18:15.920+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493637, - "value":"Planned", - "question_id":13031, - "created_at":"2020-12-18T15:00:45.658+01:00", - "updated_at":"2020-12-18T15:00:45.658+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1501062, - "value":"Planned", - "question_id":13031, - "created_at":"2021-11-09T16:22:44.367+01:00", - "updated_at":"2021-11-09T16:22:44.367+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":1512739, - "value":"Yes", - "question_id":13031, - "created_at":"2021-12-11T16:01:29.105+01:00", - "updated_at":"2021-12-11T16:01:29.105+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1517905, - "value":"Yes", - "question_id":13031, - "created_at":"2022-09-29T14:29:28.015+02:00", - "updated_at":"2022-09-29T14:29:28.015+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"home-vpn", - "title":"Do you offer VPN client access?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Remote access VPN service", - "title_detailed":"Remote access and site-to-site secure VPN.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "42":{ - "id":365803, - "value":"Yes", - "question_id":12939, - "created_at":"2017-09-07T15:51:30.777+02:00", - "updated_at":"2017-09-07T15:51:30.777+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366150, - "value":"Yes", - "question_id":12939, - "created_at":"2017-09-19T14:56:19.103+02:00", - "updated_at":"2017-09-19T14:56:19.103+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366319, - "value":"No", - "question_id":12939, - "created_at":"2017-09-29T13:44:00.727+02:00", - "updated_at":"2017-09-29T13:44:00.727+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366920, - "value":"Yes", - "question_id":12939, - "created_at":"2017-10-11T10:42:51.880+02:00", - "updated_at":"2017-10-11T10:42:51.880+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367904, - "value":"No", - "question_id":12939, - "created_at":"2017-10-24T13:10:38.788+02:00", - "updated_at":"2017-10-24T13:10:38.788+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368719, - "value":"No", - "question_id":12939, - "created_at":"2017-11-02T13:23:18.051+01:00", - "updated_at":"2017-11-02T13:23:18.051+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368876, - "value":"Yes", - "question_id":12939, - "created_at":"2017-11-08T11:28:55.086+01:00", - "updated_at":"2017-11-08T11:28:55.086+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369192, - "value":"Yes", - "question_id":12939, - "created_at":"2017-11-10T15:33:04.616+01:00", - "updated_at":"2017-11-10T15:33:04.616+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370160, - "value":"No", - "question_id":12939, - "created_at":"2017-11-23T13:53:32.059+01:00", - "updated_at":"2017-11-23T13:53:32.059+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370728, - "value":"No", - "question_id":12939, - "created_at":"2017-11-27T09:32:08.417+01:00", - "updated_at":"2017-11-27T09:32:08.417+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371337, - "value":"No", - "question_id":12939, - "created_at":"2017-11-27T14:33:04.274+01:00", - "updated_at":"2017-11-27T14:33:04.274+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":372031, - "value":"No", - "question_id":12939, - "created_at":"2017-11-28T16:42:45.575+01:00", - "updated_at":"2017-11-28T16:42:45.575+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372257, - "value":"Yes", - "question_id":12939, - "created_at":"2017-11-29T12:16:44.757+01:00", - "updated_at":"2017-11-29T12:16:44.757+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372438, - "value":"No", - "question_id":12939, - "created_at":"2017-11-29T12:59:38.587+01:00", - "updated_at":"2017-11-29T12:59:38.587+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":372517, - "value":"No", - "question_id":12939, - "created_at":"2017-11-29T20:23:39.241+01:00", - "updated_at":"2017-11-29T20:23:39.241+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372591, - "value":"Yes", - "question_id":12939, - "created_at":"2017-11-29T21:36:29.335+01:00", - "updated_at":"2017-11-29T21:36:29.335+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":372882, - "value":"", - "question_id":12939, - "created_at":"2017-11-30T14:20:00.739+01:00", - "updated_at":"2017-11-30T14:20:00.739+01:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373297, - "value":"Yes", - "question_id":12939, - "created_at":"2017-12-04T11:22:08.391+01:00", - "updated_at":"2017-12-04T11:22:08.391+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373666, - "value":"Planned", - "question_id":12939, - "created_at":"2017-12-04T17:53:35.135+01:00", - "updated_at":"2017-12-04T17:53:35.135+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374261, - "value":"Planned", - "question_id":12939, - "created_at":"2017-12-06T11:12:49.869+01:00", - "updated_at":"2017-12-06T11:12:49.869+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374656, - "value":"Yes", - "question_id":12939, - "created_at":"2017-12-13T09:36:35.536+01:00", - "updated_at":"2017-12-13T09:36:35.536+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375001, - "value":"No", - "question_id":12939, - "created_at":"2017-12-14T14:18:49.355+01:00", - "updated_at":"2017-12-14T14:18:49.355+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375439, - "value":"No", - "question_id":12939, - "created_at":"2017-12-28T10:16:37.945+01:00", - "updated_at":"2017-12-28T10:16:37.945+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377119, - "value":"", - "question_id":12939, - "created_at":"2018-04-26T10:04:32.390+02:00", - "updated_at":"2018-04-26T10:04:32.390+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377122, - "value":"", - "question_id":12939, - "created_at":"2018-04-26T10:04:32.421+02:00", - "updated_at":"2018-04-26T10:04:32.421+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":377125, - "value":"", - "question_id":12939, - "created_at":"2018-04-26T10:04:32.450+02:00", - "updated_at":"2018-04-26T10:04:32.450+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":377126, - "value":"", - "question_id":12939, - "created_at":"2018-04-26T10:04:32.461+02:00", - "updated_at":"2018-04-26T10:04:32.461+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":377127, - "value":"", - "question_id":12939, - "created_at":"2018-04-26T10:04:32.476+02:00", - "updated_at":"2018-04-26T10:04:32.476+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":377128, - "value":"", - "question_id":12939, - "created_at":"2018-04-26T10:04:32.493+02:00", - "updated_at":"2018-04-26T10:04:32.493+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377129, - "value":"", - "question_id":12939, - "created_at":"2018-04-26T10:04:32.500+02:00", - "updated_at":"2018-04-26T10:04:32.500+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377130, - "value":"", - "question_id":12939, - "created_at":"2018-04-26T10:04:32.511+02:00", - "updated_at":"2018-04-26T10:04:32.511+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":377131, - "value":"", - "question_id":12939, - "created_at":"2018-04-26T10:04:32.519+02:00", - "updated_at":"2018-04-26T10:04:32.519+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":377132, - "value":"", - "question_id":12939, - "created_at":"2018-04-26T10:04:32.534+02:00", - "updated_at":"2018-04-26T10:04:32.534+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":377134, - "value":"", - "question_id":12939, - "created_at":"2018-04-26T10:04:32.551+02:00", - "updated_at":"2018-04-26T10:04:32.551+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377135, - "value":"", - "question_id":12939, - "created_at":"2018-04-26T10:04:32.559+02:00", - "updated_at":"2018-04-26T10:04:32.559+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383899, - "value":"No", - "question_id":12939, - "created_at":"2017-12-05T15:47:08.712+01:00", - "updated_at":"2017-12-05T15:47:08.712+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756399, - "value":"Yes", - "question_id":12939, - "created_at":"2018-11-05T14:31:24.202+01:00", - "updated_at":"2018-11-05T14:31:24.202+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":797999, - "value":"Yes", - "question_id":12939, - "created_at":"2018-11-27T19:11:55.223+01:00", - "updated_at":"2018-11-27T19:11:55.223+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":963609, - "value":"Planned", - "question_id":12939, - "created_at":"2019-10-30T16:57:27.820+01:00", - "updated_at":"2019-10-30T16:57:27.820+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":1227748, - "value":"Yes", - "question_id":12939, - "created_at":"2019-11-21T09:49:05.888+01:00", - "updated_at":"2019-11-21T09:49:05.888+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377136, - "value":"", - "question_id":12939, - "created_at":"2018-04-26T10:04:32.568+02:00", - "updated_at":"2018-04-26T10:04:32.568+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1501063, - "value":"Planned", - "question_id":12939, - "created_at":"2021-11-09T16:24:11.226+01:00", - "updated_at":"2021-11-09T16:24:11.226+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "48":{ - "id":1504164, - "value":"Planned", - "question_id":12939, - "created_at":"2021-11-17T17:01:49.205+01:00", - "updated_at":"2021-11-17T17:01:49.205+01:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identity-management", - "title":"Do you offer Hosted campus AAI?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Hosted campus AAI", - "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365638, - "value":"No", - "question_id":12945, - "created_at":"2017-09-06T12:19:02.290+02:00", - "updated_at":"2017-09-06T12:19:02.290+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366369, - "value":"No", - "question_id":12945, - "created_at":"2017-09-29T13:52:48.541+02:00", - "updated_at":"2017-09-29T13:52:48.541+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366593, - "value":"No", - "question_id":12945, - "created_at":"2017-10-08T09:19:06.684+02:00", - "updated_at":"2017-10-08T09:19:06.684+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367498, - "value":"No", - "question_id":12945, - "created_at":"2017-10-17T12:06:20.214+02:00", - "updated_at":"2017-10-17T12:06:20.214+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367759, - "value":"No", - "question_id":12945, - "created_at":"2017-10-23T19:34:14.646+02:00", - "updated_at":"2017-10-23T19:34:14.646+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367962, - "value":"No", - "question_id":12945, - "created_at":"2017-10-24T13:29:22.652+02:00", - "updated_at":"2017-10-24T13:29:22.652+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368943, - "value":"No", - "question_id":12945, - "created_at":"2017-11-08T15:50:43.227+01:00", - "updated_at":"2017-11-08T15:50:43.227+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369085, - "value":"No", - "question_id":12945, - "created_at":"2017-11-10T11:15:49.021+01:00", - "updated_at":"2017-11-10T11:15:49.021+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369247, - "value":"Planned", - "question_id":12945, - "created_at":"2017-11-10T15:39:54.710+01:00", - "updated_at":"2017-11-10T15:39:54.710+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369822, - "value":"No", - "question_id":12945, - "created_at":"2017-11-21T13:47:02.027+01:00", - "updated_at":"2017-11-21T13:47:02.027+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369906, - "value":"No", - "question_id":12945, - "created_at":"2017-11-21T16:52:18.348+01:00", - "updated_at":"2017-11-21T16:52:18.348+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370237, - "value":"No", - "question_id":12945, - "created_at":"2017-11-23T14:12:54.113+01:00", - "updated_at":"2017-11-23T14:12:54.113+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370782, - "value":"Yes", - "question_id":12945, - "created_at":"2017-11-27T09:36:56.964+01:00", - "updated_at":"2017-11-27T09:36:56.964+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371167, - "value":"No", - "question_id":12945, - "created_at":"2017-11-27T14:13:25.896+01:00", - "updated_at":"2017-11-27T14:13:25.896+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371271, - "value":"No", - "question_id":12945, - "created_at":"2017-11-27T14:22:34.777+01:00", - "updated_at":"2017-11-27T14:22:34.777+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371786, - "value":"Yes", - "question_id":12945, - "created_at":"2017-11-28T13:19:07.056+01:00", - "updated_at":"2017-11-28T13:19:07.056+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372332, - "value":"No", - "question_id":12945, - "created_at":"2017-11-29T12:34:33.427+01:00", - "updated_at":"2017-11-29T12:34:33.427+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372655, - "value":"Yes", - "question_id":12945, - "created_at":"2017-11-29T21:48:01.498+01:00", - "updated_at":"2017-11-29T21:48:01.498+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":373197, - "value":"Planned", - "question_id":12945, - "created_at":"2017-12-03T13:50:31.024+01:00", - "updated_at":"2017-12-03T13:50:31.024+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373718, - "value":"No", - "question_id":12945, - "created_at":"2017-12-04T18:00:53.575+01:00", - "updated_at":"2017-12-04T18:00:53.575+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374069, - "value":"No", - "question_id":12945, - "created_at":"2017-12-06T07:27:10.490+01:00", - "updated_at":"2017-12-06T07:27:10.490+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374365, - "value":"No", - "question_id":12945, - "created_at":"2017-12-06T13:17:22.584+01:00", - "updated_at":"2017-12-06T13:17:22.584+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374696, - "value":"No", - "question_id":12945, - "created_at":"2017-12-13T10:16:55.497+01:00", - "updated_at":"2017-12-13T10:16:55.497+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375046, - "value":"No", - "question_id":12945, - "created_at":"2017-12-14T14:22:12.448+01:00", - "updated_at":"2017-12-14T14:22:12.448+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375473, - "value":"Yes", - "question_id":12945, - "created_at":"2017-12-28T10:20:16.384+01:00", - "updated_at":"2017-12-28T10:20:16.384+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375735, - "value":"No", - "question_id":12945, - "created_at":"2018-01-18T13:31:37.544+01:00", - "updated_at":"2018-01-18T13:31:37.544+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378856, - "value":"", - "question_id":12945, - "created_at":"2018-04-26T10:04:48.224+02:00", - "updated_at":"2018-04-26T10:04:48.224+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":378857, - "value":"", - "question_id":12945, - "created_at":"2018-04-26T10:04:48.237+02:00", - "updated_at":"2018-04-26T10:04:48.237+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378858, - "value":"", - "question_id":12945, - "created_at":"2018-04-26T10:04:48.243+02:00", - "updated_at":"2018-04-26T10:04:48.243+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":378860, - "value":"", - "question_id":12945, - "created_at":"2018-04-26T10:04:48.257+02:00", - "updated_at":"2018-04-26T10:04:48.257+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":378861, - "value":"", - "question_id":12945, - "created_at":"2018-04-26T10:04:48.267+02:00", - "updated_at":"2018-04-26T10:04:48.267+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378862, - "value":"", - "question_id":12945, - "created_at":"2018-04-26T10:04:48.290+02:00", - "updated_at":"2018-04-26T10:04:48.290+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378864, - "value":"", - "question_id":12945, - "created_at":"2018-04-26T10:04:48.312+02:00", - "updated_at":"2018-04-26T10:04:48.312+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378865, - "value":"", - "question_id":12945, - "created_at":"2018-04-26T10:04:48.321+02:00", - "updated_at":"2018-04-26T10:04:48.321+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":378866, - "value":"", - "question_id":12945, - "created_at":"2018-04-26T10:04:48.329+02:00", - "updated_at":"2018-04-26T10:04:48.329+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":378867, - "value":"", - "question_id":12945, - "created_at":"2018-04-26T10:04:48.343+02:00", - "updated_at":"2018-04-26T10:04:48.343+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378868, - "value":"", - "question_id":12945, - "created_at":"2018-04-26T10:04:48.354+02:00", - "updated_at":"2018-04-26T10:04:48.354+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383936, - "value":"No", - "question_id":12945, - "created_at":"2017-12-05T16:00:20.449+01:00", - "updated_at":"2017-12-05T16:00:20.449+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641572, - "value":"Yes", - "question_id":12945, - "created_at":"2018-10-30T14:03:05.755+01:00", - "updated_at":"2018-10-30T14:03:05.755+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378869, - "value":"", - "question_id":12945, - "created_at":"2018-04-26T10:04:48.364+02:00", - "updated_at":"2018-04-26T10:04:48.364+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":1500369, - "value":"No", - "question_id":12945, - "created_at":"2021-11-08T12:31:07.018+01:00", - "updated_at":"2021-11-08T12:31:07.018+01:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":1501641, - "value":"Planned", - "question_id":12945, - "created_at":"2021-11-12T09:23:07.791+01:00", - "updated_at":"2021-11-12T09:23:07.791+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1517912, - "value":"Planned", - "question_id":12945, - "created_at":"2022-09-29T14:39:10.678+02:00", - "updated_at":"2022-09-29T14:39:10.678+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"instant-messaging", - "title":"Do you offer instant messaging?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Instant messaging", - "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365582, - "value":"Yes", - "question_id":12947, - "created_at":"2017-09-06T12:13:40.139+02:00", - "updated_at":"2017-09-06T12:13:40.139+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365800, - "value":"Yes", - "question_id":12947, - "created_at":"2017-09-07T15:51:22.995+02:00", - "updated_at":"2017-09-07T15:51:22.995+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365892, - "value":"Yes", - "question_id":12947, - "created_at":"2017-09-13T13:42:09.094+02:00", - "updated_at":"2017-09-13T13:42:09.094+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366152, - "value":"Yes", - "question_id":12947, - "created_at":"2017-09-19T14:56:33.712+02:00", - "updated_at":"2017-09-19T14:56:33.712+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366924, - "value":"Yes", - "question_id":12947, - "created_at":"2017-10-11T10:43:40.715+02:00", - "updated_at":"2017-10-11T10:43:40.715+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367906, - "value":"No", - "question_id":12947, - "created_at":"2017-10-24T13:11:09.831+02:00", - "updated_at":"2017-10-24T13:11:09.831+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368722, - "value":"Yes", - "question_id":12947, - "created_at":"2017-11-02T13:23:27.247+01:00", - "updated_at":"2017-11-02T13:23:27.247+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368796, - "value":"Yes", - "question_id":12947, - "created_at":"2017-11-06T16:09:27.047+01:00", - "updated_at":"2017-11-06T16:09:27.047+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369193, - "value":"Yes", - "question_id":12947, - "created_at":"2017-11-10T15:33:14.555+01:00", - "updated_at":"2017-11-10T15:33:14.555+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369360, - "value":"Yes", - "question_id":12947, - "created_at":"2017-11-11T20:35:56.543+01:00", - "updated_at":"2017-11-11T20:35:56.543+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":369525, - "value":"Yes", - "question_id":12947, - "created_at":"2017-11-13T20:31:55.203+01:00", - "updated_at":"2017-11-13T20:31:55.203+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370162, - "value":"Yes", - "question_id":12947, - "created_at":"2017-11-23T13:53:49.516+01:00", - "updated_at":"2017-11-23T13:53:49.516+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371727, - "value":"", - "question_id":12947, - "created_at":"2017-11-28T13:09:06.797+01:00", - "updated_at":"2017-11-28T13:09:06.797+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":372032, - "value":"Yes", - "question_id":12947, - "created_at":"2017-11-28T16:46:16.061+01:00", - "updated_at":"2017-11-28T16:46:16.061+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372261, - "value":"Yes", - "question_id":12947, - "created_at":"2017-11-29T12:17:33.562+01:00", - "updated_at":"2017-11-29T12:17:33.562+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372593, - "value":"Yes", - "question_id":12947, - "created_at":"2017-11-29T21:36:50.324+01:00", - "updated_at":"2017-11-29T21:36:50.324+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372744, - "value":"Yes", - "question_id":12947, - "created_at":"2017-11-30T08:29:21.151+01:00", - "updated_at":"2017-11-30T08:29:21.151+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373299, - "value":"Yes", - "question_id":12947, - "created_at":"2017-12-04T11:22:21.466+01:00", - "updated_at":"2017-12-04T11:22:21.466+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373668, - "value":"Planned", - "question_id":12947, - "created_at":"2017-12-04T17:53:49.185+01:00", - "updated_at":"2017-12-04T17:53:49.185+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":373818, - "value":"Yes", - "question_id":12947, - "created_at":"2017-12-05T09:47:22.361+01:00", - "updated_at":"2017-12-05T09:47:22.361+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374263, - "value":"Yes", - "question_id":12947, - "created_at":"2017-12-06T11:13:23.669+01:00", - "updated_at":"2017-12-06T11:13:23.669+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374661, - "value":"Yes", - "question_id":12947, - "created_at":"2017-12-13T09:38:21.333+01:00", - "updated_at":"2017-12-13T09:38:21.333+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375003, - "value":"No", - "question_id":12947, - "created_at":"2017-12-14T14:18:53.165+01:00", - "updated_at":"2017-12-14T14:18:53.165+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375495, - "value":"Yes", - "question_id":12947, - "created_at":"2017-12-28T10:31:37.285+01:00", - "updated_at":"2017-12-28T10:31:37.285+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377217, - "value":"", - "question_id":12947, - "created_at":"2018-04-26T10:04:33.452+02:00", - "updated_at":"2018-04-26T10:04:33.452+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377219, - "value":"", - "question_id":12947, - "created_at":"2018-04-26T10:04:33.475+02:00", - "updated_at":"2018-04-26T10:04:33.475+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":377223, - "value":"", - "question_id":12947, - "created_at":"2018-04-26T10:04:33.511+02:00", - "updated_at":"2018-04-26T10:04:33.511+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":377224, - "value":"", - "question_id":12947, - "created_at":"2018-04-26T10:04:33.525+02:00", - "updated_at":"2018-04-26T10:04:33.525+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377225, - "value":"", - "question_id":12947, - "created_at":"2018-04-26T10:04:33.536+02:00", - "updated_at":"2018-04-26T10:04:33.536+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377227, - "value":"", - "question_id":12947, - "created_at":"2018-04-26T10:04:33.559+02:00", - "updated_at":"2018-04-26T10:04:33.559+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377228, - "value":"", - "question_id":12947, - "created_at":"2018-04-26T10:04:33.569+02:00", - "updated_at":"2018-04-26T10:04:33.569+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":377229, - "value":"", - "question_id":12947, - "created_at":"2018-04-26T10:04:33.586+02:00", - "updated_at":"2018-04-26T10:04:33.586+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377230, - "value":"", - "question_id":12947, - "created_at":"2018-04-26T10:04:33.598+02:00", - "updated_at":"2018-04-26T10:04:33.598+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383952, - "value":"Yes", - "question_id":12947, - "created_at":"2017-12-06T13:25:02.708+01:00", - "updated_at":"2017-12-06T13:25:02.708+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618216, - "value":"Yes", - "question_id":12947, - "created_at":"2018-10-28T18:32:27.880+01:00", - "updated_at":"2018-10-28T18:32:27.880+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641551, - "value":"Yes", - "question_id":12947, - "created_at":"2018-10-30T13:52:20.245+01:00", - "updated_at":"2018-10-30T13:52:20.245+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756384, - "value":"Yes", - "question_id":12947, - "created_at":"2018-11-05T14:24:34.499+01:00", - "updated_at":"2018-11-05T14:24:34.499+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":827196, - "value":"Yes", - "question_id":12947, - "created_at":"2019-10-14T12:27:58.735+02:00", - "updated_at":"2019-10-14T12:27:58.735+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":827391, - "value":"No", - "question_id":12947, - "created_at":"2019-10-17T09:25:58.486+02:00", - "updated_at":"2019-10-17T09:25:58.486+02:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377231, - "value":"", - "question_id":12947, - "created_at":"2018-04-26T10:04:33.609+02:00", - "updated_at":"2018-04-26T10:04:33.609+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1481996, - "value":"Yes", - "question_id":12947, - "created_at":"2020-11-10T12:21:32.203+01:00", - "updated_at":"2020-11-10T12:21:32.203+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":1488524, - "value":"Yes", - "question_id":12947, - "created_at":"2020-11-27T09:51:22.064+01:00", - "updated_at":"2020-11-27T09:51:22.064+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493628, - "value":"Planned", - "question_id":12947, - "created_at":"2020-12-18T14:46:18.998+01:00", - "updated_at":"2020-12-18T14:46:18.998+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"interfederation", - "title":"Do you offer Interfederation services?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Interfederation", - "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", - "tags":[ - "identity" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365599, - "value":"No", - "question_id":12949, - "created_at":"2017-09-06T12:15:10.981+02:00", - "updated_at":"2017-09-06T12:15:10.981+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365903, - "value":"No", - "question_id":12949, - "created_at":"2017-09-13T13:43:23.649+02:00", - "updated_at":"2017-09-13T13:43:23.649+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365948, - "value":"No", - "question_id":12949, - "created_at":"2017-09-13T14:14:26.576+02:00", - "updated_at":"2017-09-13T14:14:26.576+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366343, - "value":"No", - "question_id":12949, - "created_at":"2017-09-29T13:48:38.642+02:00", - "updated_at":"2017-09-29T13:48:38.642+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366561, - "value":"No", - "question_id":12949, - "created_at":"2017-10-08T09:14:37.357+02:00", - "updated_at":"2017-10-08T09:14:37.357+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":366656, - "value":"No", - "question_id":12949, - "created_at":"2017-10-09T11:11:28.293+02:00", - "updated_at":"2017-10-09T11:11:28.293+02:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366760, - "value":"No", - "question_id":12949, - "created_at":"2017-10-10T12:59:13.101+02:00", - "updated_at":"2017-10-10T12:59:13.101+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":366817, - "value":"No", - "question_id":12949, - "created_at":"2017-10-10T16:18:22.989+02:00", - "updated_at":"2017-10-10T16:18:22.989+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366900, - "value":"No", - "question_id":12949, - "created_at":"2017-10-11T09:38:55.454+02:00", - "updated_at":"2017-10-11T09:38:55.454+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367230, - "value":"No", - "question_id":12949, - "created_at":"2017-10-11T14:15:04.233+02:00", - "updated_at":"2017-10-11T14:15:04.233+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367930, - "value":"No", - "question_id":12949, - "created_at":"2017-10-24T13:19:46.402+02:00", - "updated_at":"2017-10-24T13:19:46.402+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368176, - "value":"No", - "question_id":12949, - "created_at":"2017-10-30T09:21:49.693+01:00", - "updated_at":"2017-10-30T09:21:49.693+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368515, - "value":"Yes", - "question_id":12949, - "created_at":"2017-10-31T14:29:50.185+01:00", - "updated_at":"2017-10-31T14:29:50.185+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369070, - "value":"Yes", - "question_id":12949, - "created_at":"2017-11-10T11:03:25.659+01:00", - "updated_at":"2017-11-10T11:03:25.659+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369214, - "value":"No", - "question_id":12949, - "created_at":"2017-11-10T15:35:47.204+01:00", - "updated_at":"2017-11-10T15:35:47.204+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369382, - "value":"No", - "question_id":12949, - "created_at":"2017-11-11T20:44:26.256+01:00", - "updated_at":"2017-11-11T20:44:26.256+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370201, - "value":"No", - "question_id":12949, - "created_at":"2017-11-23T14:07:17.105+01:00", - "updated_at":"2017-11-23T14:07:17.105+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370754, - "value":"No", - "question_id":12949, - "created_at":"2017-11-27T09:34:05.968+01:00", - "updated_at":"2017-11-27T09:34:05.968+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370947, - "value":"No", - "question_id":12949, - "created_at":"2017-11-27T10:38:51.297+01:00", - "updated_at":"2017-11-27T10:38:51.297+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371117, - "value":"No", - "question_id":12949, - "created_at":"2017-11-27T13:47:01.767+01:00", - "updated_at":"2017-11-27T13:47:01.767+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371750, - "value":"No", - "question_id":12949, - "created_at":"2017-11-28T13:11:03.953+01:00", - "updated_at":"2017-11-28T13:11:03.953+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372291, - "value":"No", - "question_id":12949, - "created_at":"2017-11-29T12:24:53.031+01:00", - "updated_at":"2017-11-29T12:24:53.031+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372617, - "value":"No", - "question_id":12949, - "created_at":"2017-11-29T21:40:55.549+01:00", - "updated_at":"2017-11-29T21:40:55.549+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373242, - "value":"Planned", - "question_id":12949, - "created_at":"2017-12-04T11:10:55.813+01:00", - "updated_at":"2017-12-04T11:10:55.813+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373689, - "value":"No", - "question_id":12949, - "created_at":"2017-12-04T17:56:41.283+01:00", - "updated_at":"2017-12-04T17:56:41.283+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374319, - "value":"No", - "question_id":12949, - "created_at":"2017-12-06T13:01:10.456+01:00", - "updated_at":"2017-12-06T13:01:10.456+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374924, - "value":"Yes", - "question_id":12949, - "created_at":"2017-12-14T12:47:42.130+01:00", - "updated_at":"2017-12-14T12:47:42.130+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375022, - "value":"Yes", - "question_id":12949, - "created_at":"2017-12-14T14:20:19.086+01:00", - "updated_at":"2017-12-14T14:20:19.086+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375321, - "value":"Yes", - "question_id":12949, - "created_at":"2017-12-27T14:41:08.109+01:00", - "updated_at":"2017-12-27T14:41:08.109+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375432, - "value":"Yes", - "question_id":12949, - "created_at":"2017-12-28T10:08:35.835+01:00", - "updated_at":"2017-12-28T10:08:35.835+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377834, - "value":"", - "question_id":12949, - "created_at":"2018-04-26T10:04:38.924+02:00", - "updated_at":"2018-04-26T10:04:38.924+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":377835, - "value":"", - "question_id":12949, - "created_at":"2018-04-26T10:04:38.933+02:00", - "updated_at":"2018-04-26T10:04:38.933+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377836, - "value":"", - "question_id":12949, - "created_at":"2018-04-26T10:04:38.938+02:00", - "updated_at":"2018-04-26T10:04:38.938+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":377839, - "value":"", - "question_id":12949, - "created_at":"2018-04-26T10:04:38.953+02:00", - "updated_at":"2018-04-26T10:04:38.953+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":377840, - "value":"", - "question_id":12949, - "created_at":"2018-04-26T10:04:38.964+02:00", - "updated_at":"2018-04-26T10:04:38.964+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377841, - "value":"", - "question_id":12949, - "created_at":"2018-04-26T10:04:38.970+02:00", - "updated_at":"2018-04-26T10:04:38.970+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":377842, - "value":"", - "question_id":12949, - "created_at":"2018-04-26T10:04:38.975+02:00", - "updated_at":"2018-04-26T10:04:38.975+02:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377843, - "value":"", - "question_id":12949, - "created_at":"2018-04-26T10:04:38.983+02:00", - "updated_at":"2018-04-26T10:04:38.983+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377844, - "value":"", - "question_id":12949, - "created_at":"2018-04-26T10:04:39.001+02:00", - "updated_at":"2018-04-26T10:04:39.001+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383944, - "value":"No", - "question_id":12949, - "created_at":"2017-12-05T15:55:14.851+01:00", - "updated_at":"2017-12-05T15:55:14.851+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756404, - "value":"Yes", - "question_id":12949, - "created_at":"2018-11-05T14:33:20.481+01:00", - "updated_at":"2018-11-05T14:33:20.481+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377845, - "value":"", - "question_id":12949, - "created_at":"2018-04-26T10:04:39.008+02:00", - "updated_at":"2018-04-26T10:04:39.008+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":1494274, - "value":"No", - "question_id":12949, - "created_at":"2021-01-14T15:02:58.381+01:00", - "updated_at":"2021-01-14T15:02:58.381+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internet-radio-tv", - "title":"Do you offer Internet TV/radio ?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"TV/radio streaming", - "title_detailed":"Internet and radio streaming services.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365632, - "value":"No", - "question_id":12905, - "created_at":"2017-09-06T12:18:41.816+02:00", - "updated_at":"2017-09-06T12:18:41.816+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365920, - "value":"No", - "question_id":12905, - "created_at":"2017-09-13T13:45:45.302+02:00", - "updated_at":"2017-09-13T13:45:45.302+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366364, - "value":"No", - "question_id":12905, - "created_at":"2017-09-29T13:52:23.237+02:00", - "updated_at":"2017-09-29T13:52:23.237+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366883, - "value":"No", - "question_id":12905, - "created_at":"2017-10-11T09:36:09.109+02:00", - "updated_at":"2017-10-11T09:36:09.109+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367488, - "value":"No", - "question_id":12905, - "created_at":"2017-10-17T12:05:19.955+02:00", - "updated_at":"2017-10-17T12:05:19.955+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367754, - "value":"No", - "question_id":12905, - "created_at":"2017-10-23T19:33:51.302+02:00", - "updated_at":"2017-10-23T19:33:51.302+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367957, - "value":"No", - "question_id":12905, - "created_at":"2017-10-24T13:27:45.882+02:00", - "updated_at":"2017-10-24T13:27:45.882+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368936, - "value":"Yes", - "question_id":12905, - "created_at":"2017-11-08T15:48:58.674+01:00", - "updated_at":"2017-11-08T15:48:58.674+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369242, - "value":"Yes", - "question_id":12905, - "created_at":"2017-11-10T15:39:27.747+01:00", - "updated_at":"2017-11-10T15:39:27.747+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369703, - "value":"Yes", - "question_id":12905, - "created_at":"2017-11-21T11:43:15.869+01:00", - "updated_at":"2017-11-21T11:43:15.869+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369828, - "value":"No", - "question_id":12905, - "created_at":"2017-11-21T13:48:04.193+01:00", - "updated_at":"2017-11-21T13:48:04.193+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370232, - "value":"No", - "question_id":12905, - "created_at":"2017-11-23T14:12:39.942+01:00", - "updated_at":"2017-11-23T14:12:39.942+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":370394, - "value":"Yes", - "question_id":12905, - "created_at":"2017-11-24T16:40:40.101+01:00", - "updated_at":"2017-11-24T16:40:40.101+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370777, - "value":"No", - "question_id":12905, - "created_at":"2017-11-27T09:36:36.525+01:00", - "updated_at":"2017-11-27T09:36:36.525+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371292, - "value":"No", - "question_id":12905, - "created_at":"2017-11-27T14:29:23.157+01:00", - "updated_at":"2017-11-27T14:29:23.157+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371430, - "value":"No", - "question_id":12905, - "created_at":"2017-11-27T14:48:16.903+01:00", - "updated_at":"2017-11-27T14:48:16.903+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371780, - "value":"No", - "question_id":12905, - "created_at":"2017-11-28T13:18:44.637+01:00", - "updated_at":"2017-11-28T13:18:44.637+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372327, - "value":"No", - "question_id":12905, - "created_at":"2017-11-29T12:34:07.952+01:00", - "updated_at":"2017-11-29T12:34:07.952+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372650, - "value":"No", - "question_id":12905, - "created_at":"2017-11-29T21:47:03.558+01:00", - "updated_at":"2017-11-29T21:47:03.558+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372770, - "value":"No", - "question_id":12905, - "created_at":"2017-11-30T08:33:51.560+01:00", - "updated_at":"2017-11-30T08:33:51.560+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373260, - "value":"Yes", - "question_id":12905, - "created_at":"2017-12-04T11:15:05.681+01:00", - "updated_at":"2017-12-04T11:15:05.681+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373713, - "value":"Yes", - "question_id":12905, - "created_at":"2017-12-04T18:00:21.665+01:00", - "updated_at":"2017-12-04T18:00:21.665+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374354, - "value":"No", - "question_id":12905, - "created_at":"2017-12-06T13:15:01.396+01:00", - "updated_at":"2017-12-06T13:15:01.396+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374727, - "value":"No", - "question_id":12905, - "created_at":"2017-12-13T11:16:30.580+01:00", - "updated_at":"2017-12-13T11:16:30.580+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375469, - "value":"Yes", - "question_id":12905, - "created_at":"2017-12-28T10:20:04.686+01:00", - "updated_at":"2017-12-28T10:20:04.686+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375730, - "value":"No", - "question_id":12905, - "created_at":"2018-01-18T13:27:41.909+01:00", - "updated_at":"2018-01-18T13:27:41.909+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":376016, - "value":"No", - "question_id":12905, - "created_at":"2018-02-16T09:49:42.190+01:00", - "updated_at":"2018-02-16T09:49:42.190+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378618, - "value":"", - "question_id":12905, - "created_at":"2018-04-26T10:04:46.119+02:00", - "updated_at":"2018-04-26T10:04:46.119+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":378619, - "value":"", - "question_id":12905, - "created_at":"2018-04-26T10:04:46.132+02:00", - "updated_at":"2018-04-26T10:04:46.132+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378620, - "value":"", - "question_id":12905, - "created_at":"2018-04-26T10:04:46.138+02:00", - "updated_at":"2018-04-26T10:04:46.138+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":378622, - "value":"", - "question_id":12905, - "created_at":"2018-04-26T10:04:46.154+02:00", - "updated_at":"2018-04-26T10:04:46.154+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":378623, - "value":"", - "question_id":12905, - "created_at":"2018-04-26T10:04:46.163+02:00", - "updated_at":"2018-04-26T10:04:46.163+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":378624, - "value":"", - "question_id":12905, - "created_at":"2018-04-26T10:04:46.176+02:00", - "updated_at":"2018-04-26T10:04:46.176+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378625, - "value":"", - "question_id":12905, - "created_at":"2018-04-26T10:04:46.183+02:00", - "updated_at":"2018-04-26T10:04:46.183+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378627, - "value":"", - "question_id":12905, - "created_at":"2018-04-26T10:04:46.201+02:00", - "updated_at":"2018-04-26T10:04:46.201+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378628, - "value":"", - "question_id":12905, - "created_at":"2018-04-26T10:04:46.209+02:00", - "updated_at":"2018-04-26T10:04:46.209+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":378629, - "value":"", - "question_id":12905, - "created_at":"2018-04-26T10:04:46.224+02:00", - "updated_at":"2018-04-26T10:04:46.224+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":378630, - "value":"", - "question_id":12905, - "created_at":"2018-04-26T10:04:46.234+02:00", - "updated_at":"2018-04-26T10:04:46.234+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378631, - "value":"", - "question_id":12905, - "created_at":"2018-04-26T10:04:46.241+02:00", - "updated_at":"2018-04-26T10:04:46.241+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383926, - "value":"No", - "question_id":12905, - "created_at":"2017-12-06T13:40:13.420+01:00", - "updated_at":"2017-12-06T13:40:13.420+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641571, - "value":"Yes", - "question_id":12905, - "created_at":"2018-10-30T14:02:37.524+01:00", - "updated_at":"2018-10-30T14:02:37.524+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378632, - "value":"", - "question_id":12905, - "created_at":"2018-04-26T10:04:46.250+02:00", - "updated_at":"2018-04-26T10:04:46.250+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1483394, - "value":"No", - "question_id":12905, - "created_at":"2020-11-16T13:57:44.517+01:00", - "updated_at":"2020-11-16T13:57:44.517+01:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"internship-database", - "title":"Do you offer Database services?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Database services", - "title_detailed":"Provision of tools or services to create or host databases.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365588, - "value":"Yes", - "question_id":12953, - "created_at":"2017-09-06T12:14:09.920+02:00", - "updated_at":"2017-09-06T12:14:09.920+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365792, - "value":"Yes", - "question_id":12953, - "created_at":"2017-09-07T15:50:50.133+02:00", - "updated_at":"2017-09-07T15:50:50.133+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365898, - "value":"Yes", - "question_id":12953, - "created_at":"2017-09-13T13:42:45.013+02:00", - "updated_at":"2017-09-13T13:42:45.013+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366330, - "value":"Yes", - "question_id":12953, - "created_at":"2017-09-29T13:45:30.047+02:00", - "updated_at":"2017-09-29T13:45:30.047+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366611, - "value":"Yes", - "question_id":12953, - "created_at":"2017-10-08T09:21:53.219+02:00", - "updated_at":"2017-10-08T09:21:53.219+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366755, - "value":"Yes", - "question_id":12953, - "created_at":"2017-10-10T12:54:50.587+02:00", - "updated_at":"2017-10-10T12:54:50.587+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367534, - "value":"Yes", - "question_id":12953, - "created_at":"2017-10-17T14:30:39.711+02:00", - "updated_at":"2017-10-17T14:30:39.711+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367715, - "value":"Yes", - "question_id":12953, - "created_at":"2017-10-23T19:27:08.440+02:00", - "updated_at":"2017-10-23T19:27:08.440+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367917, - "value":"Yes", - "question_id":12953, - "created_at":"2017-10-24T13:16:32.987+02:00", - "updated_at":"2017-10-24T13:16:32.987+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":368228, - "value":"Yes", - "question_id":12953, - "created_at":"2017-10-30T12:43:20.345+01:00", - "updated_at":"2017-10-30T12:43:20.345+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368730, - "value":"Yes", - "question_id":12953, - "created_at":"2017-11-02T13:23:52.251+01:00", - "updated_at":"2017-11-02T13:23:52.251+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368804, - "value":"Yes", - "question_id":12953, - "created_at":"2017-11-06T16:13:27.575+01:00", - "updated_at":"2017-11-06T16:13:27.575+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369201, - "value":"Yes", - "question_id":12953, - "created_at":"2017-11-10T15:34:07.894+01:00", - "updated_at":"2017-11-10T15:34:07.894+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369373, - "value":"Yes", - "question_id":12953, - "created_at":"2017-11-11T20:41:19.156+01:00", - "updated_at":"2017-11-11T20:41:19.156+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370176, - "value":"Yes", - "question_id":12953, - "created_at":"2017-11-23T14:00:04.983+01:00", - "updated_at":"2017-11-23T14:00:04.983+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370740, - "value":"Yes", - "question_id":12953, - "created_at":"2017-11-27T09:32:53.746+01:00", - "updated_at":"2017-11-27T09:32:53.746+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370940, - "value":"Yes", - "question_id":12953, - "created_at":"2017-11-27T10:37:57.470+01:00", - "updated_at":"2017-11-27T10:37:57.470+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371108, - "value":"Yes", - "question_id":12953, - "created_at":"2017-11-27T13:46:01.119+01:00", - "updated_at":"2017-11-27T13:46:01.119+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371566, - "value":"Yes", - "question_id":12953, - "created_at":"2017-11-27T16:38:28.563+01:00", - "updated_at":"2017-11-27T16:38:28.563+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371734, - "value":"Yes", - "question_id":12953, - "created_at":"2017-11-28T13:09:34.797+01:00", - "updated_at":"2017-11-28T13:09:34.797+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":372110, - "value":"Yes", - "question_id":12953, - "created_at":"2017-11-28T17:40:04.693+01:00", - "updated_at":"2017-11-28T17:40:04.693+01:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372274, - "value":"Yes", - "question_id":12953, - "created_at":"2017-11-29T12:19:46.867+01:00", - "updated_at":"2017-11-29T12:19:46.867+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372443, - "value":"Yes", - "question_id":12953, - "created_at":"2017-11-29T13:04:10.051+01:00", - "updated_at":"2017-11-29T13:04:10.051+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":373170, - "value":"Yes", - "question_id":12953, - "created_at":"2017-12-01T17:28:09.514+01:00", - "updated_at":"2017-12-01T17:28:09.514+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373235, - "value":"Yes", - "question_id":12953, - "created_at":"2017-12-04T11:09:31.467+01:00", - "updated_at":"2017-12-04T11:09:31.467+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373676, - "value":"Yes", - "question_id":12953, - "created_at":"2017-12-04T17:54:52.305+01:00", - "updated_at":"2017-12-04T17:54:52.305+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374273, - "value":"Yes", - "question_id":12953, - "created_at":"2017-12-06T11:15:40.221+01:00", - "updated_at":"2017-12-06T11:15:40.221+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374916, - "value":"Yes", - "question_id":12953, - "created_at":"2017-12-14T12:46:52.981+01:00", - "updated_at":"2017-12-14T12:46:52.981+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375335, - "value":"Yes", - "question_id":12953, - "created_at":"2017-12-27T14:44:40.371+01:00", - "updated_at":"2017-12-27T14:44:40.371+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375426, - "value":"Yes", - "question_id":12953, - "created_at":"2017-12-28T10:07:30.853+01:00", - "updated_at":"2017-12-28T10:07:30.853+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375820, - "value":"Yes", - "question_id":12953, - "created_at":"2018-01-22T00:49:19.758+01:00", - "updated_at":"2018-01-22T00:49:19.758+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":376047, - "value":"No", - "question_id":12953, - "created_at":"2018-02-16T11:26:09.767+01:00", - "updated_at":"2018-02-16T11:26:09.767+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377577, - "value":"", - "question_id":12953, - "created_at":"2018-04-26T10:04:36.967+02:00", - "updated_at":"2018-04-26T10:04:36.967+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377579, - "value":"", - "question_id":12953, - "created_at":"2018-04-26T10:04:36.980+02:00", - "updated_at":"2018-04-26T10:04:36.980+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377583, - "value":"", - "question_id":12953, - "created_at":"2018-04-26T10:04:37.007+02:00", - "updated_at":"2018-04-26T10:04:37.007+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377585, - "value":"", - "question_id":12953, - "created_at":"2018-04-26T10:04:37.020+02:00", - "updated_at":"2018-04-26T10:04:37.020+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377586, - "value":"", - "question_id":12953, - "created_at":"2018-04-26T10:04:37.037+02:00", - "updated_at":"2018-04-26T10:04:37.037+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383954, - "value":"Yes", - "question_id":12953, - "created_at":"2017-12-06T13:26:48.222+01:00", - "updated_at":"2017-12-06T13:26:48.222+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618208, - "value":"Yes", - "question_id":12953, - "created_at":"2018-10-28T18:29:18.780+01:00", - "updated_at":"2018-10-28T18:29:18.780+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641543, - "value":"Yes", - "question_id":12953, - "created_at":"2018-10-30T13:48:53.853+01:00", - "updated_at":"2018-10-30T13:48:53.853+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756366, - "value":"Yes", - "question_id":12953, - "created_at":"2018-11-05T14:02:09.447+01:00", - "updated_at":"2018-11-05T14:02:09.447+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774383, - "value":"Yes", - "question_id":12953, - "created_at":"2018-11-15T12:42:42.710+01:00", - "updated_at":"2018-11-15T12:42:42.710+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377587, - "value":"", - "question_id":12953, - "created_at":"2018-04-26T10:04:37.043+02:00", - "updated_at":"2018-04-26T10:04:37.043+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ip-address-allocation", - "title":"Do you offer IP address allocation (LIR)?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"IP address allocation/LIR", - "title_detailed":"Local Internet Registry service for assigning of IP address space.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365560, - "value":"Yes", - "question_id":12957, - "created_at":"2017-09-06T12:08:11.649+02:00", - "updated_at":"2017-09-06T12:08:11.649+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365673, - "value":"Yes", - "question_id":12957, - "created_at":"2017-09-07T15:30:21.087+02:00", - "updated_at":"2017-09-07T15:30:21.087+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365870, - "value":"Yes", - "question_id":12957, - "created_at":"2017-09-13T13:37:02.642+02:00", - "updated_at":"2017-09-13T13:37:02.642+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366121, - "value":"Yes", - "question_id":12957, - "created_at":"2017-09-19T14:36:34.800+02:00", - "updated_at":"2017-09-19T14:36:34.800+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366541, - "value":"Yes", - "question_id":12957, - "created_at":"2017-10-08T08:45:42.285+02:00", - "updated_at":"2017-10-08T08:45:42.285+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367070, - "value":"Yes", - "question_id":12957, - "created_at":"2017-10-11T13:10:21.252+02:00", - "updated_at":"2017-10-11T13:10:21.252+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367316, - "value":"Yes", - "question_id":12957, - "created_at":"2017-10-11T20:52:31.205+02:00", - "updated_at":"2017-10-11T20:52:31.205+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367684, - "value":"Yes", - "question_id":12957, - "created_at":"2017-10-23T19:24:00.100+02:00", - "updated_at":"2017-10-23T19:24:00.100+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367873, - "value":"No", - "question_id":12957, - "created_at":"2017-10-24T12:59:57.526+02:00", - "updated_at":"2017-10-24T12:59:57.526+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368615, - "value":"Yes", - "question_id":12957, - "created_at":"2017-11-02T09:52:35.923+01:00", - "updated_at":"2017-11-02T09:52:35.923+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368686, - "value":"Yes", - "question_id":12957, - "created_at":"2017-11-02T13:20:17.137+01:00", - "updated_at":"2017-11-02T13:20:17.137+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369165, - "value":"Yes", - "question_id":12957, - "created_at":"2017-11-10T15:29:23.083+01:00", - "updated_at":"2017-11-10T15:29:23.083+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369317, - "value":"Yes", - "question_id":12957, - "created_at":"2017-11-11T20:18:05.781+01:00", - "updated_at":"2017-11-11T20:18:05.781+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369862, - "value":"Yes", - "question_id":12957, - "created_at":"2017-11-21T15:46:34.032+01:00", - "updated_at":"2017-11-21T15:46:34.032+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370118, - "value":"Yes", - "question_id":12957, - "created_at":"2017-11-23T13:36:09.807+01:00", - "updated_at":"2017-11-23T13:36:09.807+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370699, - "value":"Yes", - "question_id":12957, - "created_at":"2017-11-27T09:29:06.891+01:00", - "updated_at":"2017-11-27T09:29:06.891+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371100, - "value":"Yes", - "question_id":12957, - "created_at":"2017-11-27T13:44:14.626+01:00", - "updated_at":"2017-11-27T13:44:14.626+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371222, - "value":"No", - "question_id":12957, - "created_at":"2017-11-27T14:18:56.147+01:00", - "updated_at":"2017-11-27T14:18:56.147+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371617, - "value":"Yes", - "question_id":12957, - "created_at":"2017-11-27T16:50:00.046+01:00", - "updated_at":"2017-11-27T16:50:00.046+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371694, - "value":"Yes", - "question_id":12957, - "created_at":"2017-11-28T13:05:21.682+01:00", - "updated_at":"2017-11-28T13:05:21.682+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":372103, - "value":"Yes", - "question_id":12957, - "created_at":"2017-11-28T17:35:25.660+01:00", - "updated_at":"2017-11-28T17:35:25.660+01:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372215, - "value":"Yes", - "question_id":12957, - "created_at":"2017-11-29T11:57:33.095+01:00", - "updated_at":"2017-11-29T11:57:33.095+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372565, - "value":"Yes", - "question_id":12957, - "created_at":"2017-11-29T21:31:38.411+01:00", - "updated_at":"2017-11-29T21:31:38.411+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373277, - "value":"Yes", - "question_id":12957, - "created_at":"2017-12-04T11:17:10.823+01:00", - "updated_at":"2017-12-04T11:17:10.823+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373635, - "value":"Planned", - "question_id":12957, - "created_at":"2017-12-04T17:48:58.648+01:00", - "updated_at":"2017-12-04T17:48:58.648+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374219, - "value":"Yes", - "question_id":12957, - "created_at":"2017-12-06T10:53:42.867+01:00", - "updated_at":"2017-12-06T10:53:42.867+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374902, - "value":"Yes", - "question_id":12957, - "created_at":"2017-12-14T12:44:40.660+01:00", - "updated_at":"2017-12-14T12:44:40.660+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":374969, - "value":"Planned", - "question_id":12957, - "created_at":"2017-12-14T14:14:30.770+01:00", - "updated_at":"2017-12-14T14:14:30.770+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375346, - "value":"Yes", - "question_id":12957, - "created_at":"2017-12-27T14:48:31.108+01:00", - "updated_at":"2017-12-27T14:48:31.108+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375391, - "value":"Yes", - "question_id":12957, - "created_at":"2017-12-28T10:00:37.096+01:00", - "updated_at":"2017-12-28T10:00:37.096+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375791, - "value":"Yes", - "question_id":12957, - "created_at":"2018-01-22T00:40:55.051+01:00", - "updated_at":"2018-01-22T00:40:55.051+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376306, - "value":"", - "question_id":12957, - "created_at":"2018-04-26T10:04:22.962+02:00", - "updated_at":"2018-04-26T10:04:22.962+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376308, - "value":"", - "question_id":12957, - "created_at":"2018-04-26T10:04:22.981+02:00", - "updated_at":"2018-04-26T10:04:22.981+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376313, - "value":"", - "question_id":12957, - "created_at":"2018-04-26T10:04:23.029+02:00", - "updated_at":"2018-04-26T10:04:23.029+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376315, - "value":"", - "question_id":12957, - "created_at":"2018-04-26T10:04:23.049+02:00", - "updated_at":"2018-04-26T10:04:23.049+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376316, - "value":"", - "question_id":12957, - "created_at":"2018-04-26T10:04:23.077+02:00", - "updated_at":"2018-04-26T10:04:23.077+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383947, - "value":"Yes", - "question_id":12957, - "created_at":"2017-12-05T15:42:40.181+01:00", - "updated_at":"2017-12-05T15:42:40.181+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618211, - "value":"Yes", - "question_id":12957, - "created_at":"2018-10-28T18:30:00.464+01:00", - "updated_at":"2018-10-28T18:30:00.464+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641545, - "value":"Yes", - "question_id":12957, - "created_at":"2018-10-30T13:49:40.488+01:00", - "updated_at":"2018-10-30T13:49:40.488+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756368, - "value":"Yes", - "question_id":12957, - "created_at":"2018-11-05T14:02:29.135+01:00", - "updated_at":"2018-11-05T14:02:29.135+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774385, - "value":"Yes", - "question_id":12957, - "created_at":"2018-11-15T12:43:27.159+01:00", - "updated_at":"2018-11-15T12:43:27.159+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":371478, - "value":"Yes", - "question_id":12957, - "created_at":"2017-11-27T15:00:06.433+01:00", - "updated_at":"2017-11-27T15:00:06.433+01:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493626, - "value":"Planned", - "question_id":12957, - "created_at":"2020-12-18T14:44:43.580+01:00", - "updated_at":"2020-12-18T14:44:43.580+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ipv6", - "title":"Do you offer IPv6?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"IPv6", - "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365589, - "value":"No", - "question_id":12959, - "created_at":"2017-09-06T12:14:12.844+02:00", - "updated_at":"2017-09-06T12:14:12.844+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365791, - "value":"No", - "question_id":12959, - "created_at":"2017-09-07T15:50:41.576+02:00", - "updated_at":"2017-09-07T15:50:41.576+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365899, - "value":"No", - "question_id":12959, - "created_at":"2017-09-13T13:42:51.570+02:00", - "updated_at":"2017-09-13T13:42:51.570+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366610, - "value":"No", - "question_id":12959, - "created_at":"2017-10-08T09:21:50.104+02:00", - "updated_at":"2017-10-08T09:21:50.104+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367140, - "value":"No", - "question_id":12959, - "created_at":"2017-10-11T13:34:10.808+02:00", - "updated_at":"2017-10-11T13:34:10.808+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367222, - "value":"No", - "question_id":12959, - "created_at":"2017-10-11T14:13:18.233+02:00", - "updated_at":"2017-10-11T14:13:18.233+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367716, - "value":"No", - "question_id":12959, - "created_at":"2017-10-23T19:27:14.768+02:00", - "updated_at":"2017-10-23T19:27:14.768+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367919, - "value":"Planned", - "question_id":12959, - "created_at":"2017-10-24T13:16:56.916+02:00", - "updated_at":"2017-10-24T13:16:56.916+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368165, - "value":"Yes", - "question_id":12959, - "created_at":"2017-10-30T09:20:24.926+01:00", - "updated_at":"2017-10-30T09:20:24.926+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368732, - "value":"No", - "question_id":12959, - "created_at":"2017-11-02T13:23:56.749+01:00", - "updated_at":"2017-11-02T13:23:56.749+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368997, - "value":"", - "question_id":12959, - "created_at":"2017-11-09T12:48:45.546+01:00", - "updated_at":"2017-11-09T12:48:45.546+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369202, - "value":"No", - "question_id":12959, - "created_at":"2017-11-10T15:34:12.930+01:00", - "updated_at":"2017-11-10T15:34:12.930+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369374, - "value":"No", - "question_id":12959, - "created_at":"2017-11-11T20:41:59.094+01:00", - "updated_at":"2017-11-11T20:41:59.094+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369844, - "value":"Yes", - "question_id":12959, - "created_at":"2017-11-21T14:56:35.071+01:00", - "updated_at":"2017-11-21T14:56:35.071+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370178, - "value":"Yes", - "question_id":12959, - "created_at":"2017-11-23T14:01:08.066+01:00", - "updated_at":"2017-11-23T14:01:08.066+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370741, - "value":"No", - "question_id":12959, - "created_at":"2017-11-27T09:33:01.062+01:00", - "updated_at":"2017-11-27T09:33:01.062+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370941, - "value":"No", - "question_id":12959, - "created_at":"2017-11-27T10:38:04.736+01:00", - "updated_at":"2017-11-27T10:38:04.736+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371370, - "value":"No", - "question_id":12959, - "created_at":"2017-11-27T14:37:18.462+01:00", - "updated_at":"2017-11-27T14:37:18.462+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371568, - "value":"No", - "question_id":12959, - "created_at":"2017-11-27T16:38:52.431+01:00", - "updated_at":"2017-11-27T16:38:52.431+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371735, - "value":"Yes", - "question_id":12959, - "created_at":"2017-11-28T13:09:38.793+01:00", - "updated_at":"2017-11-28T13:09:38.793+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372251, - "value":"No", - "question_id":12959, - "created_at":"2017-11-29T12:05:20.277+01:00", - "updated_at":"2017-11-29T12:05:20.277+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372445, - "value":"No", - "question_id":12959, - "created_at":"2017-11-29T13:04:44.694+01:00", - "updated_at":"2017-11-29T13:04:44.694+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372603, - "value":"Yes", - "question_id":12959, - "created_at":"2017-11-29T21:38:24.704+01:00", - "updated_at":"2017-11-29T21:38:24.704+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":372887, - "value":"Planned", - "question_id":12959, - "created_at":"2017-11-30T14:21:36.341+01:00", - "updated_at":"2017-11-30T14:21:36.341+01:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373305, - "value":"No", - "question_id":12959, - "created_at":"2017-12-04T11:22:58.470+01:00", - "updated_at":"2017-12-04T11:22:58.470+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373677, - "value":"Yes", - "question_id":12959, - "created_at":"2017-12-04T17:54:56.363+01:00", - "updated_at":"2017-12-04T17:54:56.363+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374275, - "value":"No", - "question_id":12959, - "created_at":"2017-12-06T11:16:15.838+01:00", - "updated_at":"2017-12-06T11:16:15.838+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374917, - "value":"Yes", - "question_id":12959, - "created_at":"2017-12-14T12:46:58.444+01:00", - "updated_at":"2017-12-14T12:46:58.444+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375012, - "value":"No", - "question_id":12959, - "created_at":"2017-12-14T14:19:20.704+01:00", - "updated_at":"2017-12-14T14:19:20.704+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375333, - "value":"Yes", - "question_id":12959, - "created_at":"2017-12-27T14:44:19.972+01:00", - "updated_at":"2017-12-27T14:44:19.972+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375427, - "value":"No", - "question_id":12959, - "created_at":"2017-12-28T10:07:37.085+01:00", - "updated_at":"2017-12-28T10:07:37.085+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377615, - "value":"", - "question_id":12959, - "created_at":"2018-04-26T10:04:37.259+02:00", - "updated_at":"2018-04-26T10:04:37.259+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377617, - "value":"", - "question_id":12959, - "created_at":"2018-04-26T10:04:37.273+02:00", - "updated_at":"2018-04-26T10:04:37.273+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":377619, - "value":"", - "question_id":12959, - "created_at":"2018-04-26T10:04:37.283+02:00", - "updated_at":"2018-04-26T10:04:37.283+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":377622, - "value":"", - "question_id":12959, - "created_at":"2018-04-26T10:04:37.307+02:00", - "updated_at":"2018-04-26T10:04:37.307+02:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377623, - "value":"", - "question_id":12959, - "created_at":"2018-04-26T10:04:37.315+02:00", - "updated_at":"2018-04-26T10:04:37.315+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":377624, - "value":"", - "question_id":12959, - "created_at":"2018-04-26T10:04:37.337+02:00", - "updated_at":"2018-04-26T10:04:37.337+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377625, - "value":"", - "question_id":12959, - "created_at":"2018-04-26T10:04:37.345+02:00", - "updated_at":"2018-04-26T10:04:37.345+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383943, - "value":"No", - "question_id":12959, - "created_at":"2017-12-06T13:27:10.636+01:00", - "updated_at":"2017-12-06T13:27:10.636+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618240, - "value":"Yes", - "question_id":12959, - "created_at":"2018-10-28T18:43:33.279+01:00", - "updated_at":"2018-10-28T18:43:33.279+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774399, - "value":"Yes", - "question_id":12959, - "created_at":"2018-11-15T12:50:11.530+01:00", - "updated_at":"2018-11-15T12:50:11.530+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377626, - "value":"", - "question_id":12959, - "created_at":"2018-04-26T10:04:37.352+02:00", - "updated_at":"2018-04-26T10:04:37.352+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493638, - "value":"Yes", - "question_id":12959, - "created_at":"2020-12-18T15:01:40.961+01:00", - "updated_at":"2020-12-18T15:01:40.961+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"ix-operation", - "title":"Do you offer National IX operation", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"National IX operation", - "title_detailed":"Operation of a national Internet Exchange.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365639, - "value":"Yes", - "question_id":12961, - "created_at":"2017-09-06T12:19:05.714+02:00", - "updated_at":"2017-09-06T12:19:05.714+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365706, - "value":"No", - "question_id":12961, - "created_at":"2017-09-07T15:34:08.873+02:00", - "updated_at":"2017-09-07T15:34:08.873+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365925, - "value":"No", - "question_id":12961, - "created_at":"2017-09-13T13:46:05.802+02:00", - "updated_at":"2017-09-13T13:46:05.802+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366370, - "value":"No", - "question_id":12961, - "created_at":"2017-09-29T13:52:53.907+02:00", - "updated_at":"2017-09-29T13:52:53.907+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366594, - "value":"No", - "question_id":12961, - "created_at":"2017-10-08T09:19:10.110+02:00", - "updated_at":"2017-10-08T09:19:10.110+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366877, - "value":"No", - "question_id":12961, - "created_at":"2017-10-11T09:35:38.135+02:00", - "updated_at":"2017-10-11T09:35:38.135+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367548, - "value":"Yes", - "question_id":12961, - "created_at":"2017-10-17T14:42:56.126+02:00", - "updated_at":"2017-10-17T14:42:56.126+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367760, - "value":"Yes", - "question_id":12961, - "created_at":"2017-10-23T19:36:04.388+02:00", - "updated_at":"2017-10-23T19:36:04.388+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367963, - "value":"No", - "question_id":12961, - "created_at":"2017-10-24T13:29:30.020+02:00", - "updated_at":"2017-10-24T13:29:30.020+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368962, - "value":"Yes", - "question_id":12961, - "created_at":"2017-11-08T15:57:47.955+01:00", - "updated_at":"2017-11-08T15:57:47.955+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369086, - "value":"No", - "question_id":12961, - "created_at":"2017-11-10T11:15:56.378+01:00", - "updated_at":"2017-11-10T11:15:56.378+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369248, - "value":"No", - "question_id":12961, - "created_at":"2017-11-10T15:40:00.186+01:00", - "updated_at":"2017-11-10T15:40:00.186+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369807, - "value":"Yes", - "question_id":12961, - "created_at":"2017-11-21T13:42:30.474+01:00", - "updated_at":"2017-11-21T13:42:30.474+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370238, - "value":"No", - "question_id":12961, - "created_at":"2017-11-23T14:12:59.526+01:00", - "updated_at":"2017-11-23T14:12:59.526+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370784, - "value":"No", - "question_id":12961, - "created_at":"2017-11-27T09:37:06.228+01:00", - "updated_at":"2017-11-27T09:37:06.228+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371269, - "value":"Yes", - "question_id":12961, - "created_at":"2017-11-27T14:22:30.306+01:00", - "updated_at":"2017-11-27T14:22:30.306+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371434, - "value":"Yes", - "question_id":12961, - "created_at":"2017-11-27T14:49:42.198+01:00", - "updated_at":"2017-11-27T14:49:42.198+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371787, - "value":"No", - "question_id":12961, - "created_at":"2017-11-28T13:19:11.921+01:00", - "updated_at":"2017-11-28T13:19:11.921+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":372126, - "value":"Yes", - "question_id":12961, - "created_at":"2017-11-28T17:47:36.086+01:00", - "updated_at":"2017-11-28T17:47:36.086+01:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372333, - "value":"No", - "question_id":12961, - "created_at":"2017-11-29T12:34:40.990+01:00", - "updated_at":"2017-11-29T12:34:40.990+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372656, - "value":"No", - "question_id":12961, - "created_at":"2017-11-29T21:48:08.033+01:00", - "updated_at":"2017-11-29T21:48:08.033+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372775, - "value":"Planned", - "question_id":12961, - "created_at":"2017-11-30T08:34:22.852+01:00", - "updated_at":"2017-11-30T08:34:22.852+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373264, - "value":"Yes", - "question_id":12961, - "created_at":"2017-12-04T11:15:22.721+01:00", - "updated_at":"2017-12-04T11:15:22.721+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373719, - "value":"Yes", - "question_id":12961, - "created_at":"2017-12-04T18:00:58.003+01:00", - "updated_at":"2017-12-04T18:00:58.003+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374367, - "value":"Planned", - "question_id":12961, - "created_at":"2017-12-06T13:17:34.002+01:00", - "updated_at":"2017-12-06T13:17:34.002+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375047, - "value":"Yes", - "question_id":12961, - "created_at":"2017-12-14T14:22:14.533+01:00", - "updated_at":"2017-12-14T14:22:14.533+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375474, - "value":"Yes", - "question_id":12961, - "created_at":"2017-12-28T10:20:18.916+01:00", - "updated_at":"2017-12-28T10:20:18.916+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378908, - "value":"", - "question_id":12961, - "created_at":"2018-04-26T10:04:48.807+02:00", - "updated_at":"2018-04-26T10:04:48.807+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":378909, - "value":"", - "question_id":12961, - "created_at":"2018-04-26T10:04:48.817+02:00", - "updated_at":"2018-04-26T10:04:48.817+02:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":378910, - "value":"", - "question_id":12961, - "created_at":"2018-04-26T10:04:48.826+02:00", - "updated_at":"2018-04-26T10:04:48.826+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378911, - "value":"", - "question_id":12961, - "created_at":"2018-04-26T10:04:48.832+02:00", - "updated_at":"2018-04-26T10:04:48.832+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":378913, - "value":"", - "question_id":12961, - "created_at":"2018-04-26T10:04:48.846+02:00", - "updated_at":"2018-04-26T10:04:48.846+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":378914, - "value":"", - "question_id":12961, - "created_at":"2018-04-26T10:04:48.855+02:00", - "updated_at":"2018-04-26T10:04:48.855+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":378915, - "value":"", - "question_id":12961, - "created_at":"2018-04-26T10:04:48.863+02:00", - "updated_at":"2018-04-26T10:04:48.863+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378916, - "value":"", - "question_id":12961, - "created_at":"2018-04-26T10:04:48.878+02:00", - "updated_at":"2018-04-26T10:04:48.878+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378918, - "value":"", - "question_id":12961, - "created_at":"2018-04-26T10:04:48.898+02:00", - "updated_at":"2018-04-26T10:04:48.898+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378919, - "value":"", - "question_id":12961, - "created_at":"2018-04-26T10:04:48.906+02:00", - "updated_at":"2018-04-26T10:04:48.906+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":378920, - "value":"", - "question_id":12961, - "created_at":"2018-04-26T10:04:48.925+02:00", - "updated_at":"2018-04-26T10:04:48.925+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378921, - "value":"", - "question_id":12961, - "created_at":"2018-04-26T10:04:48.932+02:00", - "updated_at":"2018-04-26T10:04:48.932+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383948, - "value":"No", - "question_id":12961, - "created_at":"2017-12-05T16:00:23.766+01:00", - "updated_at":"2017-12-05T16:00:23.766+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641566, - "value":"No", - "question_id":12961, - "created_at":"2018-10-30T13:59:21.630+01:00", - "updated_at":"2018-10-30T13:59:21.630+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":1227749, - "value":"Yes", - "question_id":12961, - "created_at":"2019-11-21T09:50:10.476+01:00", - "updated_at":"2019-11-21T09:50:10.476+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378922, - "value":"", - "question_id":12961, - "created_at":"2018-04-26T10:04:48.942+02:00", - "updated_at":"2018-04-26T10:04:48.942+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"journal-library-access", - "title":"Do you offer Journal/library access?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Journal access", - "title_detailed":"Access to academic journals.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "41":{ - "id":365877, - "value":"Yes", - "question_id":12989, - "created_at":"2017-09-13T13:40:18.760+02:00", - "updated_at":"2017-09-13T13:40:18.760+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365990, - "value":"Yes", - "question_id":12989, - "created_at":"2017-09-13T14:19:47.310+02:00", - "updated_at":"2017-09-13T14:19:47.310+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366133, - "value":"Yes", - "question_id":12989, - "created_at":"2017-09-19T14:45:44.584+02:00", - "updated_at":"2017-09-19T14:45:44.584+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366303, - "value":"No", - "question_id":12989, - "created_at":"2017-09-29T13:40:53.958+02:00", - "updated_at":"2017-09-29T13:40:53.958+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366546, - "value":"Yes", - "question_id":12989, - "created_at":"2017-10-08T08:46:30.971+02:00", - "updated_at":"2017-10-08T08:46:30.971+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366743, - "value":"No", - "question_id":12989, - "created_at":"2017-10-10T11:40:05.492+02:00", - "updated_at":"2017-10-10T11:40:05.492+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367691, - "value":"No", - "question_id":12989, - "created_at":"2017-10-23T19:24:44.115+02:00", - "updated_at":"2017-10-23T19:24:44.115+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367882, - "value":"No", - "question_id":12989, - "created_at":"2017-10-24T13:03:16.267+02:00", - "updated_at":"2017-10-24T13:03:16.267+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368448, - "value":"Yes", - "question_id":12989, - "created_at":"2017-10-31T14:18:51.686+01:00", - "updated_at":"2017-10-31T14:18:51.686+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368702, - "value":"Yes", - "question_id":12989, - "created_at":"2017-11-02T13:20:59.379+01:00", - "updated_at":"2017-11-02T13:20:59.379+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369174, - "value":"Yes", - "question_id":12989, - "created_at":"2017-11-10T15:30:55.784+01:00", - "updated_at":"2017-11-10T15:30:55.784+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369333, - "value":"Yes", - "question_id":12989, - "created_at":"2017-11-11T20:29:56.274+01:00", - "updated_at":"2017-11-11T20:29:56.274+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369567, - "value":"Yes", - "question_id":12989, - "created_at":"2017-11-16T15:53:37.991+01:00", - "updated_at":"2017-11-16T15:53:37.991+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369851, - "value":"Yes", - "question_id":12989, - "created_at":"2017-11-21T14:59:28.929+01:00", - "updated_at":"2017-11-21T14:59:28.929+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370131, - "value":"No", - "question_id":12989, - "created_at":"2017-11-23T13:47:43.577+01:00", - "updated_at":"2017-11-23T13:47:43.577+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370708, - "value":"No", - "question_id":12989, - "created_at":"2017-11-27T09:29:53.676+01:00", - "updated_at":"2017-11-27T09:29:53.676+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371231, - "value":"No", - "question_id":12989, - "created_at":"2017-11-27T14:19:48.207+01:00", - "updated_at":"2017-11-27T14:19:48.207+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371288, - "value":"No", - "question_id":12989, - "created_at":"2017-11-27T14:28:58.570+01:00", - "updated_at":"2017-11-27T14:28:58.570+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371703, - "value":"Yes", - "question_id":12989, - "created_at":"2017-11-28T13:06:32.280+01:00", - "updated_at":"2017-11-28T13:06:32.280+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372230, - "value":"Yes", - "question_id":12989, - "created_at":"2017-11-29T12:02:20.942+01:00", - "updated_at":"2017-11-29T12:02:20.942+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372573, - "value":"Yes", - "question_id":12989, - "created_at":"2017-11-29T21:33:24.831+01:00", - "updated_at":"2017-11-29T21:33:24.831+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":373453, - "value":"No", - "question_id":12989, - "created_at":"2017-12-04T12:38:50.002+01:00", - "updated_at":"2017-12-04T12:38:50.002+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373645, - "value":"No", - "question_id":12989, - "created_at":"2017-12-04T17:51:24.947+01:00", - "updated_at":"2017-12-04T17:51:24.947+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374032, - "value":"Planned", - "question_id":12989, - "created_at":"2017-12-06T06:56:33.092+01:00", - "updated_at":"2017-12-06T06:56:33.092+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374237, - "value":"No", - "question_id":12989, - "created_at":"2017-12-06T11:02:20.758+01:00", - "updated_at":"2017-12-06T11:02:20.758+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374908, - "value":"No", - "question_id":12989, - "created_at":"2017-12-14T12:45:19.242+01:00", - "updated_at":"2017-12-14T12:45:19.242+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":374979, - "value":"No", - "question_id":12989, - "created_at":"2017-12-14T14:17:12.574+01:00", - "updated_at":"2017-12-14T14:17:12.574+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375358, - "value":"Planned", - "question_id":12989, - "created_at":"2017-12-27T14:51:01.456+01:00", - "updated_at":"2017-12-27T14:51:01.456+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375398, - "value":"Yes", - "question_id":12989, - "created_at":"2017-12-28T10:01:18.566+01:00", - "updated_at":"2017-12-28T10:01:18.566+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375806, - "value":"Yes", - "question_id":12989, - "created_at":"2018-01-22T00:46:59.320+01:00", - "updated_at":"2018-01-22T00:46:59.320+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376662, - "value":"", - "question_id":12989, - "created_at":"2018-04-26T10:04:27.279+02:00", - "updated_at":"2018-04-26T10:04:27.279+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376664, - "value":"", - "question_id":12989, - "created_at":"2018-04-26T10:04:27.300+02:00", - "updated_at":"2018-04-26T10:04:27.300+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376668, - "value":"", - "question_id":12989, - "created_at":"2018-04-26T10:04:27.345+02:00", - "updated_at":"2018-04-26T10:04:27.345+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376670, - "value":"", - "question_id":12989, - "created_at":"2018-04-26T10:04:27.365+02:00", - "updated_at":"2018-04-26T10:04:27.365+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376672, - "value":"", - "question_id":12989, - "created_at":"2018-04-26T10:04:27.395+02:00", - "updated_at":"2018-04-26T10:04:27.395+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383966, - "value":"No", - "question_id":12989, - "created_at":"2017-12-05T15:44:15.075+01:00", - "updated_at":"2017-12-05T15:44:15.075+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618233, - "value":"Yes", - "question_id":12989, - "created_at":"2018-10-28T18:38:31.526+01:00", - "updated_at":"2018-10-28T18:38:31.526+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641561, - "value":"Yes", - "question_id":12989, - "created_at":"2018-10-30T13:56:16.217+01:00", - "updated_at":"2018-10-30T13:56:16.217+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756383, - "value":"Yes", - "question_id":12989, - "created_at":"2018-11-05T14:06:38.627+01:00", - "updated_at":"2018-11-05T14:06:38.627+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1116393, - "value":"Yes", - "question_id":12989, - "created_at":"2019-11-08T11:46:47.682+01:00", - "updated_at":"2019-11-08T11:46:47.682+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "48":{ - "id":1131005, - "value":"Planned", - "question_id":12989, - "created_at":"2019-11-08T19:35:56.294+01:00", - "updated_at":"2019-11-08T19:35:56.294+01:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":376673, - "value":"", - "question_id":12989, - "created_at":"2018-04-26T10:04:27.405+02:00", - "updated_at":"2018-04-26T10:04:27.405+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":1470695, - "value":"Yes", - "question_id":12989, - "created_at":"2020-10-16T13:59:23.620+02:00", - "updated_at":"2020-10-16T13:59:23.620+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"lambda", - "title":"Do you offer Optical wavelength?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Optical wavelength", - "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365654, - "value":"No", - "question_id":12965, - "created_at":"2017-09-06T12:20:06.534+02:00", - "updated_at":"2017-09-06T12:20:06.534+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365937, - "value":"Yes", - "question_id":12965, - "created_at":"2017-09-13T13:47:08.761+02:00", - "updated_at":"2017-09-13T13:47:08.761+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365970, - "value":"No", - "question_id":12965, - "created_at":"2017-09-13T14:17:49.751+02:00", - "updated_at":"2017-09-13T14:17:49.751+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366383, - "value":"No", - "question_id":12965, - "created_at":"2017-09-29T13:54:31.890+02:00", - "updated_at":"2017-09-29T13:54:31.890+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366782, - "value":"No", - "question_id":12965, - "created_at":"2017-10-10T13:22:49.392+02:00", - "updated_at":"2017-10-10T13:22:49.392+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366858, - "value":"No", - "question_id":12965, - "created_at":"2017-10-11T09:34:07.003+02:00", - "updated_at":"2017-10-11T09:34:07.003+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366962, - "value":"Yes", - "question_id":12965, - "created_at":"2017-10-11T10:52:54.287+02:00", - "updated_at":"2017-10-11T10:52:54.287+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367522, - "value":"Yes", - "question_id":12965, - "created_at":"2017-10-17T12:11:06.045+02:00", - "updated_at":"2017-10-17T12:11:06.045+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367774, - "value":"Yes", - "question_id":12965, - "created_at":"2017-10-23T19:41:06.617+02:00", - "updated_at":"2017-10-23T19:41:06.617+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368572, - "value":"No", - "question_id":12965, - "created_at":"2017-10-31T14:43:08.783+01:00", - "updated_at":"2017-10-31T14:43:08.783+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368823, - "value":"No", - "question_id":12965, - "created_at":"2017-11-07T10:14:54.763+01:00", - "updated_at":"2017-11-07T10:14:54.763+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368953, - "value":"No", - "question_id":12965, - "created_at":"2017-11-08T15:54:14.372+01:00", - "updated_at":"2017-11-08T15:54:14.372+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369263, - "value":"Yes", - "question_id":12965, - "created_at":"2017-11-10T15:41:13.384+01:00", - "updated_at":"2017-11-10T15:41:13.384+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370259, - "value":"No", - "question_id":12965, - "created_at":"2017-11-23T14:16:36.142+01:00", - "updated_at":"2017-11-23T14:16:36.142+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370803, - "value":"No", - "question_id":12965, - "created_at":"2017-11-27T09:38:30.683+01:00", - "updated_at":"2017-11-27T09:38:30.683+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371241, - "value":"No", - "question_id":12965, - "created_at":"2017-11-27T14:20:37.206+01:00", - "updated_at":"2017-11-27T14:20:37.206+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371804, - "value":"No", - "question_id":12965, - "created_at":"2017-11-28T13:20:07.029+01:00", - "updated_at":"2017-11-28T13:20:07.029+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371878, - "value":"No", - "question_id":12965, - "created_at":"2017-11-28T15:05:54.345+01:00", - "updated_at":"2017-11-28T15:05:54.345+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372355, - "value":"Yes", - "question_id":12965, - "created_at":"2017-11-29T12:38:15.685+01:00", - "updated_at":"2017-11-29T12:38:15.685+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372674, - "value":"Yes", - "question_id":12965, - "created_at":"2017-11-29T21:54:26.594+01:00", - "updated_at":"2017-11-29T21:54:26.594+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":372821, - "value":"Yes", - "question_id":12965, - "created_at":"2017-11-30T09:15:16.608+01:00", - "updated_at":"2017-11-30T09:15:16.608+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373269, - "value":"Yes", - "question_id":12965, - "created_at":"2017-12-04T11:16:31.974+01:00", - "updated_at":"2017-12-04T11:16:31.974+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373735, - "value":"No", - "question_id":12965, - "created_at":"2017-12-04T18:02:48.600+01:00", - "updated_at":"2017-12-04T18:02:48.600+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374714, - "value":"Yes", - "question_id":12965, - "created_at":"2017-12-13T10:22:34.676+01:00", - "updated_at":"2017-12-13T10:22:34.676+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375063, - "value":"No", - "question_id":12965, - "created_at":"2017-12-14T14:23:27.609+01:00", - "updated_at":"2017-12-14T14:23:27.609+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375489, - "value":"Yes", - "question_id":12965, - "created_at":"2017-12-28T10:24:02.240+01:00", - "updated_at":"2017-12-28T10:24:02.240+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375742, - "value":"Yes", - "question_id":12965, - "created_at":"2018-01-18T15:41:09.778+01:00", - "updated_at":"2018-01-18T15:41:09.778+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379641, - "value":"", - "question_id":12965, - "created_at":"2018-04-26T10:04:55.705+02:00", - "updated_at":"2018-04-26T10:04:55.705+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":379642, - "value":"", - "question_id":12965, - "created_at":"2018-04-26T10:04:55.715+02:00", - "updated_at":"2018-04-26T10:04:55.715+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379643, - "value":"", - "question_id":12965, - "created_at":"2018-04-26T10:04:55.721+02:00", - "updated_at":"2018-04-26T10:04:55.721+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":379648, - "value":"", - "question_id":12965, - "created_at":"2018-04-26T10:04:55.756+02:00", - "updated_at":"2018-04-26T10:04:55.756+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379650, - "value":"", - "question_id":12965, - "created_at":"2018-04-26T10:04:55.772+02:00", - "updated_at":"2018-04-26T10:04:55.772+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":379651, - "value":"", - "question_id":12965, - "created_at":"2018-04-26T10:04:55.778+02:00", - "updated_at":"2018-04-26T10:04:55.778+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379653, - "value":"", - "question_id":12965, - "created_at":"2018-04-26T10:04:55.798+02:00", - "updated_at":"2018-04-26T10:04:55.798+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383949, - "value":"Yes", - "question_id":12965, - "created_at":"2017-12-05T16:01:38.172+01:00", - "updated_at":"2017-12-05T16:01:38.172+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618236, - "value":"No", - "question_id":12965, - "created_at":"2018-10-28T18:40:06.700+01:00", - "updated_at":"2018-10-28T18:40:06.700+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641565, - "value":"Yes", - "question_id":12965, - "created_at":"2018-10-30T13:59:03.578+01:00", - "updated_at":"2018-10-30T13:59:03.578+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756393, - "value":"Yes", - "question_id":12965, - "created_at":"2018-11-05T14:29:45.625+01:00", - "updated_at":"2018-11-05T14:29:45.625+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":826895, - "value":"Yes", - "question_id":12965, - "created_at":"2019-09-20T10:08:05.228+02:00", - "updated_at":"2019-09-20T10:08:05.228+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":883332, - "value":"Yes", - "question_id":12965, - "created_at":"2019-10-28T11:28:44.833+01:00", - "updated_at":"2019-10-28T11:28:44.833+01:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":1165433, - "value":"Yes", - "question_id":12965, - "created_at":"2019-11-12T20:17:50.697+01:00", - "updated_at":"2019-11-12T20:17:50.697+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379654, - "value":"", - "question_id":12965, - "created_at":"2018-04-26T10:04:55.805+02:00", - "updated_at":"2018-04-26T10:04:55.805+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":1494272, - "value":"Yes", - "question_id":12965, - "created_at":"2021-01-14T15:01:07.237+01:00", - "updated_at":"2021-01-14T15:01:07.237+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mailing-lists", - "title":"Do you offer Listserv mailing lists?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Mailing lists", - "title_detailed":"Service for operation of electronic discussion lists.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365555, - "value":"No", - "question_id":12883, - "created_at":"2017-09-06T12:07:46.121+02:00", - "updated_at":"2017-09-06T12:07:46.121+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365667, - "value":"No", - "question_id":12883, - "created_at":"2017-09-07T15:29:53.111+02:00", - "updated_at":"2017-09-07T15:29:53.111+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365866, - "value":"No", - "question_id":12883, - "created_at":"2017-09-13T13:36:43.047+02:00", - "updated_at":"2017-09-13T13:36:43.047+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366113, - "value":"No", - "question_id":12883, - "created_at":"2017-09-19T14:34:09.162+02:00", - "updated_at":"2017-09-19T14:34:09.162+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366288, - "value":"No", - "question_id":12883, - "created_at":"2017-09-29T13:37:45.563+02:00", - "updated_at":"2017-09-29T13:37:45.563+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366539, - "value":"No", - "question_id":12883, - "created_at":"2017-10-08T08:45:19.853+02:00", - "updated_at":"2017-10-08T08:45:19.853+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366737, - "value":"No", - "question_id":12883, - "created_at":"2017-10-10T10:45:33.982+02:00", - "updated_at":"2017-10-10T10:45:33.982+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367679, - "value":"No", - "question_id":12883, - "created_at":"2017-10-23T19:23:30.180+02:00", - "updated_at":"2017-10-23T19:23:30.180+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367865, - "value":"No", - "question_id":12883, - "created_at":"2017-10-24T12:56:34.111+02:00", - "updated_at":"2017-10-24T12:56:34.111+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368365, - "value":"No", - "question_id":12883, - "created_at":"2017-10-30T21:16:10.780+01:00", - "updated_at":"2017-10-30T21:16:10.780+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368422, - "value":"No", - "question_id":12883, - "created_at":"2017-10-31T14:14:16.759+01:00", - "updated_at":"2017-10-31T14:14:16.759+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368678, - "value":"No", - "question_id":12883, - "created_at":"2017-11-02T13:19:55.022+01:00", - "updated_at":"2017-11-02T13:19:55.022+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368891, - "value":"No", - "question_id":12883, - "created_at":"2017-11-08T15:25:56.980+01:00", - "updated_at":"2017-11-08T15:25:56.980+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369160, - "value":"No", - "question_id":12883, - "created_at":"2017-11-10T15:28:42.720+01:00", - "updated_at":"2017-11-10T15:28:42.720+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369886, - "value":"No", - "question_id":12883, - "created_at":"2017-11-21T16:15:50.464+01:00", - "updated_at":"2017-11-21T16:15:50.464+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369860, - "value":"No", - "question_id":12883, - "created_at":"2017-11-21T15:46:08.507+01:00", - "updated_at":"2017-11-21T15:46:08.507+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370113, - "value":"No", - "question_id":12883, - "created_at":"2017-11-23T13:35:01.640+01:00", - "updated_at":"2017-11-23T13:35:01.640+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370694, - "value":"No", - "question_id":12883, - "created_at":"2017-11-27T09:28:42.693+01:00", - "updated_at":"2017-11-27T09:28:42.693+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370905, - "value":"No", - "question_id":12883, - "created_at":"2017-11-27T10:32:44.968+01:00", - "updated_at":"2017-11-27T10:32:44.968+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371096, - "value":"No", - "question_id":12883, - "created_at":"2017-11-27T13:43:39.382+01:00", - "updated_at":"2017-11-27T13:43:39.382+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371689, - "value":"No", - "question_id":12883, - "created_at":"2017-11-28T13:04:51.627+01:00", - "updated_at":"2017-11-28T13:04:51.627+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372208, - "value":"No", - "question_id":12883, - "created_at":"2017-11-29T11:55:57.516+01:00", - "updated_at":"2017-11-29T11:55:57.516+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372560, - "value":"No", - "question_id":12883, - "created_at":"2017-11-29T21:27:34.155+01:00", - "updated_at":"2017-11-29T21:27:34.155+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373630, - "value":"No", - "question_id":12883, - "created_at":"2017-12-04T17:48:25.499+01:00", - "updated_at":"2017-12-04T17:48:25.499+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":373811, - "value":"No", - "question_id":12883, - "created_at":"2017-12-05T09:40:40.022+01:00", - "updated_at":"2017-12-05T09:40:40.022+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374025, - "value":"No", - "question_id":12883, - "created_at":"2017-12-06T06:50:42.586+01:00", - "updated_at":"2017-12-06T06:50:42.586+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374213, - "value":"No", - "question_id":12883, - "created_at":"2017-12-06T10:51:55.887+01:00", - "updated_at":"2017-12-06T10:51:55.887+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374685, - "value":"No", - "question_id":12883, - "created_at":"2017-12-13T09:53:28.733+01:00", - "updated_at":"2017-12-13T09:53:28.733+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374899, - "value":"No", - "question_id":12883, - "created_at":"2017-12-14T12:43:33.213+01:00", - "updated_at":"2017-12-14T12:43:33.213+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375316, - "value":"No", - "question_id":12883, - "created_at":"2017-12-27T14:15:11.211+01:00", - "updated_at":"2017-12-27T14:15:11.211+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375989, - "value":"No", - "question_id":12883, - "created_at":"2018-02-16T09:30:13.732+01:00", - "updated_at":"2018-02-16T09:30:13.732+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376083, - "value":"", - "question_id":12883, - "created_at":"2018-04-26T10:04:20.356+02:00", - "updated_at":"2018-04-26T10:04:20.356+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":376084, - "value":"", - "question_id":12883, - "created_at":"2018-04-26T10:04:20.437+02:00", - "updated_at":"2018-04-26T10:04:20.437+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376085, - "value":"", - "question_id":12883, - "created_at":"2018-04-26T10:04:20.448+02:00", - "updated_at":"2018-04-26T10:04:20.448+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":376087, - "value":"", - "question_id":12883, - "created_at":"2018-04-26T10:04:20.468+02:00", - "updated_at":"2018-04-26T10:04:20.468+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":376088, - "value":"", - "question_id":12883, - "created_at":"2018-04-26T10:04:20.481+02:00", - "updated_at":"2018-04-26T10:04:20.481+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376089, - "value":"", - "question_id":12883, - "created_at":"2018-04-26T10:04:20.515+02:00", - "updated_at":"2018-04-26T10:04:20.515+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":376090, - "value":"", - "question_id":12883, - "created_at":"2018-04-26T10:04:20.536+02:00", - "updated_at":"2018-04-26T10:04:20.536+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376091, - "value":"", - "question_id":12883, - "created_at":"2018-04-26T10:04:20.547+02:00", - "updated_at":"2018-04-26T10:04:20.547+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":376092, - "value":"", - "question_id":12883, - "created_at":"2018-04-26T10:04:20.584+02:00", - "updated_at":"2018-04-26T10:04:20.584+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376093, - "value":"", - "question_id":12883, - "created_at":"2018-04-26T10:04:20.603+02:00", - "updated_at":"2018-04-26T10:04:20.603+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383937, - "value":"No", - "question_id":12883, - "created_at":"2017-12-05T15:42:01.871+01:00", - "updated_at":"2017-12-05T15:42:01.871+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":371471, - "value":"No", - "question_id":12883, - "created_at":"2017-11-27T14:59:17.602+01:00", - "updated_at":"2017-11-27T14:59:17.602+01:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"mobile-data", - "title":"Do you offer 3G/4G data service?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"3G/4G data service", - "title_detailed":"Provision of mobile broadband and phone contracts to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365562, - "value":"Yes", - "question_id":12971, - "created_at":"2017-09-06T12:11:19.705+02:00", - "updated_at":"2017-09-06T12:11:19.705+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365873, - "value":"Yes", - "question_id":12971, - "created_at":"2017-09-13T13:39:40.361+02:00", - "updated_at":"2017-09-13T13:39:40.361+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365997, - "value":"Yes", - "question_id":12971, - "created_at":"2017-09-13T14:20:01.881+02:00", - "updated_at":"2017-09-13T14:20:01.881+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366127, - "value":"Yes", - "question_id":12971, - "created_at":"2017-09-19T14:43:58.106+02:00", - "updated_at":"2017-09-19T14:43:58.106+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366544, - "value":"Yes", - "question_id":12971, - "created_at":"2017-10-08T08:46:14.200+02:00", - "updated_at":"2017-10-08T08:46:14.200+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367079, - "value":"No", - "question_id":12971, - "created_at":"2017-10-11T13:17:58.924+02:00", - "updated_at":"2017-10-11T13:17:58.924+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367318, - "value":"Yes", - "question_id":12971, - "created_at":"2017-10-11T20:52:55.912+02:00", - "updated_at":"2017-10-11T20:52:55.912+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367687, - "value":"Yes", - "question_id":12971, - "created_at":"2017-10-23T19:24:19.120+02:00", - "updated_at":"2017-10-23T19:24:19.120+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367877, - "value":"No", - "question_id":12971, - "created_at":"2017-10-24T13:02:03.235+02:00", - "updated_at":"2017-10-24T13:02:03.235+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368693, - "value":"Yes", - "question_id":12971, - "created_at":"2017-11-02T13:20:39.400+01:00", - "updated_at":"2017-11-02T13:20:39.400+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368852, - "value":"Yes", - "question_id":12971, - "created_at":"2017-11-08T10:57:24.970+01:00", - "updated_at":"2017-11-08T10:57:24.970+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369168, - "value":"Yes", - "question_id":12971, - "created_at":"2017-11-10T15:29:48.128+01:00", - "updated_at":"2017-11-10T15:29:48.128+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369321, - "value":"Yes", - "question_id":12971, - "created_at":"2017-11-11T20:26:45.877+01:00", - "updated_at":"2017-11-11T20:26:45.877+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370123, - "value":"Yes", - "question_id":12971, - "created_at":"2017-11-23T13:40:46.519+01:00", - "updated_at":"2017-11-23T13:40:46.519+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370702, - "value":"Planned", - "question_id":12971, - "created_at":"2017-11-27T09:29:32.880+01:00", - "updated_at":"2017-11-27T09:29:32.880+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370913, - "value":"No", - "question_id":12971, - "created_at":"2017-11-27T10:34:13.203+01:00", - "updated_at":"2017-11-27T10:34:13.203+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371104, - "value":"Yes", - "question_id":12971, - "created_at":"2017-11-27T13:44:46.328+01:00", - "updated_at":"2017-11-27T13:44:46.328+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371698, - "value":"Yes", - "question_id":12971, - "created_at":"2017-11-28T13:06:11.241+01:00", - "updated_at":"2017-11-28T13:06:11.241+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371969, - "value":"Yes", - "question_id":12971, - "created_at":"2017-11-28T16:26:06.212+01:00", - "updated_at":"2017-11-28T16:26:06.212+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372221, - "value":"Yes", - "question_id":12971, - "created_at":"2017-11-29T12:00:13.467+01:00", - "updated_at":"2017-11-29T12:00:13.467+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372568, - "value":"Yes", - "question_id":12971, - "created_at":"2017-11-29T21:32:39.198+01:00", - "updated_at":"2017-11-29T21:32:39.198+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373280, - "value":"No", - "question_id":12971, - "created_at":"2017-12-04T11:18:25.171+01:00", - "updated_at":"2017-12-04T11:18:25.171+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":373452, - "value":"No", - "question_id":12971, - "created_at":"2017-12-04T12:38:35.667+01:00", - "updated_at":"2017-12-04T12:38:35.667+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373640, - "value":"No", - "question_id":12971, - "created_at":"2017-12-04T17:50:54.253+01:00", - "updated_at":"2017-12-04T17:50:54.253+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374231, - "value":"No", - "question_id":12971, - "created_at":"2017-12-06T11:00:42.268+01:00", - "updated_at":"2017-12-06T11:00:42.268+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374905, - "value":"Yes", - "question_id":12971, - "created_at":"2017-12-14T12:45:02.321+01:00", - "updated_at":"2017-12-14T12:45:02.321+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":374974, - "value":"No", - "question_id":12971, - "created_at":"2017-12-14T14:16:56.686+01:00", - "updated_at":"2017-12-14T14:16:56.686+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375352, - "value":"Yes", - "question_id":12971, - "created_at":"2017-12-27T14:50:29.119+01:00", - "updated_at":"2017-12-27T14:50:29.119+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375394, - "value":"Yes", - "question_id":12971, - "created_at":"2017-12-28T10:00:56.071+01:00", - "updated_at":"2017-12-28T10:00:56.071+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375796, - "value":"Yes", - "question_id":12971, - "created_at":"2018-01-22T00:45:24.383+01:00", - "updated_at":"2018-01-22T00:45:24.383+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376433, - "value":"", - "question_id":12971, - "created_at":"2018-04-26T10:04:24.516+02:00", - "updated_at":"2018-04-26T10:04:24.516+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376435, - "value":"", - "question_id":12971, - "created_at":"2018-04-26T10:04:24.542+02:00", - "updated_at":"2018-04-26T10:04:24.542+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376439, - "value":"", - "question_id":12971, - "created_at":"2018-04-26T10:04:24.594+02:00", - "updated_at":"2018-04-26T10:04:24.594+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":376440, - "value":"", - "question_id":12971, - "created_at":"2018-04-26T10:04:24.609+02:00", - "updated_at":"2018-04-26T10:04:24.609+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376441, - "value":"", - "question_id":12971, - "created_at":"2018-04-26T10:04:24.619+02:00", - "updated_at":"2018-04-26T10:04:24.619+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":376442, - "value":"", - "question_id":12971, - "created_at":"2018-04-26T10:04:24.640+02:00", - "updated_at":"2018-04-26T10:04:24.640+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376443, - "value":"", - "question_id":12971, - "created_at":"2018-04-26T10:04:24.653+02:00", - "updated_at":"2018-04-26T10:04:24.653+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383962, - "value":"Yes", - "question_id":12971, - "created_at":"2017-12-06T13:20:17.637+01:00", - "updated_at":"2017-12-06T13:20:17.637+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618217, - "value":"Yes", - "question_id":12971, - "created_at":"2018-10-28T18:32:46.261+01:00", - "updated_at":"2018-10-28T18:32:46.261+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756378, - "value":"Yes", - "question_id":12971, - "created_at":"2018-11-05T14:04:59.933+01:00", - "updated_at":"2018-11-05T14:04:59.933+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":376444, - "value":"", - "question_id":12971, - "created_at":"2018-04-26T10:04:24.665+02:00", - "updated_at":"2018-04-26T10:04:24.665+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493631, - "value":"Planned", - "question_id":12971, - "created_at":"2020-12-18T14:50:02.747+01:00", - "updated_at":"2020-12-18T14:50:02.747+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1501059, - "value":"Yes", - "question_id":12971, - "created_at":"2021-11-09T16:15:11.904+01:00", - "updated_at":"2021-11-09T16:15:11.904+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"multicast", - "title":"Do you offer Multicast?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Multicast", - "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365655, - "value":"No", - "question_id":12979, - "created_at":"2017-09-06T12:20:09.211+02:00", - "updated_at":"2017-09-06T12:20:09.211+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365725, - "value":"No", - "question_id":12979, - "created_at":"2017-09-07T15:35:58.884+02:00", - "updated_at":"2017-09-07T15:35:58.884+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365938, - "value":"No", - "question_id":12979, - "created_at":"2017-09-13T13:47:11.667+02:00", - "updated_at":"2017-09-13T13:47:11.667+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366384, - "value":"No", - "question_id":12979, - "created_at":"2017-09-29T13:54:36.871+02:00", - "updated_at":"2017-09-29T13:54:36.871+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366783, - "value":"No", - "question_id":12979, - "created_at":"2017-10-10T13:23:16.599+02:00", - "updated_at":"2017-10-10T13:23:16.599+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366857, - "value":"No", - "question_id":12979, - "created_at":"2017-10-11T09:33:59.345+02:00", - "updated_at":"2017-10-11T09:33:59.345+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366964, - "value":"No", - "question_id":12979, - "created_at":"2017-10-11T10:53:02.725+02:00", - "updated_at":"2017-10-11T10:53:02.725+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367567, - "value":"Yes", - "question_id":12979, - "created_at":"2017-10-17T14:47:36.437+02:00", - "updated_at":"2017-10-17T14:47:36.437+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367775, - "value":"No", - "question_id":12979, - "created_at":"2017-10-23T19:41:10.820+02:00", - "updated_at":"2017-10-23T19:41:10.820+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367979, - "value":"No", - "question_id":12979, - "created_at":"2017-10-24T13:33:31.993+02:00", - "updated_at":"2017-10-24T13:33:31.993+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368573, - "value":"No", - "question_id":12979, - "created_at":"2017-10-31T14:43:13.554+01:00", - "updated_at":"2017-10-31T14:43:13.554+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368822, - "value":"No", - "question_id":12979, - "created_at":"2017-11-07T10:14:51.107+01:00", - "updated_at":"2017-11-07T10:14:51.107+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368954, - "value":"No", - "question_id":12979, - "created_at":"2017-11-08T15:54:18.791+01:00", - "updated_at":"2017-11-08T15:54:18.791+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369264, - "value":"Yes", - "question_id":12979, - "created_at":"2017-11-10T15:41:16.136+01:00", - "updated_at":"2017-11-10T15:41:16.136+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369810, - "value":"No", - "question_id":12979, - "created_at":"2017-11-21T13:43:56.751+01:00", - "updated_at":"2017-11-21T13:43:56.751+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369917, - "value":"No", - "question_id":12979, - "created_at":"2017-11-21T16:53:40.130+01:00", - "updated_at":"2017-11-21T16:53:40.130+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370260, - "value":"No", - "question_id":12979, - "created_at":"2017-11-23T14:16:38.485+01:00", - "updated_at":"2017-11-23T14:16:38.485+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370804, - "value":"No", - "question_id":12979, - "created_at":"2017-11-27T09:38:32.508+01:00", - "updated_at":"2017-11-27T09:38:32.508+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371239, - "value":"No", - "question_id":12979, - "created_at":"2017-11-27T14:20:27.615+01:00", - "updated_at":"2017-11-27T14:20:27.615+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371805, - "value":"No", - "question_id":12979, - "created_at":"2017-11-28T13:20:08.940+01:00", - "updated_at":"2017-11-28T13:20:08.940+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372357, - "value":"No", - "question_id":12979, - "created_at":"2017-11-29T12:38:48.509+01:00", - "updated_at":"2017-11-29T12:38:48.509+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":372823, - "value":"No", - "question_id":12979, - "created_at":"2017-11-30T09:16:01.259+01:00", - "updated_at":"2017-11-30T09:16:01.259+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":373190, - "value":"No", - "question_id":12979, - "created_at":"2017-12-01T17:46:34.977+01:00", - "updated_at":"2017-12-01T17:46:34.977+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373736, - "value":"No", - "question_id":12979, - "created_at":"2017-12-04T18:02:57.546+01:00", - "updated_at":"2017-12-04T18:02:57.546+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374078, - "value":"No", - "question_id":12979, - "created_at":"2017-12-06T07:29:18.951+01:00", - "updated_at":"2017-12-06T07:29:18.951+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374716, - "value":"No", - "question_id":12979, - "created_at":"2017-12-13T10:22:43.096+01:00", - "updated_at":"2017-12-13T10:22:43.096+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375064, - "value":"No", - "question_id":12979, - "created_at":"2017-12-14T14:23:29.785+01:00", - "updated_at":"2017-12-14T14:23:29.785+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375490, - "value":"Yes", - "question_id":12979, - "created_at":"2017-12-28T10:24:05.412+01:00", - "updated_at":"2017-12-28T10:24:05.412+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375744, - "value":"No", - "question_id":12979, - "created_at":"2018-01-18T15:41:20.515+01:00", - "updated_at":"2018-01-18T15:41:20.515+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379690, - "value":"", - "question_id":12979, - "created_at":"2018-04-26T10:04:56.054+02:00", - "updated_at":"2018-04-26T10:04:56.054+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":379691, - "value":"", - "question_id":12979, - "created_at":"2018-04-26T10:04:56.063+02:00", - "updated_at":"2018-04-26T10:04:56.063+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379692, - "value":"", - "question_id":12979, - "created_at":"2018-04-26T10:04:56.068+02:00", - "updated_at":"2018-04-26T10:04:56.068+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":379694, - "value":"", - "question_id":12979, - "created_at":"2018-04-26T10:04:56.077+02:00", - "updated_at":"2018-04-26T10:04:56.077+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":379695, - "value":"", - "question_id":12979, - "created_at":"2018-04-26T10:04:56.083+02:00", - "updated_at":"2018-04-26T10:04:56.083+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":379696, - "value":"", - "question_id":12979, - "created_at":"2018-04-26T10:04:56.095+02:00", - "updated_at":"2018-04-26T10:04:56.095+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":379697, - "value":"", - "question_id":12979, - "created_at":"2018-04-26T10:04:56.104+02:00", - "updated_at":"2018-04-26T10:04:56.104+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379698, - "value":"", - "question_id":12979, - "created_at":"2018-04-26T10:04:56.108+02:00", - "updated_at":"2018-04-26T10:04:56.108+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":379699, - "value":"", - "question_id":12979, - "created_at":"2018-04-26T10:04:56.114+02:00", - "updated_at":"2018-04-26T10:04:56.114+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":379700, - "value":"", - "question_id":12979, - "created_at":"2018-04-26T10:04:56.124+02:00", - "updated_at":"2018-04-26T10:04:56.124+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379701, - "value":"", - "question_id":12979, - "created_at":"2018-04-26T10:04:56.132+02:00", - "updated_at":"2018-04-26T10:04:56.132+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":379702, - "value":"", - "question_id":12979, - "created_at":"2018-04-26T10:04:56.136+02:00", - "updated_at":"2018-04-26T10:04:56.136+02:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383980, - "value":"No", - "question_id":12979, - "created_at":"2017-12-05T16:01:42.373+01:00", - "updated_at":"2017-12-05T16:01:42.373+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379703, - "value":"", - "question_id":12979, - "created_at":"2018-04-26T10:04:56.141+02:00", - "updated_at":"2018-04-26T10:04:56.141+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"news-service", - "title":"Do you offer Netnews service?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Netnews/USENET service", - "title_detailed":"Netnews/USENET news feed service.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365581, - "value":"No", - "question_id":12985, - "created_at":"2017-09-06T12:13:29.564+02:00", - "updated_at":"2017-09-06T12:13:29.564+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365798, - "value":"No", - "question_id":12985, - "created_at":"2017-09-07T15:51:16.017+02:00", - "updated_at":"2017-09-07T15:51:16.017+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365894, - "value":"No", - "question_id":12985, - "created_at":"2017-09-13T13:42:21.253+02:00", - "updated_at":"2017-09-13T13:42:21.253+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366153, - "value":"No", - "question_id":12985, - "created_at":"2017-09-19T14:56:55.488+02:00", - "updated_at":"2017-09-19T14:56:55.488+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366323, - "value":"No", - "question_id":12985, - "created_at":"2017-09-29T13:44:23.905+02:00", - "updated_at":"2017-09-29T13:44:23.905+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366750, - "value":"No", - "question_id":12985, - "created_at":"2017-10-10T12:53:14.538+02:00", - "updated_at":"2017-10-10T12:53:14.538+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366927, - "value":"No", - "question_id":12985, - "created_at":"2017-10-11T10:44:15.868+02:00", - "updated_at":"2017-10-11T10:44:15.868+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367709, - "value":"No", - "question_id":12985, - "created_at":"2017-10-23T19:26:36.837+02:00", - "updated_at":"2017-10-23T19:26:36.837+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367909, - "value":"No", - "question_id":12985, - "created_at":"2017-10-24T13:12:50.844+02:00", - "updated_at":"2017-10-24T13:12:50.844+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368501, - "value":"No", - "question_id":12985, - "created_at":"2017-10-31T14:25:54.080+01:00", - "updated_at":"2017-10-31T14:25:54.080+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368724, - "value":"No", - "question_id":12985, - "created_at":"2017-11-02T13:23:35.382+01:00", - "updated_at":"2017-11-02T13:23:35.382+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368754, - "value":"No", - "question_id":12985, - "created_at":"2017-11-03T14:32:14.002+01:00", - "updated_at":"2017-11-03T14:32:14.002+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369196, - "value":"No", - "question_id":12985, - "created_at":"2017-11-10T15:33:34.030+01:00", - "updated_at":"2017-11-10T15:33:34.030+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369364, - "value":"Yes", - "question_id":12985, - "created_at":"2017-11-11T20:36:31.468+01:00", - "updated_at":"2017-11-11T20:36:31.468+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369847, - "value":"No", - "question_id":12985, - "created_at":"2017-11-21T14:58:07.319+01:00", - "updated_at":"2017-11-21T14:58:07.319+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370166, - "value":"No", - "question_id":12985, - "created_at":"2017-11-23T13:55:02.807+01:00", - "updated_at":"2017-11-23T13:55:02.807+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370733, - "value":"No", - "question_id":12985, - "created_at":"2017-11-27T09:32:28.618+01:00", - "updated_at":"2017-11-27T09:32:28.618+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370933, - "value":"No", - "question_id":12985, - "created_at":"2017-11-27T10:37:17.076+01:00", - "updated_at":"2017-11-27T10:37:17.076+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371559, - "value":"No", - "question_id":12985, - "created_at":"2017-11-27T16:37:35.719+01:00", - "updated_at":"2017-11-27T16:37:35.719+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371728, - "value":"No", - "question_id":12985, - "created_at":"2017-11-28T13:09:15.163+01:00", - "updated_at":"2017-11-28T13:09:15.163+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372264, - "value":"No", - "question_id":12985, - "created_at":"2017-11-29T12:17:48.427+01:00", - "updated_at":"2017-11-29T12:17:48.427+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372597, - "value":"No", - "question_id":12985, - "created_at":"2017-11-29T21:37:29.501+01:00", - "updated_at":"2017-11-29T21:37:29.501+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":372802, - "value":"Yes", - "question_id":12985, - "created_at":"2017-11-30T08:54:12.125+01:00", - "updated_at":"2017-11-30T08:54:12.125+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373300, - "value":"No", - "question_id":12985, - "created_at":"2017-12-04T11:22:32.607+01:00", - "updated_at":"2017-12-04T11:22:32.607+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373670, - "value":"No", - "question_id":12985, - "created_at":"2017-12-04T17:54:06.657+01:00", - "updated_at":"2017-12-04T17:54:06.657+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375005, - "value":"No", - "question_id":12985, - "created_at":"2017-12-14T14:18:58.560+01:00", - "updated_at":"2017-12-14T14:18:58.560+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375318, - "value":"No", - "question_id":12985, - "created_at":"2017-12-27T14:39:53.966+01:00", - "updated_at":"2017-12-27T14:39:53.966+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375423, - "value":"No", - "question_id":12985, - "created_at":"2017-12-28T10:07:13.708+01:00", - "updated_at":"2017-12-28T10:07:13.708+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377307, - "value":"", - "question_id":12985, - "created_at":"2018-04-26T10:04:34.520+02:00", - "updated_at":"2018-04-26T10:04:34.520+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":377308, - "value":"", - "question_id":12985, - "created_at":"2018-04-26T10:04:34.534+02:00", - "updated_at":"2018-04-26T10:04:34.534+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377309, - "value":"", - "question_id":12985, - "created_at":"2018-04-26T10:04:34.541+02:00", - "updated_at":"2018-04-26T10:04:34.541+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":377311, - "value":"", - "question_id":12985, - "created_at":"2018-04-26T10:04:34.556+02:00", - "updated_at":"2018-04-26T10:04:34.556+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":377312, - "value":"", - "question_id":12985, - "created_at":"2018-04-26T10:04:34.565+02:00", - "updated_at":"2018-04-26T10:04:34.565+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377313, - "value":"", - "question_id":12985, - "created_at":"2018-04-26T10:04:34.584+02:00", - "updated_at":"2018-04-26T10:04:34.584+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":377314, - "value":"", - "question_id":12985, - "created_at":"2018-04-26T10:04:34.593+02:00", - "updated_at":"2018-04-26T10:04:34.593+02:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":377315, - "value":"", - "question_id":12985, - "created_at":"2018-04-26T10:04:34.603+02:00", - "updated_at":"2018-04-26T10:04:34.603+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377316, - "value":"", - "question_id":12985, - "created_at":"2018-04-26T10:04:34.611+02:00", - "updated_at":"2018-04-26T10:04:34.611+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377317, - "value":"", - "question_id":12985, - "created_at":"2018-04-26T10:04:34.620+02:00", - "updated_at":"2018-04-26T10:04:34.620+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":377318, - "value":"", - "question_id":12985, - "created_at":"2018-04-26T10:04:34.636+02:00", - "updated_at":"2018-04-26T10:04:34.636+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377319, - "value":"", - "question_id":12985, - "created_at":"2018-04-26T10:04:34.648+02:00", - "updated_at":"2018-04-26T10:04:34.648+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377320, - "value":"", - "question_id":12985, - "created_at":"2018-04-26T10:04:34.659+02:00", - "updated_at":"2018-04-26T10:04:34.659+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383981, - "value":"No", - "question_id":12985, - "created_at":"2017-12-05T15:47:33.984+01:00", - "updated_at":"2017-12-05T15:47:33.984+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":1165439, - "value":"No", - "question_id":12985, - "created_at":"2019-11-12T20:25:09.998+01:00", - "updated_at":"2019-11-12T20:25:09.998+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"online-payment", - "title":"Do you offer Online payment terminal connectivity?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Online payment connectivity", - "title_detailed":"Connectivity for chip and pin payment terminals.", - "tags":[ - "identity", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365565, - "value":"No", - "question_id":12987, - "created_at":"2017-09-06T12:11:33.085+02:00", - "updated_at":"2017-09-06T12:11:33.085+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365876, - "value":"No", - "question_id":12987, - "created_at":"2017-09-13T13:40:11.593+02:00", - "updated_at":"2017-09-13T13:40:11.593+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365991, - "value":"No", - "question_id":12987, - "created_at":"2017-09-13T14:19:50.466+02:00", - "updated_at":"2017-09-13T14:19:50.466+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366132, - "value":"No", - "question_id":12987, - "created_at":"2017-09-19T14:44:41.570+02:00", - "updated_at":"2017-09-19T14:44:41.570+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366302, - "value":"No", - "question_id":12987, - "created_at":"2017-09-29T13:40:48.345+02:00", - "updated_at":"2017-09-29T13:40:48.345+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366742, - "value":"No", - "question_id":12987, - "created_at":"2017-10-10T10:54:45.943+02:00", - "updated_at":"2017-10-10T10:54:45.943+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367690, - "value":"No", - "question_id":12987, - "created_at":"2017-10-23T19:24:39.297+02:00", - "updated_at":"2017-10-23T19:24:39.297+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367881, - "value":"No", - "question_id":12987, - "created_at":"2017-10-24T13:03:09.590+02:00", - "updated_at":"2017-10-24T13:03:09.590+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368700, - "value":"Yes", - "question_id":12987, - "created_at":"2017-11-02T13:20:54.338+01:00", - "updated_at":"2017-11-02T13:20:54.338+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368817, - "value":"No", - "question_id":12987, - "created_at":"2017-11-07T09:56:49.566+01:00", - "updated_at":"2017-11-07T09:56:49.566+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369173, - "value":"No", - "question_id":12987, - "created_at":"2017-11-10T15:30:51.542+01:00", - "updated_at":"2017-11-10T15:30:51.542+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369331, - "value":"Yes", - "question_id":12987, - "created_at":"2017-11-11T20:29:46.410+01:00", - "updated_at":"2017-11-11T20:29:46.410+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370130, - "value":"No", - "question_id":12987, - "created_at":"2017-11-23T13:47:37.245+01:00", - "updated_at":"2017-11-23T13:47:37.245+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370706, - "value":"No", - "question_id":12987, - "created_at":"2017-11-27T09:29:48.177+01:00", - "updated_at":"2017-11-27T09:29:48.177+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371229, - "value":"No", - "question_id":12987, - "created_at":"2017-11-27T14:19:42.388+01:00", - "updated_at":"2017-11-27T14:19:42.388+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371287, - "value":"No", - "question_id":12987, - "created_at":"2017-11-27T14:28:55.221+01:00", - "updated_at":"2017-11-27T14:28:55.221+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371546, - "value":"No", - "question_id":12987, - "created_at":"2017-11-27T16:34:55.642+01:00", - "updated_at":"2017-11-27T16:34:55.642+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371987, - "value":"No", - "question_id":12987, - "created_at":"2017-11-28T16:31:27.830+01:00", - "updated_at":"2017-11-28T16:31:27.830+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372229, - "value":"No", - "question_id":12987, - "created_at":"2017-11-29T12:02:14.657+01:00", - "updated_at":"2017-11-29T12:02:14.657+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372424, - "value":"No", - "question_id":12987, - "created_at":"2017-11-29T12:56:00.861+01:00", - "updated_at":"2017-11-29T12:56:00.861+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372572, - "value":"No", - "question_id":12987, - "created_at":"2017-11-29T21:33:18.078+01:00", - "updated_at":"2017-11-29T21:33:18.078+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373644, - "value":"No", - "question_id":12987, - "created_at":"2017-12-04T17:51:15.368+01:00", - "updated_at":"2017-12-04T17:51:15.368+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374033, - "value":"Planned", - "question_id":12987, - "created_at":"2017-12-06T06:56:33.223+01:00", - "updated_at":"2017-12-06T06:56:33.223+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374236, - "value":"No", - "question_id":12987, - "created_at":"2017-12-06T11:02:15.951+01:00", - "updated_at":"2017-12-06T11:02:15.951+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374907, - "value":"No", - "question_id":12987, - "created_at":"2017-12-14T12:45:14.531+01:00", - "updated_at":"2017-12-14T12:45:14.531+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":374978, - "value":"No", - "question_id":12987, - "created_at":"2017-12-14T14:17:09.083+01:00", - "updated_at":"2017-12-14T14:17:09.083+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375356, - "value":"No", - "question_id":12987, - "created_at":"2017-12-27T14:50:49.402+01:00", - "updated_at":"2017-12-27T14:50:49.402+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375412, - "value":"No", - "question_id":12987, - "created_at":"2017-12-28T10:04:02.512+01:00", - "updated_at":"2017-12-28T10:04:02.512+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375803, - "value":"No", - "question_id":12987, - "created_at":"2018-01-22T00:46:29.771+01:00", - "updated_at":"2018-01-22T00:46:29.771+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376611, - "value":"", - "question_id":12987, - "created_at":"2018-04-26T10:04:26.761+02:00", - "updated_at":"2018-04-26T10:04:26.761+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":376612, - "value":"", - "question_id":12987, - "created_at":"2018-04-26T10:04:26.775+02:00", - "updated_at":"2018-04-26T10:04:26.775+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376613, - "value":"", - "question_id":12987, - "created_at":"2018-04-26T10:04:26.782+02:00", - "updated_at":"2018-04-26T10:04:26.782+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":376616, - "value":"", - "question_id":12987, - "created_at":"2018-04-26T10:04:26.806+02:00", - "updated_at":"2018-04-26T10:04:26.806+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":376617, - "value":"", - "question_id":12987, - "created_at":"2018-04-26T10:04:26.823+02:00", - "updated_at":"2018-04-26T10:04:26.823+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376618, - "value":"", - "question_id":12987, - "created_at":"2018-04-26T10:04:26.830+02:00", - "updated_at":"2018-04-26T10:04:26.830+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":376619, - "value":"", - "question_id":12987, - "created_at":"2018-04-26T10:04:26.843+02:00", - "updated_at":"2018-04-26T10:04:26.843+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376620, - "value":"", - "question_id":12987, - "created_at":"2018-04-26T10:04:26.850+02:00", - "updated_at":"2018-04-26T10:04:26.850+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":376621, - "value":"", - "question_id":12987, - "created_at":"2018-04-26T10:04:26.870+02:00", - "updated_at":"2018-04-26T10:04:26.870+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376622, - "value":"", - "question_id":12987, - "created_at":"2018-04-26T10:04:26.882+02:00", - "updated_at":"2018-04-26T10:04:26.882+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383965, - "value":"No", - "question_id":12987, - "created_at":"2017-12-05T15:44:10.663+01:00", - "updated_at":"2017-12-05T15:44:10.663+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756410, - "value":"Yes", - "question_id":12987, - "created_at":"2018-11-05T14:35:01.430+01:00", - "updated_at":"2018-11-05T14:35:01.430+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":798000, - "value":"Planned", - "question_id":12987, - "created_at":"2018-11-27T19:12:51.752+01:00", - "updated_at":"2018-11-27T19:12:51.752+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":376623, - "value":"", - "question_id":12987, - "created_at":"2018-04-26T10:04:26.893+02:00", - "updated_at":"2018-04-26T10:04:26.893+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"open-lightpath-exchange", - "title":"Do you offer Open Lightpath Exchange?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Open Lightpath Exchange", - "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365567, - "value":"No", - "question_id":12991, - "created_at":"2017-09-06T12:11:41.291+02:00", - "updated_at":"2017-09-06T12:11:41.291+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365879, - "value":"No", - "question_id":12991, - "created_at":"2017-09-13T13:40:27.094+02:00", - "updated_at":"2017-09-13T13:40:27.094+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365988, - "value":"Yes", - "question_id":12991, - "created_at":"2017-09-13T14:19:43.820+02:00", - "updated_at":"2017-09-13T14:19:43.820+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366304, - "value":"No", - "question_id":12991, - "created_at":"2017-09-29T13:40:59.756+02:00", - "updated_at":"2017-09-29T13:40:59.756+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367087, - "value":"Yes", - "question_id":12991, - "created_at":"2017-10-11T13:19:38.335+02:00", - "updated_at":"2017-10-11T13:19:38.335+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367187, - "value":"Yes", - "question_id":12991, - "created_at":"2017-10-11T14:03:28.963+02:00", - "updated_at":"2017-10-11T14:03:28.963+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367692, - "value":"No", - "question_id":12991, - "created_at":"2017-10-23T19:24:48.981+02:00", - "updated_at":"2017-10-23T19:24:48.981+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368704, - "value":"Yes", - "question_id":12991, - "created_at":"2017-11-02T13:21:03.132+01:00", - "updated_at":"2017-11-02T13:21:03.132+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368854, - "value":"Yes", - "question_id":12991, - "created_at":"2017-11-08T10:57:48.666+01:00", - "updated_at":"2017-11-08T10:57:48.666+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369175, - "value":"Yes", - "question_id":12991, - "created_at":"2017-11-10T15:30:59.506+01:00", - "updated_at":"2017-11-10T15:30:59.506+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369335, - "value":"No", - "question_id":12991, - "created_at":"2017-11-11T20:30:21.168+01:00", - "updated_at":"2017-11-11T20:30:21.168+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370132, - "value":"Yes", - "question_id":12991, - "created_at":"2017-11-23T13:47:48.546+01:00", - "updated_at":"2017-11-23T13:47:48.546+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370710, - "value":"No", - "question_id":12991, - "created_at":"2017-11-27T09:30:40.105+01:00", - "updated_at":"2017-11-27T09:30:40.105+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371289, - "value":"No", - "question_id":12991, - "created_at":"2017-11-27T14:29:03.130+01:00", - "updated_at":"2017-11-27T14:29:03.130+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371704, - "value":"No", - "question_id":12991, - "created_at":"2017-11-28T13:06:35.789+01:00", - "updated_at":"2017-11-28T13:06:35.789+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371547, - "value":"Planned", - "question_id":12991, - "created_at":"2017-11-27T16:35:07.183+01:00", - "updated_at":"2017-11-27T16:35:07.183+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371996, - "value":"Yes", - "question_id":12991, - "created_at":"2017-11-28T16:32:15.914+01:00", - "updated_at":"2017-11-28T16:32:15.914+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372232, - "value":"Yes", - "question_id":12991, - "created_at":"2017-11-29T12:02:36.184+01:00", - "updated_at":"2017-11-29T12:02:36.184+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372428, - "value":"No", - "question_id":12991, - "created_at":"2017-11-29T12:57:04.540+01:00", - "updated_at":"2017-11-29T12:57:04.540+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":372498, - "value":"No", - "question_id":12991, - "created_at":"2017-11-29T20:20:37.127+01:00", - "updated_at":"2017-11-29T20:20:37.127+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372574, - "value":"No", - "question_id":12991, - "created_at":"2017-11-29T21:33:31.402+01:00", - "updated_at":"2017-11-29T21:33:31.402+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373646, - "value":"No", - "question_id":12991, - "created_at":"2017-12-04T17:51:27.832+01:00", - "updated_at":"2017-12-04T17:51:27.832+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374029, - "value":"Planned", - "question_id":12991, - "created_at":"2017-12-06T06:56:32.645+01:00", - "updated_at":"2017-12-06T06:56:32.645+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":374980, - "value":"No", - "question_id":12991, - "created_at":"2017-12-14T14:17:14.205+01:00", - "updated_at":"2017-12-14T14:17:14.205+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375359, - "value":"Yes", - "question_id":12991, - "created_at":"2017-12-27T14:51:08.136+01:00", - "updated_at":"2017-12-27T14:51:08.136+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375399, - "value":"No", - "question_id":12991, - "created_at":"2017-12-28T10:01:21.246+01:00", - "updated_at":"2017-12-28T10:01:21.246+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375808, - "value":"No", - "question_id":12991, - "created_at":"2018-01-22T00:47:31.230+01:00", - "updated_at":"2018-01-22T00:47:31.230+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376706, - "value":"", - "question_id":12991, - "created_at":"2018-04-26T10:04:27.819+02:00", - "updated_at":"2018-04-26T10:04:27.819+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376708, - "value":"", - "question_id":12991, - "created_at":"2018-04-26T10:04:27.841+02:00", - "updated_at":"2018-04-26T10:04:27.841+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":376711, - "value":"", - "question_id":12991, - "created_at":"2018-04-26T10:04:27.866+02:00", - "updated_at":"2018-04-26T10:04:27.866+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":376712, - "value":"", - "question_id":12991, - "created_at":"2018-04-26T10:04:27.883+02:00", - "updated_at":"2018-04-26T10:04:27.883+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376713, - "value":"", - "question_id":12991, - "created_at":"2018-04-26T10:04:27.891+02:00", - "updated_at":"2018-04-26T10:04:27.891+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":376714, - "value":"", - "question_id":12991, - "created_at":"2018-04-26T10:04:27.904+02:00", - "updated_at":"2018-04-26T10:04:27.904+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376715, - "value":"", - "question_id":12991, - "created_at":"2018-04-26T10:04:27.913+02:00", - "updated_at":"2018-04-26T10:04:27.913+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":376716, - "value":"", - "question_id":12991, - "created_at":"2018-04-26T10:04:27.922+02:00", - "updated_at":"2018-04-26T10:04:27.922+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376718, - "value":"", - "question_id":12991, - "created_at":"2018-04-26T10:04:27.952+02:00", - "updated_at":"2018-04-26T10:04:27.952+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":376719, - "value":"", - "question_id":12991, - "created_at":"2018-04-26T10:04:27.962+02:00", - "updated_at":"2018-04-26T10:04:27.962+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383967, - "value":"No", - "question_id":12991, - "created_at":"2017-12-05T15:44:24.033+01:00", - "updated_at":"2017-12-05T15:44:24.033+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756398, - "value":"Yes", - "question_id":12991, - "created_at":"2018-11-05T14:31:08.592+01:00", - "updated_at":"2018-11-05T14:31:08.592+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1116396, - "value":"Yes", - "question_id":12991, - "created_at":"2019-11-08T11:50:37.842+01:00", - "updated_at":"2019-11-08T11:50:37.842+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":1165436, - "value":"Yes", - "question_id":12991, - "created_at":"2019-11-12T20:20:41.216+01:00", - "updated_at":"2019-11-12T20:20:41.216+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":376720, - "value":"", - "question_id":12991, - "created_at":"2018-04-26T10:04:27.969+02:00", - "updated_at":"2018-04-26T10:04:27.969+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":1470698, - "value":"Yes", - "question_id":12991, - "created_at":"2020-10-16T14:53:21.373+02:00", - "updated_at":"2020-10-16T14:53:21.373+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"pert", - "title":"Do you offer PERT?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"PERT", - "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365640, - "value":"No", - "question_id":12995, - "created_at":"2017-09-06T12:19:11.681+02:00", - "updated_at":"2017-09-06T12:19:11.681+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365707, - "value":"No", - "question_id":12995, - "created_at":"2017-09-07T15:34:12.775+02:00", - "updated_at":"2017-09-07T15:34:12.775+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":366193, - "value":"Planned", - "question_id":12995, - "created_at":"2017-09-26T09:18:32.507+02:00", - "updated_at":"2017-09-26T09:18:32.507+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366371, - "value":"No", - "question_id":12995, - "created_at":"2017-09-29T13:52:57.032+02:00", - "updated_at":"2017-09-29T13:52:57.032+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366595, - "value":"No", - "question_id":12995, - "created_at":"2017-10-08T09:19:12.688+02:00", - "updated_at":"2017-10-08T09:19:12.688+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":366669, - "value":"No", - "question_id":12995, - "created_at":"2017-10-09T11:19:10.559+02:00", - "updated_at":"2017-10-09T11:19:10.559+02:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366876, - "value":"No", - "question_id":12995, - "created_at":"2017-10-11T09:35:26.899+02:00", - "updated_at":"2017-10-11T09:35:26.899+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367349, - "value":"Yes", - "question_id":12995, - "created_at":"2017-10-11T21:19:17.250+02:00", - "updated_at":"2017-10-11T21:19:17.250+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367501, - "value":"No", - "question_id":12995, - "created_at":"2017-10-17T12:06:51.554+02:00", - "updated_at":"2017-10-17T12:06:51.554+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367761, - "value":"No", - "question_id":12995, - "created_at":"2017-10-23T19:36:09.417+02:00", - "updated_at":"2017-10-23T19:36:09.417+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367964, - "value":"No", - "question_id":12995, - "created_at":"2017-10-24T13:29:39.972+02:00", - "updated_at":"2017-10-24T13:29:39.972+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368964, - "value":"Yes", - "question_id":12995, - "created_at":"2017-11-08T15:58:21.998+01:00", - "updated_at":"2017-11-08T15:58:21.998+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369087, - "value":"No", - "question_id":12995, - "created_at":"2017-11-10T11:16:03.013+01:00", - "updated_at":"2017-11-10T11:16:03.013+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369249, - "value":"No", - "question_id":12995, - "created_at":"2017-11-10T15:40:04.221+01:00", - "updated_at":"2017-11-10T15:40:04.221+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369907, - "value":"Yes", - "question_id":12995, - "created_at":"2017-11-21T16:52:26.281+01:00", - "updated_at":"2017-11-21T16:52:26.281+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370239, - "value":"No", - "question_id":12995, - "created_at":"2017-11-23T14:13:02.540+01:00", - "updated_at":"2017-11-23T14:13:02.540+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370785, - "value":"No", - "question_id":12995, - "created_at":"2017-11-27T09:37:09.796+01:00", - "updated_at":"2017-11-27T09:37:09.796+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371267, - "value":"No", - "question_id":12995, - "created_at":"2017-11-27T14:22:23.271+01:00", - "updated_at":"2017-11-27T14:22:23.271+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371435, - "value":"Yes", - "question_id":12995, - "created_at":"2017-11-27T14:50:16.425+01:00", - "updated_at":"2017-11-27T14:50:16.425+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371788, - "value":"No", - "question_id":12995, - "created_at":"2017-11-28T13:19:13.833+01:00", - "updated_at":"2017-11-28T13:19:13.833+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372334, - "value":"No", - "question_id":12995, - "created_at":"2017-11-29T12:34:45.224+01:00", - "updated_at":"2017-11-29T12:34:45.224+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372657, - "value":"No", - "question_id":12995, - "created_at":"2017-11-29T21:48:14.390+01:00", - "updated_at":"2017-11-29T21:48:14.390+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373265, - "value":"No", - "question_id":12995, - "created_at":"2017-12-04T11:15:28.410+01:00", - "updated_at":"2017-12-04T11:15:28.410+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373720, - "value":"Planned", - "question_id":12995, - "created_at":"2017-12-04T18:01:08.325+01:00", - "updated_at":"2017-12-04T18:01:08.325+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375049, - "value":"No", - "question_id":12995, - "created_at":"2017-12-14T14:22:27.799+01:00", - "updated_at":"2017-12-14T14:22:27.799+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375475, - "value":"No", - "question_id":12995, - "created_at":"2017-12-28T10:20:22.741+01:00", - "updated_at":"2017-12-28T10:20:22.741+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375910, - "value":"No", - "question_id":12995, - "created_at":"2018-01-23T12:34:51.995+01:00", - "updated_at":"2018-01-23T12:34:51.995+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378957, - "value":"", - "question_id":12995, - "created_at":"2018-04-26T10:04:49.310+02:00", - "updated_at":"2018-04-26T10:04:49.310+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":378958, - "value":"", - "question_id":12995, - "created_at":"2018-04-26T10:04:49.323+02:00", - "updated_at":"2018-04-26T10:04:49.323+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378959, - "value":"", - "question_id":12995, - "created_at":"2018-04-26T10:04:49.330+02:00", - "updated_at":"2018-04-26T10:04:49.330+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":378961, - "value":"", - "question_id":12995, - "created_at":"2018-04-26T10:04:49.345+02:00", - "updated_at":"2018-04-26T10:04:49.345+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":378962, - "value":"", - "question_id":12995, - "created_at":"2018-04-26T10:04:49.355+02:00", - "updated_at":"2018-04-26T10:04:49.355+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378963, - "value":"", - "question_id":12995, - "created_at":"2018-04-26T10:04:49.377+02:00", - "updated_at":"2018-04-26T10:04:49.377+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":378964, - "value":"", - "question_id":12995, - "created_at":"2018-04-26T10:04:49.392+02:00", - "updated_at":"2018-04-26T10:04:49.392+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378965, - "value":"", - "question_id":12995, - "created_at":"2018-04-26T10:04:49.400+02:00", - "updated_at":"2018-04-26T10:04:49.400+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378966, - "value":"", - "question_id":12995, - "created_at":"2018-04-26T10:04:49.410+02:00", - "updated_at":"2018-04-26T10:04:49.410+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":378967, - "value":"", - "question_id":12995, - "created_at":"2018-04-26T10:04:49.429+02:00", - "updated_at":"2018-04-26T10:04:49.429+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":378968, - "value":"", - "question_id":12995, - "created_at":"2018-04-26T10:04:49.441+02:00", - "updated_at":"2018-04-26T10:04:49.441+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378969, - "value":"", - "question_id":12995, - "created_at":"2018-04-26T10:04:49.450+02:00", - "updated_at":"2018-04-26T10:04:49.450+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378970, - "value":"", - "question_id":12995, - "created_at":"2018-04-26T10:04:49.460+02:00", - "updated_at":"2018-04-26T10:04:49.460+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383970, - "value":"No", - "question_id":12995, - "created_at":"2017-12-05T16:00:26.778+01:00", - "updated_at":"2017-12-05T16:00:26.778+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":1165438, - "value":"Planned", - "question_id":12995, - "created_at":"2019-11-12T20:24:03.241+01:00", - "updated_at":"2019-11-12T20:24:03.241+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":1510384, - "value":"Yes", - "question_id":12995, - "created_at":"2021-12-02T10:41:47.839+01:00", - "updated_at":"2021-12-02T10:41:47.839+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"plagarism-detection", - "title":"Do you offer Plagarism detection tool?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Plagarism detection", - "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "41":{ - "id":365872, - "value":"Yes", - "question_id":12963, - "created_at":"2017-09-13T13:39:30.337+02:00", - "updated_at":"2017-09-13T13:39:30.337+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":366000, - "value":"Yes", - "question_id":12963, - "created_at":"2017-09-13T14:20:06.439+02:00", - "updated_at":"2017-09-13T14:20:06.439+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366125, - "value":"Yes", - "question_id":12963, - "created_at":"2017-09-19T14:43:23.778+02:00", - "updated_at":"2017-09-19T14:43:23.778+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366543, - "value":"Yes", - "question_id":12963, - "created_at":"2017-10-08T08:46:06.845+02:00", - "updated_at":"2017-10-08T08:46:06.845+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367075, - "value":"No", - "question_id":12963, - "created_at":"2017-10-11T13:17:25.544+02:00", - "updated_at":"2017-10-11T13:17:25.544+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367685, - "value":"No", - "question_id":12963, - "created_at":"2017-10-23T19:24:09.515+02:00", - "updated_at":"2017-10-23T19:24:09.515+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368689, - "value":"Yes", - "question_id":12963, - "created_at":"2017-11-02T13:20:31.012+01:00", - "updated_at":"2017-11-02T13:20:31.012+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368814, - "value":"Yes", - "question_id":12963, - "created_at":"2017-11-07T09:56:03.992+01:00", - "updated_at":"2017-11-07T09:56:03.992+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369166, - "value":"Yes", - "question_id":12963, - "created_at":"2017-11-10T15:29:39.039+01:00", - "updated_at":"2017-11-10T15:29:39.039+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369318, - "value":"Yes", - "question_id":12963, - "created_at":"2017-11-11T20:26:12.031+01:00", - "updated_at":"2017-11-11T20:26:12.031+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370139, - "value":"No", - "question_id":12963, - "created_at":"2017-11-23T13:49:19.226+01:00", - "updated_at":"2017-11-23T13:49:19.226+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370700, - "value":"Planned", - "question_id":12963, - "created_at":"2017-11-27T09:29:24.192+01:00", - "updated_at":"2017-11-27T09:29:24.192+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370911, - "value":"Yes", - "question_id":12963, - "created_at":"2017-11-27T10:33:53.438+01:00", - "updated_at":"2017-11-27T10:33:53.438+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371102, - "value":"No", - "question_id":12963, - "created_at":"2017-11-27T13:44:33.061+01:00", - "updated_at":"2017-11-27T13:44:33.061+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371541, - "value":"No", - "question_id":12963, - "created_at":"2017-11-27T16:33:56.583+01:00", - "updated_at":"2017-11-27T16:33:56.583+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371712, - "value":"No", - "question_id":12963, - "created_at":"2017-11-28T13:07:08.712+01:00", - "updated_at":"2017-11-28T13:07:08.712+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371858, - "value":"Yes", - "question_id":12963, - "created_at":"2017-11-28T14:52:52.518+01:00", - "updated_at":"2017-11-28T14:52:52.518+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372218, - "value":"Yes", - "question_id":12963, - "created_at":"2017-11-29T11:58:58.835+01:00", - "updated_at":"2017-11-29T11:58:58.835+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372566, - "value":"Yes", - "question_id":12963, - "created_at":"2017-11-29T21:32:13.899+01:00", - "updated_at":"2017-11-29T21:32:13.899+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372737, - "value":"No", - "question_id":12963, - "created_at":"2017-11-30T08:26:20.563+01:00", - "updated_at":"2017-11-30T08:26:20.563+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373638, - "value":"Yes", - "question_id":12963, - "created_at":"2017-12-04T17:50:33.765+01:00", - "updated_at":"2017-12-04T17:50:33.765+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374028, - "value":"Yes", - "question_id":12963, - "created_at":"2017-12-06T06:56:32.494+01:00", - "updated_at":"2017-12-06T06:56:32.494+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374228, - "value":"Yes", - "question_id":12963, - "created_at":"2017-12-06T10:59:42.302+01:00", - "updated_at":"2017-12-06T10:59:42.302+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374903, - "value":"Yes", - "question_id":12963, - "created_at":"2017-12-14T12:44:52.721+01:00", - "updated_at":"2017-12-14T12:44:52.721+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":374973, - "value":"Yes", - "question_id":12963, - "created_at":"2017-12-14T14:16:46.790+01:00", - "updated_at":"2017-12-14T14:16:46.790+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375348, - "value":"Yes", - "question_id":12963, - "created_at":"2017-12-27T14:48:57.874+01:00", - "updated_at":"2017-12-27T14:48:57.874+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375393, - "value":"Yes", - "question_id":12963, - "created_at":"2017-12-28T10:00:48.125+01:00", - "updated_at":"2017-12-28T10:00:48.125+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375793, - "value":"Yes", - "question_id":12963, - "created_at":"2018-01-22T00:44:40.180+01:00", - "updated_at":"2018-01-22T00:44:40.180+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376346, - "value":"", - "question_id":12963, - "created_at":"2018-04-26T10:04:23.423+02:00", - "updated_at":"2018-04-26T10:04:23.423+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376349, - "value":"", - "question_id":12963, - "created_at":"2018-04-26T10:04:23.453+02:00", - "updated_at":"2018-04-26T10:04:23.453+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376353, - "value":"", - "question_id":12963, - "created_at":"2018-04-26T10:04:23.500+02:00", - "updated_at":"2018-04-26T10:04:23.500+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376355, - "value":"", - "question_id":12963, - "created_at":"2018-04-26T10:04:23.521+02:00", - "updated_at":"2018-04-26T10:04:23.521+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376357, - "value":"", - "question_id":12963, - "created_at":"2018-04-26T10:04:23.555+02:00", - "updated_at":"2018-04-26T10:04:23.555+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383958, - "value":"Yes", - "question_id":12963, - "created_at":"2017-12-06T13:19:16.769+01:00", - "updated_at":"2017-12-06T13:19:16.769+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618218, - "value":"Yes", - "question_id":12963, - "created_at":"2018-10-28T18:33:01.636+01:00", - "updated_at":"2018-10-28T18:33:01.636+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641552, - "value":"Yes", - "question_id":12963, - "created_at":"2018-10-30T13:52:41.707+01:00", - "updated_at":"2018-10-30T13:52:41.707+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756375, - "value":"Yes", - "question_id":12963, - "created_at":"2018-11-05T14:04:19.025+01:00", - "updated_at":"2018-11-05T14:04:19.025+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774390, - "value":"Yes", - "question_id":12963, - "created_at":"2018-11-15T12:45:20.116+01:00", - "updated_at":"2018-11-15T12:45:20.116+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":883330, - "value":"Yes", - "question_id":12963, - "created_at":"2019-10-28T11:26:12.687+01:00", - "updated_at":"2019-10-28T11:26:12.687+01:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "48":{ - "id":1131003, - "value":"Yes", - "question_id":12963, - "created_at":"2019-11-08T19:33:58.639+01:00", - "updated_at":"2019-11-08T19:33:58.639+01:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":371479, - "value":"Yes", - "question_id":12963, - "created_at":"2017-11-27T15:00:22.191+01:00", - "updated_at":"2017-11-27T15:00:22.191+01:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":1470692, - "value":"Yes", - "question_id":12963, - "created_at":"2020-10-16T13:56:53.031+02:00", - "updated_at":"2020-10-16T13:56:53.031+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493607, - "value":"Planned", - "question_id":12963, - "created_at":"2020-12-18T14:40:54.426+01:00", - "updated_at":"2020-12-18T14:40:54.426+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"point-to-point-circuit-vpn", - "title":"Do you offer LAN extension/virtual network?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Virtual circuit/VPN", - "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365619, - "value":"No", - "question_id":12889, - "created_at":"2017-09-06T12:17:56.624+02:00", - "updated_at":"2017-09-06T12:17:56.624+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365677, - "value":"Yes", - "question_id":12889, - "created_at":"2017-09-07T15:32:09.239+02:00", - "updated_at":"2017-09-07T15:32:09.239+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365911, - "value":"No", - "question_id":12889, - "created_at":"2017-09-13T13:45:07.783+02:00", - "updated_at":"2017-09-13T13:45:07.783+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366354, - "value":"No", - "question_id":12889, - "created_at":"2017-09-29T13:51:35.997+02:00", - "updated_at":"2017-09-29T13:51:35.997+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366897, - "value":"Yes", - "question_id":12889, - "created_at":"2017-10-11T09:37:09.235+02:00", - "updated_at":"2017-10-11T09:37:09.235+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366950, - "value":"Yes", - "question_id":12889, - "created_at":"2017-10-11T10:50:31.844+02:00", - "updated_at":"2017-10-11T10:50:31.844+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367248, - "value":"No", - "question_id":12889, - "created_at":"2017-10-11T14:18:33.221+02:00", - "updated_at":"2017-10-11T14:18:33.221+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367340, - "value":"Yes", - "question_id":12889, - "created_at":"2017-10-11T21:15:53.262+02:00", - "updated_at":"2017-10-11T21:15:53.262+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367744, - "value":"Yes", - "question_id":12889, - "created_at":"2017-10-23T19:33:01.245+02:00", - "updated_at":"2017-10-23T19:33:01.245+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367946, - "value":"No", - "question_id":12889, - "created_at":"2017-10-24T13:25:02.527+02:00", - "updated_at":"2017-10-24T13:25:02.527+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368186, - "value":"No", - "question_id":12889, - "created_at":"2017-10-30T09:26:26.582+01:00", - "updated_at":"2017-10-30T09:26:26.582+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368922, - "value":"Yes", - "question_id":12889, - "created_at":"2017-11-08T15:43:20.576+01:00", - "updated_at":"2017-11-08T15:43:20.576+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370216, - "value":"No", - "question_id":12889, - "created_at":"2017-11-23T14:09:07.920+01:00", - "updated_at":"2017-11-23T14:09:07.920+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":370360, - "value":"No", - "question_id":12889, - "created_at":"2017-11-24T16:13:21.575+01:00", - "updated_at":"2017-11-24T16:13:21.575+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":370435, - "value":"No", - "question_id":12889, - "created_at":"2017-11-24T17:01:56.471+01:00", - "updated_at":"2017-11-24T17:01:56.471+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370767, - "value":"No", - "question_id":12889, - "created_at":"2017-11-27T09:36:04.200+01:00", - "updated_at":"2017-11-27T09:36:04.200+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371143, - "value":"No", - "question_id":12889, - "created_at":"2017-11-27T14:02:07.658+01:00", - "updated_at":"2017-11-27T14:02:07.658+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371583, - "value":"No", - "question_id":12889, - "created_at":"2017-11-27T16:43:16.436+01:00", - "updated_at":"2017-11-27T16:43:16.436+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371769, - "value":"No", - "question_id":12889, - "created_at":"2017-11-28T13:18:13.102+01:00", - "updated_at":"2017-11-28T13:18:13.102+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372313, - "value":"Yes", - "question_id":12889, - "created_at":"2017-11-29T12:31:06.002+01:00", - "updated_at":"2017-11-29T12:31:06.002+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":372545, - "value":"No", - "question_id":12889, - "created_at":"2017-11-29T20:30:01.475+01:00", - "updated_at":"2017-11-29T20:30:01.475+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372637, - "value":"No", - "question_id":12889, - "created_at":"2017-11-29T21:45:27.080+01:00", - "updated_at":"2017-11-29T21:45:27.080+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373702, - "value":"No", - "question_id":12889, - "created_at":"2017-12-04T17:59:09.634+01:00", - "updated_at":"2017-12-04T17:59:09.634+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374064, - "value":"No", - "question_id":12889, - "created_at":"2017-12-06T07:25:48.889+01:00", - "updated_at":"2017-12-06T07:25:48.889+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374340, - "value":"No", - "question_id":12889, - "created_at":"2017-12-06T13:12:00.320+01:00", - "updated_at":"2017-12-06T13:12:00.320+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375031, - "value":"No", - "question_id":12889, - "created_at":"2017-12-14T14:21:22.440+01:00", - "updated_at":"2017-12-14T14:21:22.440+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375461, - "value":"No", - "question_id":12889, - "created_at":"2017-12-28T10:19:34.530+01:00", - "updated_at":"2017-12-28T10:19:34.530+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375893, - "value":"Yes", - "question_id":12889, - "created_at":"2018-01-23T12:30:08.055+01:00", - "updated_at":"2018-01-23T12:30:08.055+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378134, - "value":"", - "question_id":12889, - "created_at":"2018-04-26T10:04:41.717+02:00", - "updated_at":"2018-04-26T10:04:41.717+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378136, - "value":"", - "question_id":12889, - "created_at":"2018-04-26T10:04:41.731+02:00", - "updated_at":"2018-04-26T10:04:41.731+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378140, - "value":"", - "question_id":12889, - "created_at":"2018-04-26T10:04:41.760+02:00", - "updated_at":"2018-04-26T10:04:41.760+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378141, - "value":"", - "question_id":12889, - "created_at":"2018-04-26T10:04:41.770+02:00", - "updated_at":"2018-04-26T10:04:41.770+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378142, - "value":"", - "question_id":12889, - "created_at":"2018-04-26T10:04:41.776+02:00", - "updated_at":"2018-04-26T10:04:41.776+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":378143, - "value":"", - "question_id":12889, - "created_at":"2018-04-26T10:04:41.791+02:00", - "updated_at":"2018-04-26T10:04:41.791+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378144, - "value":"", - "question_id":12889, - "created_at":"2018-04-26T10:04:41.796+02:00", - "updated_at":"2018-04-26T10:04:41.796+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383889, - "value":"No", - "question_id":12889, - "created_at":"2017-12-05T15:57:39.247+01:00", - "updated_at":"2017-12-05T15:57:39.247+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618241, - "value":"Yes", - "question_id":12889, - "created_at":"2018-10-28T18:44:21.904+01:00", - "updated_at":"2018-10-28T18:44:21.904+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756402, - "value":"Yes", - "question_id":12889, - "created_at":"2018-11-05T14:32:40.469+01:00", - "updated_at":"2018-11-05T14:32:40.469+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":826896, - "value":"Yes", - "question_id":12889, - "created_at":"2019-09-20T10:10:29.675+02:00", - "updated_at":"2019-09-20T10:10:29.675+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378145, - "value":"", - "question_id":12889, - "created_at":"2018-04-26T10:04:41.804+02:00", - "updated_at":"2018-04-26T10:04:41.804+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1482003, - "value":"Yes", - "question_id":12889, - "created_at":"2020-11-10T12:25:46.522+01:00", - "updated_at":"2020-11-10T12:25:46.522+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":1482389, - "value":"No", - "question_id":12889, - "created_at":"2020-11-11T19:10:12.921+01:00", - "updated_at":"2020-11-11T19:10:12.921+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":1510382, - "value":"Yes", - "question_id":12889, - "created_at":"2021-12-02T10:39:02.955+01:00", - "updated_at":"2021-12-02T10:39:02.955+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"procurement", - "title":"Do you offer Brokerage/procurement as a service?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Procurement/brokerage", - "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365641, - "value":"No", - "question_id":12997, - "created_at":"2017-09-06T12:19:14.174+02:00", - "updated_at":"2017-09-06T12:19:14.174+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365927, - "value":"Yes", - "question_id":12997, - "created_at":"2017-09-13T13:46:15.298+02:00", - "updated_at":"2017-09-13T13:46:15.298+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366372, - "value":"No", - "question_id":12997, - "created_at":"2017-09-29T13:53:02.370+02:00", - "updated_at":"2017-09-29T13:53:02.370+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366599, - "value":"Yes", - "question_id":12997, - "created_at":"2017-10-08T09:19:27.757+02:00", - "updated_at":"2017-10-08T09:19:27.757+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":366670, - "value":"No", - "question_id":12997, - "created_at":"2017-10-09T11:19:17.403+02:00", - "updated_at":"2017-10-09T11:19:17.403+02:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366775, - "value":"No", - "question_id":12997, - "created_at":"2017-10-10T13:18:18.530+02:00", - "updated_at":"2017-10-10T13:18:18.530+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366875, - "value":"Yes", - "question_id":12997, - "created_at":"2017-10-11T09:35:24.232+02:00", - "updated_at":"2017-10-11T09:35:24.232+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367550, - "value":"No", - "question_id":12997, - "created_at":"2017-10-17T14:43:21.620+02:00", - "updated_at":"2017-10-17T14:43:21.620+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367762, - "value":"No", - "question_id":12997, - "created_at":"2017-10-23T19:36:16.521+02:00", - "updated_at":"2017-10-23T19:36:16.521+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367965, - "value":"No", - "question_id":12997, - "created_at":"2017-10-24T13:29:46.723+02:00", - "updated_at":"2017-10-24T13:29:46.723+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369250, - "value":"Yes", - "question_id":12997, - "created_at":"2017-11-10T15:40:10.353+01:00", - "updated_at":"2017-11-10T15:40:10.353+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370240, - "value":"No", - "question_id":12997, - "created_at":"2017-11-23T14:13:05.475+01:00", - "updated_at":"2017-11-23T14:13:05.475+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":370398, - "value":"Yes", - "question_id":12997, - "created_at":"2017-11-24T16:42:47.691+01:00", - "updated_at":"2017-11-24T16:42:47.691+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370786, - "value":"No", - "question_id":12997, - "created_at":"2017-11-27T09:37:11.591+01:00", - "updated_at":"2017-11-27T09:37:11.591+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371265, - "value":"No", - "question_id":12997, - "created_at":"2017-11-27T14:22:16.884+01:00", - "updated_at":"2017-11-27T14:22:16.884+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371789, - "value":"No", - "question_id":12997, - "created_at":"2017-11-28T13:19:15.581+01:00", - "updated_at":"2017-11-28T13:19:15.581+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372335, - "value":"No", - "question_id":12997, - "created_at":"2017-11-29T12:34:51.020+01:00", - "updated_at":"2017-11-29T12:34:51.020+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":373187, - "value":"Yes", - "question_id":12997, - "created_at":"2017-12-01T17:41:11.934+01:00", - "updated_at":"2017-12-01T17:41:11.934+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373266, - "value":"Yes", - "question_id":12997, - "created_at":"2017-12-04T11:15:32.448+01:00", - "updated_at":"2017-12-04T11:15:32.448+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373721, - "value":"No", - "question_id":12997, - "created_at":"2017-12-04T18:01:15.365+01:00", - "updated_at":"2017-12-04T18:01:15.365+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375050, - "value":"No", - "question_id":12997, - "created_at":"2017-12-14T14:22:29.895+01:00", - "updated_at":"2017-12-14T14:22:29.895+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375476, - "value":"Yes", - "question_id":12997, - "created_at":"2017-12-28T10:20:25.191+01:00", - "updated_at":"2017-12-28T10:20:25.191+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375911, - "value":"No", - "question_id":12997, - "created_at":"2018-01-23T12:35:08.286+01:00", - "updated_at":"2018-01-23T12:35:08.286+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379006, - "value":"", - "question_id":12997, - "created_at":"2018-04-26T10:04:49.793+02:00", - "updated_at":"2018-04-26T10:04:49.793+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379008, - "value":"", - "question_id":12997, - "created_at":"2018-04-26T10:04:49.815+02:00", - "updated_at":"2018-04-26T10:04:49.815+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":379010, - "value":"", - "question_id":12997, - "created_at":"2018-04-26T10:04:49.829+02:00", - "updated_at":"2018-04-26T10:04:49.829+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":379011, - "value":"", - "question_id":12997, - "created_at":"2018-04-26T10:04:49.837+02:00", - "updated_at":"2018-04-26T10:04:49.837+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":379012, - "value":"", - "question_id":12997, - "created_at":"2018-04-26T10:04:49.845+02:00", - "updated_at":"2018-04-26T10:04:49.845+02:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":379013, - "value":"", - "question_id":12997, - "created_at":"2018-04-26T10:04:49.855+02:00", - "updated_at":"2018-04-26T10:04:49.855+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":379014, - "value":"", - "question_id":12997, - "created_at":"2018-04-26T10:04:49.869+02:00", - "updated_at":"2018-04-26T10:04:49.869+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379015, - "value":"", - "question_id":12997, - "created_at":"2018-04-26T10:04:49.875+02:00", - "updated_at":"2018-04-26T10:04:49.875+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":379016, - "value":"", - "question_id":12997, - "created_at":"2018-04-26T10:04:49.882+02:00", - "updated_at":"2018-04-26T10:04:49.882+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":379017, - "value":"", - "question_id":12997, - "created_at":"2018-04-26T10:04:49.893+02:00", - "updated_at":"2018-04-26T10:04:49.893+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":379018, - "value":"", - "question_id":12997, - "created_at":"2018-04-26T10:04:49.900+02:00", - "updated_at":"2018-04-26T10:04:49.900+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379019, - "value":"", - "question_id":12997, - "created_at":"2018-04-26T10:04:49.910+02:00", - "updated_at":"2018-04-26T10:04:49.910+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383972, - "value":"No", - "question_id":12997, - "created_at":"2017-12-05T16:00:34.377+01:00", - "updated_at":"2017-12-05T16:00:34.377+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":963608, - "value":"Yes", - "question_id":12997, - "created_at":"2019-10-30T16:56:12.325+01:00", - "updated_at":"2019-10-30T16:56:12.325+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":1165437, - "value":"Yes", - "question_id":12997, - "created_at":"2019-11-12T20:22:38.014+01:00", - "updated_at":"2019-11-12T20:22:38.014+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379020, - "value":"", - "question_id":12997, - "created_at":"2018-04-26T10:04:49.918+02:00", - "updated_at":"2018-04-26T10:04:49.918+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1482004, - "value":"Yes", - "question_id":12997, - "created_at":"2020-11-10T12:27:18.780+01:00", - "updated_at":"2020-11-10T12:27:18.780+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1483386, - "value":"No", - "question_id":12997, - "created_at":"2020-11-16T13:55:30.084+01:00", - "updated_at":"2020-11-16T13:55:30.084+01:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":1506687, - "value":"Yes", - "question_id":12997, - "created_at":"2021-11-23T12:54:24.569+01:00", - "updated_at":"2021-11-23T12:54:24.569+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":1510383, - "value":"No", - "question_id":12997, - "created_at":"2021-12-02T10:40:25.316+01:00", - "updated_at":"2021-12-02T10:40:25.316+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"project-collaboration-toolkit", - "title":"Do you offer Project collaboration toolkit?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Project collaboration tools", - "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365569, - "value":"No", - "question_id":12999, - "created_at":"2017-09-06T12:11:48.916+02:00", - "updated_at":"2017-09-06T12:11:48.916+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365880, - "value":"No", - "question_id":12999, - "created_at":"2017-09-13T13:40:29.655+02:00", - "updated_at":"2017-09-13T13:40:29.655+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365987, - "value":"No", - "question_id":12999, - "created_at":"2017-09-13T14:19:41.485+02:00", - "updated_at":"2017-09-13T14:19:41.485+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366305, - "value":"No", - "question_id":12999, - "created_at":"2017-09-29T13:41:05.334+02:00", - "updated_at":"2017-09-29T13:41:05.334+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367088, - "value":"Yes", - "question_id":12999, - "created_at":"2017-10-11T13:19:50.412+02:00", - "updated_at":"2017-10-11T13:19:50.412+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367190, - "value":"Yes", - "question_id":12999, - "created_at":"2017-10-11T14:03:50.614+02:00", - "updated_at":"2017-10-11T14:03:50.614+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367693, - "value":"No", - "question_id":12999, - "created_at":"2017-10-23T19:24:52.248+02:00", - "updated_at":"2017-10-23T19:24:52.248+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367883, - "value":"No", - "question_id":12999, - "created_at":"2017-10-24T13:04:10.622+02:00", - "updated_at":"2017-10-24T13:04:10.622+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368450, - "value":"No", - "question_id":12999, - "created_at":"2017-10-31T14:19:28.892+01:00", - "updated_at":"2017-10-31T14:19:28.892+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368706, - "value":"No", - "question_id":12999, - "created_at":"2017-11-02T13:21:07.978+01:00", - "updated_at":"2017-11-02T13:21:07.978+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368856, - "value":"Yes", - "question_id":12999, - "created_at":"2017-11-08T10:58:03.862+01:00", - "updated_at":"2017-11-08T10:58:03.862+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369176, - "value":"Yes", - "question_id":12999, - "created_at":"2017-11-10T15:31:03.389+01:00", - "updated_at":"2017-11-10T15:31:03.389+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369336, - "value":"No", - "question_id":12999, - "created_at":"2017-11-11T20:30:25.781+01:00", - "updated_at":"2017-11-11T20:30:25.781+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370133, - "value":"Yes", - "question_id":12999, - "created_at":"2017-11-23T13:47:55.234+01:00", - "updated_at":"2017-11-23T13:47:55.234+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370711, - "value":"Planned", - "question_id":12999, - "created_at":"2017-11-27T09:30:43.300+01:00", - "updated_at":"2017-11-27T09:30:43.300+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371293, - "value":"No", - "question_id":12999, - "created_at":"2017-11-27T14:29:23.383+01:00", - "updated_at":"2017-11-27T14:29:23.383+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371705, - "value":"No", - "question_id":12999, - "created_at":"2017-11-28T13:06:38.563+01:00", - "updated_at":"2017-11-28T13:06:38.563+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":372010, - "value":"Yes", - "question_id":12999, - "created_at":"2017-11-28T16:35:34.773+01:00", - "updated_at":"2017-11-28T16:35:34.773+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372234, - "value":"No", - "question_id":12999, - "created_at":"2017-11-29T12:02:52.910+01:00", - "updated_at":"2017-11-29T12:02:52.910+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":372499, - "value":"Yes", - "question_id":12999, - "created_at":"2017-11-29T20:21:05.170+01:00", - "updated_at":"2017-11-29T20:21:05.170+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372575, - "value":"No", - "question_id":12999, - "created_at":"2017-11-29T21:33:40.327+01:00", - "updated_at":"2017-11-29T21:33:40.327+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373283, - "value":"Yes", - "question_id":12999, - "created_at":"2017-12-04T11:18:44.663+01:00", - "updated_at":"2017-12-04T11:18:44.663+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":373454, - "value":"No", - "question_id":12999, - "created_at":"2017-12-04T12:38:56.416+01:00", - "updated_at":"2017-12-04T12:38:56.416+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373647, - "value":"Yes", - "question_id":12999, - "created_at":"2017-12-04T17:51:36.875+01:00", - "updated_at":"2017-12-04T17:51:36.875+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374239, - "value":"Planned", - "question_id":12999, - "created_at":"2017-12-06T11:02:54.575+01:00", - "updated_at":"2017-12-06T11:02:54.575+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374909, - "value":"No", - "question_id":12999, - "created_at":"2017-12-14T12:45:23.561+01:00", - "updated_at":"2017-12-14T12:45:23.561+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":374981, - "value":"No", - "question_id":12999, - "created_at":"2017-12-14T14:17:16.913+01:00", - "updated_at":"2017-12-14T14:17:16.913+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375360, - "value":"Yes", - "question_id":12999, - "created_at":"2017-12-27T14:51:11.915+01:00", - "updated_at":"2017-12-27T14:51:11.915+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375400, - "value":"Yes", - "question_id":12999, - "created_at":"2017-12-28T10:01:24.797+01:00", - "updated_at":"2017-12-28T10:01:24.797+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375809, - "value":"No", - "question_id":12999, - "created_at":"2018-01-22T00:47:38.113+01:00", - "updated_at":"2018-01-22T00:47:38.113+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376756, - "value":"", - "question_id":12999, - "created_at":"2018-04-26T10:04:28.379+02:00", - "updated_at":"2018-04-26T10:04:28.379+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376758, - "value":"", - "question_id":12999, - "created_at":"2018-04-26T10:04:28.403+02:00", - "updated_at":"2018-04-26T10:04:28.403+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":376761, - "value":"", - "question_id":12999, - "created_at":"2018-04-26T10:04:28.427+02:00", - "updated_at":"2018-04-26T10:04:28.427+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":376762, - "value":"", - "question_id":12999, - "created_at":"2018-04-26T10:04:28.444+02:00", - "updated_at":"2018-04-26T10:04:28.444+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376763, - "value":"", - "question_id":12999, - "created_at":"2018-04-26T10:04:28.452+02:00", - "updated_at":"2018-04-26T10:04:28.452+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376765, - "value":"", - "question_id":12999, - "created_at":"2018-04-26T10:04:28.473+02:00", - "updated_at":"2018-04-26T10:04:28.473+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":376766, - "value":"", - "question_id":12999, - "created_at":"2018-04-26T10:04:28.491+02:00", - "updated_at":"2018-04-26T10:04:28.491+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376767, - "value":"", - "question_id":12999, - "created_at":"2018-04-26T10:04:28.502+02:00", - "updated_at":"2018-04-26T10:04:28.502+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383968, - "value":"Yes", - "question_id":12999, - "created_at":"2017-12-06T13:21:41.998+01:00", - "updated_at":"2017-12-06T13:21:41.998+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641567, - "value":"No", - "question_id":12999, - "created_at":"2018-10-30T13:59:38.791+01:00", - "updated_at":"2018-10-30T13:59:38.791+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756394, - "value":"Yes", - "question_id":12999, - "created_at":"2018-11-05T14:30:04.127+01:00", - "updated_at":"2018-11-05T14:30:04.127+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774398, - "value":"Yes", - "question_id":12999, - "created_at":"2018-11-15T12:49:25.885+01:00", - "updated_at":"2018-11-15T12:49:25.885+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":376768, - "value":"", - "question_id":12999, - "created_at":"2018-04-26T10:04:28.512+02:00", - "updated_at":"2018-04-26T10:04:28.512+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"quality-of-service", - "title":"Do you offer Quality of Service (QoS)?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Quality of Service", - "title_detailed":"Preferential service to specific applications or classes of applications.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365642, - "value":"No", - "question_id":13001, - "created_at":"2017-09-06T12:19:17.413+02:00", - "updated_at":"2017-09-06T12:19:17.413+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365710, - "value":"No", - "question_id":13001, - "created_at":"2017-09-07T15:34:22.956+02:00", - "updated_at":"2017-09-07T15:34:22.956+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365928, - "value":"No", - "question_id":13001, - "created_at":"2017-09-13T13:46:18.822+02:00", - "updated_at":"2017-09-13T13:46:18.822+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366373, - "value":"No", - "question_id":13001, - "created_at":"2017-09-29T13:53:04.864+02:00", - "updated_at":"2017-09-29T13:53:04.864+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366601, - "value":"No", - "question_id":13001, - "created_at":"2017-10-08T09:19:35.452+02:00", - "updated_at":"2017-10-08T09:19:35.452+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":366671, - "value":"No", - "question_id":13001, - "created_at":"2017-10-09T11:19:24.359+02:00", - "updated_at":"2017-10-09T11:19:24.359+02:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366776, - "value":"No", - "question_id":13001, - "created_at":"2017-10-10T13:18:37.224+02:00", - "updated_at":"2017-10-10T13:18:37.224+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366873, - "value":"No", - "question_id":13001, - "created_at":"2017-10-11T09:35:19.147+02:00", - "updated_at":"2017-10-11T09:35:19.147+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367351, - "value":"Yes", - "question_id":13001, - "created_at":"2017-10-11T21:19:48.057+02:00", - "updated_at":"2017-10-11T21:19:48.057+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367504, - "value":"Yes", - "question_id":13001, - "created_at":"2017-10-17T12:07:23.864+02:00", - "updated_at":"2017-10-17T12:07:23.864+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367763, - "value":"No", - "question_id":13001, - "created_at":"2017-10-23T19:36:21.230+02:00", - "updated_at":"2017-10-23T19:36:21.230+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367966, - "value":"No", - "question_id":13001, - "created_at":"2017-10-24T13:30:50.761+02:00", - "updated_at":"2017-10-24T13:30:50.761+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368967, - "value":"No", - "question_id":13001, - "created_at":"2017-11-08T15:59:18.710+01:00", - "updated_at":"2017-11-08T15:59:18.710+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369088, - "value":"No", - "question_id":13001, - "created_at":"2017-11-10T11:16:12.836+01:00", - "updated_at":"2017-11-10T11:16:12.836+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369251, - "value":"Yes", - "question_id":13001, - "created_at":"2017-11-10T15:40:14.499+01:00", - "updated_at":"2017-11-10T15:40:14.499+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369909, - "value":"No", - "question_id":13001, - "created_at":"2017-11-21T16:52:44.006+01:00", - "updated_at":"2017-11-21T16:52:44.006+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370241, - "value":"No", - "question_id":13001, - "created_at":"2017-11-23T14:13:08.514+01:00", - "updated_at":"2017-11-23T14:13:08.514+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370787, - "value":"No", - "question_id":13001, - "created_at":"2017-11-27T09:37:13.241+01:00", - "updated_at":"2017-11-27T09:37:13.241+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371263, - "value":"No", - "question_id":13001, - "created_at":"2017-11-27T14:22:11.093+01:00", - "updated_at":"2017-11-27T14:22:11.093+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371790, - "value":"No", - "question_id":13001, - "created_at":"2017-11-28T13:19:18.813+01:00", - "updated_at":"2017-11-28T13:19:18.813+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372336, - "value":"No", - "question_id":13001, - "created_at":"2017-11-29T12:34:57.426+01:00", - "updated_at":"2017-11-29T12:34:57.426+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372659, - "value":"Yes", - "question_id":13001, - "created_at":"2017-11-29T21:48:25.804+01:00", - "updated_at":"2017-11-29T21:48:25.804+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373722, - "value":"No", - "question_id":13001, - "created_at":"2017-12-04T18:01:22.421+01:00", - "updated_at":"2017-12-04T18:01:22.421+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374376, - "value":"No", - "question_id":13001, - "created_at":"2017-12-06T13:20:13.520+01:00", - "updated_at":"2017-12-06T13:20:13.520+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374700, - "value":"Yes", - "question_id":13001, - "created_at":"2017-12-13T10:18:12.314+01:00", - "updated_at":"2017-12-13T10:18:12.314+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375051, - "value":"No", - "question_id":13001, - "created_at":"2017-12-14T14:22:31.531+01:00", - "updated_at":"2017-12-14T14:22:31.531+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375480, - "value":"No", - "question_id":13001, - "created_at":"2017-12-28T10:20:37.152+01:00", - "updated_at":"2017-12-28T10:20:37.152+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375912, - "value":"No", - "question_id":13001, - "created_at":"2018-01-23T12:35:15.132+01:00", - "updated_at":"2018-01-23T12:35:15.132+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379056, - "value":"", - "question_id":13001, - "created_at":"2018-04-26T10:04:50.248+02:00", - "updated_at":"2018-04-26T10:04:50.248+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":379057, - "value":"", - "question_id":13001, - "created_at":"2018-04-26T10:04:50.260+02:00", - "updated_at":"2018-04-26T10:04:50.260+02:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":379058, - "value":"", - "question_id":13001, - "created_at":"2018-04-26T10:04:50.267+02:00", - "updated_at":"2018-04-26T10:04:50.267+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379059, - "value":"", - "question_id":13001, - "created_at":"2018-04-26T10:04:50.274+02:00", - "updated_at":"2018-04-26T10:04:50.274+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":379062, - "value":"", - "question_id":13001, - "created_at":"2018-04-26T10:04:50.297+02:00", - "updated_at":"2018-04-26T10:04:50.297+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":379063, - "value":"", - "question_id":13001, - "created_at":"2018-04-26T10:04:50.316+02:00", - "updated_at":"2018-04-26T10:04:50.316+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":379064, - "value":"", - "question_id":13001, - "created_at":"2018-04-26T10:04:50.331+02:00", - "updated_at":"2018-04-26T10:04:50.331+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379065, - "value":"", - "question_id":13001, - "created_at":"2018-04-26T10:04:50.340+02:00", - "updated_at":"2018-04-26T10:04:50.340+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":379066, - "value":"", - "question_id":13001, - "created_at":"2018-04-26T10:04:50.349+02:00", - "updated_at":"2018-04-26T10:04:50.349+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":379067, - "value":"", - "question_id":13001, - "created_at":"2018-04-26T10:04:50.364+02:00", - "updated_at":"2018-04-26T10:04:50.364+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379068, - "value":"", - "question_id":13001, - "created_at":"2018-04-26T10:04:50.376+02:00", - "updated_at":"2018-04-26T10:04:50.376+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383914, - "value":"No", - "question_id":13001, - "created_at":"2017-12-05T16:00:37.902+01:00", - "updated_at":"2017-12-05T16:00:37.902+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756407, - "value":"Yes", - "question_id":13001, - "created_at":"2018-11-05T14:34:13.388+01:00", - "updated_at":"2018-11-05T14:34:13.388+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379069, - "value":"", - "question_id":13001, - "created_at":"2018-04-26T10:04:50.386+02:00", - "updated_at":"2018-04-26T10:04:50.386+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":1506686, - "value":"Yes", - "question_id":13001, - "created_at":"2021-11-23T12:51:45.353+01:00", - "updated_at":"2021-11-23T12:51:45.353+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"scheduling-tool", - "title":"Do you offer Scheduling tool?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Scheduling tool", - "title_detailed":"Provision of tools to users for scheduling appointments or classes.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365568, - "value":"No", - "question_id":13003, - "created_at":"2017-09-06T12:11:47.140+02:00", - "updated_at":"2017-09-06T12:11:47.140+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366137, - "value":"Yes", - "question_id":13003, - "created_at":"2017-09-19T14:47:28.714+02:00", - "updated_at":"2017-09-19T14:47:28.714+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366306, - "value":"No", - "question_id":13003, - "created_at":"2017-09-29T13:41:08.609+02:00", - "updated_at":"2017-09-29T13:41:08.609+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366547, - "value":"Yes", - "question_id":13003, - "created_at":"2017-10-08T08:46:44.002+02:00", - "updated_at":"2017-10-08T08:46:44.002+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367090, - "value":"No", - "question_id":13003, - "created_at":"2017-10-11T13:19:55.814+02:00", - "updated_at":"2017-10-11T13:19:55.814+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367694, - "value":"No", - "question_id":13003, - "created_at":"2017-10-23T19:24:58.881+02:00", - "updated_at":"2017-10-23T19:24:58.881+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368707, - "value":"No", - "question_id":13003, - "created_at":"2017-11-02T13:21:10.432+01:00", - "updated_at":"2017-11-02T13:21:10.432+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368818, - "value":"No", - "question_id":13003, - "created_at":"2017-11-07T09:56:57.523+01:00", - "updated_at":"2017-11-07T09:56:57.523+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369177, - "value":"Planned", - "question_id":13003, - "created_at":"2017-11-10T15:31:10.469+01:00", - "updated_at":"2017-11-10T15:31:10.469+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369337, - "value":"No", - "question_id":13003, - "created_at":"2017-11-11T20:30:29.844+01:00", - "updated_at":"2017-11-11T20:30:29.844+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370135, - "value":"No", - "question_id":13003, - "created_at":"2017-11-23T13:48:44.620+01:00", - "updated_at":"2017-11-23T13:48:44.620+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370712, - "value":"No", - "question_id":13003, - "created_at":"2017-11-27T09:30:46.391+01:00", - "updated_at":"2017-11-27T09:30:46.391+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370917, - "value":"Yes", - "question_id":13003, - "created_at":"2017-11-27T10:34:49.770+01:00", - "updated_at":"2017-11-27T10:34:49.770+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371310, - "value":"No", - "question_id":13003, - "created_at":"2017-11-27T14:30:07.900+01:00", - "updated_at":"2017-11-27T14:30:07.900+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371548, - "value":"No", - "question_id":13003, - "created_at":"2017-11-27T16:35:14.679+01:00", - "updated_at":"2017-11-27T16:35:14.679+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371706, - "value":"No", - "question_id":13003, - "created_at":"2017-11-28T13:06:40.666+01:00", - "updated_at":"2017-11-28T13:06:40.666+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":372012, - "value":"Planned", - "question_id":13003, - "created_at":"2017-11-28T16:36:30.539+01:00", - "updated_at":"2017-11-28T16:36:30.539+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372235, - "value":"No", - "question_id":13003, - "created_at":"2017-11-29T12:02:56.131+01:00", - "updated_at":"2017-11-29T12:02:56.131+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372429, - "value":"No", - "question_id":13003, - "created_at":"2017-11-29T12:57:15.491+01:00", - "updated_at":"2017-11-29T12:57:15.491+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372576, - "value":"No", - "question_id":13003, - "created_at":"2017-11-29T21:33:43.631+01:00", - "updated_at":"2017-11-29T21:33:43.631+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373284, - "value":"Yes", - "question_id":13003, - "created_at":"2017-12-04T11:18:54.084+01:00", - "updated_at":"2017-12-04T11:18:54.084+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373648, - "value":"No", - "question_id":13003, - "created_at":"2017-12-04T17:51:40.553+01:00", - "updated_at":"2017-12-04T17:51:40.553+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374910, - "value":"No", - "question_id":13003, - "created_at":"2017-12-14T12:45:27.724+01:00", - "updated_at":"2017-12-14T12:45:27.724+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":374982, - "value":"No", - "question_id":13003, - "created_at":"2017-12-14T14:17:18.678+01:00", - "updated_at":"2017-12-14T14:17:18.678+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375362, - "value":"No", - "question_id":13003, - "created_at":"2017-12-27T14:51:24.881+01:00", - "updated_at":"2017-12-27T14:51:24.881+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375493, - "value":"Yes", - "question_id":13003, - "created_at":"2017-12-28T10:29:25.275+01:00", - "updated_at":"2017-12-28T10:29:25.275+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375810, - "value":"No", - "question_id":13003, - "created_at":"2018-01-22T00:47:40.878+01:00", - "updated_at":"2018-01-22T00:47:40.878+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376804, - "value":"", - "question_id":13003, - "created_at":"2018-04-26T10:04:28.867+02:00", - "updated_at":"2018-04-26T10:04:28.867+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":376805, - "value":"", - "question_id":13003, - "created_at":"2018-04-26T10:04:28.877+02:00", - "updated_at":"2018-04-26T10:04:28.877+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376806, - "value":"", - "question_id":13003, - "created_at":"2018-04-26T10:04:28.883+02:00", - "updated_at":"2018-04-26T10:04:28.883+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":376809, - "value":"", - "question_id":13003, - "created_at":"2018-04-26T10:04:28.902+02:00", - "updated_at":"2018-04-26T10:04:28.902+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376810, - "value":"", - "question_id":13003, - "created_at":"2018-04-26T10:04:28.917+02:00", - "updated_at":"2018-04-26T10:04:28.917+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":376811, - "value":"", - "question_id":13003, - "created_at":"2018-04-26T10:04:28.927+02:00", - "updated_at":"2018-04-26T10:04:28.927+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376812, - "value":"", - "question_id":13003, - "created_at":"2018-04-26T10:04:28.932+02:00", - "updated_at":"2018-04-26T10:04:28.932+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":376813, - "value":"", - "question_id":13003, - "created_at":"2018-04-26T10:04:28.940+02:00", - "updated_at":"2018-04-26T10:04:28.940+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":376814, - "value":"", - "question_id":13003, - "created_at":"2018-04-26T10:04:28.955+02:00", - "updated_at":"2018-04-26T10:04:28.955+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376815, - "value":"", - "question_id":13003, - "created_at":"2018-04-26T10:04:28.966+02:00", - "updated_at":"2018-04-26T10:04:28.966+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383890, - "value":"No", - "question_id":13003, - "created_at":"2017-12-05T15:44:33.799+01:00", - "updated_at":"2017-12-05T15:44:33.799+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756405, - "value":"Yes", - "question_id":13003, - "created_at":"2018-11-05T14:33:37.026+01:00", - "updated_at":"2018-11-05T14:33:37.026+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":883333, - "value":"Yes", - "question_id":13003, - "created_at":"2019-10-28T11:31:31.877+01:00", - "updated_at":"2019-10-28T11:31:31.877+01:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":376816, - "value":"", - "question_id":13003, - "created_at":"2018-04-26T10:04:28.975+02:00", - "updated_at":"2018-04-26T10:04:28.975+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":1500315, - "value":"No", - "question_id":13003, - "created_at":"2021-11-04T15:28:01.409+01:00", - "updated_at":"2021-11-04T15:28:01.409+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1517906, - "value":"Planned", - "question_id":13003, - "created_at":"2022-09-29T14:31:35.835+02:00", - "updated_at":"2022-09-29T14:31:35.835+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sdn-testbed", - "title":"Do you offer SDN testbed", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"SDN testbed", - "title_detailed":"Software defined networking testbed available to users.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365643, - "value":"No", - "question_id":13007, - "created_at":"2017-09-06T12:19:19.816+02:00", - "updated_at":"2017-09-06T12:19:19.816+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365711, - "value":"No", - "question_id":13007, - "created_at":"2017-09-07T15:34:29.191+02:00", - "updated_at":"2017-09-07T15:34:29.191+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365929, - "value":"No", - "question_id":13007, - "created_at":"2017-09-13T13:46:20.629+02:00", - "updated_at":"2017-09-13T13:46:20.629+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366374, - "value":"No", - "question_id":13007, - "created_at":"2017-09-29T13:53:11.708+02:00", - "updated_at":"2017-09-29T13:53:11.708+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366602, - "value":"No", - "question_id":13007, - "created_at":"2017-10-08T09:19:40.421+02:00", - "updated_at":"2017-10-08T09:19:40.421+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366777, - "value":"No", - "question_id":13007, - "created_at":"2017-10-10T13:18:42.126+02:00", - "updated_at":"2017-10-10T13:18:42.126+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366872, - "value":"No", - "question_id":13007, - "created_at":"2017-10-11T09:35:16.516+02:00", - "updated_at":"2017-10-11T09:35:16.516+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367505, - "value":"Yes", - "question_id":13007, - "created_at":"2017-10-17T12:07:42.049+02:00", - "updated_at":"2017-10-17T12:07:42.049+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367764, - "value":"No", - "question_id":13007, - "created_at":"2017-10-23T19:40:05.284+02:00", - "updated_at":"2017-10-23T19:40:05.284+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367967, - "value":"Yes", - "question_id":13007, - "created_at":"2017-10-24T13:31:01.644+02:00", - "updated_at":"2017-10-24T13:31:01.644+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368968, - "value":"No", - "question_id":13007, - "created_at":"2017-11-08T15:59:28.450+01:00", - "updated_at":"2017-11-08T15:59:28.450+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369089, - "value":"No", - "question_id":13007, - "created_at":"2017-11-10T11:16:19.197+01:00", - "updated_at":"2017-11-10T11:16:19.197+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369252, - "value":"No", - "question_id":13007, - "created_at":"2017-11-10T15:40:18.488+01:00", - "updated_at":"2017-11-10T15:40:18.488+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":369560, - "value":"Yes", - "question_id":13007, - "created_at":"2017-11-15T17:39:35.438+01:00", - "updated_at":"2017-11-15T17:39:35.438+01:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369804, - "value":"No", - "question_id":13007, - "created_at":"2017-11-21T13:38:55.297+01:00", - "updated_at":"2017-11-21T13:38:55.297+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369910, - "value":"No", - "question_id":13007, - "created_at":"2017-11-21T16:52:48.174+01:00", - "updated_at":"2017-11-21T16:52:48.174+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370242, - "value":"No", - "question_id":13007, - "created_at":"2017-11-23T14:13:11.191+01:00", - "updated_at":"2017-11-23T14:13:11.191+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370788, - "value":"No", - "question_id":13007, - "created_at":"2017-11-27T09:37:16.825+01:00", - "updated_at":"2017-11-27T09:37:16.825+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371159, - "value":"No", - "question_id":13007, - "created_at":"2017-11-27T14:12:33.163+01:00", - "updated_at":"2017-11-27T14:12:33.163+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371261, - "value":"No", - "question_id":13007, - "created_at":"2017-11-27T14:22:06.019+01:00", - "updated_at":"2017-11-27T14:22:06.019+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371791, - "value":"No", - "question_id":13007, - "created_at":"2017-11-28T13:19:20.945+01:00", - "updated_at":"2017-11-28T13:19:20.945+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372337, - "value":"No", - "question_id":13007, - "created_at":"2017-11-29T12:35:01.868+01:00", - "updated_at":"2017-11-29T12:35:01.868+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372660, - "value":"No", - "question_id":13007, - "created_at":"2017-11-29T21:48:31.797+01:00", - "updated_at":"2017-11-29T21:48:31.797+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372776, - "value":"No", - "question_id":13007, - "created_at":"2017-11-30T08:34:41.579+01:00", - "updated_at":"2017-11-30T08:34:41.579+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373267, - "value":"Yes", - "question_id":13007, - "created_at":"2017-12-04T11:15:41.301+01:00", - "updated_at":"2017-12-04T11:15:41.301+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373723, - "value":"No", - "question_id":13007, - "created_at":"2017-12-04T18:01:31.453+01:00", - "updated_at":"2017-12-04T18:01:31.453+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374382, - "value":"No", - "question_id":13007, - "created_at":"2017-12-06T13:23:16.486+01:00", - "updated_at":"2017-12-06T13:23:16.486+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374702, - "value":"No", - "question_id":13007, - "created_at":"2017-12-13T10:19:27.953+01:00", - "updated_at":"2017-12-13T10:19:27.953+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375052, - "value":"Yes", - "question_id":13007, - "created_at":"2017-12-14T14:22:34.605+01:00", - "updated_at":"2017-12-14T14:22:34.605+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375478, - "value":"No", - "question_id":13007, - "created_at":"2017-12-28T10:20:30.090+01:00", - "updated_at":"2017-12-28T10:20:30.090+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379106, - "value":"", - "question_id":13007, - "created_at":"2018-04-26T10:04:50.769+02:00", - "updated_at":"2018-04-26T10:04:50.769+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":379107, - "value":"", - "question_id":13007, - "created_at":"2018-04-26T10:04:50.781+02:00", - "updated_at":"2018-04-26T10:04:50.781+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379108, - "value":"", - "question_id":13007, - "created_at":"2018-04-26T10:04:50.788+02:00", - "updated_at":"2018-04-26T10:04:50.788+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":379110, - "value":"", - "question_id":13007, - "created_at":"2018-04-26T10:04:50.802+02:00", - "updated_at":"2018-04-26T10:04:50.802+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":379112, - "value":"", - "question_id":13007, - "created_at":"2018-04-26T10:04:50.866+02:00", - "updated_at":"2018-04-26T10:04:50.866+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":379113, - "value":"", - "question_id":13007, - "created_at":"2018-04-26T10:04:50.879+02:00", - "updated_at":"2018-04-26T10:04:50.879+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379114, - "value":"", - "question_id":13007, - "created_at":"2018-04-26T10:04:50.885+02:00", - "updated_at":"2018-04-26T10:04:50.885+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":379115, - "value":"", - "question_id":13007, - "created_at":"2018-04-26T10:04:50.894+02:00", - "updated_at":"2018-04-26T10:04:50.894+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379116, - "value":"", - "question_id":13007, - "created_at":"2018-04-26T10:04:50.914+02:00", - "updated_at":"2018-04-26T10:04:50.914+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383915, - "value":"No", - "question_id":13007, - "created_at":"2017-12-05T16:00:41.864+01:00", - "updated_at":"2017-12-05T16:00:41.864+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379117, - "value":"", - "question_id":13007, - "created_at":"2018-04-26T10:04:50.924+02:00", - "updated_at":"2018-04-26T10:04:50.924+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":1485868, - "value":"Yes", - "question_id":13007, - "created_at":"2020-11-17T15:23:27.385+01:00", - "updated_at":"2020-11-17T15:23:27.385+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":1502662, - "value":"No", - "question_id":13007, - "created_at":"2021-11-16T00:44:33.998+01:00", - "updated_at":"2021-11-16T00:44:33.998+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"sms-messaging", - "title":"Do you offer SMS messaging service?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"SMS messaging", - "title_detailed":"Service for users to send or receive SMS message by email.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365627, - "value":"No", - "question_id":13013, - "created_at":"2017-09-06T12:18:20.297+02:00", - "updated_at":"2017-09-06T12:18:20.297+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365686, - "value":"No", - "question_id":13013, - "created_at":"2017-09-07T15:32:34.103+02:00", - "updated_at":"2017-09-07T15:32:34.103+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365915, - "value":"No", - "question_id":13013, - "created_at":"2017-09-13T13:45:27.979+02:00", - "updated_at":"2017-09-13T13:45:27.979+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366359, - "value":"No", - "question_id":13013, - "created_at":"2017-09-29T13:52:01.044+02:00", - "updated_at":"2017-09-29T13:52:01.044+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366584, - "value":"No", - "question_id":13013, - "created_at":"2017-10-08T09:18:14.459+02:00", - "updated_at":"2017-10-08T09:18:14.459+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366889, - "value":"No", - "question_id":13013, - "created_at":"2017-10-11T09:36:28.892+02:00", - "updated_at":"2017-10-11T09:36:28.892+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367255, - "value":"No", - "question_id":13013, - "created_at":"2017-10-11T14:19:22.022+02:00", - "updated_at":"2017-10-11T14:19:22.022+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367749, - "value":"No", - "question_id":13013, - "created_at":"2017-10-23T19:33:24.522+02:00", - "updated_at":"2017-10-23T19:33:24.522+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367952, - "value":"No", - "question_id":13013, - "created_at":"2017-10-24T13:26:58.183+02:00", - "updated_at":"2017-10-24T13:26:58.183+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368193, - "value":"No", - "question_id":13013, - "created_at":"2017-10-30T09:26:49.145+01:00", - "updated_at":"2017-10-30T09:26:49.145+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369391, - "value":"No", - "question_id":13013, - "created_at":"2017-11-11T20:46:46.193+01:00", - "updated_at":"2017-11-11T20:46:46.193+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":369558, - "value":"", - "question_id":13013, - "created_at":"2017-11-15T17:38:36.978+01:00", - "updated_at":"2017-11-15T17:38:36.978+01:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369699, - "value":"No", - "question_id":13013, - "created_at":"2017-11-21T11:42:01.440+01:00", - "updated_at":"2017-11-21T11:42:01.440+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369831, - "value":"No", - "question_id":13013, - "created_at":"2017-11-21T13:48:39.563+01:00", - "updated_at":"2017-11-21T13:48:39.563+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369903, - "value":"No", - "question_id":13013, - "created_at":"2017-11-21T16:51:42.050+01:00", - "updated_at":"2017-11-21T16:51:42.050+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370221, - "value":"No", - "question_id":13013, - "created_at":"2017-11-23T14:09:25.166+01:00", - "updated_at":"2017-11-23T14:09:25.166+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370772, - "value":"No", - "question_id":13013, - "created_at":"2017-11-27T09:36:21.360+01:00", - "updated_at":"2017-11-27T09:36:21.360+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371148, - "value":"No", - "question_id":13013, - "created_at":"2017-11-27T14:03:21.945+01:00", - "updated_at":"2017-11-27T14:03:21.945+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371306, - "value":"No", - "question_id":13013, - "created_at":"2017-11-27T14:29:55.359+01:00", - "updated_at":"2017-11-27T14:29:55.359+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371775, - "value":"No", - "question_id":13013, - "created_at":"2017-11-28T13:18:27.929+01:00", - "updated_at":"2017-11-28T13:18:27.929+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372322, - "value":"No", - "question_id":13013, - "created_at":"2017-11-29T12:33:38.742+01:00", - "updated_at":"2017-11-29T12:33:38.742+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372643, - "value":"No", - "question_id":13013, - "created_at":"2017-11-29T21:46:04.975+01:00", - "updated_at":"2017-11-29T21:46:04.975+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372759, - "value":"No", - "question_id":13013, - "created_at":"2017-11-30T08:33:24.533+01:00", - "updated_at":"2017-11-30T08:33:24.533+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373256, - "value":"Yes", - "question_id":13013, - "created_at":"2017-12-04T11:14:42.639+01:00", - "updated_at":"2017-12-04T11:14:42.639+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373707, - "value":"Yes", - "question_id":13013, - "created_at":"2017-12-04T17:59:41.957+01:00", - "updated_at":"2017-12-04T17:59:41.957+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374348, - "value":"No", - "question_id":13013, - "created_at":"2017-12-06T13:13:54.906+01:00", - "updated_at":"2017-12-06T13:13:54.906+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375465, - "value":"Yes", - "question_id":13013, - "created_at":"2017-12-28T10:19:49.568+01:00", - "updated_at":"2017-12-28T10:19:49.568+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375701, - "value":"No", - "question_id":13013, - "created_at":"2018-01-09T17:27:57.296+01:00", - "updated_at":"2018-01-09T17:27:57.296+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375902, - "value":"No", - "question_id":13013, - "created_at":"2018-01-23T12:32:47.477+01:00", - "updated_at":"2018-01-23T12:32:47.477+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":376002, - "value":"No", - "question_id":13013, - "created_at":"2018-02-16T09:41:38.952+01:00", - "updated_at":"2018-02-16T09:41:38.952+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378372, - "value":"", - "question_id":13013, - "created_at":"2018-04-26T10:04:44.222+02:00", - "updated_at":"2018-04-26T10:04:44.222+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":378373, - "value":"", - "question_id":13013, - "created_at":"2018-04-26T10:04:44.234+02:00", - "updated_at":"2018-04-26T10:04:44.234+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378374, - "value":"", - "question_id":13013, - "created_at":"2018-04-26T10:04:44.240+02:00", - "updated_at":"2018-04-26T10:04:44.240+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":378377, - "value":"", - "question_id":13013, - "created_at":"2018-04-26T10:04:44.261+02:00", - "updated_at":"2018-04-26T10:04:44.261+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378378, - "value":"", - "question_id":13013, - "created_at":"2018-04-26T10:04:44.277+02:00", - "updated_at":"2018-04-26T10:04:44.277+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378379, - "value":"", - "question_id":13013, - "created_at":"2018-04-26T10:04:44.289+02:00", - "updated_at":"2018-04-26T10:04:44.289+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378380, - "value":"", - "question_id":13013, - "created_at":"2018-04-26T10:04:44.297+02:00", - "updated_at":"2018-04-26T10:04:44.297+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":378381, - "value":"", - "question_id":13013, - "created_at":"2018-04-26T10:04:44.314+02:00", - "updated_at":"2018-04-26T10:04:44.314+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378382, - "value":"", - "question_id":13013, - "created_at":"2018-04-26T10:04:44.321+02:00", - "updated_at":"2018-04-26T10:04:44.321+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383957, - "value":"No", - "question_id":13013, - "created_at":"2017-12-05T15:58:05.744+01:00", - "updated_at":"2017-12-05T15:58:05.744+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756408, - "value":"Yes", - "question_id":13013, - "created_at":"2018-11-05T14:34:28.302+01:00", - "updated_at":"2018-11-05T14:34:28.302+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378383, - "value":"", - "question_id":13013, - "created_at":"2018-04-26T10:04:44.330+02:00", - "updated_at":"2018-04-26T10:04:44.330+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":1499390, - "value":"Yes", - "question_id":13013, - "created_at":"2021-11-02T15:28:08.715+01:00", - "updated_at":"2021-11-02T15:28:08.715+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-development", - "title":"Do you offer Software development?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Software development", - "title_detailed":"Software development service for users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365626, - "value":"No", - "question_id":13009, - "created_at":"2017-09-06T12:18:16.501+02:00", - "updated_at":"2017-09-06T12:18:16.501+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365684, - "value":"Yes", - "question_id":13009, - "created_at":"2017-09-07T15:32:29.001+02:00", - "updated_at":"2017-09-07T15:32:29.001+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365914, - "value":"No", - "question_id":13009, - "created_at":"2017-09-13T13:45:26.103+02:00", - "updated_at":"2017-09-13T13:45:26.103+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366358, - "value":"No", - "question_id":13009, - "created_at":"2017-09-29T13:51:55.381+02:00", - "updated_at":"2017-09-29T13:51:55.381+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366582, - "value":"Yes", - "question_id":13009, - "created_at":"2017-10-08T09:17:42.384+02:00", - "updated_at":"2017-10-08T09:17:42.384+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366890, - "value":"No", - "question_id":13009, - "created_at":"2017-10-11T09:36:32.271+02:00", - "updated_at":"2017-10-11T09:36:32.271+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367343, - "value":"Yes", - "question_id":13009, - "created_at":"2017-10-11T21:17:36.938+02:00", - "updated_at":"2017-10-11T21:17:36.938+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367474, - "value":"No", - "question_id":13009, - "created_at":"2017-10-17T12:03:58.344+02:00", - "updated_at":"2017-10-17T12:03:58.344+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367748, - "value":"Yes", - "question_id":13009, - "created_at":"2017-10-23T19:33:19.419+02:00", - "updated_at":"2017-10-23T19:33:19.419+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367951, - "value":"Yes", - "question_id":13009, - "created_at":"2017-10-24T13:26:27.616+02:00", - "updated_at":"2017-10-24T13:26:27.616+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368192, - "value":"No", - "question_id":13009, - "created_at":"2017-10-30T09:26:46.320+01:00", - "updated_at":"2017-10-30T09:26:46.320+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368930, - "value":"Yes", - "question_id":13009, - "created_at":"2017-11-08T15:46:51.182+01:00", - "updated_at":"2017-11-08T15:46:51.182+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370220, - "value":"No", - "question_id":13009, - "created_at":"2017-11-23T14:09:22.193+01:00", - "updated_at":"2017-11-23T14:09:22.193+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":370365, - "value":"No", - "question_id":13009, - "created_at":"2017-11-24T16:13:41.707+01:00", - "updated_at":"2017-11-24T16:13:41.707+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370771, - "value":"No", - "question_id":13009, - "created_at":"2017-11-27T09:36:18.997+01:00", - "updated_at":"2017-11-27T09:36:18.997+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370957, - "value":"No", - "question_id":13009, - "created_at":"2017-11-27T10:40:55.788+01:00", - "updated_at":"2017-11-27T10:40:55.788+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371774, - "value":"No", - "question_id":13009, - "created_at":"2017-11-28T13:18:26.049+01:00", - "updated_at":"2017-11-28T13:18:26.049+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372321, - "value":"No", - "question_id":13009, - "created_at":"2017-11-29T12:33:33.007+01:00", - "updated_at":"2017-11-29T12:33:33.007+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372642, - "value":"No", - "question_id":13009, - "created_at":"2017-11-29T21:45:56.593+01:00", - "updated_at":"2017-11-29T21:45:56.593+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":372812, - "value":"No", - "question_id":13009, - "created_at":"2017-11-30T09:01:45.586+01:00", - "updated_at":"2017-11-30T09:01:45.586+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373255, - "value":"No", - "question_id":13009, - "created_at":"2017-12-04T11:14:38.191+01:00", - "updated_at":"2017-12-04T11:14:38.191+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373706, - "value":"Yes", - "question_id":13009, - "created_at":"2017-12-04T17:59:38.666+01:00", - "updated_at":"2017-12-04T17:59:38.666+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374347, - "value":"No", - "question_id":13009, - "created_at":"2017-12-06T13:13:45.509+01:00", - "updated_at":"2017-12-06T13:13:45.509+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375035, - "value":"Yes", - "question_id":13009, - "created_at":"2017-12-14T14:21:34.143+01:00", - "updated_at":"2017-12-14T14:21:34.143+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375501, - "value":"Yes", - "question_id":13009, - "created_at":"2017-12-28T10:36:28.729+01:00", - "updated_at":"2017-12-28T10:36:28.729+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375901, - "value":"No", - "question_id":13009, - "created_at":"2018-01-23T12:32:41.872+01:00", - "updated_at":"2018-01-23T12:32:41.872+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378322, - "value":"", - "question_id":13009, - "created_at":"2018-04-26T10:04:43.711+02:00", - "updated_at":"2018-04-26T10:04:43.711+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":378323, - "value":"", - "question_id":13009, - "created_at":"2018-04-26T10:04:43.727+02:00", - "updated_at":"2018-04-26T10:04:43.727+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378324, - "value":"", - "question_id":13009, - "created_at":"2018-04-26T10:04:43.735+02:00", - "updated_at":"2018-04-26T10:04:43.735+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":378328, - "value":"", - "question_id":13009, - "created_at":"2018-04-26T10:04:43.775+02:00", - "updated_at":"2018-04-26T10:04:43.775+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378329, - "value":"", - "question_id":13009, - "created_at":"2018-04-26T10:04:43.792+02:00", - "updated_at":"2018-04-26T10:04:43.792+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378330, - "value":"", - "question_id":13009, - "created_at":"2018-04-26T10:04:43.807+02:00", - "updated_at":"2018-04-26T10:04:43.807+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378331, - "value":"", - "question_id":13009, - "created_at":"2018-04-26T10:04:43.816+02:00", - "updated_at":"2018-04-26T10:04:43.816+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":378333, - "value":"", - "question_id":13009, - "created_at":"2018-04-26T10:04:43.843+02:00", - "updated_at":"2018-04-26T10:04:43.843+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378334, - "value":"", - "question_id":13009, - "created_at":"2018-04-26T10:04:43.851+02:00", - "updated_at":"2018-04-26T10:04:43.851+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378335, - "value":"", - "question_id":13009, - "created_at":"2018-04-26T10:04:43.861+02:00", - "updated_at":"2018-04-26T10:04:43.861+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383920, - "value":"Yes", - "question_id":13009, - "created_at":"2017-12-05T15:57:58.640+01:00", - "updated_at":"2017-12-05T15:57:58.640+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618238, - "value":"Yes", - "question_id":13009, - "created_at":"2018-10-28T18:41:36.939+01:00", - "updated_at":"2018-10-28T18:41:36.939+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":826842, - "value":"Yes", - "question_id":13009, - "created_at":"2019-09-17T09:45:14.422+02:00", - "updated_at":"2019-09-17T09:45:14.422+02:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":999966, - "value":"Yes", - "question_id":13009, - "created_at":"2019-11-03T22:52:54.174+01:00", - "updated_at":"2019-11-03T22:52:54.174+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":1470699, - "value":"Yes", - "question_id":13009, - "created_at":"2020-10-16T14:53:58.842+02:00", - "updated_at":"2020-10-16T14:53:58.842+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":1488587, - "value":"No", - "question_id":13009, - "created_at":"2020-11-27T10:22:19.236+01:00", - "updated_at":"2020-11-27T10:22:19.236+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":1510381, - "value":"Yes", - "question_id":13009, - "created_at":"2021-12-02T10:37:28.615+01:00", - "updated_at":"2021-12-02T10:37:28.615+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"software-licenses", - "title":"Do you offer Software license provision", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Software licenses", - "title_detailed":"Provision of software for organisational or institutional purchase.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365653, - "value":"Yes", - "question_id":12941, - "created_at":"2017-09-06T12:20:01.642+02:00", - "updated_at":"2017-09-06T12:20:01.642+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365936, - "value":"Yes", - "question_id":12941, - "created_at":"2017-09-13T13:47:06.501+02:00", - "updated_at":"2017-09-13T13:47:06.501+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366860, - "value":"Yes", - "question_id":12941, - "created_at":"2017-10-11T09:34:18.715+02:00", - "updated_at":"2017-10-11T09:34:18.715+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366961, - "value":"Yes", - "question_id":12941, - "created_at":"2017-10-11T10:52:47.679+02:00", - "updated_at":"2017-10-11T10:52:47.679+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367162, - "value":"Yes", - "question_id":12941, - "created_at":"2017-10-11T13:46:12.542+02:00", - "updated_at":"2017-10-11T13:46:12.542+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367521, - "value":"No", - "question_id":12941, - "created_at":"2017-10-17T12:10:51.126+02:00", - "updated_at":"2017-10-17T12:10:51.126+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":367661, - "value":"Yes", - "question_id":12941, - "created_at":"2017-10-23T12:27:14.183+02:00", - "updated_at":"2017-10-23T12:27:14.183+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367773, - "value":"Yes", - "question_id":12941, - "created_at":"2017-10-23T19:40:58.607+02:00", - "updated_at":"2017-10-23T19:40:58.607+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367977, - "value":"Yes", - "question_id":12941, - "created_at":"2017-10-24T13:33:06.252+02:00", - "updated_at":"2017-10-24T13:33:06.252+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368379, - "value":"No", - "question_id":12941, - "created_at":"2017-10-31T09:00:03.762+01:00", - "updated_at":"2017-10-31T09:00:03.762+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368571, - "value":"No", - "question_id":12941, - "created_at":"2017-10-31T14:43:01.848+01:00", - "updated_at":"2017-10-31T14:43:01.848+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368951, - "value":"No", - "question_id":12941, - "created_at":"2017-11-08T15:54:04.116+01:00", - "updated_at":"2017-11-08T15:54:04.116+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369262, - "value":"Yes", - "question_id":12941, - "created_at":"2017-11-10T15:41:09.168+01:00", - "updated_at":"2017-11-10T15:41:09.168+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369815, - "value":"Yes", - "question_id":12941, - "created_at":"2017-11-21T13:45:17.504+01:00", - "updated_at":"2017-11-21T13:45:17.504+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370258, - "value":"No", - "question_id":12941, - "created_at":"2017-11-23T14:16:33.441+01:00", - "updated_at":"2017-11-23T14:16:33.441+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370802, - "value":"No", - "question_id":12941, - "created_at":"2017-11-27T09:38:27.900+01:00", - "updated_at":"2017-11-27T09:38:27.900+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371137, - "value":"Yes", - "question_id":12941, - "created_at":"2017-11-27T13:58:00.784+01:00", - "updated_at":"2017-11-27T13:58:00.784+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371243, - "value":"Yes", - "question_id":12941, - "created_at":"2017-11-27T14:20:41.893+01:00", - "updated_at":"2017-11-27T14:20:41.893+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371803, - "value":"No", - "question_id":12941, - "created_at":"2017-11-28T13:20:00.863+01:00", - "updated_at":"2017-11-28T13:20:00.863+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372353, - "value":"Yes", - "question_id":12941, - "created_at":"2017-11-29T12:37:58.252+01:00", - "updated_at":"2017-11-29T12:37:58.252+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372676, - "value":"No", - "question_id":12941, - "created_at":"2017-11-29T21:54:39.004+01:00", - "updated_at":"2017-11-29T21:54:39.004+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373270, - "value":"Yes", - "question_id":12941, - "created_at":"2017-12-04T11:16:36.735+01:00", - "updated_at":"2017-12-04T11:16:36.735+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373734, - "value":"No", - "question_id":12941, - "created_at":"2017-12-04T18:02:38.986+01:00", - "updated_at":"2017-12-04T18:02:38.986+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374397, - "value":"Yes", - "question_id":12941, - "created_at":"2017-12-06T13:28:41.079+01:00", - "updated_at":"2017-12-06T13:28:41.079+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374929, - "value":"Yes", - "question_id":12941, - "created_at":"2017-12-14T12:49:23.395+01:00", - "updated_at":"2017-12-14T12:49:23.395+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375062, - "value":"No", - "question_id":12941, - "created_at":"2017-12-14T14:23:25.841+01:00", - "updated_at":"2017-12-14T14:23:25.841+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375488, - "value":"Yes", - "question_id":12941, - "created_at":"2017-12-28T10:23:59.694+01:00", - "updated_at":"2017-12-28T10:23:59.694+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379596, - "value":"", - "question_id":12941, - "created_at":"2018-04-26T10:04:55.332+02:00", - "updated_at":"2018-04-26T10:04:55.332+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379598, - "value":"", - "question_id":12941, - "created_at":"2018-04-26T10:04:55.351+02:00", - "updated_at":"2018-04-26T10:04:55.351+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":379603, - "value":"", - "question_id":12941, - "created_at":"2018-04-26T10:04:55.384+02:00", - "updated_at":"2018-04-26T10:04:55.384+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":379604, - "value":"", - "question_id":12941, - "created_at":"2018-04-26T10:04:55.398+02:00", - "updated_at":"2018-04-26T10:04:55.398+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379606, - "value":"", - "question_id":12941, - "created_at":"2018-04-26T10:04:55.415+02:00", - "updated_at":"2018-04-26T10:04:55.415+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379607, - "value":"", - "question_id":12941, - "created_at":"2018-04-26T10:04:55.436+02:00", - "updated_at":"2018-04-26T10:04:55.436+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383909, - "value":"No", - "question_id":12941, - "created_at":"2017-12-06T13:44:58.657+01:00", - "updated_at":"2017-12-06T13:44:58.657+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618228, - "value":"Yes", - "question_id":12941, - "created_at":"2018-10-28T18:35:38.829+01:00", - "updated_at":"2018-10-28T18:35:38.829+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641557, - "value":"Yes", - "question_id":12941, - "created_at":"2018-10-30T13:54:37.774+01:00", - "updated_at":"2018-10-30T13:54:37.774+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756388, - "value":"Yes", - "question_id":12941, - "created_at":"2018-11-05T14:27:43.631+01:00", - "updated_at":"2018-11-05T14:27:43.631+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379608, - "value":"", - "question_id":12941, - "created_at":"2018-04-26T10:04:55.445+02:00", - "updated_at":"2018-04-26T10:04:55.445+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493632, - "value":"Planned", - "question_id":12941, - "created_at":"2020-12-18T14:51:39.696+01:00", - "updated_at":"2020-12-18T14:51:39.696+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1501060, - "value":"Planned", - "question_id":12941, - "created_at":"2021-11-09T16:15:45.498+01:00", - "updated_at":"2021-11-09T16:15:45.498+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":1502659, - "value":"No", - "question_id":12941, - "created_at":"2021-11-16T00:42:14.427+01:00", - "updated_at":"2021-11-16T00:42:14.427+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1508459, - "value":"No", - "question_id":12941, - "created_at":"2021-11-25T10:28:20.619+01:00", - "updated_at":"2021-11-25T10:28:20.619+01:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":1510380, - "value":"Planned", - "question_id":12941, - "created_at":"2021-12-02T10:36:14.347+01:00", - "updated_at":"2021-12-02T10:36:14.347+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"storage-co-location", - "title":"Do you offer Housing/co-location?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Housing/co-location", - "title_detailed":"Hosting of user equipment in a managed data centre.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365644, - "value":"No", - "question_id":13011, - "created_at":"2017-09-06T12:19:22.715+02:00", - "updated_at":"2017-09-06T12:19:22.715+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365716, - "value":"No", - "question_id":13011, - "created_at":"2017-09-07T15:35:02.333+02:00", - "updated_at":"2017-09-07T15:35:02.333+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365930, - "value":"Yes", - "question_id":13011, - "created_at":"2017-09-13T13:46:23.358+02:00", - "updated_at":"2017-09-13T13:46:23.358+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366603, - "value":"Yes", - "question_id":13011, - "created_at":"2017-10-08T09:19:44.622+02:00", - "updated_at":"2017-10-08T09:19:44.622+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366871, - "value":"No", - "question_id":13011, - "created_at":"2017-10-11T09:35:13.172+02:00", - "updated_at":"2017-10-11T09:35:13.172+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367157, - "value":"No", - "question_id":13011, - "created_at":"2017-10-11T13:44:20.006+02:00", - "updated_at":"2017-10-11T13:44:20.006+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367508, - "value":"No", - "question_id":13011, - "created_at":"2017-10-17T12:08:17.962+02:00", - "updated_at":"2017-10-17T12:08:17.962+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367765, - "value":"No", - "question_id":13011, - "created_at":"2017-10-23T19:40:08.579+02:00", - "updated_at":"2017-10-23T19:40:08.579+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367968, - "value":"No", - "question_id":13011, - "created_at":"2017-10-24T13:31:10.308+02:00", - "updated_at":"2017-10-24T13:31:10.308+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368565, - "value":"Planned", - "question_id":13011, - "created_at":"2017-10-31T14:41:25.500+01:00", - "updated_at":"2017-10-31T14:41:25.500+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368969, - "value":"Yes", - "question_id":13011, - "created_at":"2017-11-08T15:59:35.654+01:00", - "updated_at":"2017-11-08T15:59:35.654+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369253, - "value":"Yes", - "question_id":13011, - "created_at":"2017-11-10T15:40:23.034+01:00", - "updated_at":"2017-11-10T15:40:23.034+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369911, - "value":"No", - "question_id":13011, - "created_at":"2017-11-21T16:52:54.200+01:00", - "updated_at":"2017-11-21T16:52:54.200+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370243, - "value":"No", - "question_id":13011, - "created_at":"2017-11-23T14:13:14.009+01:00", - "updated_at":"2017-11-23T14:13:14.009+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370789, - "value":"No", - "question_id":13011, - "created_at":"2017-11-27T09:37:18.887+01:00", - "updated_at":"2017-11-27T09:37:18.887+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371259, - "value":"No", - "question_id":13011, - "created_at":"2017-11-27T14:22:01.775+01:00", - "updated_at":"2017-11-27T14:22:01.775+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371440, - "value":"No", - "question_id":13011, - "created_at":"2017-11-27T14:50:40.053+01:00", - "updated_at":"2017-11-27T14:50:40.053+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371792, - "value":"No", - "question_id":13011, - "created_at":"2017-11-28T13:19:23.656+01:00", - "updated_at":"2017-11-28T13:19:23.656+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371875, - "value":"No", - "question_id":13011, - "created_at":"2017-11-28T15:03:59.269+01:00", - "updated_at":"2017-11-28T15:03:59.269+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372338, - "value":"No", - "question_id":13011, - "created_at":"2017-11-29T12:35:05.234+01:00", - "updated_at":"2017-11-29T12:35:05.234+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372661, - "value":"Yes", - "question_id":13011, - "created_at":"2017-11-29T21:48:36.418+01:00", - "updated_at":"2017-11-29T21:48:36.418+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373724, - "value":"No", - "question_id":13011, - "created_at":"2017-12-04T18:01:34.608+01:00", - "updated_at":"2017-12-04T18:01:34.608+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374070, - "value":"Planned", - "question_id":13011, - "created_at":"2017-12-06T07:27:29.014+01:00", - "updated_at":"2017-12-06T07:27:29.014+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374383, - "value":"No", - "question_id":13011, - "created_at":"2017-12-06T13:23:56.273+01:00", - "updated_at":"2017-12-06T13:23:56.273+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375053, - "value":"No", - "question_id":13011, - "created_at":"2017-12-14T14:22:37.564+01:00", - "updated_at":"2017-12-14T14:22:37.564+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375479, - "value":"No", - "question_id":13011, - "created_at":"2017-12-28T10:20:33.560+01:00", - "updated_at":"2017-12-28T10:20:33.560+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375697, - "value":"Yes", - "question_id":13011, - "created_at":"2018-01-09T17:04:41.177+01:00", - "updated_at":"2018-01-09T17:04:41.177+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375913, - "value":"No", - "question_id":13011, - "created_at":"2018-01-23T12:35:26.624+01:00", - "updated_at":"2018-01-23T12:35:26.624+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379156, - "value":"", - "question_id":13011, - "created_at":"2018-04-26T10:04:51.242+02:00", - "updated_at":"2018-04-26T10:04:51.242+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":379157, - "value":"", - "question_id":13011, - "created_at":"2018-04-26T10:04:51.253+02:00", - "updated_at":"2018-04-26T10:04:51.253+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379158, - "value":"", - "question_id":13011, - "created_at":"2018-04-26T10:04:51.259+02:00", - "updated_at":"2018-04-26T10:04:51.259+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":379160, - "value":"", - "question_id":13011, - "created_at":"2018-04-26T10:04:51.271+02:00", - "updated_at":"2018-04-26T10:04:51.271+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":379161, - "value":"", - "question_id":13011, - "created_at":"2018-04-26T10:04:51.277+02:00", - "updated_at":"2018-04-26T10:04:51.277+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":379162, - "value":"", - "question_id":13011, - "created_at":"2018-04-26T10:04:51.283+02:00", - "updated_at":"2018-04-26T10:04:51.283+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":379163, - "value":"", - "question_id":13011, - "created_at":"2018-04-26T10:04:51.298+02:00", - "updated_at":"2018-04-26T10:04:51.298+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":379164, - "value":"", - "question_id":13011, - "created_at":"2018-04-26T10:04:51.309+02:00", - "updated_at":"2018-04-26T10:04:51.309+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379165, - "value":"", - "question_id":13011, - "created_at":"2018-04-26T10:04:51.315+02:00", - "updated_at":"2018-04-26T10:04:51.315+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":379166, - "value":"", - "question_id":13011, - "created_at":"2018-04-26T10:04:51.322+02:00", - "updated_at":"2018-04-26T10:04:51.322+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":379167, - "value":"", - "question_id":13011, - "created_at":"2018-04-26T10:04:51.335+02:00", - "updated_at":"2018-04-26T10:04:51.335+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379168, - "value":"", - "question_id":13011, - "created_at":"2018-04-26T10:04:51.344+02:00", - "updated_at":"2018-04-26T10:04:51.344+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383976, - "value":"Yes", - "question_id":13011, - "created_at":"2017-12-06T13:42:46.199+01:00", - "updated_at":"2017-12-06T13:42:46.199+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379169, - "value":"", - "question_id":13011, - "created_at":"2018-04-26T10:04:51.353+02:00", - "updated_at":"2018-04-26T10:04:51.353+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":1482911, - "value":"Yes", - "question_id":13011, - "created_at":"2020-11-14T16:03:13.342+01:00", - "updated_at":"2020-11-14T16:03:13.342+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"survey-tool", - "title":"Do you offer Survey/polling tool?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Survey/polling tool", - "title_detailed":"Provision of applications for creating surveys or polls.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365652, - "value":"No", - "question_id":12937, - "created_at":"2017-09-06T12:19:58.432+02:00", - "updated_at":"2017-09-06T12:19:58.432+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365935, - "value":"No", - "question_id":12937, - "created_at":"2017-09-13T13:46:58.995+02:00", - "updated_at":"2017-09-13T13:46:58.995+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366861, - "value":"No", - "question_id":12937, - "created_at":"2017-10-11T09:34:23.647+02:00", - "updated_at":"2017-10-11T09:34:23.647+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366960, - "value":"No", - "question_id":12937, - "created_at":"2017-10-11T10:52:43.346+02:00", - "updated_at":"2017-10-11T10:52:43.346+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367161, - "value":"No", - "question_id":12937, - "created_at":"2017-10-11T13:46:01.214+02:00", - "updated_at":"2017-10-11T13:46:01.214+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367772, - "value":"No", - "question_id":12937, - "created_at":"2017-10-23T19:40:54.186+02:00", - "updated_at":"2017-10-23T19:40:54.186+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367976, - "value":"No", - "question_id":12937, - "created_at":"2017-10-24T13:32:49.584+02:00", - "updated_at":"2017-10-24T13:32:49.584+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368950, - "value":"No", - "question_id":12937, - "created_at":"2017-11-08T15:53:57.567+01:00", - "updated_at":"2017-11-08T15:53:57.567+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369261, - "value":"No", - "question_id":12937, - "created_at":"2017-11-10T15:41:03.197+01:00", - "updated_at":"2017-11-10T15:41:03.197+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369717, - "value":"Yes", - "question_id":12937, - "created_at":"2017-11-21T11:52:30.548+01:00", - "updated_at":"2017-11-21T11:52:30.548+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369814, - "value":"No", - "question_id":12937, - "created_at":"2017-11-21T13:45:13.509+01:00", - "updated_at":"2017-11-21T13:45:13.509+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370257, - "value":"No", - "question_id":12937, - "created_at":"2017-11-23T14:16:30.794+01:00", - "updated_at":"2017-11-23T14:16:30.794+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":370407, - "value":"Yes", - "question_id":12937, - "created_at":"2017-11-24T16:44:46.164+01:00", - "updated_at":"2017-11-24T16:44:46.164+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371245, - "value":"No", - "question_id":12937, - "created_at":"2017-11-27T14:21:12.463+01:00", - "updated_at":"2017-11-27T14:21:12.463+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371451, - "value":"No", - "question_id":12937, - "created_at":"2017-11-27T14:52:09.459+01:00", - "updated_at":"2017-11-27T14:52:09.459+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371802, - "value":"No", - "question_id":12937, - "created_at":"2017-11-28T13:19:59.002+01:00", - "updated_at":"2017-11-28T13:19:59.002+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372351, - "value":"Yes", - "question_id":12937, - "created_at":"2017-11-29T12:37:25.250+01:00", - "updated_at":"2017-11-29T12:37:25.250+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372670, - "value":"No", - "question_id":12937, - "created_at":"2017-11-29T21:49:39.520+01:00", - "updated_at":"2017-11-29T21:49:39.520+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":373198, - "value":"No", - "question_id":12937, - "created_at":"2017-12-03T13:51:12.043+01:00", - "updated_at":"2017-12-03T13:51:12.043+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373733, - "value":"No", - "question_id":12937, - "created_at":"2017-12-04T18:02:36.164+01:00", - "updated_at":"2017-12-04T18:02:36.164+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374077, - "value":"No", - "question_id":12937, - "created_at":"2017-12-06T07:29:02.804+01:00", - "updated_at":"2017-12-06T07:29:02.804+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374712, - "value":"No", - "question_id":12937, - "created_at":"2017-12-13T10:22:23.595+01:00", - "updated_at":"2017-12-13T10:22:23.595+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375061, - "value":"No", - "question_id":12937, - "created_at":"2017-12-14T14:23:21.660+01:00", - "updated_at":"2017-12-14T14:23:21.660+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375506, - "value":"No", - "question_id":12937, - "created_at":"2017-12-28T10:37:30.773+01:00", - "updated_at":"2017-12-28T10:37:30.773+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375918, - "value":"No", - "question_id":12937, - "created_at":"2018-01-23T12:36:19.084+01:00", - "updated_at":"2018-01-23T12:36:19.084+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379542, - "value":"", - "question_id":12937, - "created_at":"2018-04-26T10:04:54.835+02:00", - "updated_at":"2018-04-26T10:04:54.835+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":379543, - "value":"", - "question_id":12937, - "created_at":"2018-04-26T10:04:54.847+02:00", - "updated_at":"2018-04-26T10:04:54.847+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379544, - "value":"", - "question_id":12937, - "created_at":"2018-04-26T10:04:54.854+02:00", - "updated_at":"2018-04-26T10:04:54.854+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":379546, - "value":"", - "question_id":12937, - "created_at":"2018-04-26T10:04:54.871+02:00", - "updated_at":"2018-04-26T10:04:54.871+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":379547, - "value":"", - "question_id":12937, - "created_at":"2018-04-26T10:04:54.878+02:00", - "updated_at":"2018-04-26T10:04:54.878+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":379548, - "value":"", - "question_id":12937, - "created_at":"2018-04-26T10:04:54.885+02:00", - "updated_at":"2018-04-26T10:04:54.885+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":379549, - "value":"", - "question_id":12937, - "created_at":"2018-04-26T10:04:54.900+02:00", - "updated_at":"2018-04-26T10:04:54.900+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":379550, - "value":"", - "question_id":12937, - "created_at":"2018-04-26T10:04:54.912+02:00", - "updated_at":"2018-04-26T10:04:54.912+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379551, - "value":"", - "question_id":12937, - "created_at":"2018-04-26T10:04:54.919+02:00", - "updated_at":"2018-04-26T10:04:54.919+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":379552, - "value":"", - "question_id":12937, - "created_at":"2018-04-26T10:04:54.925+02:00", - "updated_at":"2018-04-26T10:04:54.925+02:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":379553, - "value":"", - "question_id":12937, - "created_at":"2018-04-26T10:04:54.951+02:00", - "updated_at":"2018-04-26T10:04:54.951+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":379554, - "value":"", - "question_id":12937, - "created_at":"2018-04-26T10:04:54.973+02:00", - "updated_at":"2018-04-26T10:04:54.973+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379555, - "value":"", - "question_id":12937, - "created_at":"2018-04-26T10:04:54.983+02:00", - "updated_at":"2018-04-26T10:04:54.983+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":379556, - "value":"", - "question_id":12937, - "created_at":"2018-04-26T10:04:54.989+02:00", - "updated_at":"2018-04-26T10:04:54.989+02:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383894, - "value":"No", - "question_id":12937, - "created_at":"2017-12-05T16:01:29.804+01:00", - "updated_at":"2017-12-05T16:01:29.804+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379557, - "value":"", - "question_id":12937, - "created_at":"2018-04-26T10:04:54.996+02:00", - "updated_at":"2018-04-26T10:04:54.996+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1483472, - "value":"No", - "question_id":12937, - "created_at":"2020-11-16T14:01:47.413+01:00", - "updated_at":"2020-11-16T14:01:47.413+01:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493640, - "value":"Planned", - "question_id":12937, - "created_at":"2020-12-18T15:05:10.230+01:00", - "updated_at":"2020-12-18T15:05:10.230+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"system-backup", - "title":"Do you offer Hot standby?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Hot standby", - "title_detailed":"Failover protection for primary web servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365591, - "value":"No", - "question_id":13015, - "created_at":"2017-09-06T12:14:19.932+02:00", - "updated_at":"2017-09-06T12:14:19.932+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365788, - "value":"Yes", - "question_id":13015, - "created_at":"2017-09-07T15:50:35.236+02:00", - "updated_at":"2017-09-07T15:50:35.236+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366335, - "value":"Yes", - "question_id":13015, - "created_at":"2017-09-29T13:46:39.227+02:00", - "updated_at":"2017-09-29T13:46:39.227+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366608, - "value":"Yes", - "question_id":13015, - "created_at":"2017-10-08T09:21:41.356+02:00", - "updated_at":"2017-10-08T09:21:41.356+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366757, - "value":"Yes", - "question_id":13015, - "created_at":"2017-10-10T12:56:23.847+02:00", - "updated_at":"2017-10-10T12:56:23.847+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367638, - "value":"No", - "question_id":13015, - "created_at":"2017-10-23T11:50:57.436+02:00", - "updated_at":"2017-10-23T11:50:57.436+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367718, - "value":"Yes", - "question_id":13015, - "created_at":"2017-10-23T19:27:22.946+02:00", - "updated_at":"2017-10-23T19:27:22.946+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367921, - "value":"Yes", - "question_id":13015, - "created_at":"2017-10-24T13:17:26.889+02:00", - "updated_at":"2017-10-24T13:17:26.889+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368735, - "value":"Yes", - "question_id":13015, - "created_at":"2017-11-02T13:24:03.745+01:00", - "updated_at":"2017-11-02T13:24:03.745+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369204, - "value":"Yes", - "question_id":13015, - "created_at":"2017-11-10T15:34:20.612+01:00", - "updated_at":"2017-11-10T15:34:20.612+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369377, - "value":"Yes", - "question_id":13015, - "created_at":"2017-11-11T20:42:21.522+01:00", - "updated_at":"2017-11-11T20:42:21.522+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370184, - "value":"Yes", - "question_id":13015, - "created_at":"2017-11-23T14:03:22.094+01:00", - "updated_at":"2017-11-23T14:03:22.094+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370744, - "value":"No", - "question_id":13015, - "created_at":"2017-11-27T09:33:10.980+01:00", - "updated_at":"2017-11-27T09:33:10.980+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370943, - "value":"No", - "question_id":13015, - "created_at":"2017-11-27T10:38:14.801+01:00", - "updated_at":"2017-11-27T10:38:14.801+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371112, - "value":"Yes", - "question_id":13015, - "created_at":"2017-11-27T13:46:25.665+01:00", - "updated_at":"2017-11-27T13:46:25.665+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371571, - "value":"Yes", - "question_id":13015, - "created_at":"2017-11-27T16:39:09.788+01:00", - "updated_at":"2017-11-27T16:39:09.788+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371738, - "value":"Yes", - "question_id":13015, - "created_at":"2017-11-28T13:09:51.534+01:00", - "updated_at":"2017-11-28T13:09:51.534+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":372042, - "value":"Yes", - "question_id":13015, - "created_at":"2017-11-28T16:48:26.467+01:00", - "updated_at":"2017-11-28T16:48:26.467+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372278, - "value":"Yes", - "question_id":13015, - "created_at":"2017-11-29T12:20:35.935+01:00", - "updated_at":"2017-11-29T12:20:35.935+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372605, - "value":"Yes", - "question_id":13015, - "created_at":"2017-11-29T21:38:42.273+01:00", - "updated_at":"2017-11-29T21:38:42.273+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372447, - "value":"Yes", - "question_id":13015, - "created_at":"2017-11-29T13:05:43.467+01:00", - "updated_at":"2017-11-29T13:05:43.467+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373237, - "value":"Yes", - "question_id":13015, - "created_at":"2017-12-04T11:10:01.532+01:00", - "updated_at":"2017-12-04T11:10:01.532+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373680, - "value":"No", - "question_id":13015, - "created_at":"2017-12-04T17:55:18.737+01:00", - "updated_at":"2017-12-04T17:55:18.737+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374672, - "value":"Yes", - "question_id":13015, - "created_at":"2017-12-13T09:41:04.277+01:00", - "updated_at":"2017-12-13T09:41:04.277+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375015, - "value":"No", - "question_id":13015, - "created_at":"2017-12-14T14:19:31.011+01:00", - "updated_at":"2017-12-14T14:19:31.011+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375429, - "value":"Yes", - "question_id":13015, - "created_at":"2017-12-28T10:07:41.813+01:00", - "updated_at":"2017-12-28T10:07:41.813+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375720, - "value":"Yes", - "question_id":13015, - "created_at":"2018-01-18T13:24:25.122+01:00", - "updated_at":"2018-01-18T13:24:25.122+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377697, - "value":"", - "question_id":13015, - "created_at":"2018-04-26T10:04:37.881+02:00", - "updated_at":"2018-04-26T10:04:37.881+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377699, - "value":"", - "question_id":13015, - "created_at":"2018-04-26T10:04:37.895+02:00", - "updated_at":"2018-04-26T10:04:37.895+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377703, - "value":"", - "question_id":13015, - "created_at":"2018-04-26T10:04:37.923+02:00", - "updated_at":"2018-04-26T10:04:37.923+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377705, - "value":"", - "question_id":13015, - "created_at":"2018-04-26T10:04:37.936+02:00", - "updated_at":"2018-04-26T10:04:37.936+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377706, - "value":"", - "question_id":13015, - "created_at":"2018-04-26T10:04:37.942+02:00", - "updated_at":"2018-04-26T10:04:37.942+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377707, - "value":"", - "question_id":13015, - "created_at":"2018-04-26T10:04:37.958+02:00", - "updated_at":"2018-04-26T10:04:37.958+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377708, - "value":"", - "question_id":13015, - "created_at":"2018-04-26T10:04:37.965+02:00", - "updated_at":"2018-04-26T10:04:37.965+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383982, - "value":"Yes", - "question_id":13015, - "created_at":"2017-12-05T15:48:42.946+01:00", - "updated_at":"2017-12-05T15:48:42.946+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618215, - "value":"Yes", - "question_id":13015, - "created_at":"2018-10-28T18:31:59.743+01:00", - "updated_at":"2018-10-28T18:31:59.743+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":618245, - "value":"Planned", - "question_id":13015, - "created_at":"2018-10-29T08:14:10.733+01:00", - "updated_at":"2018-10-29T08:14:10.733+01:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641549, - "value":"Yes", - "question_id":13015, - "created_at":"2018-10-30T13:51:27.853+01:00", - "updated_at":"2018-10-30T13:51:27.853+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":683660, - "value":"Yes", - "question_id":13015, - "created_at":"2018-10-31T18:24:19.621+01:00", - "updated_at":"2018-10-31T18:24:19.621+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756372, - "value":"Yes", - "question_id":13015, - "created_at":"2018-11-05T14:03:11.328+01:00", - "updated_at":"2018-11-05T14:03:11.328+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774389, - "value":"Yes", - "question_id":13015, - "created_at":"2018-11-15T12:44:47.283+01:00", - "updated_at":"2018-11-15T12:44:47.283+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":827097, - "value":"Yes", - "question_id":13015, - "created_at":"2019-10-02T17:03:46.709+02:00", - "updated_at":"2019-10-02T17:03:46.709+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":1483001, - "value":"Yes", - "question_id":13015, - "created_at":"2020-11-16T09:02:24.127+01:00", - "updated_at":"2020-11-16T09:02:24.127+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"timeserver-ntp", - "title":"Do you provide Timeserver/NTP?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"NTP service", - "title_detailed":"Allows the synchronization of computer clocks over the Internet.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365601, - "value":"No", - "question_id":12973, - "created_at":"2017-09-06T12:15:17.198+02:00", - "updated_at":"2017-09-06T12:15:17.198+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365953, - "value":"Yes", - "question_id":12973, - "created_at":"2017-09-13T14:14:46.296+02:00", - "updated_at":"2017-09-13T14:14:46.296+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":366186, - "value":"Yes", - "question_id":12973, - "created_at":"2017-09-26T09:12:57.711+02:00", - "updated_at":"2017-09-26T09:12:57.711+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366345, - "value":"No", - "question_id":12973, - "created_at":"2017-09-29T13:48:47.606+02:00", - "updated_at":"2017-09-29T13:48:47.606+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366565, - "value":"No", - "question_id":12973, - "created_at":"2017-10-08T09:14:47.490+02:00", - "updated_at":"2017-10-08T09:14:47.490+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":366660, - "value":"Yes", - "question_id":12973, - "created_at":"2017-10-09T11:13:32.093+02:00", - "updated_at":"2017-10-09T11:13:32.093+02:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366761, - "value":"No", - "question_id":12973, - "created_at":"2017-10-10T13:00:05.263+02:00", - "updated_at":"2017-10-10T13:00:05.263+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":366819, - "value":"No", - "question_id":12973, - "created_at":"2017-10-10T16:18:33.040+02:00", - "updated_at":"2017-10-10T16:18:33.040+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366902, - "value":"Yes", - "question_id":12973, - "created_at":"2017-10-11T09:39:13.857+02:00", - "updated_at":"2017-10-11T09:39:13.857+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367458, - "value":"No", - "question_id":12973, - "created_at":"2017-10-17T11:57:58.984+02:00", - "updated_at":"2017-10-17T11:57:58.984+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367932, - "value":"No", - "question_id":12973, - "created_at":"2017-10-24T13:20:04.859+02:00", - "updated_at":"2017-10-24T13:20:04.859+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368178, - "value":"No", - "question_id":12973, - "created_at":"2017-10-30T09:21:56.636+01:00", - "updated_at":"2017-10-30T09:21:56.636+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368535, - "value":"No", - "question_id":12973, - "created_at":"2017-10-31T14:31:08.523+01:00", - "updated_at":"2017-10-31T14:31:08.523+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369216, - "value":"Yes", - "question_id":12973, - "created_at":"2017-11-10T15:35:56.686+01:00", - "updated_at":"2017-11-10T15:35:56.686+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369384, - "value":"No", - "question_id":12973, - "created_at":"2017-11-11T20:44:33.370+01:00", - "updated_at":"2017-11-11T20:44:33.370+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370203, - "value":"No", - "question_id":12973, - "created_at":"2017-11-23T14:07:23.678+01:00", - "updated_at":"2017-11-23T14:07:23.678+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370756, - "value":"No", - "question_id":12973, - "created_at":"2017-11-27T09:34:11.991+01:00", - "updated_at":"2017-11-27T09:34:11.991+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370949, - "value":"No", - "question_id":12973, - "created_at":"2017-11-27T10:38:57.648+01:00", - "updated_at":"2017-11-27T10:38:57.648+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371119, - "value":"No", - "question_id":12973, - "created_at":"2017-11-27T13:47:09.660+01:00", - "updated_at":"2017-11-27T13:47:09.660+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371752, - "value":"No", - "question_id":12973, - "created_at":"2017-11-28T13:11:13.090+01:00", - "updated_at":"2017-11-28T13:11:13.090+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372293, - "value":"Yes", - "question_id":12973, - "created_at":"2017-11-29T12:25:07.865+01:00", - "updated_at":"2017-11-29T12:25:07.865+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372619, - "value":"No", - "question_id":12973, - "created_at":"2017-11-29T21:41:04.888+01:00", - "updated_at":"2017-11-29T21:41:04.888+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373244, - "value":"No", - "question_id":12973, - "created_at":"2017-12-04T11:11:16.438+01:00", - "updated_at":"2017-12-04T11:11:16.438+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":373465, - "value":"No", - "question_id":12973, - "created_at":"2017-12-04T12:41:31.151+01:00", - "updated_at":"2017-12-04T12:41:31.151+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373691, - "value":"No", - "question_id":12973, - "created_at":"2017-12-04T17:56:55.003+01:00", - "updated_at":"2017-12-04T17:56:55.003+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374321, - "value":"No", - "question_id":12973, - "created_at":"2017-12-06T13:01:37.566+01:00", - "updated_at":"2017-12-06T13:01:37.566+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375024, - "value":"Yes", - "question_id":12973, - "created_at":"2017-12-14T14:20:27.437+01:00", - "updated_at":"2017-12-14T14:20:27.437+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375324, - "value":"Yes", - "question_id":12973, - "created_at":"2017-12-27T14:41:56.988+01:00", - "updated_at":"2017-12-27T14:41:56.988+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375434, - "value":"Yes", - "question_id":12973, - "created_at":"2017-12-28T10:08:41.165+01:00", - "updated_at":"2017-12-28T10:08:41.165+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377932, - "value":"", - "question_id":12973, - "created_at":"2018-04-26T10:04:39.883+02:00", - "updated_at":"2018-04-26T10:04:39.883+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":377933, - "value":"", - "question_id":12973, - "created_at":"2018-04-26T10:04:39.896+02:00", - "updated_at":"2018-04-26T10:04:39.896+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377934, - "value":"", - "question_id":12973, - "created_at":"2018-04-26T10:04:39.903+02:00", - "updated_at":"2018-04-26T10:04:39.903+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":377938, - "value":"", - "question_id":12973, - "created_at":"2018-04-26T10:04:39.940+02:00", - "updated_at":"2018-04-26T10:04:39.940+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377939, - "value":"", - "question_id":12973, - "created_at":"2018-04-26T10:04:39.949+02:00", - "updated_at":"2018-04-26T10:04:39.949+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377940, - "value":"", - "question_id":12973, - "created_at":"2018-04-26T10:04:39.960+02:00", - "updated_at":"2018-04-26T10:04:39.960+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377941, - "value":"", - "question_id":12973, - "created_at":"2018-04-26T10:04:39.967+02:00", - "updated_at":"2018-04-26T10:04:39.967+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377942, - "value":"", - "question_id":12973, - "created_at":"2018-04-26T10:04:39.983+02:00", - "updated_at":"2018-04-26T10:04:39.983+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383960, - "value":"Yes", - "question_id":12973, - "created_at":"2017-12-05T15:55:23.760+01:00", - "updated_at":"2017-12-05T15:55:23.760+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618239, - "value":"Yes", - "question_id":12973, - "created_at":"2018-10-28T18:42:08.860+01:00", - "updated_at":"2018-10-28T18:42:08.860+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":999967, - "value":"Yes", - "question_id":12973, - "created_at":"2019-11-03T22:53:52.943+01:00", - "updated_at":"2019-11-03T22:53:52.943+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377943, - "value":"", - "question_id":12973, - "created_at":"2018-04-26T10:04:40.001+02:00", - "updated_at":"2018-04-26T10:04:40.001+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":1482910, - "value":"Yes", - "question_id":12973, - "created_at":"2020-11-14T16:01:41.921+01:00", - "updated_at":"2020-11-14T16:01:41.921+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":1502658, - "value":"No", - "question_id":12973, - "created_at":"2021-11-16T00:41:49.177+01:00", - "updated_at":"2021-11-16T00:41:49.177+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-portal", - "title":"Do you offer Multimedia content portal?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", - "title_detailed":"Multi-media content portal", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365598, - "value":"No", - "question_id":12927, - "created_at":"2017-09-06T12:15:06.304+02:00", - "updated_at":"2017-09-06T12:15:06.304+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365902, - "value":"Yes", - "question_id":12927, - "created_at":"2017-09-13T13:43:20.856+02:00", - "updated_at":"2017-09-13T13:43:20.856+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365949, - "value":"Yes", - "question_id":12927, - "created_at":"2017-09-13T14:14:31.625+02:00", - "updated_at":"2017-09-13T14:14:31.625+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366342, - "value":"No", - "question_id":12927, - "created_at":"2017-09-29T13:48:34.820+02:00", - "updated_at":"2017-09-29T13:48:34.820+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366559, - "value":"No", - "question_id":12927, - "created_at":"2017-10-08T09:14:00.931+02:00", - "updated_at":"2017-10-08T09:14:00.931+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":366654, - "value":"Yes", - "question_id":12927, - "created_at":"2017-10-09T11:10:29.167+02:00", - "updated_at":"2017-10-09T11:10:29.167+02:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":366816, - "value":"No", - "question_id":12927, - "created_at":"2017-10-10T16:18:10.876+02:00", - "updated_at":"2017-10-10T16:18:10.876+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366898, - "value":"Yes", - "question_id":12927, - "created_at":"2017-10-11T09:38:51.375+02:00", - "updated_at":"2017-10-11T09:38:51.375+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367151, - "value":"No", - "question_id":12927, - "created_at":"2017-10-11T13:39:10.916+02:00", - "updated_at":"2017-10-11T13:39:10.916+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367453, - "value":"Yes", - "question_id":12927, - "created_at":"2017-10-17T11:57:00.098+02:00", - "updated_at":"2017-10-17T11:57:00.098+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367929, - "value":"No", - "question_id":12927, - "created_at":"2017-10-24T13:19:32.344+02:00", - "updated_at":"2017-10-24T13:19:32.344+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368175, - "value":"No", - "question_id":12927, - "created_at":"2017-10-30T09:21:47.010+01:00", - "updated_at":"2017-10-30T09:21:47.010+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368508, - "value":"Yes", - "question_id":12927, - "created_at":"2017-10-31T14:28:19.860+01:00", - "updated_at":"2017-10-31T14:28:19.860+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368908, - "value":"No", - "question_id":12927, - "created_at":"2017-11-08T15:37:22.274+01:00", - "updated_at":"2017-11-08T15:37:22.274+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369068, - "value":"Yes", - "question_id":12927, - "created_at":"2017-11-10T11:02:54.022+01:00", - "updated_at":"2017-11-10T11:02:54.022+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369213, - "value":"Yes", - "question_id":12927, - "created_at":"2017-11-10T15:35:40.561+01:00", - "updated_at":"2017-11-10T15:35:40.561+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370199, - "value":"No", - "question_id":12927, - "created_at":"2017-11-23T14:06:55.978+01:00", - "updated_at":"2017-11-23T14:06:55.978+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370753, - "value":"No", - "question_id":12927, - "created_at":"2017-11-27T09:34:03.876+01:00", - "updated_at":"2017-11-27T09:34:03.876+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370946, - "value":"No", - "question_id":12927, - "created_at":"2017-11-27T10:38:49.030+01:00", - "updated_at":"2017-11-27T10:38:49.030+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371116, - "value":"No", - "question_id":12927, - "created_at":"2017-11-27T13:46:57.924+01:00", - "updated_at":"2017-11-27T13:46:57.924+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371749, - "value":"Yes", - "question_id":12927, - "created_at":"2017-11-28T13:11:00.575+01:00", - "updated_at":"2017-11-28T13:11:00.575+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372289, - "value":"Yes", - "question_id":12927, - "created_at":"2017-11-29T12:22:47.728+01:00", - "updated_at":"2017-11-29T12:22:47.728+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372616, - "value":"No", - "question_id":12927, - "created_at":"2017-11-29T21:40:50.765+01:00", - "updated_at":"2017-11-29T21:40:50.765+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373241, - "value":"Yes", - "question_id":12927, - "created_at":"2017-12-04T11:10:52.064+01:00", - "updated_at":"2017-12-04T11:10:52.064+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":373459, - "value":"No", - "question_id":12927, - "created_at":"2017-12-04T12:40:26.432+01:00", - "updated_at":"2017-12-04T12:40:26.432+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373688, - "value":"No", - "question_id":12927, - "created_at":"2017-12-04T17:56:35.829+01:00", - "updated_at":"2017-12-04T17:56:35.829+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374923, - "value":"Yes", - "question_id":12927, - "created_at":"2017-12-14T12:47:38.523+01:00", - "updated_at":"2017-12-14T12:47:38.523+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375317, - "value":"Yes", - "question_id":12927, - "created_at":"2017-12-27T14:38:54.178+01:00", - "updated_at":"2017-12-27T14:38:54.178+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375445, - "value":"Yes", - "question_id":12927, - "created_at":"2017-12-28T10:18:05.631+01:00", - "updated_at":"2017-12-28T10:18:05.631+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":376012, - "value":"Yes", - "question_id":12927, - "created_at":"2018-02-16T09:46:15.262+01:00", - "updated_at":"2018-02-16T09:46:15.262+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377790, - "value":"", - "question_id":12927, - "created_at":"2018-04-26T10:04:38.608+02:00", - "updated_at":"2018-04-26T10:04:38.608+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":377791, - "value":"", - "question_id":12927, - "created_at":"2018-04-26T10:04:38.617+02:00", - "updated_at":"2018-04-26T10:04:38.617+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377792, - "value":"", - "question_id":12927, - "created_at":"2018-04-26T10:04:38.622+02:00", - "updated_at":"2018-04-26T10:04:38.622+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377797, - "value":"", - "question_id":12927, - "created_at":"2018-04-26T10:04:38.654+02:00", - "updated_at":"2018-04-26T10:04:38.654+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":377798, - "value":"", - "question_id":12927, - "created_at":"2018-04-26T10:04:38.659+02:00", - "updated_at":"2018-04-26T10:04:38.659+02:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377799, - "value":"", - "question_id":12927, - "created_at":"2018-04-26T10:04:38.667+02:00", - "updated_at":"2018-04-26T10:04:38.667+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377800, - "value":"", - "question_id":12927, - "created_at":"2018-04-26T10:04:38.684+02:00", - "updated_at":"2018-04-26T10:04:38.684+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":384020, - "value":"Yes", - "question_id":12927, - "created_at":"2017-12-05T15:54:52.003+01:00", - "updated_at":"2017-12-05T15:54:52.003+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756392, - "value":"Yes", - "question_id":12927, - "created_at":"2018-11-05T14:29:12.853+01:00", - "updated_at":"2018-11-05T14:29:12.853+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377801, - "value":"", - "question_id":12927, - "created_at":"2018-04-26T10:04:38.690+02:00", - "updated_at":"2018-04-26T10:04:38.690+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":1485838, - "value":"Yes", - "question_id":12927, - "created_at":"2020-11-17T15:19:48.095+01:00", - "updated_at":"2020-11-17T15:19:48.095+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":1496992, - "value":"Yes", - "question_id":12927, - "created_at":"2021-08-31T08:42:27.904+02:00", - "updated_at":"2021-08-31T08:42:27.904+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":1500314, - "value":"Yes", - "question_id":12927, - "created_at":"2021-11-04T15:25:33.389+01:00", - "updated_at":"2021-11-04T15:25:33.389+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"video-production", - "title":"Do you offer Event recording and streaming", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Event recording/streaming", - "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365645, - "value":"No", - "question_id":13023, - "created_at":"2017-09-06T12:19:28.593+02:00", - "updated_at":"2017-09-06T12:19:28.593+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366375, - "value":"No", - "question_id":13023, - "created_at":"2017-09-29T13:53:28.621+02:00", - "updated_at":"2017-09-29T13:53:28.621+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":366673, - "value":"No", - "question_id":13023, - "created_at":"2017-10-09T11:19:47.420+02:00", - "updated_at":"2017-10-09T11:19:47.420+02:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366779, - "value":"No", - "question_id":13023, - "created_at":"2017-10-10T13:19:57.956+02:00", - "updated_at":"2017-10-10T13:19:57.956+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366917, - "value":"No", - "question_id":13023, - "created_at":"2017-10-11T10:42:29.440+02:00", - "updated_at":"2017-10-11T10:42:29.440+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367367, - "value":"No", - "question_id":13023, - "created_at":"2017-10-11T21:21:32.287+02:00", - "updated_at":"2017-10-11T21:21:32.287+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367555, - "value":"No", - "question_id":13023, - "created_at":"2017-10-17T14:45:04.607+02:00", - "updated_at":"2017-10-17T14:45:04.607+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367969, - "value":"No", - "question_id":13023, - "created_at":"2017-10-24T13:31:26.681+02:00", - "updated_at":"2017-10-24T13:31:26.681+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368971, - "value":"No", - "question_id":13023, - "created_at":"2017-11-08T16:00:25.757+01:00", - "updated_at":"2017-11-08T16:00:25.757+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369254, - "value":"Planned", - "question_id":13023, - "created_at":"2017-11-10T15:40:26.154+01:00", - "updated_at":"2017-11-10T15:40:26.154+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369707, - "value":"Yes", - "question_id":13023, - "created_at":"2017-11-21T11:45:49.334+01:00", - "updated_at":"2017-11-21T11:45:49.334+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370244, - "value":"No", - "question_id":13023, - "created_at":"2017-11-23T14:13:16.868+01:00", - "updated_at":"2017-11-23T14:13:16.868+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370790, - "value":"No", - "question_id":13023, - "created_at":"2017-11-27T09:37:21.230+01:00", - "updated_at":"2017-11-27T09:37:21.230+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371257, - "value":"Planned", - "question_id":13023, - "created_at":"2017-11-27T14:21:57.568+01:00", - "updated_at":"2017-11-27T14:21:57.568+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371441, - "value":"No", - "question_id":13023, - "created_at":"2017-11-27T14:50:57.308+01:00", - "updated_at":"2017-11-27T14:50:57.308+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371793, - "value":"No", - "question_id":13023, - "created_at":"2017-11-28T13:19:29.613+01:00", - "updated_at":"2017-11-28T13:19:29.613+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372339, - "value":"No", - "question_id":13023, - "created_at":"2017-11-29T12:35:15.904+01:00", - "updated_at":"2017-11-29T12:35:15.904+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372663, - "value":"No", - "question_id":13023, - "created_at":"2017-11-29T21:48:51.221+01:00", - "updated_at":"2017-11-29T21:48:51.221+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373275, - "value":"Yes", - "question_id":13023, - "created_at":"2017-12-04T11:16:58.729+01:00", - "updated_at":"2017-12-04T11:16:58.729+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373726, - "value":"No", - "question_id":13023, - "created_at":"2017-12-04T18:01:49.453+01:00", - "updated_at":"2017-12-04T18:01:49.453+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374386, - "value":"No", - "question_id":13023, - "created_at":"2017-12-06T13:24:20.408+01:00", - "updated_at":"2017-12-06T13:24:20.408+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374705, - "value":"Yes", - "question_id":13023, - "created_at":"2017-12-13T10:19:56.203+01:00", - "updated_at":"2017-12-13T10:19:56.203+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375054, - "value":"No", - "question_id":13023, - "created_at":"2017-12-14T14:22:40.100+01:00", - "updated_at":"2017-12-14T14:22:40.100+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375482, - "value":"Yes", - "question_id":13023, - "created_at":"2017-12-28T10:22:53.786+01:00", - "updated_at":"2017-12-28T10:22:53.786+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375914, - "value":"No", - "question_id":13023, - "created_at":"2018-01-23T12:35:30.318+01:00", - "updated_at":"2018-01-23T12:35:30.318+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379206, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.630+02:00", - "updated_at":"2018-04-26T10:04:51.630+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":379207, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.638+02:00", - "updated_at":"2018-04-26T10:04:51.638+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379208, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.643+02:00", - "updated_at":"2018-04-26T10:04:51.643+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":379210, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.653+02:00", - "updated_at":"2018-04-26T10:04:51.653+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":379211, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.659+02:00", - "updated_at":"2018-04-26T10:04:51.659+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":379212, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.665+02:00", - "updated_at":"2018-04-26T10:04:51.665+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":379213, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.673+02:00", - "updated_at":"2018-04-26T10:04:51.673+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":379214, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.678+02:00", - "updated_at":"2018-04-26T10:04:51.678+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":379215, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.683+02:00", - "updated_at":"2018-04-26T10:04:51.683+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":379216, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.692+02:00", - "updated_at":"2018-04-26T10:04:51.692+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379217, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.697+02:00", - "updated_at":"2018-04-26T10:04:51.697+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":379218, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.703+02:00", - "updated_at":"2018-04-26T10:04:51.703+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":379219, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.708+02:00", - "updated_at":"2018-04-26T10:04:51.708+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":379220, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.718+02:00", - "updated_at":"2018-04-26T10:04:51.718+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379221, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.725+02:00", - "updated_at":"2018-04-26T10:04:51.725+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383990, - "value":"No", - "question_id":13023, - "created_at":"2017-12-06T13:43:19.687+01:00", - "updated_at":"2017-12-06T13:43:19.687+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379222, - "value":"", - "question_id":13023, - "created_at":"2018-04-26T10:04:51.732+02:00", - "updated_at":"2018-04-26T10:04:51.732+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1483417, - "value":"No", - "question_id":13023, - "created_at":"2020-11-16T14:00:35.233+01:00", - "updated_at":"2020-11-16T14:00:35.233+01:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-learning-environment", - "title":"Do you offer Virtual Learning Environment (VLE) software?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"VLE", - "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365656, - "value":"Yes", - "question_id":13025, - "created_at":"2017-09-06T12:20:13.764+02:00", - "updated_at":"2017-09-06T12:20:13.764+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365726, - "value":"Yes", - "question_id":13025, - "created_at":"2017-09-07T15:36:01.460+02:00", - "updated_at":"2017-09-07T15:36:01.460+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366678, - "value":"Planned", - "question_id":13025, - "created_at":"2017-10-09T12:05:35.333+02:00", - "updated_at":"2017-10-09T12:05:35.333+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366911, - "value":"Yes", - "question_id":13025, - "created_at":"2017-10-11T10:41:22.403+02:00", - "updated_at":"2017-10-11T10:41:22.403+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366965, - "value":"Planned", - "question_id":13025, - "created_at":"2017-10-11T10:53:06.997+02:00", - "updated_at":"2017-10-11T10:53:06.997+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367163, - "value":"Yes", - "question_id":13025, - "created_at":"2017-10-11T13:46:27.051+02:00", - "updated_at":"2017-10-11T13:46:27.051+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367379, - "value":"Yes", - "question_id":13025, - "created_at":"2017-10-11T21:22:30.485+02:00", - "updated_at":"2017-10-11T21:22:30.485+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367525, - "value":"No", - "question_id":13025, - "created_at":"2017-10-17T12:11:21.469+02:00", - "updated_at":"2017-10-17T12:11:21.469+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367776, - "value":"No", - "question_id":13025, - "created_at":"2017-10-23T19:41:17.037+02:00", - "updated_at":"2017-10-23T19:41:17.037+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367980, - "value":"Yes", - "question_id":13025, - "created_at":"2017-10-24T13:33:37.343+02:00", - "updated_at":"2017-10-24T13:33:37.343+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368380, - "value":"Yes", - "question_id":13025, - "created_at":"2017-10-31T09:01:05.254+01:00", - "updated_at":"2017-10-31T09:01:05.254+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368955, - "value":"Yes", - "question_id":13025, - "created_at":"2017-11-08T15:54:23.226+01:00", - "updated_at":"2017-11-08T15:54:23.226+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369265, - "value":"Yes", - "question_id":13025, - "created_at":"2017-11-10T15:41:21.354+01:00", - "updated_at":"2017-11-10T15:41:21.354+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":369539, - "value":"Yes", - "question_id":13025, - "created_at":"2017-11-13T20:39:36.605+01:00", - "updated_at":"2017-11-13T20:39:36.605+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369918, - "value":"Yes", - "question_id":13025, - "created_at":"2017-11-21T16:53:44.463+01:00", - "updated_at":"2017-11-21T16:53:44.463+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370261, - "value":"No", - "question_id":13025, - "created_at":"2017-11-23T14:16:41.130+01:00", - "updated_at":"2017-11-23T14:16:41.130+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370805, - "value":"No", - "question_id":13025, - "created_at":"2017-11-27T09:38:36.187+01:00", - "updated_at":"2017-11-27T09:38:36.187+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371139, - "value":"Yes", - "question_id":13025, - "created_at":"2017-11-27T13:58:26.604+01:00", - "updated_at":"2017-11-27T13:58:26.604+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371807, - "value":"Yes", - "question_id":13025, - "created_at":"2017-11-28T13:20:12.533+01:00", - "updated_at":"2017-11-28T13:20:12.533+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371879, - "value":"Planned", - "question_id":13025, - "created_at":"2017-11-28T15:06:28.500+01:00", - "updated_at":"2017-11-28T15:06:28.500+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372358, - "value":"No", - "question_id":13025, - "created_at":"2017-11-29T12:38:55.691+01:00", - "updated_at":"2017-11-29T12:38:55.691+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372672, - "value":"Planned", - "question_id":13025, - "created_at":"2017-11-29T21:54:16.950+01:00", - "updated_at":"2017-11-29T21:54:16.950+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":372867, - "value":"No", - "question_id":13025, - "created_at":"2017-11-30T13:40:42.400+01:00", - "updated_at":"2017-11-30T13:40:42.400+01:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373737, - "value":"Yes", - "question_id":13025, - "created_at":"2017-12-04T18:03:01.623+01:00", - "updated_at":"2017-12-04T18:03:01.623+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374079, - "value":"Yes", - "question_id":13025, - "created_at":"2017-12-06T07:29:22.693+01:00", - "updated_at":"2017-12-06T07:29:22.693+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374401, - "value":"Yes", - "question_id":13025, - "created_at":"2017-12-06T13:30:30.091+01:00", - "updated_at":"2017-12-06T13:30:30.091+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374717, - "value":"Yes", - "question_id":13025, - "created_at":"2017-12-13T10:22:50.055+01:00", - "updated_at":"2017-12-13T10:22:50.055+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375065, - "value":"Yes", - "question_id":13025, - "created_at":"2017-12-14T14:23:32.120+01:00", - "updated_at":"2017-12-14T14:23:32.120+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375491, - "value":"Yes", - "question_id":13025, - "created_at":"2017-12-28T10:24:07.248+01:00", - "updated_at":"2017-12-28T10:24:07.248+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379744, - "value":"", - "question_id":13025, - "created_at":"2018-04-26T10:04:56.406+02:00", - "updated_at":"2018-04-26T10:04:56.406+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379746, - "value":"", - "question_id":13025, - "created_at":"2018-04-26T10:04:56.420+02:00", - "updated_at":"2018-04-26T10:04:56.420+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":379750, - "value":"", - "question_id":13025, - "created_at":"2018-04-26T10:04:56.451+02:00", - "updated_at":"2018-04-26T10:04:56.451+02:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379752, - "value":"", - "question_id":13025, - "created_at":"2018-04-26T10:04:56.473+02:00", - "updated_at":"2018-04-26T10:04:56.473+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":379753, - "value":"", - "question_id":13025, - "created_at":"2018-04-26T10:04:56.489+02:00", - "updated_at":"2018-04-26T10:04:56.489+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379756, - "value":"", - "question_id":13025, - "created_at":"2018-04-26T10:04:56.517+02:00", - "updated_at":"2018-04-26T10:04:56.517+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379757, - "value":"", - "question_id":13025, - "created_at":"2018-04-26T10:04:56.524+02:00", - "updated_at":"2018-04-26T10:04:56.524+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383993, - "value":"Yes", - "question_id":13025, - "created_at":"2017-12-06T13:45:31.692+01:00", - "updated_at":"2017-12-06T13:45:31.692+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618224, - "value":"Yes", - "question_id":13025, - "created_at":"2018-10-28T18:34:40.974+01:00", - "updated_at":"2018-10-28T18:34:40.974+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":618246, - "value":"Yes", - "question_id":13025, - "created_at":"2018-10-29T08:14:45.161+01:00", - "updated_at":"2018-10-29T08:14:45.161+01:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641550, - "value":"Yes", - "question_id":13025, - "created_at":"2018-10-30T13:51:50.015+01:00", - "updated_at":"2018-10-30T13:51:50.015+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756373, - "value":"Yes", - "question_id":13025, - "created_at":"2018-11-05T14:03:21.641+01:00", - "updated_at":"2018-11-05T14:03:21.641+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":1470711, - "value":"Yes", - "question_id":13025, - "created_at":"2020-10-16T17:52:08.011+02:00", - "updated_at":"2020-10-16T17:52:08.011+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1501058, - "value":"Planned", - "question_id":13025, - "created_at":"2021-11-09T16:14:44.887+01:00", - "updated_at":"2021-11-09T16:14:44.887+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"virtual-machines-iaas", - "title":"Do you offer Virtual machines/IaaS?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Virtual machines/IaaS", - "title_detailed":"Access to virtual computing resources.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365646, - "value":"No", - "question_id":13027, - "created_at":"2017-09-06T12:19:30.763+02:00", - "updated_at":"2017-09-06T12:19:30.763+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365717, - "value":"No", - "question_id":13027, - "created_at":"2017-09-07T15:35:10.084+02:00", - "updated_at":"2017-09-07T15:35:10.084+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365931, - "value":"No", - "question_id":13027, - "created_at":"2017-09-13T13:46:34.534+02:00", - "updated_at":"2017-09-13T13:46:34.534+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366376, - "value":"No", - "question_id":13027, - "created_at":"2017-09-29T13:53:30.533+02:00", - "updated_at":"2017-09-29T13:53:30.533+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366605, - "value":"No", - "question_id":13027, - "created_at":"2017-10-08T09:20:02.261+02:00", - "updated_at":"2017-10-08T09:20:02.261+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366778, - "value":"No", - "question_id":13027, - "created_at":"2017-10-10T13:19:02.565+02:00", - "updated_at":"2017-10-10T13:19:02.565+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366870, - "value":"No", - "question_id":13027, - "created_at":"2017-10-11T09:35:01.951+02:00", - "updated_at":"2017-10-11T09:35:01.951+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367511, - "value":"Yes", - "question_id":13027, - "created_at":"2017-10-17T12:09:00.030+02:00", - "updated_at":"2017-10-17T12:09:00.030+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367766, - "value":"No", - "question_id":13027, - "created_at":"2017-10-23T19:40:18.709+02:00", - "updated_at":"2017-10-23T19:40:18.709+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367970, - "value":"No", - "question_id":13027, - "created_at":"2017-10-24T13:31:34.161+02:00", - "updated_at":"2017-10-24T13:31:34.161+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368566, - "value":"Yes", - "question_id":13027, - "created_at":"2017-10-31T14:41:36.511+01:00", - "updated_at":"2017-10-31T14:41:36.511+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369091, - "value":"No", - "question_id":13027, - "created_at":"2017-11-10T11:16:37.175+01:00", - "updated_at":"2017-11-10T11:16:37.175+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369255, - "value":"Yes", - "question_id":13027, - "created_at":"2017-11-10T15:40:29.794+01:00", - "updated_at":"2017-11-10T15:40:29.794+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369805, - "value":"Yes", - "question_id":13027, - "created_at":"2017-11-21T13:39:34.102+01:00", - "updated_at":"2017-11-21T13:39:34.102+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369912, - "value":"No", - "question_id":13027, - "created_at":"2017-11-21T16:53:02.191+01:00", - "updated_at":"2017-11-21T16:53:02.191+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370245, - "value":"No", - "question_id":13027, - "created_at":"2017-11-23T14:13:19.708+01:00", - "updated_at":"2017-11-23T14:13:19.708+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370793, - "value":"Planned", - "question_id":13027, - "created_at":"2017-11-27T09:37:46.879+01:00", - "updated_at":"2017-11-27T09:37:46.879+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371255, - "value":"No", - "question_id":13027, - "created_at":"2017-11-27T14:21:52.817+01:00", - "updated_at":"2017-11-27T14:21:52.817+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371442, - "value":"No", - "question_id":13027, - "created_at":"2017-11-27T14:50:59.534+01:00", - "updated_at":"2017-11-27T14:50:59.534+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371794, - "value":"No", - "question_id":13027, - "created_at":"2017-11-28T13:19:32.299+01:00", - "updated_at":"2017-11-28T13:19:32.299+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372340, - "value":"No", - "question_id":13027, - "created_at":"2017-11-29T12:35:19.234+01:00", - "updated_at":"2017-11-29T12:35:19.234+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373274, - "value":"Yes", - "question_id":13027, - "created_at":"2017-12-04T11:16:55.056+01:00", - "updated_at":"2017-12-04T11:16:55.056+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373727, - "value":"No", - "question_id":13027, - "created_at":"2017-12-04T18:01:52.256+01:00", - "updated_at":"2017-12-04T18:01:52.256+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":373800, - "value":"Yes", - "question_id":13027, - "created_at":"2017-12-04T19:25:51.546+01:00", - "updated_at":"2017-12-04T19:25:51.546+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":373848, - "value":"No", - "question_id":13027, - "created_at":"2017-12-05T11:45:25.242+01:00", - "updated_at":"2017-12-05T11:45:25.242+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374387, - "value":"No", - "question_id":13027, - "created_at":"2017-12-06T13:24:29.208+01:00", - "updated_at":"2017-12-06T13:24:29.208+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374927, - "value":"Yes", - "question_id":13027, - "created_at":"2017-12-14T12:49:08.567+01:00", - "updated_at":"2017-12-14T12:49:08.567+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375055, - "value":"Yes", - "question_id":13027, - "created_at":"2017-12-14T14:22:41.462+01:00", - "updated_at":"2017-12-14T14:22:41.462+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375484, - "value":"No", - "question_id":13027, - "created_at":"2017-12-28T10:23:36.717+01:00", - "updated_at":"2017-12-28T10:23:36.717+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375698, - "value":"No", - "question_id":13027, - "created_at":"2018-01-09T17:15:43.369+01:00", - "updated_at":"2018-01-09T17:15:43.369+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379261, - "value":"", - "question_id":13027, - "created_at":"2018-04-26T10:04:51.983+02:00", - "updated_at":"2018-04-26T10:04:51.983+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":379262, - "value":"", - "question_id":13027, - "created_at":"2018-04-26T10:04:51.992+02:00", - "updated_at":"2018-04-26T10:04:51.992+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379263, - "value":"", - "question_id":13027, - "created_at":"2018-04-26T10:04:51.996+02:00", - "updated_at":"2018-04-26T10:04:51.996+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":379266, - "value":"", - "question_id":13027, - "created_at":"2018-04-26T10:04:52.011+02:00", - "updated_at":"2018-04-26T10:04:52.011+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":379267, - "value":"", - "question_id":13027, - "created_at":"2018-04-26T10:04:52.023+02:00", - "updated_at":"2018-04-26T10:04:52.023+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":379268, - "value":"", - "question_id":13027, - "created_at":"2018-04-26T10:04:52.032+02:00", - "updated_at":"2018-04-26T10:04:52.032+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379269, - "value":"", - "question_id":13027, - "created_at":"2018-04-26T10:04:52.036+02:00", - "updated_at":"2018-04-26T10:04:52.036+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379271, - "value":"", - "question_id":13027, - "created_at":"2018-04-26T10:04:52.055+02:00", - "updated_at":"2018-04-26T10:04:52.055+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379272, - "value":"", - "question_id":13027, - "created_at":"2018-04-26T10:04:52.064+02:00", - "updated_at":"2018-04-26T10:04:52.064+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383991, - "value":"Yes", - "question_id":13027, - "created_at":"2017-12-05T16:00:53.217+01:00", - "updated_at":"2017-12-05T16:00:53.217+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756401, - "value":"Yes", - "question_id":13027, - "created_at":"2018-11-05T14:32:26.457+01:00", - "updated_at":"2018-11-05T14:32:26.457+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":963607, - "value":"Yes", - "question_id":13027, - "created_at":"2019-10-30T16:55:32.797+01:00", - "updated_at":"2019-10-30T16:55:32.797+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":1470845, - "value":"Yes", - "question_id":13027, - "created_at":"2020-10-20T15:38:24.944+02:00", - "updated_at":"2020-10-20T15:38:24.944+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"voip", - "title":"Do you offer VoIP?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"VoIP", - "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365585, - "value":"No", - "question_id":13033, - "created_at":"2017-09-06T12:14:01.536+02:00", - "updated_at":"2017-09-06T12:14:01.536+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":366177, - "value":"Yes", - "question_id":13033, - "created_at":"2017-09-26T09:09:20.066+02:00", - "updated_at":"2017-09-26T09:09:20.066+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366615, - "value":"Yes", - "question_id":13033, - "created_at":"2017-10-08T09:22:46.281+02:00", - "updated_at":"2017-10-08T09:22:46.281+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367139, - "value":"Yes", - "question_id":13033, - "created_at":"2017-10-11T13:33:03.405+02:00", - "updated_at":"2017-10-11T13:33:03.405+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367632, - "value":"Yes", - "question_id":13033, - "created_at":"2017-10-23T11:50:05.632+02:00", - "updated_at":"2017-10-23T11:50:05.632+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367712, - "value":"Yes", - "question_id":13033, - "created_at":"2017-10-23T19:26:53.136+02:00", - "updated_at":"2017-10-23T19:26:53.136+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368388, - "value":"Yes", - "question_id":13033, - "created_at":"2017-10-31T13:03:54.698+01:00", - "updated_at":"2017-10-31T13:03:54.698+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368727, - "value":"Yes", - "question_id":13033, - "created_at":"2017-11-02T13:23:43.110+01:00", - "updated_at":"2017-11-02T13:23:43.110+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368901, - "value":"Yes", - "question_id":13033, - "created_at":"2017-11-08T15:34:52.882+01:00", - "updated_at":"2017-11-08T15:34:52.882+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370169, - "value":"Yes", - "question_id":13033, - "created_at":"2017-11-23T13:56:10.091+01:00", - "updated_at":"2017-11-23T13:56:10.091+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370736, - "value":"No", - "question_id":13033, - "created_at":"2017-11-27T09:32:39.012+01:00", - "updated_at":"2017-11-27T09:32:39.012+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370937, - "value":"Yes", - "question_id":13033, - "created_at":"2017-11-27T10:37:44.472+01:00", - "updated_at":"2017-11-27T10:37:44.472+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371562, - "value":"No", - "question_id":13033, - "created_at":"2017-11-27T16:37:52.333+01:00", - "updated_at":"2017-11-27T16:37:52.333+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371731, - "value":"No", - "question_id":13033, - "created_at":"2017-11-28T13:09:25.684+01:00", - "updated_at":"2017-11-28T13:09:25.684+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":372038, - "value":"Yes", - "question_id":13033, - "created_at":"2017-11-28T16:47:45.671+01:00", - "updated_at":"2017-11-28T16:47:45.671+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372268, - "value":"Yes", - "question_id":13033, - "created_at":"2017-11-29T12:18:19.928+01:00", - "updated_at":"2017-11-29T12:18:19.928+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372440, - "value":"No", - "question_id":13033, - "created_at":"2017-11-29T13:02:14.020+01:00", - "updated_at":"2017-11-29T13:02:14.020+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372600, - "value":"Yes", - "question_id":13033, - "created_at":"2017-11-29T21:37:48.231+01:00", - "updated_at":"2017-11-29T21:37:48.231+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":372805, - "value":"No", - "question_id":13033, - "created_at":"2017-11-30T08:56:11.272+01:00", - "updated_at":"2017-11-30T08:56:11.272+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373303, - "value":"Yes", - "question_id":13033, - "created_at":"2017-12-04T11:22:44.762+01:00", - "updated_at":"2017-12-04T11:22:44.762+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373673, - "value":"No", - "question_id":13033, - "created_at":"2017-12-04T17:54:29.974+01:00", - "updated_at":"2017-12-04T17:54:29.974+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374668, - "value":"", - "question_id":13033, - "created_at":"2017-12-13T09:39:46.112+01:00", - "updated_at":"2017-12-13T09:39:46.112+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375008, - "value":"No", - "question_id":13033, - "created_at":"2017-12-14T14:19:07.210+01:00", - "updated_at":"2017-12-14T14:19:07.210+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375435, - "value":"Yes", - "question_id":13033, - "created_at":"2017-12-28T10:10:24.878+01:00", - "updated_at":"2017-12-28T10:10:24.878+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375718, - "value":"No", - "question_id":13033, - "created_at":"2018-01-18T13:23:59.972+01:00", - "updated_at":"2018-01-18T13:23:59.972+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377455, - "value":"", - "question_id":13033, - "created_at":"2018-04-26T10:04:35.994+02:00", - "updated_at":"2018-04-26T10:04:35.994+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":377456, - "value":"", - "question_id":13033, - "created_at":"2018-04-26T10:04:36.004+02:00", - "updated_at":"2018-04-26T10:04:36.004+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377457, - "value":"", - "question_id":13033, - "created_at":"2018-04-26T10:04:36.009+02:00", - "updated_at":"2018-04-26T10:04:36.009+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377461, - "value":"", - "question_id":13033, - "created_at":"2018-04-26T10:04:36.044+02:00", - "updated_at":"2018-04-26T10:04:36.044+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377462, - "value":"", - "question_id":13033, - "created_at":"2018-04-26T10:04:36.055+02:00", - "updated_at":"2018-04-26T10:04:36.055+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377463, - "value":"", - "question_id":13033, - "created_at":"2018-04-26T10:04:36.063+02:00", - "updated_at":"2018-04-26T10:04:36.063+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377464, - "value":"", - "question_id":13033, - "created_at":"2018-04-26T10:04:36.081+02:00", - "updated_at":"2018-04-26T10:04:36.081+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383908, - "value":"Yes", - "question_id":13033, - "created_at":"2017-12-05T15:47:49.319+01:00", - "updated_at":"2017-12-05T15:47:49.319+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618231, - "value":"Yes", - "question_id":13033, - "created_at":"2018-10-28T18:37:39.939+01:00", - "updated_at":"2018-10-28T18:37:39.939+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641560, - "value":"Planned", - "question_id":13033, - "created_at":"2018-10-30T13:55:39.015+01:00", - "updated_at":"2018-10-30T13:55:39.015+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756389, - "value":"Yes", - "question_id":13033, - "created_at":"2018-11-05T14:28:19.641+01:00", - "updated_at":"2018-11-05T14:28:19.641+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":827100, - "value":"Yes", - "question_id":13033, - "created_at":"2019-10-02T17:07:34.393+02:00", - "updated_at":"2019-10-02T17:07:34.393+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":883331, - "value":"Yes", - "question_id":13033, - "created_at":"2019-10-28T11:27:36.994+01:00", - "updated_at":"2019-10-28T11:27:36.994+01:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":1165432, - "value":"Yes", - "question_id":13033, - "created_at":"2019-11-12T20:17:09.526+01:00", - "updated_at":"2019-11-12T20:17:09.526+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377465, - "value":"", - "question_id":13033, - "created_at":"2018-04-26T10:04:36.089+02:00", - "updated_at":"2018-04-26T10:04:36.089+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493634, - "value":"Yes", - "question_id":13033, - "created_at":"2020-12-18T14:57:35.391+01:00", - "updated_at":"2020-12-18T14:57:35.391+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":1499387, - "value":"Planned", - "question_id":13033, - "created_at":"2021-11-02T15:21:47.352+01:00", - "updated_at":"2021-11-02T15:21:47.352+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1517910, - "value":"Yes", - "question_id":13033, - "created_at":"2022-09-29T14:36:58.464+02:00", - "updated_at":"2022-09-29T14:36:58.464+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"vulnerability-testing", - "title":"Do you offer Vulnerability scanning?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Vulnerability scanning", - "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "42":{ - "id":365955, - "value":"Yes", - "question_id":13035, - "created_at":"2017-09-13T14:14:52.156+02:00", - "updated_at":"2017-09-13T14:14:52.156+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":366188, - "value":"Yes", - "question_id":13035, - "created_at":"2017-09-26T09:13:20.415+02:00", - "updated_at":"2017-09-26T09:13:20.415+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366346, - "value":"No", - "question_id":13035, - "created_at":"2017-09-29T13:48:53.254+02:00", - "updated_at":"2017-09-29T13:48:53.254+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366567, - "value":"No", - "question_id":13035, - "created_at":"2017-10-08T09:14:52.142+02:00", - "updated_at":"2017-10-08T09:14:52.142+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":366662, - "value":"Yes", - "question_id":13035, - "created_at":"2017-10-09T11:14:38.402+02:00", - "updated_at":"2017-10-09T11:14:38.402+02:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":366820, - "value":"Yes", - "question_id":13035, - "created_at":"2017-10-10T16:18:38.519+02:00", - "updated_at":"2017-10-10T16:18:38.519+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366904, - "value":"Yes", - "question_id":13035, - "created_at":"2017-10-11T09:39:27.619+02:00", - "updated_at":"2017-10-11T09:39:27.619+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367332, - "value":"Yes", - "question_id":13035, - "created_at":"2017-10-11T21:09:12.506+02:00", - "updated_at":"2017-10-11T21:09:12.506+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367459, - "value":"Yes", - "question_id":13035, - "created_at":"2017-10-17T11:58:07.519+02:00", - "updated_at":"2017-10-17T11:58:07.519+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367933, - "value":"No", - "question_id":13035, - "created_at":"2017-10-24T13:20:16.972+02:00", - "updated_at":"2017-10-24T13:20:16.972+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369074, - "value":"Yes", - "question_id":13035, - "created_at":"2017-11-10T11:04:10.586+01:00", - "updated_at":"2017-11-10T11:04:10.586+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369217, - "value":"Yes", - "question_id":13035, - "created_at":"2017-11-10T15:36:01.094+01:00", - "updated_at":"2017-11-10T15:36:01.094+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369385, - "value":"Yes", - "question_id":13035, - "created_at":"2017-11-11T20:44:47.636+01:00", - "updated_at":"2017-11-11T20:44:47.636+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370204, - "value":"No", - "question_id":13035, - "created_at":"2017-11-23T14:07:27.063+01:00", - "updated_at":"2017-11-23T14:07:27.063+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370758, - "value":"Yes", - "question_id":13035, - "created_at":"2017-11-27T09:34:17.334+01:00", - "updated_at":"2017-11-27T09:34:17.334+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370950, - "value":"No", - "question_id":13035, - "created_at":"2017-11-27T10:39:01.769+01:00", - "updated_at":"2017-11-27T10:39:01.769+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371753, - "value":"Yes", - "question_id":13035, - "created_at":"2017-11-28T13:11:16.073+01:00", - "updated_at":"2017-11-28T13:11:16.073+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372296, - "value":"Yes", - "question_id":13035, - "created_at":"2017-11-29T12:26:10.585+01:00", - "updated_at":"2017-11-29T12:26:10.585+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372620, - "value":"Yes", - "question_id":13035, - "created_at":"2017-11-29T21:41:10.277+01:00", - "updated_at":"2017-11-29T21:41:10.277+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373245, - "value":"Yes", - "question_id":13035, - "created_at":"2017-12-04T11:11:24.038+01:00", - "updated_at":"2017-12-04T11:11:24.038+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":373466, - "value":"No", - "question_id":13035, - "created_at":"2017-12-04T12:41:35.312+01:00", - "updated_at":"2017-12-04T12:41:35.312+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373692, - "value":"Yes", - "question_id":13035, - "created_at":"2017-12-04T17:57:03.135+01:00", - "updated_at":"2017-12-04T17:57:03.135+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374322, - "value":"Yes", - "question_id":13035, - "created_at":"2017-12-06T13:01:53.250+01:00", - "updated_at":"2017-12-06T13:01:53.250+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375025, - "value":"Yes", - "question_id":13035, - "created_at":"2017-12-14T14:20:29.653+01:00", - "updated_at":"2017-12-14T14:20:29.653+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375327, - "value":"Yes", - "question_id":13035, - "created_at":"2017-12-27T14:42:07.961+01:00", - "updated_at":"2017-12-27T14:42:07.961+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375497, - "value":"Yes", - "question_id":13035, - "created_at":"2017-12-28T10:32:41.705+01:00", - "updated_at":"2017-12-28T10:32:41.705+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377976, - "value":"", - "question_id":13035, - "created_at":"2018-04-26T10:04:40.360+02:00", - "updated_at":"2018-04-26T10:04:40.360+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377978, - "value":"", - "question_id":13035, - "created_at":"2018-04-26T10:04:40.381+02:00", - "updated_at":"2018-04-26T10:04:40.381+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":377982, - "value":"", - "question_id":13035, - "created_at":"2018-04-26T10:04:40.420+02:00", - "updated_at":"2018-04-26T10:04:40.420+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377983, - "value":"", - "question_id":13035, - "created_at":"2018-04-26T10:04:40.429+02:00", - "updated_at":"2018-04-26T10:04:40.429+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377985, - "value":"", - "question_id":13035, - "created_at":"2018-04-26T10:04:40.450+02:00", - "updated_at":"2018-04-26T10:04:40.450+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377986, - "value":"", - "question_id":13035, - "created_at":"2018-04-26T10:04:40.458+02:00", - "updated_at":"2018-04-26T10:04:40.458+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377987, - "value":"", - "question_id":13035, - "created_at":"2018-04-26T10:04:40.479+02:00", - "updated_at":"2018-04-26T10:04:40.479+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377988, - "value":"", - "question_id":13035, - "created_at":"2018-04-26T10:04:40.489+02:00", - "updated_at":"2018-04-26T10:04:40.489+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":384003, - "value":"Yes", - "question_id":13035, - "created_at":"2017-12-05T15:55:45.619+01:00", - "updated_at":"2017-12-05T15:55:45.619+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618219, - "value":"Yes", - "question_id":13035, - "created_at":"2018-10-28T18:33:17.951+01:00", - "updated_at":"2018-10-28T18:33:17.951+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641553, - "value":"No", - "question_id":13035, - "created_at":"2018-10-30T13:53:02.226+01:00", - "updated_at":"2018-10-30T13:53:02.226+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":999964, - "value":"Yes", - "question_id":13035, - "created_at":"2019-11-03T22:51:20.326+01:00", - "updated_at":"2019-11-03T22:51:20.326+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":1227747, - "value":"Yes", - "question_id":13035, - "created_at":"2019-11-21T09:23:32.336+01:00", - "updated_at":"2019-11-21T09:23:32.336+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1481999, - "value":"Yes", - "question_id":13035, - "created_at":"2020-11-10T12:23:08.954+01:00", - "updated_at":"2020-11-10T12:23:08.954+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "48":{ - "id":1487910, - "value":"Yes", - "question_id":13035, - "created_at":"2020-11-26T18:05:19.533+01:00", - "updated_at":"2020-11-26T18:05:19.533+01:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":1500368, - "value":"Yes", - "question_id":13035, - "created_at":"2021-11-08T12:30:30.200+01:00", - "updated_at":"2021-11-08T12:30:30.200+01:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":1500498, - "value":"Yes", - "question_id":13035, - "created_at":"2021-11-08T13:21:21.898+01:00", - "updated_at":"2021-11-08T13:21:21.898+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-conferencing", - "title":"Do you offer Web/desktop conferencing", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Web/desktop conferencing", - "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365631, - "value":"No", - "question_id":13037, - "created_at":"2017-09-06T12:18:33.238+02:00", - "updated_at":"2017-09-06T12:18:33.238+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365690, - "value":"No", - "question_id":13037, - "created_at":"2017-09-07T15:32:42.966+02:00", - "updated_at":"2017-09-07T15:32:42.966+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365918, - "value":"No", - "question_id":13037, - "created_at":"2017-09-13T13:45:39.196+02:00", - "updated_at":"2017-09-13T13:45:39.196+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366362, - "value":"No", - "question_id":13037, - "created_at":"2017-09-29T13:52:14.933+02:00", - "updated_at":"2017-09-29T13:52:14.933+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366885, - "value":"No", - "question_id":13037, - "created_at":"2017-10-11T09:36:18.818+02:00", - "updated_at":"2017-10-11T09:36:18.818+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367482, - "value":"No", - "question_id":13037, - "created_at":"2017-10-17T12:04:50.254+02:00", - "updated_at":"2017-10-17T12:04:50.254+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367752, - "value":"No", - "question_id":13037, - "created_at":"2017-10-23T19:33:40.090+02:00", - "updated_at":"2017-10-23T19:33:40.090+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367955, - "value":"Yes", - "question_id":13037, - "created_at":"2017-10-24T13:27:28.190+02:00", - "updated_at":"2017-10-24T13:27:28.190+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368196, - "value":"No", - "question_id":13037, - "created_at":"2017-10-30T09:26:56.935+01:00", - "updated_at":"2017-10-30T09:26:56.935+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369240, - "value":"Yes", - "question_id":13037, - "created_at":"2017-11-10T15:39:17.903+01:00", - "updated_at":"2017-11-10T15:39:17.903+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369393, - "value":"No", - "question_id":13037, - "created_at":"2017-11-11T20:47:04.124+01:00", - "updated_at":"2017-11-11T20:47:04.124+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369702, - "value":"No", - "question_id":13037, - "created_at":"2017-11-21T11:43:03.121+01:00", - "updated_at":"2017-11-21T11:43:03.121+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369905, - "value":"No", - "question_id":13037, - "created_at":"2017-11-21T16:51:55.397+01:00", - "updated_at":"2017-11-21T16:51:55.397+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370230, - "value":"No", - "question_id":13037, - "created_at":"2017-11-23T14:12:31.346+01:00", - "updated_at":"2017-11-23T14:12:31.346+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":370367, - "value":"No", - "question_id":13037, - "created_at":"2017-11-24T16:13:52.900+01:00", - "updated_at":"2017-11-24T16:13:52.900+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370775, - "value":"No", - "question_id":13037, - "created_at":"2017-11-27T09:36:29.803+01:00", - "updated_at":"2017-11-27T09:36:29.803+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371297, - "value":"No", - "question_id":13037, - "created_at":"2017-11-27T14:29:35.793+01:00", - "updated_at":"2017-11-27T14:29:35.793+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371426, - "value":"No", - "question_id":13037, - "created_at":"2017-11-27T14:47:38.721+01:00", - "updated_at":"2017-11-27T14:47:38.721+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371778, - "value":"No", - "question_id":13037, - "created_at":"2017-11-28T13:18:38.745+01:00", - "updated_at":"2017-11-28T13:18:38.745+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372325, - "value":"No", - "question_id":13037, - "created_at":"2017-11-29T12:33:56.771+01:00", - "updated_at":"2017-11-29T12:33:56.771+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372647, - "value":"No", - "question_id":13037, - "created_at":"2017-11-29T21:46:38.177+01:00", - "updated_at":"2017-11-29T21:46:38.177+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372764, - "value":"No", - "question_id":13037, - "created_at":"2017-11-30T08:33:39.211+01:00", - "updated_at":"2017-11-30T08:33:39.211+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373258, - "value":"Yes", - "question_id":13037, - "created_at":"2017-12-04T11:14:55.630+01:00", - "updated_at":"2017-12-04T11:14:55.630+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373711, - "value":"Yes", - "question_id":13037, - "created_at":"2017-12-04T18:00:06.856+01:00", - "updated_at":"2017-12-04T18:00:06.856+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374352, - "value":"No", - "question_id":13037, - "created_at":"2017-12-06T13:14:34.747+01:00", - "updated_at":"2017-12-06T13:14:34.747+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375039, - "value":"Yes", - "question_id":13037, - "created_at":"2017-12-14T14:21:47.029+01:00", - "updated_at":"2017-12-14T14:21:47.029+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375468, - "value":"Yes", - "question_id":13037, - "created_at":"2017-12-28T10:19:56.201+01:00", - "updated_at":"2017-12-28T10:19:56.201+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375905, - "value":"No", - "question_id":13037, - "created_at":"2018-01-23T12:33:26.491+01:00", - "updated_at":"2018-01-23T12:33:26.491+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378509, - "value":"", - "question_id":13037, - "created_at":"2018-04-26T10:04:45.385+02:00", - "updated_at":"2018-04-26T10:04:45.385+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":378510, - "value":"", - "question_id":13037, - "created_at":"2018-04-26T10:04:45.393+02:00", - "updated_at":"2018-04-26T10:04:45.393+02:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":378511, - "value":"", - "question_id":13037, - "created_at":"2018-04-26T10:04:45.399+02:00", - "updated_at":"2018-04-26T10:04:45.399+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378512, - "value":"", - "question_id":13037, - "created_at":"2018-04-26T10:04:45.404+02:00", - "updated_at":"2018-04-26T10:04:45.404+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":378514, - "value":"", - "question_id":13037, - "created_at":"2018-04-26T10:04:45.415+02:00", - "updated_at":"2018-04-26T10:04:45.415+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":378515, - "value":"", - "question_id":13037, - "created_at":"2018-04-26T10:04:45.421+02:00", - "updated_at":"2018-04-26T10:04:45.421+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":378516, - "value":"", - "question_id":13037, - "created_at":"2018-04-26T10:04:45.433+02:00", - "updated_at":"2018-04-26T10:04:45.433+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378517, - "value":"", - "question_id":13037, - "created_at":"2018-04-26T10:04:45.437+02:00", - "updated_at":"2018-04-26T10:04:45.437+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378518, - "value":"", - "question_id":13037, - "created_at":"2018-04-26T10:04:45.448+02:00", - "updated_at":"2018-04-26T10:04:45.448+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378519, - "value":"", - "question_id":13037, - "created_at":"2018-04-26T10:04:45.454+02:00", - "updated_at":"2018-04-26T10:04:45.454+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":378520, - "value":"", - "question_id":13037, - "created_at":"2018-04-26T10:04:45.465+02:00", - "updated_at":"2018-04-26T10:04:45.465+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":378521, - "value":"", - "question_id":13037, - "created_at":"2018-04-26T10:04:45.472+02:00", - "updated_at":"2018-04-26T10:04:45.472+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378522, - "value":"", - "question_id":13037, - "created_at":"2018-04-26T10:04:45.477+02:00", - "updated_at":"2018-04-26T10:04:45.477+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378523, - "value":"", - "question_id":13037, - "created_at":"2018-04-26T10:04:45.484+02:00", - "updated_at":"2018-04-26T10:04:45.484+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383996, - "value":"Yes", - "question_id":13037, - "created_at":"2017-12-06T13:39:06.365+01:00", - "updated_at":"2017-12-06T13:39:06.365+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-design-production", - "title":"Do you offer Web development?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Web development", - "title_detailed":"Web development service provided to NREN users.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365657, - "value":"Yes", - "question_id":13043, - "created_at":"2017-09-06T12:20:17.416+02:00", - "updated_at":"2017-09-06T12:20:17.416+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365728, - "value":"No", - "question_id":13043, - "created_at":"2017-09-07T15:36:06.323+02:00", - "updated_at":"2017-09-07T15:36:06.323+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365939, - "value":"No", - "question_id":13043, - "created_at":"2017-09-13T13:47:17.632+02:00", - "updated_at":"2017-09-13T13:47:17.632+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366386, - "value":"No", - "question_id":13043, - "created_at":"2017-09-29T13:54:46.506+02:00", - "updated_at":"2017-09-29T13:54:46.506+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366784, - "value":"Yes", - "question_id":13043, - "created_at":"2017-10-10T13:23:38.002+02:00", - "updated_at":"2017-10-10T13:23:38.002+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366856, - "value":"No", - "question_id":13043, - "created_at":"2017-10-11T09:33:48.629+02:00", - "updated_at":"2017-10-11T09:33:48.629+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366967, - "value":"Yes", - "question_id":13043, - "created_at":"2017-10-11T10:53:29.981+02:00", - "updated_at":"2017-10-11T10:53:29.981+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367570, - "value":"Yes", - "question_id":13043, - "created_at":"2017-10-17T14:47:58.449+02:00", - "updated_at":"2017-10-17T14:47:58.449+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":367663, - "value":"No", - "question_id":13043, - "created_at":"2017-10-23T12:27:35.941+02:00", - "updated_at":"2017-10-23T12:27:35.941+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367777, - "value":"No", - "question_id":13043, - "created_at":"2017-10-23T19:41:20.277+02:00", - "updated_at":"2017-10-23T19:41:20.277+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367981, - "value":"Yes", - "question_id":13043, - "created_at":"2017-10-24T13:33:49.200+02:00", - "updated_at":"2017-10-24T13:33:49.200+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368575, - "value":"No", - "question_id":13043, - "created_at":"2017-10-31T14:45:33.206+01:00", - "updated_at":"2017-10-31T14:45:33.206+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368959, - "value":"Yes", - "question_id":13043, - "created_at":"2017-11-08T15:56:01.407+01:00", - "updated_at":"2017-11-08T15:56:01.407+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369266, - "value":"Yes", - "question_id":13043, - "created_at":"2017-11-10T15:41:27.304+01:00", - "updated_at":"2017-11-10T15:41:27.304+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":369540, - "value":"Yes", - "question_id":13043, - "created_at":"2017-11-13T20:39:43.522+01:00", - "updated_at":"2017-11-13T20:39:43.522+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370262, - "value":"No", - "question_id":13043, - "created_at":"2017-11-23T14:16:43.274+01:00", - "updated_at":"2017-11-23T14:16:43.274+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370806, - "value":"No", - "question_id":13043, - "created_at":"2017-11-27T09:38:39.888+01:00", - "updated_at":"2017-11-27T09:38:39.888+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371809, - "value":"Yes", - "question_id":13043, - "created_at":"2017-11-28T13:20:23.029+01:00", - "updated_at":"2017-11-28T13:20:23.029+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371882, - "value":"No", - "question_id":13043, - "created_at":"2017-11-28T15:06:57.237+01:00", - "updated_at":"2017-11-28T15:06:57.237+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372359, - "value":"Yes", - "question_id":13043, - "created_at":"2017-11-29T12:38:58.479+01:00", - "updated_at":"2017-11-29T12:38:58.479+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372671, - "value":"No", - "question_id":13043, - "created_at":"2017-11-29T21:54:13.913+01:00", - "updated_at":"2017-11-29T21:54:13.913+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":372866, - "value":"No", - "question_id":13043, - "created_at":"2017-11-30T13:40:35.236+01:00", - "updated_at":"2017-11-30T13:40:35.236+01:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373268, - "value":"Yes", - "question_id":13043, - "created_at":"2017-12-04T11:16:25.204+01:00", - "updated_at":"2017-12-04T11:16:25.204+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373738, - "value":"Yes", - "question_id":13043, - "created_at":"2017-12-04T18:03:09.050+01:00", - "updated_at":"2017-12-04T18:03:09.050+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374403, - "value":"Yes", - "question_id":13043, - "created_at":"2017-12-06T13:30:56.873+01:00", - "updated_at":"2017-12-06T13:30:56.873+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374719, - "value":"Yes", - "question_id":13043, - "created_at":"2017-12-13T10:23:32.969+01:00", - "updated_at":"2017-12-13T10:23:32.969+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374930, - "value":"Yes", - "question_id":13043, - "created_at":"2017-12-14T12:49:31.582+01:00", - "updated_at":"2017-12-14T12:49:31.582+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375066, - "value":"Yes", - "question_id":13043, - "created_at":"2017-12-14T14:23:34.967+01:00", - "updated_at":"2017-12-14T14:23:34.967+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375492, - "value":"Yes", - "question_id":13043, - "created_at":"2017-12-28T10:24:10.060+01:00", - "updated_at":"2017-12-28T10:24:10.060+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375745, - "value":"No", - "question_id":13043, - "created_at":"2018-01-18T15:41:34.834+01:00", - "updated_at":"2018-01-18T15:41:34.834+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379783, - "value":"", - "question_id":13043, - "created_at":"2018-04-26T10:04:56.787+02:00", - "updated_at":"2018-04-26T10:04:56.787+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":379784, - "value":"", - "question_id":13043, - "created_at":"2018-04-26T10:04:56.801+02:00", - "updated_at":"2018-04-26T10:04:56.801+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379785, - "value":"", - "question_id":13043, - "created_at":"2018-04-26T10:04:56.808+02:00", - "updated_at":"2018-04-26T10:04:56.808+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379791, - "value":"", - "question_id":13043, - "created_at":"2018-04-26T10:04:56.874+02:00", - "updated_at":"2018-04-26T10:04:56.874+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379792, - "value":"", - "question_id":13043, - "created_at":"2018-04-26T10:04:56.898+02:00", - "updated_at":"2018-04-26T10:04:56.898+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383918, - "value":"Yes", - "question_id":13043, - "created_at":"2017-12-05T16:01:48.039+01:00", - "updated_at":"2017-12-05T16:01:48.039+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618227, - "value":"Yes", - "question_id":13043, - "created_at":"2018-10-28T18:35:22.457+01:00", - "updated_at":"2018-10-28T18:35:22.457+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641556, - "value":"Yes", - "question_id":13043, - "created_at":"2018-10-30T13:54:21.626+01:00", - "updated_at":"2018-10-30T13:54:21.626+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756387, - "value":"No", - "question_id":13043, - "created_at":"2018-11-05T14:27:21.841+01:00", - "updated_at":"2018-11-05T14:27:21.841+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379793, - "value":"", - "question_id":13043, - "created_at":"2018-04-26T10:04:56.909+02:00", - "updated_at":"2018-04-26T10:04:56.909+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":1494276, - "value":"Yes", - "question_id":13043, - "created_at":"2021-01-14T15:11:11.348+01:00", - "updated_at":"2021-01-14T15:11:11.348+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":1506684, - "value":"No", - "question_id":13043, - "created_at":"2021-11-23T12:47:56.666+01:00", - "updated_at":"2021-11-23T12:47:56.666+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":1512828, - "value":"No", - "question_id":13043, - "created_at":"2021-12-11T18:02:22.261+01:00", - "updated_at":"2021-12-11T18:02:22.261+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-email-hosting", - "title":"Do you offer Web hosting?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Web hosting", - "title_detailed":"Service to provide space on central web servers for users to publish their website.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365650, - "value":"Yes", - "question_id":12911, - "created_at":"2017-09-06T12:19:50.989+02:00", - "updated_at":"2017-09-06T12:19:50.989+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365721, - "value":"Yes", - "question_id":12911, - "created_at":"2017-09-07T15:35:30.780+02:00", - "updated_at":"2017-09-07T15:35:30.780+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365933, - "value":"Yes", - "question_id":12911, - "created_at":"2017-09-13T13:46:47.429+02:00", - "updated_at":"2017-09-13T13:46:47.429+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366379, - "value":"Yes", - "question_id":12911, - "created_at":"2017-09-29T13:53:54.203+02:00", - "updated_at":"2017-09-29T13:53:54.203+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366865, - "value":"Yes", - "question_id":12911, - "created_at":"2017-10-11T09:34:41.961+02:00", - "updated_at":"2017-10-11T09:34:41.961+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366956, - "value":"No", - "question_id":12911, - "created_at":"2017-10-11T10:52:23.200+02:00", - "updated_at":"2017-10-11T10:52:23.200+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367160, - "value":"Yes", - "question_id":12911, - "created_at":"2017-10-11T13:45:48.704+02:00", - "updated_at":"2017-10-11T13:45:48.704+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367518, - "value":"Yes", - "question_id":12911, - "created_at":"2017-10-17T12:09:52.465+02:00", - "updated_at":"2017-10-17T12:09:52.465+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367770, - "value":"Yes", - "question_id":12911, - "created_at":"2017-10-23T19:40:43.858+02:00", - "updated_at":"2017-10-23T19:40:43.858+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367974, - "value":"Yes", - "question_id":12911, - "created_at":"2017-10-24T13:32:24.495+02:00", - "updated_at":"2017-10-24T13:32:24.495+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369259, - "value":"Yes", - "question_id":12911, - "created_at":"2017-11-10T15:40:52.201+01:00", - "updated_at":"2017-11-10T15:40:52.201+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369395, - "value":"Yes", - "question_id":12911, - "created_at":"2017-11-11T20:48:28.546+01:00", - "updated_at":"2017-11-11T20:48:28.546+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369914, - "value":"Yes", - "question_id":12911, - "created_at":"2017-11-21T16:53:19.968+01:00", - "updated_at":"2017-11-21T16:53:19.968+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370251, - "value":"Yes", - "question_id":12911, - "created_at":"2017-11-23T14:13:51.601+01:00", - "updated_at":"2017-11-23T14:13:51.601+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370799, - "value":"No", - "question_id":12911, - "created_at":"2017-11-27T09:38:12.156+01:00", - "updated_at":"2017-11-27T09:38:12.156+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371247, - "value":"No", - "question_id":12911, - "created_at":"2017-11-27T14:21:21.631+01:00", - "updated_at":"2017-11-27T14:21:21.631+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371800, - "value":"Yes", - "question_id":12911, - "created_at":"2017-11-28T13:19:52.254+01:00", - "updated_at":"2017-11-28T13:19:52.254+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371876, - "value":"Yes", - "question_id":12911, - "created_at":"2017-11-28T15:04:54.059+01:00", - "updated_at":"2017-11-28T15:04:54.059+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372348, - "value":"Yes", - "question_id":12911, - "created_at":"2017-11-29T12:36:28.838+01:00", - "updated_at":"2017-11-29T12:36:28.838+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372668, - "value":"No", - "question_id":12911, - "created_at":"2017-11-29T21:49:28.680+01:00", - "updated_at":"2017-11-29T21:49:28.680+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372778, - "value":"Yes", - "question_id":12911, - "created_at":"2017-11-30T08:35:22.403+01:00", - "updated_at":"2017-11-30T08:35:22.403+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373272, - "value":"Yes", - "question_id":12911, - "created_at":"2017-12-04T11:16:43.322+01:00", - "updated_at":"2017-12-04T11:16:43.322+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373731, - "value":"Yes", - "question_id":12911, - "created_at":"2017-12-04T18:02:20.465+01:00", - "updated_at":"2017-12-04T18:02:20.465+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374391, - "value":"Yes", - "question_id":12911, - "created_at":"2017-12-06T13:25:55.350+01:00", - "updated_at":"2017-12-06T13:25:55.350+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374708, - "value":"Yes", - "question_id":12911, - "created_at":"2017-12-13T10:21:11.942+01:00", - "updated_at":"2017-12-13T10:21:11.942+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374928, - "value":"Yes", - "question_id":12911, - "created_at":"2017-12-14T12:49:17.628+01:00", - "updated_at":"2017-12-14T12:49:17.628+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375057, - "value":"Yes", - "question_id":12911, - "created_at":"2017-12-14T14:22:58.302+01:00", - "updated_at":"2017-12-14T14:22:58.302+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375486, - "value":"Yes", - "question_id":12911, - "created_at":"2017-12-28T10:23:49.491+01:00", - "updated_at":"2017-12-28T10:23:49.491+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375916, - "value":"Yes", - "question_id":12911, - "created_at":"2018-01-23T12:35:47.585+01:00", - "updated_at":"2018-01-23T12:35:47.585+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":379462, - "value":"", - "question_id":12911, - "created_at":"2018-04-26T10:04:53.978+02:00", - "updated_at":"2018-04-26T10:04:53.978+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":379464, - "value":"", - "question_id":12911, - "created_at":"2018-04-26T10:04:53.995+02:00", - "updated_at":"2018-04-26T10:04:53.995+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":379468, - "value":"", - "question_id":12911, - "created_at":"2018-04-26T10:04:54.030+02:00", - "updated_at":"2018-04-26T10:04:54.030+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":379470, - "value":"", - "question_id":12911, - "created_at":"2018-04-26T10:04:54.047+02:00", - "updated_at":"2018-04-26T10:04:54.047+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":379472, - "value":"", - "question_id":12911, - "created_at":"2018-04-26T10:04:54.074+02:00", - "updated_at":"2018-04-26T10:04:54.074+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":384014, - "value":"Yes", - "question_id":12911, - "created_at":"2017-12-06T13:44:25.227+01:00", - "updated_at":"2017-12-06T13:44:25.227+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618213, - "value":"Yes", - "question_id":12911, - "created_at":"2018-10-28T18:31:01.536+01:00", - "updated_at":"2018-10-28T18:31:01.536+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641547, - "value":"Yes", - "question_id":12911, - "created_at":"2018-10-30T13:50:50.741+01:00", - "updated_at":"2018-10-30T13:50:50.741+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756371, - "value":"Yes", - "question_id":12911, - "created_at":"2018-11-05T14:03:01.191+01:00", - "updated_at":"2018-11-05T14:03:01.191+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774388, - "value":"Yes", - "question_id":12911, - "created_at":"2018-11-15T12:44:30.182+01:00", - "updated_at":"2018-11-15T12:44:30.182+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":827389, - "value":"Yes", - "question_id":12911, - "created_at":"2019-10-17T09:24:59.761+02:00", - "updated_at":"2019-10-17T09:24:59.761+02:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":379473, - "value":"", - "question_id":12911, - "created_at":"2018-04-26T10:04:54.083+02:00", - "updated_at":"2018-04-26T10:04:54.083+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":1468356, - "value":"Yes", - "question_id":12911, - "created_at":"2020-10-07T17:59:34.230+02:00", - "updated_at":"2020-10-07T17:59:34.230+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":1512827, - "value":"No", - "question_id":12911, - "created_at":"2021-12-11T18:01:02.363+01:00", - "updated_at":"2021-12-11T18:01:02.363+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dns-server", - "title":"Do you offer DNS server hosting/backup?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"DNS hosting", - "title_detailed":"Hosting of primary and secondary DNS servers.", - "tags":[ - "storage and hosting" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365623, - "value":"Yes", - "question_id":12909, - "created_at":"2017-09-06T12:18:08.146+02:00", - "updated_at":"2017-09-06T12:18:08.146+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365913, - "value":"No", - "question_id":12909, - "created_at":"2017-09-13T13:45:22.089+02:00", - "updated_at":"2017-09-13T13:45:22.089+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366893, - "value":"Yes", - "question_id":12909, - "created_at":"2017-10-11T09:36:41.166+02:00", - "updated_at":"2017-10-11T09:36:41.166+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367471, - "value":"No", - "question_id":12909, - "created_at":"2017-10-17T12:03:01.204+02:00", - "updated_at":"2017-10-17T12:03:01.204+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367746, - "value":"No", - "question_id":12909, - "created_at":"2017-10-23T19:33:08.426+02:00", - "updated_at":"2017-10-23T19:33:08.426+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367949, - "value":"No", - "question_id":12909, - "created_at":"2017-10-24T13:26:07.544+02:00", - "updated_at":"2017-10-24T13:26:07.544+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368926, - "value":"Yes", - "question_id":12909, - "created_at":"2017-11-08T15:45:12.739+01:00", - "updated_at":"2017-11-08T15:45:12.739+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369234, - "value":"Yes", - "question_id":12909, - "created_at":"2017-11-10T15:38:46.017+01:00", - "updated_at":"2017-11-10T15:38:46.017+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369902, - "value":"No", - "question_id":12909, - "created_at":"2017-11-21T16:51:29.023+01:00", - "updated_at":"2017-11-21T16:51:29.023+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370218, - "value":"No", - "question_id":12909, - "created_at":"2017-11-23T14:09:16.198+01:00", - "updated_at":"2017-11-23T14:09:16.198+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":370362, - "value":"No", - "question_id":12909, - "created_at":"2017-11-24T16:13:31.235+01:00", - "updated_at":"2017-11-24T16:13:31.235+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370769, - "value":"No", - "question_id":12909, - "created_at":"2017-11-27T09:36:12.075+01:00", - "updated_at":"2017-11-27T09:36:12.075+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371313, - "value":"No", - "question_id":12909, - "created_at":"2017-11-27T14:30:12.657+01:00", - "updated_at":"2017-11-27T14:30:12.657+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372318, - "value":"No", - "question_id":12909, - "created_at":"2017-11-29T12:32:10.399+01:00", - "updated_at":"2017-11-29T12:32:10.399+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":373182, - "value":"No", - "question_id":12909, - "created_at":"2017-12-01T17:39:14.262+01:00", - "updated_at":"2017-12-01T17:39:14.262+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":373195, - "value":"No", - "question_id":12909, - "created_at":"2017-12-03T13:49:47.539+01:00", - "updated_at":"2017-12-03T13:49:47.539+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373253, - "value":"Yes", - "question_id":12909, - "created_at":"2017-12-04T11:14:24.994+01:00", - "updated_at":"2017-12-04T11:14:24.994+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373704, - "value":"No", - "question_id":12909, - "created_at":"2017-12-04T17:59:25.307+01:00", - "updated_at":"2017-12-04T17:59:25.307+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374344, - "value":"No", - "question_id":12909, - "created_at":"2017-12-06T13:13:18.794+01:00", - "updated_at":"2017-12-06T13:13:18.794+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375033, - "value":"No", - "question_id":12909, - "created_at":"2017-12-14T14:21:28.716+01:00", - "updated_at":"2017-12-14T14:21:28.716+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375463, - "value":"Yes", - "question_id":12909, - "created_at":"2017-12-28T10:19:40.198+01:00", - "updated_at":"2017-12-28T10:19:40.198+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375892, - "value":"Yes", - "question_id":12909, - "created_at":"2018-01-23T12:29:59.687+01:00", - "updated_at":"2018-01-23T12:29:59.687+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378222, - "value":"", - "question_id":12909, - "created_at":"2018-04-26T10:04:42.614+02:00", - "updated_at":"2018-04-26T10:04:42.614+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378225, - "value":"", - "question_id":12909, - "created_at":"2018-04-26T10:04:42.643+02:00", - "updated_at":"2018-04-26T10:04:42.643+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":378229, - "value":"", - "question_id":12909, - "created_at":"2018-04-26T10:04:42.685+02:00", - "updated_at":"2018-04-26T10:04:42.685+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378230, - "value":"", - "question_id":12909, - "created_at":"2018-04-26T10:04:42.693+02:00", - "updated_at":"2018-04-26T10:04:42.693+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378231, - "value":"", - "question_id":12909, - "created_at":"2018-04-26T10:04:42.708+02:00", - "updated_at":"2018-04-26T10:04:42.708+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378232, - "value":"", - "question_id":12909, - "created_at":"2018-04-26T10:04:42.716+02:00", - "updated_at":"2018-04-26T10:04:42.716+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":378233, - "value":"", - "question_id":12909, - "created_at":"2018-04-26T10:04:42.738+02:00", - "updated_at":"2018-04-26T10:04:42.738+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378234, - "value":"", - "question_id":12909, - "created_at":"2018-04-26T10:04:42.745+02:00", - "updated_at":"2018-04-26T10:04:42.745+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":384008, - "value":"Yes", - "question_id":12909, - "created_at":"2017-12-05T15:57:48.811+01:00", - "updated_at":"2017-12-05T15:57:48.811+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618242, - "value":"Yes", - "question_id":12909, - "created_at":"2018-10-28T18:44:49.386+01:00", - "updated_at":"2018-10-28T18:44:49.386+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641570, - "value":"Yes", - "question_id":12909, - "created_at":"2018-10-30T14:01:36.401+01:00", - "updated_at":"2018-10-30T14:01:36.401+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756400, - "value":"Yes", - "question_id":12909, - "created_at":"2018-11-05T14:32:03.373+01:00", - "updated_at":"2018-11-05T14:32:03.373+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":797998, - "value":"Yes", - "question_id":12909, - "created_at":"2018-11-27T19:11:08.306+01:00", - "updated_at":"2018-11-27T19:11:08.306+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":1000938, - "value":"Yes", - "question_id":12909, - "created_at":"2019-11-04T10:58:14.046+01:00", - "updated_at":"2019-11-04T10:58:14.046+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1116395, - "value":"Yes", - "question_id":12909, - "created_at":"2019-11-08T11:49:53.218+01:00", - "updated_at":"2019-11-08T11:49:53.218+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":1155566, - "value":"Yes", - "question_id":12909, - "created_at":"2019-11-11T14:53:20.009+01:00", - "updated_at":"2019-11-11T14:53:20.009+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378235, - "value":"", - "question_id":12909, - "created_at":"2018-04-26T10:04:42.756+02:00", - "updated_at":"2018-04-26T10:04:42.756+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":1470697, - "value":"Yes", - "question_id":12909, - "created_at":"2020-10-16T14:52:23.839+02:00", - "updated_at":"2020-10-16T14:52:23.839+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1483364, - "value":"Yes", - "question_id":12909, - "created_at":"2020-11-16T13:49:26.695+01:00", - "updated_at":"2020-11-16T13:49:26.695+01:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493635, - "value":"Yes", - "question_id":12909, - "created_at":"2020-12-18T14:58:33.315+01:00", - "updated_at":"2020-12-18T14:58:33.315+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":1518287, - "value":"Yes", - "question_id":12909, - "created_at":"2022-10-17T13:54:58.283+02:00", - "updated_at":"2022-10-17T13:54:58.283+02:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"dissemination", - "title":"Do you offer Dissemination services?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Dissemination", - "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365564, - "value":"Yes", - "question_id":12983, - "created_at":"2017-09-06T12:11:29.511+02:00", - "updated_at":"2017-09-06T12:11:29.511+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365992, - "value":"Yes", - "question_id":12983, - "created_at":"2017-09-13T14:19:52.086+02:00", - "updated_at":"2017-09-13T14:19:52.086+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366131, - "value":"Yes", - "question_id":12983, - "created_at":"2017-09-19T14:44:31.860+02:00", - "updated_at":"2017-09-19T14:44:31.860+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366301, - "value":"Yes", - "question_id":12983, - "created_at":"2017-09-29T13:40:42.277+02:00", - "updated_at":"2017-09-29T13:40:42.277+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367082, - "value":"Yes", - "question_id":12983, - "created_at":"2017-10-11T13:18:33.017+02:00", - "updated_at":"2017-10-11T13:18:33.017+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367319, - "value":"Yes", - "question_id":12983, - "created_at":"2017-10-11T20:53:09.290+02:00", - "updated_at":"2017-10-11T20:53:09.290+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367689, - "value":"Yes", - "question_id":12983, - "created_at":"2017-10-23T19:24:33.039+02:00", - "updated_at":"2017-10-23T19:24:33.039+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367880, - "value":"Yes", - "question_id":12983, - "created_at":"2017-10-24T13:02:56.775+02:00", - "updated_at":"2017-10-24T13:02:56.775+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368698, - "value":"Yes", - "question_id":12983, - "created_at":"2017-11-02T13:20:50.515+01:00", - "updated_at":"2017-11-02T13:20:50.515+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369065, - "value":"Yes", - "question_id":12983, - "created_at":"2017-11-10T10:59:42.085+01:00", - "updated_at":"2017-11-10T10:59:42.085+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369172, - "value":"Yes", - "question_id":12983, - "created_at":"2017-11-10T15:30:47.272+01:00", - "updated_at":"2017-11-10T15:30:47.272+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369329, - "value":"Yes", - "question_id":12983, - "created_at":"2017-11-11T20:29:08.193+01:00", - "updated_at":"2017-11-11T20:29:08.193+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370127, - "value":"Yes", - "question_id":12983, - "created_at":"2017-11-23T13:46:28.792+01:00", - "updated_at":"2017-11-23T13:46:28.792+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370916, - "value":"Yes", - "question_id":12983, - "created_at":"2017-11-27T10:34:31.496+01:00", - "updated_at":"2017-11-27T10:34:31.496+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371285, - "value":"Yes", - "question_id":12983, - "created_at":"2017-11-27T14:28:46.153+01:00", - "updated_at":"2017-11-27T14:28:46.153+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371544, - "value":"Yes", - "question_id":12983, - "created_at":"2017-11-27T16:34:18.281+01:00", - "updated_at":"2017-11-27T16:34:18.281+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":371480, - "value":"Yes", - "question_id":12983, - "created_at":"2017-11-27T15:00:38.984+01:00", - "updated_at":"2017-11-27T15:00:38.984+01:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371701, - "value":"Yes", - "question_id":12983, - "created_at":"2017-11-28T13:06:24.040+01:00", - "updated_at":"2017-11-28T13:06:24.040+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371985, - "value":"Yes", - "question_id":12983, - "created_at":"2017-11-28T16:30:59.288+01:00", - "updated_at":"2017-11-28T16:30:59.288+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":372106, - "value":"Yes", - "question_id":12983, - "created_at":"2017-11-28T17:37:52.761+01:00", - "updated_at":"2017-11-28T17:37:52.761+01:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372227, - "value":"Yes", - "question_id":12983, - "created_at":"2017-11-29T12:01:52.402+01:00", - "updated_at":"2017-11-29T12:01:52.402+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372571, - "value":"Yes", - "question_id":12983, - "created_at":"2017-11-29T21:33:04.511+01:00", - "updated_at":"2017-11-29T21:33:04.511+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373282, - "value":"Yes", - "question_id":12983, - "created_at":"2017-12-04T11:18:37.396+01:00", - "updated_at":"2017-12-04T11:18:37.396+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373643, - "value":"Yes", - "question_id":12983, - "created_at":"2017-12-04T17:51:11.085+01:00", - "updated_at":"2017-12-04T17:51:11.085+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374234, - "value":"Yes", - "question_id":12983, - "created_at":"2017-12-06T11:01:39.455+01:00", - "updated_at":"2017-12-06T11:01:39.455+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374906, - "value":"Yes", - "question_id":12983, - "created_at":"2017-12-14T12:45:10.146+01:00", - "updated_at":"2017-12-14T12:45:10.146+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375397, - "value":"Yes", - "question_id":12983, - "created_at":"2017-12-28T10:01:14.026+01:00", - "updated_at":"2017-12-28T10:01:14.026+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375801, - "value":"Yes", - "question_id":12983, - "created_at":"2018-01-22T00:46:18.065+01:00", - "updated_at":"2018-01-22T00:46:18.065+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":376005, - "value":"Yes", - "question_id":12983, - "created_at":"2018-02-16T09:43:00.162+01:00", - "updated_at":"2018-02-16T09:43:00.162+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376573, - "value":"", - "question_id":12983, - "created_at":"2018-04-26T10:04:26.273+02:00", - "updated_at":"2018-04-26T10:04:26.273+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376575, - "value":"", - "question_id":12983, - "created_at":"2018-04-26T10:04:26.296+02:00", - "updated_at":"2018-04-26T10:04:26.296+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":376579, - "value":"", - "question_id":12983, - "created_at":"2018-04-26T10:04:26.343+02:00", - "updated_at":"2018-04-26T10:04:26.343+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376580, - "value":"", - "question_id":12983, - "created_at":"2018-04-26T10:04:26.351+02:00", - "updated_at":"2018-04-26T10:04:26.351+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376582, - "value":"", - "question_id":12983, - "created_at":"2018-04-26T10:04:26.388+02:00", - "updated_at":"2018-04-26T10:04:26.388+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376583, - "value":"", - "question_id":12983, - "created_at":"2018-04-26T10:04:26.415+02:00", - "updated_at":"2018-04-26T10:04:26.415+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383964, - "value":"No", - "question_id":12983, - "created_at":"2017-12-05T15:44:06.658+01:00", - "updated_at":"2017-12-05T15:44:06.658+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618212, - "value":"Planned", - "question_id":12983, - "created_at":"2018-10-28T18:30:41.057+01:00", - "updated_at":"2018-10-28T18:30:41.057+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":618244, - "value":"Yes", - "question_id":12983, - "created_at":"2018-10-29T08:13:54.443+01:00", - "updated_at":"2018-10-29T08:13:54.443+01:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641546, - "value":"Yes", - "question_id":12983, - "created_at":"2018-10-30T13:49:54.193+01:00", - "updated_at":"2018-10-30T13:49:54.193+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756369, - "value":"Yes", - "question_id":12983, - "created_at":"2018-11-05T14:02:39.549+01:00", - "updated_at":"2018-11-05T14:02:39.549+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774386, - "value":"Yes", - "question_id":12983, - "created_at":"2018-11-15T12:43:52.811+01:00", - "updated_at":"2018-11-15T12:43:52.811+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":1488527, - "value":"Yes", - "question_id":12983, - "created_at":"2020-11-27T09:57:42.824+01:00", - "updated_at":"2020-11-27T09:57:42.824+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":1510379, - "value":"No", - "question_id":12983, - "created_at":"2021-12-02T10:29:12.776+01:00", - "updated_at":"2021-12-02T10:29:12.776+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"network-monitoring", - "title":"Do you offer Network monitoring?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Network monitoring", - "title_detailed":"Network information system that shows the current and past performance of the network.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365557, - "value":"No", - "question_id":12907, - "created_at":"2017-09-06T12:07:57.400+02:00", - "updated_at":"2017-09-06T12:07:57.400+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365867, - "value":"No", - "question_id":12907, - "created_at":"2017-09-13T13:36:52.124+02:00", - "updated_at":"2017-09-13T13:36:52.124+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366908, - "value":"Yes", - "question_id":12907, - "created_at":"2017-10-11T10:40:03.932+02:00", - "updated_at":"2017-10-11T10:40:03.932+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367066, - "value":"No", - "question_id":12907, - "created_at":"2017-10-11T13:05:40.782+02:00", - "updated_at":"2017-10-11T13:05:40.782+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367529, - "value":"Yes", - "question_id":12907, - "created_at":"2017-10-17T14:26:12.481+02:00", - "updated_at":"2017-10-17T14:26:12.481+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367681, - "value":"No", - "question_id":12907, - "created_at":"2017-10-23T19:23:41.865+02:00", - "updated_at":"2017-10-23T19:23:41.865+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367868, - "value":"No", - "question_id":12907, - "created_at":"2017-10-24T12:58:06.224+02:00", - "updated_at":"2017-10-24T12:58:06.224+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":368222, - "value":"No", - "question_id":12907, - "created_at":"2017-10-30T12:38:12.415+01:00", - "updated_at":"2017-10-30T12:38:12.415+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368368, - "value":"Planned", - "question_id":12907, - "created_at":"2017-10-30T21:16:51.981+01:00", - "updated_at":"2017-10-30T21:16:51.981+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368424, - "value":"No", - "question_id":12907, - "created_at":"2017-10-31T14:14:24.788+01:00", - "updated_at":"2017-10-31T14:14:24.788+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368894, - "value":"Planned", - "question_id":12907, - "created_at":"2017-11-08T15:28:08.700+01:00", - "updated_at":"2017-11-08T15:28:08.700+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369163, - "value":"No", - "question_id":12907, - "created_at":"2017-11-10T15:29:09.441+01:00", - "updated_at":"2017-11-10T15:29:09.441+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370115, - "value":"No", - "question_id":12907, - "created_at":"2017-11-23T13:35:11.202+01:00", - "updated_at":"2017-11-23T13:35:11.202+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":370326, - "value":"Yes", - "question_id":12907, - "created_at":"2017-11-24T13:43:39.542+01:00", - "updated_at":"2017-11-24T13:43:39.542+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370696, - "value":"Planned", - "question_id":12907, - "created_at":"2017-11-27T09:28:50.336+01:00", - "updated_at":"2017-11-27T09:28:50.336+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370907, - "value":"No", - "question_id":12907, - "created_at":"2017-11-27T10:33:01.940+01:00", - "updated_at":"2017-11-27T10:33:01.940+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371098, - "value":"No", - "question_id":12907, - "created_at":"2017-11-27T13:43:49.638+01:00", - "updated_at":"2017-11-27T13:43:49.638+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371691, - "value":"Yes", - "question_id":12907, - "created_at":"2017-11-28T13:05:08.182+01:00", - "updated_at":"2017-11-28T13:05:08.182+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372210, - "value":"Yes", - "question_id":12907, - "created_at":"2017-11-29T11:56:19.254+01:00", - "updated_at":"2017-11-29T11:56:19.254+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372562, - "value":"No", - "question_id":12907, - "created_at":"2017-11-29T21:31:05.488+01:00", - "updated_at":"2017-11-29T21:31:05.488+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373632, - "value":"No", - "question_id":12907, - "created_at":"2017-12-04T17:48:36.500+01:00", - "updated_at":"2017-12-04T17:48:36.500+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374215, - "value":"No", - "question_id":12907, - "created_at":"2017-12-06T10:52:23.595+01:00", - "updated_at":"2017-12-06T10:52:23.595+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374641, - "value":"Planned", - "question_id":12907, - "created_at":"2017-12-13T07:43:13.293+01:00", - "updated_at":"2017-12-13T07:43:13.293+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374649, - "value":"No", - "question_id":12907, - "created_at":"2017-12-13T09:28:44.912+01:00", - "updated_at":"2017-12-13T09:28:44.912+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":374966, - "value":"No", - "question_id":12907, - "created_at":"2017-12-14T14:13:48.433+01:00", - "updated_at":"2017-12-14T14:13:48.433+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375388, - "value":"No", - "question_id":12907, - "created_at":"2017-12-28T10:00:21.516+01:00", - "updated_at":"2017-12-28T10:00:21.516+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":376182, - "value":"", - "question_id":12907, - "created_at":"2018-04-26T10:04:21.543+02:00", - "updated_at":"2018-04-26T10:04:21.543+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376178, - "value":"", - "question_id":12907, - "created_at":"2018-04-26T10:04:21.512+02:00", - "updated_at":"2018-04-26T10:04:21.512+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":376179, - "value":"", - "question_id":12907, - "created_at":"2018-04-26T10:04:21.523+02:00", - "updated_at":"2018-04-26T10:04:21.523+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376180, - "value":"", - "question_id":12907, - "created_at":"2018-04-26T10:04:21.528+02:00", - "updated_at":"2018-04-26T10:04:21.528+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":376183, - "value":"", - "question_id":12907, - "created_at":"2018-04-26T10:04:21.551+02:00", - "updated_at":"2018-04-26T10:04:21.551+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376184, - "value":"", - "question_id":12907, - "created_at":"2018-04-26T10:04:21.565+02:00", - "updated_at":"2018-04-26T10:04:21.565+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":376185, - "value":"", - "question_id":12907, - "created_at":"2018-04-26T10:04:21.572+02:00", - "updated_at":"2018-04-26T10:04:21.572+02:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":376186, - "value":"", - "question_id":12907, - "created_at":"2018-04-26T10:04:21.581+02:00", - "updated_at":"2018-04-26T10:04:21.581+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376187, - "value":"", - "question_id":12907, - "created_at":"2018-04-26T10:04:21.588+02:00", - "updated_at":"2018-04-26T10:04:21.588+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":376188, - "value":"", - "question_id":12907, - "created_at":"2018-04-26T10:04:21.595+02:00", - "updated_at":"2018-04-26T10:04:21.595+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":376189, - "value":"", - "question_id":12907, - "created_at":"2018-04-26T10:04:21.608+02:00", - "updated_at":"2018-04-26T10:04:21.608+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376190, - "value":"", - "question_id":12907, - "created_at":"2018-04-26T10:04:21.617+02:00", - "updated_at":"2018-04-26T10:04:21.617+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383941, - "value":"Yes", - "question_id":12907, - "created_at":"2017-12-06T13:15:52.310+01:00", - "updated_at":"2017-12-06T13:15:52.310+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":371473, - "value":"No", - "question_id":12907, - "created_at":"2017-11-27T14:59:30.198+01:00", - "updated_at":"2017-11-27T14:59:30.198+01:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493639, - "value":"Planned", - "question_id":12907, - "created_at":"2020-12-18T15:03:13.628+01:00", - "updated_at":"2020-12-18T15:03:13.628+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":1501640, - "value":"Yes", - "question_id":12907, - "created_at":"2021-11-12T09:21:02.204+01:00", - "updated_at":"2021-11-12T09:21:02.204+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1517914, - "value":"Yes", - "question_id":12907, - "created_at":"2022-09-29T14:44:32.075+02:00", - "updated_at":"2022-09-29T14:44:32.075+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"disaster-recovery", - "title":"Do you offer disaster recovery?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Disaster recovery", - "title_detailed":"Off site backup services.", - "tags":[ - "storage and hosting", - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "41":{ - "id":365868, - "value":"No", - "question_id":12923, - "created_at":"2017-09-13T13:36:56.995+02:00", - "updated_at":"2017-09-13T13:36:56.995+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366117, - "value":"Yes", - "question_id":12923, - "created_at":"2017-09-19T14:35:18.753+02:00", - "updated_at":"2017-09-19T14:35:18.753+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366291, - "value":"Yes", - "question_id":12923, - "created_at":"2017-09-29T13:38:08.150+02:00", - "updated_at":"2017-09-29T13:38:08.150+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366910, - "value":"No", - "question_id":12923, - "created_at":"2017-10-11T10:41:11.883+02:00", - "updated_at":"2017-10-11T10:41:11.883+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367067, - "value":"Yes", - "question_id":12923, - "created_at":"2017-10-11T13:07:43.350+02:00", - "updated_at":"2017-10-11T13:07:43.350+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367869, - "value":"Yes", - "question_id":12923, - "created_at":"2017-10-24T12:58:15.245+02:00", - "updated_at":"2017-10-24T12:58:15.245+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368371, - "value":"Yes", - "question_id":12923, - "created_at":"2017-10-31T08:57:46.108+01:00", - "updated_at":"2017-10-31T08:57:46.108+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368425, - "value":"No", - "question_id":12923, - "created_at":"2017-10-31T14:14:35.135+01:00", - "updated_at":"2017-10-31T14:14:35.135+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":368623, - "value":"Yes", - "question_id":12923, - "created_at":"2017-11-02T11:31:18.470+01:00", - "updated_at":"2017-11-02T11:31:18.470+01:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368682, - "value":"Yes", - "question_id":12923, - "created_at":"2017-11-02T13:20:08.026+01:00", - "updated_at":"2017-11-02T13:20:08.026+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370116, - "value":"No", - "question_id":12923, - "created_at":"2017-11-23T13:35:17.409+01:00", - "updated_at":"2017-11-23T13:35:17.409+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370697, - "value":"Planned", - "question_id":12923, - "created_at":"2017-11-27T09:28:58.213+01:00", - "updated_at":"2017-11-27T09:28:58.213+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370908, - "value":"Yes", - "question_id":12923, - "created_at":"2017-11-27T10:33:09.174+01:00", - "updated_at":"2017-11-27T10:33:09.174+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371184, - "value":"No", - "question_id":12923, - "created_at":"2017-11-27T14:16:24.435+01:00", - "updated_at":"2017-11-27T14:16:24.435+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371692, - "value":"No", - "question_id":12923, - "created_at":"2017-11-28T13:05:15.483+01:00", - "updated_at":"2017-11-28T13:05:15.483+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371962, - "value":"No", - "question_id":12923, - "created_at":"2017-11-28T16:24:08.539+01:00", - "updated_at":"2017-11-28T16:24:08.539+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372212, - "value":"No", - "question_id":12923, - "created_at":"2017-11-29T11:57:04.069+01:00", - "updated_at":"2017-11-29T11:57:04.069+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372563, - "value":"Yes", - "question_id":12923, - "created_at":"2017-11-29T21:31:24.992+01:00", - "updated_at":"2017-11-29T21:31:24.992+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373633, - "value":"Yes", - "question_id":12923, - "created_at":"2017-12-04T17:48:44.604+01:00", - "updated_at":"2017-12-04T17:48:44.604+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374027, - "value":"Planned", - "question_id":12923, - "created_at":"2017-12-06T06:51:27.113+01:00", - "updated_at":"2017-12-06T06:51:27.113+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374216, - "value":"Yes", - "question_id":12923, - "created_at":"2017-12-06T10:52:43.225+01:00", - "updated_at":"2017-12-06T10:52:43.225+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374900, - "value":"Yes", - "question_id":12923, - "created_at":"2017-12-14T12:44:33.170+01:00", - "updated_at":"2017-12-14T12:44:33.170+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375344, - "value":"Yes", - "question_id":12923, - "created_at":"2017-12-27T14:47:51.039+01:00", - "updated_at":"2017-12-27T14:47:51.039+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375389, - "value":"No", - "question_id":12923, - "created_at":"2017-12-28T10:00:29.662+01:00", - "updated_at":"2017-12-28T10:00:29.662+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375785, - "value":"Yes", - "question_id":12923, - "created_at":"2018-01-22T00:37:40.224+01:00", - "updated_at":"2018-01-22T00:37:40.224+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":376004, - "value":"Yes", - "question_id":12923, - "created_at":"2018-02-16T09:42:26.889+01:00", - "updated_at":"2018-02-16T09:42:26.889+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376225, - "value":"", - "question_id":12923, - "created_at":"2018-04-26T10:04:21.961+02:00", - "updated_at":"2018-04-26T10:04:21.961+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376228, - "value":"", - "question_id":12923, - "created_at":"2018-04-26T10:04:21.988+02:00", - "updated_at":"2018-04-26T10:04:21.988+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":376232, - "value":"", - "question_id":12923, - "created_at":"2018-04-26T10:04:22.024+02:00", - "updated_at":"2018-04-26T10:04:22.024+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376233, - "value":"", - "question_id":12923, - "created_at":"2018-04-26T10:04:22.039+02:00", - "updated_at":"2018-04-26T10:04:22.039+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376235, - "value":"", - "question_id":12923, - "created_at":"2018-04-26T10:04:22.059+02:00", - "updated_at":"2018-04-26T10:04:22.059+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376238, - "value":"", - "question_id":12923, - "created_at":"2018-04-26T10:04:22.101+02:00", - "updated_at":"2018-04-26T10:04:22.101+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383897, - "value":"Yes", - "question_id":12923, - "created_at":"2017-12-06T13:16:14.836+01:00", - "updated_at":"2017-12-06T13:16:14.836+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618229, - "value":"Yes", - "question_id":12923, - "created_at":"2018-10-28T18:35:55.015+01:00", - "updated_at":"2018-10-28T18:35:55.015+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641558, - "value":"Yes", - "question_id":12923, - "created_at":"2018-10-30T13:55:09.282+01:00", - "updated_at":"2018-10-30T13:55:09.282+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756381, - "value":"Yes", - "question_id":12923, - "created_at":"2018-11-05T14:06:06.622+01:00", - "updated_at":"2018-11-05T14:06:06.622+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":963601, - "value":"No", - "question_id":12923, - "created_at":"2019-10-30T12:46:09.300+01:00", - "updated_at":"2019-10-30T12:46:09.300+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":1037049, - "value":"Yes", - "question_id":12923, - "created_at":"2019-11-04T16:43:26.546+01:00", - "updated_at":"2019-11-04T16:43:26.546+01:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "48":{ - "id":1131004, - "value":"Yes", - "question_id":12923, - "created_at":"2019-11-08T19:35:11.302+01:00", - "updated_at":"2019-11-08T19:35:11.302+01:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":371475, - "value":"Yes", - "question_id":12923, - "created_at":"2017-11-27T14:59:44.671+01:00", - "updated_at":"2017-11-27T14:59:44.671+01:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":1470694, - "value":"Yes", - "question_id":12923, - "created_at":"2020-10-16T13:58:38.487+02:00", - "updated_at":"2020-10-16T13:58:38.487+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1482001, - "value":"Yes", - "question_id":12923, - "created_at":"2020-11-10T12:24:04.086+01:00", - "updated_at":"2020-11-10T12:24:04.086+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":1499388, - "value":"Yes", - "question_id":12923, - "created_at":"2021-11-02T15:24:41.192+01:00", - "updated_at":"2021-11-02T15:24:41.192+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-monitoring", - "title":"Do you offer End user monitoring/troubleshooting tool?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Network troubleshooting", - "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", - "tags":[ - "network", - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365563, - "value":"Yes", - "question_id":12977, - "created_at":"2017-09-06T12:11:21.480+02:00", - "updated_at":"2017-09-06T12:11:21.480+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365995, - "value":"Yes", - "question_id":12977, - "created_at":"2017-09-13T14:19:58.139+02:00", - "updated_at":"2017-09-13T14:19:58.139+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367081, - "value":"Yes", - "question_id":12977, - "created_at":"2017-10-11T13:18:17.329+02:00", - "updated_at":"2017-10-11T13:18:17.329+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367179, - "value":"Yes", - "question_id":12977, - "created_at":"2017-10-11T14:02:16.797+02:00", - "updated_at":"2017-10-11T14:02:16.797+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367688, - "value":"Yes", - "question_id":12977, - "created_at":"2017-10-23T19:24:26.435+02:00", - "updated_at":"2017-10-23T19:24:26.435+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367878, - "value":"Yes", - "question_id":12977, - "created_at":"2017-10-24T13:02:13.697+02:00", - "updated_at":"2017-10-24T13:02:13.697+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368427, - "value":"Yes", - "question_id":12977, - "created_at":"2017-10-31T14:15:26.127+01:00", - "updated_at":"2017-10-31T14:15:26.127+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368695, - "value":"Yes", - "question_id":12977, - "created_at":"2017-11-02T13:20:43.079+01:00", - "updated_at":"2017-11-02T13:20:43.079+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369169, - "value":"Yes", - "question_id":12977, - "created_at":"2017-11-10T15:29:55.483+01:00", - "updated_at":"2017-11-10T15:29:55.483+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369323, - "value":"No", - "question_id":12977, - "created_at":"2017-11-11T20:27:12.165+01:00", - "updated_at":"2017-11-11T20:27:12.165+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370124, - "value":"No", - "question_id":12977, - "created_at":"2017-11-23T13:41:02.180+01:00", - "updated_at":"2017-11-23T13:41:02.180+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370914, - "value":"No", - "question_id":12977, - "created_at":"2017-11-27T10:34:17.424+01:00", - "updated_at":"2017-11-27T10:34:17.424+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371542, - "value":"No", - "question_id":12977, - "created_at":"2017-11-27T16:34:06.788+01:00", - "updated_at":"2017-11-27T16:34:06.788+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371699, - "value":"Yes", - "question_id":12977, - "created_at":"2017-11-28T13:06:17.458+01:00", - "updated_at":"2017-11-28T13:06:17.458+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371975, - "value":"Yes", - "question_id":12977, - "created_at":"2017-11-28T16:27:44.614+01:00", - "updated_at":"2017-11-28T16:27:44.614+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372223, - "value":"Yes", - "question_id":12977, - "created_at":"2017-11-29T12:00:36.460+01:00", - "updated_at":"2017-11-29T12:00:36.460+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373281, - "value":"Yes", - "question_id":12977, - "created_at":"2017-12-04T11:18:29.750+01:00", - "updated_at":"2017-12-04T11:18:29.750+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373641, - "value":"Yes", - "question_id":12977, - "created_at":"2017-12-04T17:50:57.697+01:00", - "updated_at":"2017-12-04T17:50:57.697+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":374975, - "value":"No", - "question_id":12977, - "created_at":"2017-12-14T14:16:58.996+01:00", - "updated_at":"2017-12-14T14:16:58.996+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375353, - "value":"No", - "question_id":12977, - "created_at":"2017-12-27T14:50:35.569+01:00", - "updated_at":"2017-12-27T14:50:35.569+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375396, - "value":"Yes", - "question_id":12977, - "created_at":"2017-12-28T10:01:05.535+01:00", - "updated_at":"2017-12-28T10:01:05.535+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375798, - "value":"Yes", - "question_id":12977, - "created_at":"2018-01-22T00:45:47.631+01:00", - "updated_at":"2018-01-22T00:45:47.631+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376476, - "value":"", - "question_id":12977, - "created_at":"2018-04-26T10:04:25.100+02:00", - "updated_at":"2018-04-26T10:04:25.100+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376478, - "value":"", - "question_id":12977, - "created_at":"2018-04-26T10:04:25.124+02:00", - "updated_at":"2018-04-26T10:04:25.124+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":376482, - "value":"", - "question_id":12977, - "created_at":"2018-04-26T10:04:25.174+02:00", - "updated_at":"2018-04-26T10:04:25.174+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376483, - "value":"", - "question_id":12977, - "created_at":"2018-04-26T10:04:25.182+02:00", - "updated_at":"2018-04-26T10:04:25.182+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376485, - "value":"", - "question_id":12977, - "created_at":"2018-04-26T10:04:25.206+02:00", - "updated_at":"2018-04-26T10:04:25.206+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":376486, - "value":"", - "question_id":12977, - "created_at":"2018-04-26T10:04:25.217+02:00", - "updated_at":"2018-04-26T10:04:25.217+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":376487, - "value":"", - "question_id":12977, - "created_at":"2018-04-26T10:04:25.226+02:00", - "updated_at":"2018-04-26T10:04:25.226+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":376488, - "value":"", - "question_id":12977, - "created_at":"2018-04-26T10:04:25.242+02:00", - "updated_at":"2018-04-26T10:04:25.242+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376489, - "value":"", - "question_id":12977, - "created_at":"2018-04-26T10:04:25.256+02:00", - "updated_at":"2018-04-26T10:04:25.256+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":379859, - "value":"No", - "question_id":12977, - "created_at":"2018-06-27T13:28:00.062+02:00", - "updated_at":"2018-06-27T13:28:00.062+02:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383886, - "value":"No", - "question_id":12977, - "created_at":"2017-12-06T13:20:37.662+01:00", - "updated_at":"2017-12-06T13:20:37.662+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618234, - "value":"Yes", - "question_id":12977, - "created_at":"2018-10-28T18:39:02.938+01:00", - "updated_at":"2018-10-28T18:39:02.938+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641562, - "value":"Yes", - "question_id":12977, - "created_at":"2018-10-30T13:57:06.267+01:00", - "updated_at":"2018-10-30T13:57:06.267+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756390, - "value":"Yes", - "question_id":12977, - "created_at":"2018-11-05T14:28:35.508+01:00", - "updated_at":"2018-11-05T14:28:35.508+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":756849, - "value":"Yes", - "question_id":12977, - "created_at":"2018-11-07T15:36:15.905+01:00", - "updated_at":"2018-11-07T15:36:15.905+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":827388, - "value":"Yes", - "question_id":12977, - "created_at":"2019-10-17T09:22:09.517+02:00", - "updated_at":"2019-10-17T09:22:09.517+02:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":376490, - "value":"", - "question_id":12977, - "created_at":"2018-04-26T10:04:25.267+02:00", - "updated_at":"2018-04-26T10:04:25.267+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1481995, - "value":"Yes", - "question_id":12977, - "created_at":"2020-11-10T10:51:47.007+01:00", - "updated_at":"2020-11-10T10:51:47.007+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":1488525, - "value":"Yes", - "question_id":12977, - "created_at":"2020-11-27T09:55:26.489+01:00", - "updated_at":"2020-11-27T09:55:26.489+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493633, - "value":"Planned", - "question_id":12977, - "created_at":"2020-12-18T14:57:08.660+01:00", - "updated_at":"2020-12-18T14:57:08.660+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":1500313, - "value":"Yes", - "question_id":12977, - "created_at":"2021-11-04T15:24:17.330+01:00", - "updated_at":"2021-11-04T15:24:17.330+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"netflow", - "title":"Do you offer Netflow?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Netflow tool", - "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365561, - "value":"Yes", - "question_id":12967, - "created_at":"2017-09-06T12:11:17.097+02:00", - "updated_at":"2017-09-06T12:11:17.097+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366297, - "value":"No", - "question_id":12967, - "created_at":"2017-09-29T13:40:18.584+02:00", - "updated_at":"2017-09-29T13:40:18.584+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367077, - "value":"No", - "question_id":12967, - "created_at":"2017-10-11T13:17:54.506+02:00", - "updated_at":"2017-10-11T13:17:54.506+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367175, - "value":"No", - "question_id":12967, - "created_at":"2017-10-11T14:01:01.375+02:00", - "updated_at":"2017-10-11T14:01:01.375+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367317, - "value":"Yes", - "question_id":12967, - "created_at":"2017-10-11T20:52:44.972+02:00", - "updated_at":"2017-10-11T20:52:44.972+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367686, - "value":"Yes", - "question_id":12967, - "created_at":"2017-10-23T19:24:14.497+02:00", - "updated_at":"2017-10-23T19:24:14.497+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367875, - "value":"Yes", - "question_id":12967, - "created_at":"2017-10-24T13:01:24.711+02:00", - "updated_at":"2017-10-24T13:01:24.711+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368691, - "value":"Yes", - "question_id":12967, - "created_at":"2017-11-02T13:20:35.760+01:00", - "updated_at":"2017-11-02T13:20:35.760+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368849, - "value":"Yes", - "question_id":12967, - "created_at":"2017-11-08T10:56:19.589+01:00", - "updated_at":"2017-11-08T10:56:19.589+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369167, - "value":"Yes", - "question_id":12967, - "created_at":"2017-11-10T15:29:44.827+01:00", - "updated_at":"2017-11-10T15:29:44.827+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369320, - "value":"No", - "question_id":12967, - "created_at":"2017-11-11T20:26:41.019+01:00", - "updated_at":"2017-11-11T20:26:41.019+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370122, - "value":"No", - "question_id":12967, - "created_at":"2017-11-23T13:40:23.972+01:00", - "updated_at":"2017-11-23T13:40:23.972+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370701, - "value":"No", - "question_id":12967, - "created_at":"2017-11-27T09:29:28.398+01:00", - "updated_at":"2017-11-27T09:29:28.398+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370912, - "value":"Yes", - "question_id":12967, - "created_at":"2017-11-27T10:34:07.178+01:00", - "updated_at":"2017-11-27T10:34:07.178+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371103, - "value":"No", - "question_id":12967, - "created_at":"2017-11-27T13:44:42.328+01:00", - "updated_at":"2017-11-27T13:44:42.328+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371540, - "value":"No", - "question_id":12967, - "created_at":"2017-11-27T16:33:51.190+01:00", - "updated_at":"2017-11-27T16:33:51.190+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371697, - "value":"No", - "question_id":12967, - "created_at":"2017-11-28T13:06:07.456+01:00", - "updated_at":"2017-11-28T13:06:07.456+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371968, - "value":"No", - "question_id":12967, - "created_at":"2017-11-28T16:26:02.010+01:00", - "updated_at":"2017-11-28T16:26:02.010+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":372104, - "value":"Yes", - "question_id":12967, - "created_at":"2017-11-28T17:35:43.088+01:00", - "updated_at":"2017-11-28T17:35:43.088+01:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372220, - "value":"No", - "question_id":12967, - "created_at":"2017-11-29T12:00:11.216+01:00", - "updated_at":"2017-11-29T12:00:11.216+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372567, - "value":"No", - "question_id":12967, - "created_at":"2017-11-29T21:32:33.810+01:00", - "updated_at":"2017-11-29T21:32:33.810+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373639, - "value":"Yes", - "question_id":12967, - "created_at":"2017-12-04T17:50:43.655+01:00", - "updated_at":"2017-12-04T17:50:43.655+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374031, - "value":"Planned", - "question_id":12967, - "created_at":"2017-12-06T06:56:32.960+01:00", - "updated_at":"2017-12-06T06:56:32.960+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374904, - "value":"No", - "question_id":12967, - "created_at":"2017-12-14T12:44:58.221+01:00", - "updated_at":"2017-12-14T12:44:58.221+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":374972, - "value":"No", - "question_id":12967, - "created_at":"2017-12-14T14:16:30.861+01:00", - "updated_at":"2017-12-14T14:16:30.861+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375349, - "value":"Yes", - "question_id":12967, - "created_at":"2017-12-27T14:49:05.013+01:00", - "updated_at":"2017-12-27T14:49:05.013+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375395, - "value":"No", - "question_id":12967, - "created_at":"2017-12-28T10:01:01.341+01:00", - "updated_at":"2017-12-28T10:01:01.341+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375795, - "value":"No", - "question_id":12967, - "created_at":"2018-01-22T00:45:19.760+01:00", - "updated_at":"2018-01-22T00:45:19.760+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376386, - "value":"", - "question_id":12967, - "created_at":"2018-04-26T10:04:23.950+02:00", - "updated_at":"2018-04-26T10:04:23.950+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376388, - "value":"", - "question_id":12967, - "created_at":"2018-04-26T10:04:23.970+02:00", - "updated_at":"2018-04-26T10:04:23.970+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":376391, - "value":"", - "question_id":12967, - "created_at":"2018-04-26T10:04:23.993+02:00", - "updated_at":"2018-04-26T10:04:23.993+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":376392, - "value":"", - "question_id":12967, - "created_at":"2018-04-26T10:04:24.010+02:00", - "updated_at":"2018-04-26T10:04:24.010+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376393, - "value":"", - "question_id":12967, - "created_at":"2018-04-26T10:04:24.017+02:00", - "updated_at":"2018-04-26T10:04:24.017+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376395, - "value":"", - "question_id":12967, - "created_at":"2018-04-26T10:04:24.036+02:00", - "updated_at":"2018-04-26T10:04:24.036+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":376396, - "value":"", - "question_id":12967, - "created_at":"2018-04-26T10:04:24.046+02:00", - "updated_at":"2018-04-26T10:04:24.046+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376397, - "value":"", - "question_id":12967, - "created_at":"2018-04-26T10:04:24.068+02:00", - "updated_at":"2018-04-26T10:04:24.068+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383887, - "value":"No", - "question_id":12967, - "created_at":"2017-12-05T15:43:47.838+01:00", - "updated_at":"2017-12-05T15:43:47.838+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641569, - "value":"Planned", - "question_id":12967, - "created_at":"2018-10-30T14:00:22.177+01:00", - "updated_at":"2018-10-30T14:00:22.177+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756397, - "value":"Yes", - "question_id":12967, - "created_at":"2018-11-05T14:30:48.437+01:00", - "updated_at":"2018-11-05T14:30:48.437+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1116397, - "value":"Yes", - "question_id":12967, - "created_at":"2019-11-08T11:51:15.002+01:00", - "updated_at":"2019-11-08T11:51:15.002+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":1165435, - "value":"Yes", - "question_id":12967, - "created_at":"2019-11-12T20:19:36.737+01:00", - "updated_at":"2019-11-12T20:19:36.737+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":376398, - "value":"", - "question_id":12967, - "created_at":"2018-04-26T10:04:24.079+02:00", - "updated_at":"2018-04-26T10:04:24.079+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1508465, - "value":"Planned", - "question_id":12967, - "created_at":"2021-11-25T10:31:55.877+01:00", - "updated_at":"2021-11-25T10:31:55.877+01:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"managed-router", - "title":"Do you offer managed router service?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Managed router service", - "title_detailed":"Remote network router support to institutions.", - "tags":[ - "network" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "41":{ - "id":366174, - "value":"Planned", - "question_id":12951, - "created_at":"2017-09-26T09:08:57.588+02:00", - "updated_at":"2017-09-26T09:08:57.588+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366749, - "value":"Yes", - "question_id":12951, - "created_at":"2017-10-10T12:52:59.878+02:00", - "updated_at":"2017-10-10T12:52:59.878+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366925, - "value":"Yes", - "question_id":12951, - "created_at":"2017-10-11T10:43:47.064+02:00", - "updated_at":"2017-10-11T10:43:47.064+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367215, - "value":"Yes", - "question_id":12951, - "created_at":"2017-10-11T14:12:10.585+02:00", - "updated_at":"2017-10-11T14:12:10.585+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367328, - "value":"Yes", - "question_id":12951, - "created_at":"2017-10-11T21:03:21.563+02:00", - "updated_at":"2017-10-11T21:03:21.563+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":367647, - "value":"No", - "question_id":12951, - "created_at":"2017-10-23T12:21:50.794+02:00", - "updated_at":"2017-10-23T12:21:50.794+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367708, - "value":"Yes", - "question_id":12951, - "created_at":"2017-10-23T19:26:31.899+02:00", - "updated_at":"2017-10-23T19:26:31.899+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367907, - "value":"Yes", - "question_id":12951, - "created_at":"2017-10-24T13:11:17.653+02:00", - "updated_at":"2017-10-24T13:11:17.653+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368723, - "value":"No", - "question_id":12951, - "created_at":"2017-11-02T13:23:32.535+01:00", - "updated_at":"2017-11-02T13:23:32.535+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369195, - "value":"No", - "question_id":12951, - "created_at":"2017-11-10T15:33:25.612+01:00", - "updated_at":"2017-11-10T15:33:25.612+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369362, - "value":"No", - "question_id":12951, - "created_at":"2017-11-11T20:36:22.235+01:00", - "updated_at":"2017-11-11T20:36:22.235+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370165, - "value":"No", - "question_id":12951, - "created_at":"2017-11-23T13:54:59.083+01:00", - "updated_at":"2017-11-23T13:54:59.083+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370732, - "value":"Planned", - "question_id":12951, - "created_at":"2017-11-27T09:32:24.633+01:00", - "updated_at":"2017-11-27T09:32:24.633+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370934, - "value":"No", - "question_id":12951, - "created_at":"2017-11-27T10:37:24.334+01:00", - "updated_at":"2017-11-27T10:37:24.334+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371346, - "value":"Yes", - "question_id":12951, - "created_at":"2017-11-27T14:34:00.882+01:00", - "updated_at":"2017-11-27T14:34:00.882+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":372034, - "value":"Yes", - "question_id":12951, - "created_at":"2017-11-28T16:47:25.244+01:00", - "updated_at":"2017-11-28T16:47:25.244+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372263, - "value":"No", - "question_id":12951, - "created_at":"2017-11-29T12:17:43.747+01:00", - "updated_at":"2017-11-29T12:17:43.747+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373669, - "value":"Yes", - "question_id":12951, - "created_at":"2017-12-04T17:54:01.733+01:00", - "updated_at":"2017-12-04T17:54:01.733+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":373785, - "value":"Yes", - "question_id":12951, - "created_at":"2017-12-04T19:13:56.647+01:00", - "updated_at":"2017-12-04T19:13:56.647+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374038, - "value":"Planned", - "question_id":12951, - "created_at":"2017-12-06T06:57:40.616+01:00", - "updated_at":"2017-12-06T06:57:40.616+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374265, - "value":"No", - "question_id":12951, - "created_at":"2017-12-06T11:13:46.322+01:00", - "updated_at":"2017-12-06T11:13:46.322+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374664, - "value":"No", - "question_id":12951, - "created_at":"2017-12-13T09:39:19.269+01:00", - "updated_at":"2017-12-13T09:39:19.269+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375438, - "value":"Yes", - "question_id":12951, - "created_at":"2017-12-28T10:10:51.035+01:00", - "updated_at":"2017-12-28T10:10:51.035+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375714, - "value":"No", - "question_id":12951, - "created_at":"2018-01-18T13:23:09.179+01:00", - "updated_at":"2018-01-18T13:23:09.179+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":376010, - "value":"Yes", - "question_id":12951, - "created_at":"2018-02-16T09:44:58.950+01:00", - "updated_at":"2018-02-16T09:44:58.950+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377259, - "value":"", - "question_id":12951, - "created_at":"2018-04-26T10:04:33.987+02:00", - "updated_at":"2018-04-26T10:04:33.987+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":377261, - "value":"", - "question_id":12951, - "created_at":"2018-04-26T10:04:34.007+02:00", - "updated_at":"2018-04-26T10:04:34.007+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377262, - "value":"", - "question_id":12951, - "created_at":"2018-04-26T10:04:34.015+02:00", - "updated_at":"2018-04-26T10:04:34.015+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":377265, - "value":"", - "question_id":12951, - "created_at":"2018-04-26T10:04:34.039+02:00", - "updated_at":"2018-04-26T10:04:34.039+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":377266, - "value":"", - "question_id":12951, - "created_at":"2018-04-26T10:04:34.048+02:00", - "updated_at":"2018-04-26T10:04:34.048+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377267, - "value":"", - "question_id":12951, - "created_at":"2018-04-26T10:04:34.067+02:00", - "updated_at":"2018-04-26T10:04:34.067+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377268, - "value":"", - "question_id":12951, - "created_at":"2018-04-26T10:04:34.082+02:00", - "updated_at":"2018-04-26T10:04:34.082+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377269, - "value":"", - "question_id":12951, - "created_at":"2018-04-26T10:04:34.091+02:00", - "updated_at":"2018-04-26T10:04:34.091+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":377270, - "value":"", - "question_id":12951, - "created_at":"2018-04-26T10:04:34.111+02:00", - "updated_at":"2018-04-26T10:04:34.111+02:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377271, - "value":"", - "question_id":12951, - "created_at":"2018-04-26T10:04:34.122+02:00", - "updated_at":"2018-04-26T10:04:34.122+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756395, - "value":"Yes", - "question_id":12951, - "created_at":"2018-11-05T14:30:16.417+01:00", - "updated_at":"2018-11-05T14:30:16.417+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377272, - "value":"", - "question_id":12951, - "created_at":"2018-04-26T10:04:34.132+02:00", - "updated_at":"2018-04-26T10:04:34.132+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":1487869, - "value":"No", - "question_id":12951, - "created_at":"2020-11-26T17:37:28.180+01:00", - "updated_at":"2020-11-26T17:37:28.180+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "48":{ - "id":1487911, - "value":"Planned", - "question_id":12951, - "created_at":"2020-11-26T18:06:29.838+01:00", - "updated_at":"2020-11-26T18:06:29.838+01:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493636, - "value":"Planned", - "question_id":12951, - "created_at":"2020-12-18T14:59:37.902+01:00", - "updated_at":"2020-12-18T14:59:37.902+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1517909, - "value":"Yes", - "question_id":12951, - "created_at":"2022-09-29T14:36:27.517+02:00", - "updated_at":"2022-09-29T14:36:27.517+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":1518026, - "value":"No", - "question_id":12951, - "created_at":"2022-10-10T14:45:55.684+02:00", - "updated_at":"2022-10-10T14:45:55.684+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"intrusion", - "title":"Do you offer Intrusion detection and prevention?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Intrusion detection", - "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365583, - "value":"No", - "question_id":13005, - "created_at":"2017-09-06T12:13:52.269+02:00", - "updated_at":"2017-09-06T12:13:52.269+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":366175, - "value":"Planned", - "question_id":13005, - "created_at":"2017-09-26T09:09:11.734+02:00", - "updated_at":"2017-09-26T09:09:11.734+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366325, - "value":"No", - "question_id":13005, - "created_at":"2017-09-29T13:44:35.663+02:00", - "updated_at":"2017-09-29T13:44:35.663+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366752, - "value":"No", - "question_id":13005, - "created_at":"2017-10-10T12:53:40.120+02:00", - "updated_at":"2017-10-10T12:53:40.120+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366929, - "value":"No", - "question_id":13005, - "created_at":"2017-10-11T10:44:44.565+02:00", - "updated_at":"2017-10-11T10:44:44.565+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367329, - "value":"Yes", - "question_id":13005, - "created_at":"2017-10-11T21:03:31.956+02:00", - "updated_at":"2017-10-11T21:03:31.956+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367629, - "value":"Yes", - "question_id":13005, - "created_at":"2017-10-23T11:49:42.754+02:00", - "updated_at":"2017-10-23T11:49:42.754+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":367648, - "value":"Yes", - "question_id":13005, - "created_at":"2017-10-23T12:22:39.969+02:00", - "updated_at":"2017-10-23T12:22:39.969+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367711, - "value":"No", - "question_id":13005, - "created_at":"2017-10-23T19:26:47.585+02:00", - "updated_at":"2017-10-23T19:26:47.585+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367910, - "value":"No", - "question_id":13005, - "created_at":"2017-10-24T13:13:33.029+02:00", - "updated_at":"2017-10-24T13:13:33.029+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368160, - "value":"No", - "question_id":13005, - "created_at":"2017-10-30T09:19:58.499+01:00", - "updated_at":"2017-10-30T09:19:58.499+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368726, - "value":"No", - "question_id":13005, - "created_at":"2017-11-02T13:23:40.500+01:00", - "updated_at":"2017-11-02T13:23:40.500+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368800, - "value":"No", - "question_id":13005, - "created_at":"2017-11-06T16:12:56.497+01:00", - "updated_at":"2017-11-06T16:12:56.497+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369198, - "value":"No", - "question_id":13005, - "created_at":"2017-11-10T15:33:43.681+01:00", - "updated_at":"2017-11-10T15:33:43.681+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369368, - "value":"Yes", - "question_id":13005, - "created_at":"2017-11-11T20:39:48.865+01:00", - "updated_at":"2017-11-11T20:39:48.865+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370168, - "value":"No", - "question_id":13005, - "created_at":"2017-11-23T13:55:09.941+01:00", - "updated_at":"2017-11-23T13:55:09.941+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370735, - "value":"No", - "question_id":13005, - "created_at":"2017-11-27T09:32:36.655+01:00", - "updated_at":"2017-11-27T09:32:36.655+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370936, - "value":"Planned", - "question_id":13005, - "created_at":"2017-11-27T10:37:34.001+01:00", - "updated_at":"2017-11-27T10:37:34.001+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371354, - "value":"No", - "question_id":13005, - "created_at":"2017-11-27T14:34:51.575+01:00", - "updated_at":"2017-11-27T14:34:51.575+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371561, - "value":"No", - "question_id":13005, - "created_at":"2017-11-27T16:37:46.240+01:00", - "updated_at":"2017-11-27T16:37:46.240+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371730, - "value":"No", - "question_id":13005, - "created_at":"2017-11-28T13:09:22.888+01:00", - "updated_at":"2017-11-28T13:09:22.888+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372266, - "value":"Yes", - "question_id":13005, - "created_at":"2017-11-29T12:18:01.187+01:00", - "updated_at":"2017-11-29T12:18:01.187+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372599, - "value":"No", - "question_id":13005, - "created_at":"2017-11-29T21:37:43.955+01:00", - "updated_at":"2017-11-29T21:37:43.955+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373302, - "value":"No", - "question_id":13005, - "created_at":"2017-12-04T11:22:38.833+01:00", - "updated_at":"2017-12-04T11:22:38.833+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373672, - "value":"No", - "question_id":13005, - "created_at":"2017-12-04T17:54:19.613+01:00", - "updated_at":"2017-12-04T17:54:19.613+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374269, - "value":"No", - "question_id":13005, - "created_at":"2017-12-06T11:14:43.752+01:00", - "updated_at":"2017-12-06T11:14:43.752+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374666, - "value":"No", - "question_id":13005, - "created_at":"2017-12-13T09:39:35.679+01:00", - "updated_at":"2017-12-13T09:39:35.679+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375424, - "value":"Yes", - "question_id":13005, - "created_at":"2017-12-28T10:07:20.965+01:00", - "updated_at":"2017-12-28T10:07:20.965+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375717, - "value":"No", - "question_id":13005, - "created_at":"2018-01-18T13:23:55.231+01:00", - "updated_at":"2018-01-18T13:23:55.231+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":376044, - "value":"Yes", - "question_id":13005, - "created_at":"2018-02-16T11:24:48.283+01:00", - "updated_at":"2018-02-16T11:24:48.283+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377409, - "value":"", - "question_id":13005, - "created_at":"2018-04-26T10:04:35.603+02:00", - "updated_at":"2018-04-26T10:04:35.603+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":377410, - "value":"", - "question_id":13005, - "created_at":"2018-04-26T10:04:35.614+02:00", - "updated_at":"2018-04-26T10:04:35.614+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377411, - "value":"", - "question_id":13005, - "created_at":"2018-04-26T10:04:35.620+02:00", - "updated_at":"2018-04-26T10:04:35.620+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":377414, - "value":"", - "question_id":13005, - "created_at":"2018-04-26T10:04:35.639+02:00", - "updated_at":"2018-04-26T10:04:35.639+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377415, - "value":"", - "question_id":13005, - "created_at":"2018-04-26T10:04:35.654+02:00", - "updated_at":"2018-04-26T10:04:35.654+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377416, - "value":"", - "question_id":13005, - "created_at":"2018-04-26T10:04:35.666+02:00", - "updated_at":"2018-04-26T10:04:35.666+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377417, - "value":"", - "question_id":13005, - "created_at":"2018-04-26T10:04:35.673+02:00", - "updated_at":"2018-04-26T10:04:35.673+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377418, - "value":"", - "question_id":13005, - "created_at":"2018-04-26T10:04:35.691+02:00", - "updated_at":"2018-04-26T10:04:35.691+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383904, - "value":"No", - "question_id":13005, - "created_at":"2017-12-05T15:51:59.512+01:00", - "updated_at":"2017-12-05T15:51:59.512+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756403, - "value":"Yes", - "question_id":13005, - "created_at":"2018-11-05T14:32:58.399+01:00", - "updated_at":"2018-11-05T14:32:58.399+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":756830, - "value":"Yes", - "question_id":13005, - "created_at":"2018-11-07T12:38:26.023+01:00", - "updated_at":"2018-11-07T12:38:26.023+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377419, - "value":"", - "question_id":13005, - "created_at":"2018-04-26T10:04:35.700+02:00", - "updated_at":"2018-04-26T10:04:35.700+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1517907, - "value":"Yes", - "question_id":13005, - "created_at":"2022-09-29T14:35:09.674+02:00", - "updated_at":"2022-09-29T14:35:09.674+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"security-audit", - "title":"Do you offer Security auditing?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Security auditing", - "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365586, - "value":"Yes", - "question_id":13041, - "created_at":"2017-09-06T12:14:03.110+02:00", - "updated_at":"2017-09-06T12:14:03.110+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365896, - "value":"No", - "question_id":13041, - "created_at":"2017-09-13T13:42:37.300+02:00", - "updated_at":"2017-09-13T13:42:37.300+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366333, - "value":"Yes", - "question_id":13041, - "created_at":"2017-09-29T13:46:23.016+02:00", - "updated_at":"2017-09-29T13:46:23.016+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366613, - "value":"Yes", - "question_id":13041, - "created_at":"2017-10-08T09:22:08.622+02:00", - "updated_at":"2017-10-08T09:22:08.622+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366753, - "value":"Yes", - "question_id":13041, - "created_at":"2017-10-10T12:54:05.193+02:00", - "updated_at":"2017-10-10T12:54:05.193+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367635, - "value":"No", - "question_id":13041, - "created_at":"2017-10-23T11:50:29.944+02:00", - "updated_at":"2017-10-23T11:50:29.944+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367713, - "value":"No", - "question_id":13041, - "created_at":"2017-10-23T19:26:56.964+02:00", - "updated_at":"2017-10-23T19:26:56.964+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367913, - "value":"Yes", - "question_id":13041, - "created_at":"2017-10-24T13:14:36.849+02:00", - "updated_at":"2017-10-24T13:14:36.849+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368162, - "value":"No", - "question_id":13041, - "created_at":"2017-10-30T09:20:04.294+01:00", - "updated_at":"2017-10-30T09:20:04.294+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368390, - "value":"No", - "question_id":13041, - "created_at":"2017-10-31T13:04:25.240+01:00", - "updated_at":"2017-10-31T13:04:25.240+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368728, - "value":"No", - "question_id":13041, - "created_at":"2017-11-02T13:23:46.233+01:00", - "updated_at":"2017-11-02T13:23:46.233+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369370, - "value":"No", - "question_id":13041, - "created_at":"2017-11-11T20:40:56.409+01:00", - "updated_at":"2017-11-11T20:40:56.409+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370170, - "value":"No", - "question_id":13041, - "created_at":"2017-11-23T13:56:17.066+01:00", - "updated_at":"2017-11-23T13:56:17.066+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370737, - "value":"No", - "question_id":13041, - "created_at":"2017-11-27T09:32:41.300+01:00", - "updated_at":"2017-11-27T09:32:41.300+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370938, - "value":"Yes", - "question_id":13041, - "created_at":"2017-11-27T10:37:48.617+01:00", - "updated_at":"2017-11-27T10:37:48.617+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371110, - "value":"No", - "question_id":13041, - "created_at":"2017-11-27T13:46:14.050+01:00", - "updated_at":"2017-11-27T13:46:14.050+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371563, - "value":"No", - "question_id":13041, - "created_at":"2017-11-27T16:37:57.273+01:00", - "updated_at":"2017-11-27T16:37:57.273+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371732, - "value":"No", - "question_id":13041, - "created_at":"2017-11-28T13:09:27.462+01:00", - "updated_at":"2017-11-28T13:09:27.462+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":372039, - "value":"No", - "question_id":13041, - "created_at":"2017-11-28T16:47:54.266+01:00", - "updated_at":"2017-11-28T16:47:54.266+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372270, - "value":"Yes", - "question_id":13041, - "created_at":"2017-11-29T12:19:04.530+01:00", - "updated_at":"2017-11-29T12:19:04.530+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372441, - "value":"No", - "question_id":13041, - "created_at":"2017-11-29T13:02:19.761+01:00", - "updated_at":"2017-11-29T13:02:19.761+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372601, - "value":"No", - "question_id":13041, - "created_at":"2017-11-29T21:37:55.510+01:00", - "updated_at":"2017-11-29T21:37:55.510+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373674, - "value":"No", - "question_id":13041, - "created_at":"2017-12-04T17:54:33.165+01:00", - "updated_at":"2017-12-04T17:54:33.165+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374039, - "value":"No", - "question_id":13041, - "created_at":"2017-12-06T06:57:54.680+01:00", - "updated_at":"2017-12-06T06:57:54.680+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374271, - "value":"No", - "question_id":13041, - "created_at":"2017-12-06T11:15:02.815+01:00", - "updated_at":"2017-12-06T11:15:02.815+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374669, - "value":"No", - "question_id":13041, - "created_at":"2017-12-13T09:39:54.711+01:00", - "updated_at":"2017-12-13T09:39:54.711+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375009, - "value":"No", - "question_id":13041, - "created_at":"2017-12-14T14:19:09.844+01:00", - "updated_at":"2017-12-14T14:19:09.844+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375436, - "value":"Yes", - "question_id":13041, - "created_at":"2017-12-28T10:10:26.413+01:00", - "updated_at":"2017-12-28T10:10:26.413+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377494, - "value":"", - "question_id":13041, - "created_at":"2018-04-26T10:04:36.339+02:00", - "updated_at":"2018-04-26T10:04:36.339+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":377495, - "value":"", - "question_id":13041, - "created_at":"2018-04-26T10:04:36.349+02:00", - "updated_at":"2018-04-26T10:04:36.349+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377496, - "value":"", - "question_id":13041, - "created_at":"2018-04-26T10:04:36.355+02:00", - "updated_at":"2018-04-26T10:04:36.355+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":377499, - "value":"", - "question_id":13041, - "created_at":"2018-04-26T10:04:36.371+02:00", - "updated_at":"2018-04-26T10:04:36.371+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377500, - "value":"", - "question_id":13041, - "created_at":"2018-04-26T10:04:36.385+02:00", - "updated_at":"2018-04-26T10:04:36.385+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377501, - "value":"", - "question_id":13041, - "created_at":"2018-04-26T10:04:36.395+02:00", - "updated_at":"2018-04-26T10:04:36.395+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377502, - "value":"", - "question_id":13041, - "created_at":"2018-04-26T10:04:36.402+02:00", - "updated_at":"2018-04-26T10:04:36.402+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377504, - "value":"", - "question_id":13041, - "created_at":"2018-04-26T10:04:36.422+02:00", - "updated_at":"2018-04-26T10:04:36.422+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":384002, - "value":"Yes", - "question_id":13041, - "created_at":"2017-12-05T15:47:54.461+01:00", - "updated_at":"2017-12-05T15:47:54.461+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":826844, - "value":"Yes", - "question_id":13041, - "created_at":"2019-09-17T09:47:13.361+02:00", - "updated_at":"2019-09-17T09:47:13.361+02:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":827098, - "value":"Yes", - "question_id":13041, - "created_at":"2019-10-02T17:05:30.852+02:00", - "updated_at":"2019-10-02T17:05:30.852+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377505, - "value":"", - "question_id":13041, - "created_at":"2018-04-26T10:04:36.429+02:00", - "updated_at":"2018-04-26T10:04:36.429+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":1502660, - "value":"Planned", - "question_id":13041, - "created_at":"2021-11-16T00:43:17.727+01:00", - "updated_at":"2021-11-16T00:43:17.727+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":1509994, - "value":"Yes", - "question_id":13041, - "created_at":"2021-11-29T17:16:36.050+01:00", - "updated_at":"2021-11-29T17:16:36.050+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1517908, - "value":"Yes", - "question_id":13041, - "created_at":"2022-09-29T14:35:37.494+02:00", - "updated_at":"2022-09-29T14:35:37.494+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"web-filtering", - "title":"Do you offer Web filtering?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Web filtering", - "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365584, - "value":"No", - "question_id":12993, - "created_at":"2017-09-06T12:13:54.454+02:00", - "updated_at":"2017-09-06T12:13:54.454+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365797, - "value":"No", - "question_id":12993, - "created_at":"2017-09-07T15:51:13.689+02:00", - "updated_at":"2017-09-07T15:51:13.689+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365895, - "value":"No", - "question_id":12993, - "created_at":"2017-09-13T13:42:27.491+02:00", - "updated_at":"2017-09-13T13:42:27.491+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366324, - "value":"No", - "question_id":12993, - "created_at":"2017-09-29T13:44:32.616+02:00", - "updated_at":"2017-09-29T13:44:32.616+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366751, - "value":"No", - "question_id":12993, - "created_at":"2017-10-10T12:53:22.442+02:00", - "updated_at":"2017-10-10T12:53:22.442+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366928, - "value":"No", - "question_id":12993, - "created_at":"2017-10-11T10:44:21.462+02:00", - "updated_at":"2017-10-11T10:44:21.462+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367626, - "value":"No", - "question_id":12993, - "created_at":"2017-10-23T11:49:27.972+02:00", - "updated_at":"2017-10-23T11:49:27.972+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367710, - "value":"No", - "question_id":12993, - "created_at":"2017-10-23T19:26:44.084+02:00", - "updated_at":"2017-10-23T19:26:44.084+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367911, - "value":"No", - "question_id":12993, - "created_at":"2017-10-24T13:14:02.490+02:00", - "updated_at":"2017-10-24T13:14:02.490+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368159, - "value":"No", - "question_id":12993, - "created_at":"2017-10-30T09:19:56.227+01:00", - "updated_at":"2017-10-30T09:19:56.227+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368725, - "value":"No", - "question_id":12993, - "created_at":"2017-11-02T13:23:37.666+01:00", - "updated_at":"2017-11-02T13:23:37.666+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368753, - "value":"No", - "question_id":12993, - "created_at":"2017-11-03T14:32:10.925+01:00", - "updated_at":"2017-11-03T14:32:10.925+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369197, - "value":"Yes", - "question_id":12993, - "created_at":"2017-11-10T15:33:39.556+01:00", - "updated_at":"2017-11-10T15:33:39.556+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369366, - "value":"Yes", - "question_id":12993, - "created_at":"2017-11-11T20:36:52.947+01:00", - "updated_at":"2017-11-11T20:36:52.947+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370167, - "value":"No", - "question_id":12993, - "created_at":"2017-11-23T13:55:06.307+01:00", - "updated_at":"2017-11-23T13:55:06.307+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370734, - "value":"No", - "question_id":12993, - "created_at":"2017-11-27T09:32:33.128+01:00", - "updated_at":"2017-11-27T09:32:33.128+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371353, - "value":"No", - "question_id":12993, - "created_at":"2017-11-27T14:34:47.727+01:00", - "updated_at":"2017-11-27T14:34:47.727+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371560, - "value":"No", - "question_id":12993, - "created_at":"2017-11-27T16:37:42.071+01:00", - "updated_at":"2017-11-27T16:37:42.071+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371729, - "value":"No", - "question_id":12993, - "created_at":"2017-11-28T13:09:19.541+01:00", - "updated_at":"2017-11-28T13:09:19.541+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371863, - "value":"No", - "question_id":12993, - "created_at":"2017-11-28T14:56:03.380+01:00", - "updated_at":"2017-11-28T14:56:03.380+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372265, - "value":"No", - "question_id":12993, - "created_at":"2017-11-29T12:17:57.607+01:00", - "updated_at":"2017-11-29T12:17:57.607+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372450, - "value":"No", - "question_id":12993, - "created_at":"2017-11-29T13:07:12.550+01:00", - "updated_at":"2017-11-29T13:07:12.550+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":372537, - "value":"No", - "question_id":12993, - "created_at":"2017-11-29T20:28:56.169+01:00", - "updated_at":"2017-11-29T20:28:56.169+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372598, - "value":"No", - "question_id":12993, - "created_at":"2017-11-29T21:37:36.718+01:00", - "updated_at":"2017-11-29T21:37:36.718+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373301, - "value":"No", - "question_id":12993, - "created_at":"2017-12-04T11:22:35.794+01:00", - "updated_at":"2017-12-04T11:22:35.794+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373671, - "value":"Yes", - "question_id":12993, - "created_at":"2017-12-04T17:54:14.779+01:00", - "updated_at":"2017-12-04T17:54:14.779+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374268, - "value":"No", - "question_id":12993, - "created_at":"2017-12-06T11:14:31.337+01:00", - "updated_at":"2017-12-06T11:14:31.337+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374665, - "value":"No", - "question_id":12993, - "created_at":"2017-12-13T09:39:30.291+01:00", - "updated_at":"2017-12-13T09:39:30.291+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375006, - "value":"No", - "question_id":12993, - "created_at":"2017-12-14T14:19:01.896+01:00", - "updated_at":"2017-12-14T14:19:01.896+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375437, - "value":"Yes", - "question_id":12993, - "created_at":"2017-12-28T10:10:31.994+01:00", - "updated_at":"2017-12-28T10:10:31.994+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375715, - "value":"Yes", - "question_id":12993, - "created_at":"2018-01-18T13:23:18.937+01:00", - "updated_at":"2018-01-18T13:23:18.937+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377359, - "value":"", - "question_id":12993, - "created_at":"2018-04-26T10:04:35.088+02:00", - "updated_at":"2018-04-26T10:04:35.088+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":377360, - "value":"", - "question_id":12993, - "created_at":"2018-04-26T10:04:35.102+02:00", - "updated_at":"2018-04-26T10:04:35.102+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377361, - "value":"", - "question_id":12993, - "created_at":"2018-04-26T10:04:35.109+02:00", - "updated_at":"2018-04-26T10:04:35.109+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":377363, - "value":"", - "question_id":12993, - "created_at":"2018-04-26T10:04:35.124+02:00", - "updated_at":"2018-04-26T10:04:35.124+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":377364, - "value":"", - "question_id":12993, - "created_at":"2018-04-26T10:04:35.133+02:00", - "updated_at":"2018-04-26T10:04:35.133+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377365, - "value":"", - "question_id":12993, - "created_at":"2018-04-26T10:04:35.153+02:00", - "updated_at":"2018-04-26T10:04:35.153+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377366, - "value":"", - "question_id":12993, - "created_at":"2018-04-26T10:04:35.168+02:00", - "updated_at":"2018-04-26T10:04:35.168+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377367, - "value":"", - "question_id":12993, - "created_at":"2018-04-26T10:04:35.177+02:00", - "updated_at":"2018-04-26T10:04:35.177+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":377368, - "value":"", - "question_id":12993, - "created_at":"2018-04-26T10:04:35.193+02:00", - "updated_at":"2018-04-26T10:04:35.193+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377369, - "value":"", - "question_id":12993, - "created_at":"2018-04-26T10:04:35.205+02:00", - "updated_at":"2018-04-26T10:04:35.205+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383969, - "value":"No", - "question_id":12993, - "created_at":"2017-12-05T15:47:39.358+01:00", - "updated_at":"2017-12-05T15:47:39.358+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377370, - "value":"", - "question_id":12993, - "created_at":"2018-04-26T10:04:35.215+02:00", - "updated_at":"2018-04-26T10:04:35.215+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"PGP-key", - "title":"Do you provide PGP server key?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"PGP key server", - "title_detailed":"Operation of PGP key server.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "16":{ - "id":366151, - "value":"Yes", - "question_id":12943, - "created_at":"2017-09-19T14:56:24.923+02:00", - "updated_at":"2017-09-19T14:56:24.923+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366320, - "value":"No", - "question_id":12943, - "created_at":"2017-09-29T13:44:03.204+02:00", - "updated_at":"2017-09-29T13:44:03.204+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366922, - "value":"Yes", - "question_id":12943, - "created_at":"2017-10-11T10:43:17.372+02:00", - "updated_at":"2017-10-11T10:43:17.372+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":367138, - "value":"No", - "question_id":12943, - "created_at":"2017-10-11T13:31:20.638+02:00", - "updated_at":"2017-10-11T13:31:20.638+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367905, - "value":"No", - "question_id":12943, - "created_at":"2017-10-24T13:10:52.451+02:00", - "updated_at":"2017-10-24T13:10:52.451+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368720, - "value":"Yes", - "question_id":12943, - "created_at":"2017-11-02T13:23:22.216+01:00", - "updated_at":"2017-11-02T13:23:22.216+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":368795, - "value":"No", - "question_id":12943, - "created_at":"2017-11-06T16:09:23.722+01:00", - "updated_at":"2017-11-06T16:09:23.722+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369359, - "value":"Yes", - "question_id":12943, - "created_at":"2017-11-11T20:35:51.208+01:00", - "updated_at":"2017-11-11T20:35:51.208+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370161, - "value":"No", - "question_id":12943, - "created_at":"2017-11-23T13:53:46.373+01:00", - "updated_at":"2017-11-23T13:53:46.373+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":370353, - "value":"No", - "question_id":12943, - "created_at":"2017-11-24T16:11:25.031+01:00", - "updated_at":"2017-11-24T16:11:25.031+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370729, - "value":"No", - "question_id":12943, - "created_at":"2017-11-27T09:32:12.945+01:00", - "updated_at":"2017-11-27T09:32:12.945+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370932, - "value":"Yes", - "question_id":12943, - "created_at":"2017-11-27T10:36:57.541+01:00", - "updated_at":"2017-11-27T10:36:57.541+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372473, - "value":"No", - "question_id":12943, - "created_at":"2017-11-29T16:06:31.643+01:00", - "updated_at":"2017-11-29T16:06:31.643+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":372798, - "value":"Yes", - "question_id":12943, - "created_at":"2017-11-30T08:49:25.863+01:00", - "updated_at":"2017-11-30T08:49:25.863+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":372883, - "value":"Yes", - "question_id":12943, - "created_at":"2017-11-30T14:20:05.067+01:00", - "updated_at":"2017-11-30T14:20:05.067+01:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373298, - "value":"Yes", - "question_id":12943, - "created_at":"2017-12-04T11:22:14.572+01:00", - "updated_at":"2017-12-04T11:22:14.572+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373667, - "value":"Yes", - "question_id":12943, - "created_at":"2017-12-04T17:53:40.860+01:00", - "updated_at":"2017-12-04T17:53:40.860+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":373782, - "value":"Yes", - "question_id":12943, - "created_at":"2017-12-04T19:13:07.859+01:00", - "updated_at":"2017-12-04T19:13:07.859+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":373816, - "value":"Yes", - "question_id":12943, - "created_at":"2017-12-05T09:47:08.573+01:00", - "updated_at":"2017-12-05T09:47:08.573+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374262, - "value":"No", - "question_id":12943, - "created_at":"2017-12-06T11:13:07.068+01:00", - "updated_at":"2017-12-06T11:13:07.068+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374659, - "value":"Yes", - "question_id":12943, - "created_at":"2017-12-13T09:37:59.039+01:00", - "updated_at":"2017-12-13T09:37:59.039+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375002, - "value":"No", - "question_id":12943, - "created_at":"2017-12-14T14:18:51.095+01:00", - "updated_at":"2017-12-14T14:18:51.095+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375494, - "value":"No", - "question_id":12943, - "created_at":"2017-12-28T10:30:59.119+01:00", - "updated_at":"2017-12-28T10:30:59.119+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377168, - "value":"", - "question_id":12943, - "created_at":"2018-04-26T10:04:32.909+02:00", - "updated_at":"2018-04-26T10:04:32.909+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "48":{ - "id":377169, - "value":"", - "question_id":12943, - "created_at":"2018-04-26T10:04:32.918+02:00", - "updated_at":"2018-04-26T10:04:32.918+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377171, - "value":"", - "question_id":12943, - "created_at":"2018-04-26T10:04:32.933+02:00", - "updated_at":"2018-04-26T10:04:32.933+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":377174, - "value":"", - "question_id":12943, - "created_at":"2018-04-26T10:04:32.955+02:00", - "updated_at":"2018-04-26T10:04:32.955+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":377175, - "value":"", - "question_id":12943, - "created_at":"2018-04-26T10:04:32.963+02:00", - "updated_at":"2018-04-26T10:04:32.963+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":377176, - "value":"", - "question_id":12943, - "created_at":"2018-04-26T10:04:32.975+02:00", - "updated_at":"2018-04-26T10:04:32.975+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377178, - "value":"", - "question_id":12943, - "created_at":"2018-04-26T10:04:32.994+02:00", - "updated_at":"2018-04-26T10:04:32.994+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377179, - "value":"", - "question_id":12943, - "created_at":"2018-04-26T10:04:33.002+02:00", - "updated_at":"2018-04-26T10:04:33.002+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":377180, - "value":"", - "question_id":12943, - "created_at":"2018-04-26T10:04:33.008+02:00", - "updated_at":"2018-04-26T10:04:33.008+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":377181, - "value":"", - "question_id":12943, - "created_at":"2018-04-26T10:04:33.018+02:00", - "updated_at":"2018-04-26T10:04:33.018+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":377183, - "value":"", - "question_id":12943, - "created_at":"2018-04-26T10:04:33.030+02:00", - "updated_at":"2018-04-26T10:04:33.030+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":377184, - "value":"", - "question_id":12943, - "created_at":"2018-04-26T10:04:33.037+02:00", - "updated_at":"2018-04-26T10:04:33.037+02:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377185, - "value":"", - "question_id":12943, - "created_at":"2018-04-26T10:04:33.046+02:00", - "updated_at":"2018-04-26T10:04:33.046+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383913, - "value":"Yes", - "question_id":12943, - "created_at":"2017-12-06T13:24:01.392+01:00", - "updated_at":"2017-12-06T13:24:01.392+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641568, - "value":"No", - "question_id":12943, - "created_at":"2018-10-30T13:59:58.232+01:00", - "updated_at":"2018-10-30T13:59:58.232+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756396, - "value":"Yes", - "question_id":12943, - "created_at":"2018-11-05T14:30:28.982+01:00", - "updated_at":"2018-11-05T14:30:28.982+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377186, - "value":"", - "question_id":12943, - "created_at":"2018-04-26T10:04:33.055+02:00", - "updated_at":"2018-04-26T10:04:33.055+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1483381, - "value":"Yes", - "question_id":12943, - "created_at":"2020-11-16T13:54:00.003+01:00", - "updated_at":"2020-11-16T13:54:00.003+01:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":1499389, - "value":"Planned", - "question_id":12943, - "created_at":"2021-11-02T15:25:36.554+01:00", - "updated_at":"2021-11-02T15:25:36.554+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":1501061, - "value":"Planned", - "question_id":12943, - "created_at":"2021-11-09T16:18:06.085+01:00", - "updated_at":"2021-11-09T16:18:06.085+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"identifier-reg", - "title":"Do you offer Identifier registry?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Identifier registry", - "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", - "tags":[ - "security" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365600, - "value":"No", - "question_id":12969, - "created_at":"2017-09-06T12:15:14.268+02:00", - "updated_at":"2017-09-06T12:15:14.268+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365904, - "value":"No", - "question_id":12969, - "created_at":"2017-09-13T13:43:27.606+02:00", - "updated_at":"2017-09-13T13:43:27.606+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366344, - "value":"No", - "question_id":12969, - "created_at":"2017-09-29T13:48:44.420+02:00", - "updated_at":"2017-09-29T13:48:44.420+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366563, - "value":"No", - "question_id":12969, - "created_at":"2017-10-08T09:14:41.671+02:00", - "updated_at":"2017-10-08T09:14:41.671+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":366657, - "value":"Yes", - "question_id":12969, - "created_at":"2017-10-09T11:11:43.876+02:00", - "updated_at":"2017-10-09T11:11:43.876+02:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366762, - "value":"No", - "question_id":12969, - "created_at":"2017-10-10T13:00:31.102+02:00", - "updated_at":"2017-10-10T13:00:31.102+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":366818, - "value":"No", - "question_id":12969, - "created_at":"2017-10-10T16:18:26.648+02:00", - "updated_at":"2017-10-10T16:18:26.648+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366901, - "value":"No", - "question_id":12969, - "created_at":"2017-10-11T09:39:00.696+02:00", - "updated_at":"2017-10-11T09:39:00.696+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367233, - "value":"No", - "question_id":12969, - "created_at":"2017-10-11T14:15:16.019+02:00", - "updated_at":"2017-10-11T14:15:16.019+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367931, - "value":"No", - "question_id":12969, - "created_at":"2017-10-24T13:19:57.098+02:00", - "updated_at":"2017-10-24T13:19:57.098+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368177, - "value":"No", - "question_id":12969, - "created_at":"2017-10-30T09:21:52.474+01:00", - "updated_at":"2017-10-30T09:21:52.474+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368534, - "value":"No", - "question_id":12969, - "created_at":"2017-10-31T14:31:03.755+01:00", - "updated_at":"2017-10-31T14:31:03.755+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369215, - "value":"Yes", - "question_id":12969, - "created_at":"2017-11-10T15:35:52.956+01:00", - "updated_at":"2017-11-10T15:35:52.956+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369383, - "value":"No", - "question_id":12969, - "created_at":"2017-11-11T20:44:29.399+01:00", - "updated_at":"2017-11-11T20:44:29.399+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370202, - "value":"No", - "question_id":12969, - "created_at":"2017-11-23T14:07:20.824+01:00", - "updated_at":"2017-11-23T14:07:20.824+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370755, - "value":"No", - "question_id":12969, - "created_at":"2017-11-27T09:34:08.518+01:00", - "updated_at":"2017-11-27T09:34:08.518+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370948, - "value":"No", - "question_id":12969, - "created_at":"2017-11-27T10:38:54.543+01:00", - "updated_at":"2017-11-27T10:38:54.543+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371118, - "value":"No", - "question_id":12969, - "created_at":"2017-11-27T13:47:04.896+01:00", - "updated_at":"2017-11-27T13:47:04.896+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371751, - "value":"No", - "question_id":12969, - "created_at":"2017-11-28T13:11:09.715+01:00", - "updated_at":"2017-11-28T13:11:09.715+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372292, - "value":"No", - "question_id":12969, - "created_at":"2017-11-29T12:25:01.002+01:00", - "updated_at":"2017-11-29T12:25:01.002+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372618, - "value":"No", - "question_id":12969, - "created_at":"2017-11-29T21:41:00.221+01:00", - "updated_at":"2017-11-29T21:41:00.221+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":373464, - "value":"No", - "question_id":12969, - "created_at":"2017-12-04T12:41:25.985+01:00", - "updated_at":"2017-12-04T12:41:25.985+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373690, - "value":"No", - "question_id":12969, - "created_at":"2017-12-04T17:56:49.204+01:00", - "updated_at":"2017-12-04T17:56:49.204+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374056, - "value":"No", - "question_id":12969, - "created_at":"2017-12-06T07:22:34.608+01:00", - "updated_at":"2017-12-06T07:22:34.608+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374320, - "value":"No", - "question_id":12969, - "created_at":"2017-12-06T13:01:20.903+01:00", - "updated_at":"2017-12-06T13:01:20.903+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":374627, - "value":"No", - "question_id":12969, - "created_at":"2017-12-11T09:30:04.877+01:00", - "updated_at":"2017-12-11T09:30:04.877+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375323, - "value":"No", - "question_id":12969, - "created_at":"2017-12-27T14:41:50.744+01:00", - "updated_at":"2017-12-27T14:41:50.744+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375433, - "value":"Yes", - "question_id":12969, - "created_at":"2017-12-28T10:08:38.445+01:00", - "updated_at":"2017-12-28T10:08:38.445+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":376014, - "value":"Yes", - "question_id":12969, - "created_at":"2018-02-16T09:46:44.760+01:00", - "updated_at":"2018-02-16T09:46:44.760+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377882, - "value":"", - "question_id":12969, - "created_at":"2018-04-26T10:04:39.375+02:00", - "updated_at":"2018-04-26T10:04:39.375+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":377883, - "value":"", - "question_id":12969, - "created_at":"2018-04-26T10:04:39.388+02:00", - "updated_at":"2018-04-26T10:04:39.388+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377884, - "value":"", - "question_id":12969, - "created_at":"2018-04-26T10:04:39.395+02:00", - "updated_at":"2018-04-26T10:04:39.395+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":377886, - "value":"", - "question_id":12969, - "created_at":"2018-04-26T10:04:39.410+02:00", - "updated_at":"2018-04-26T10:04:39.410+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":377887, - "value":"", - "question_id":12969, - "created_at":"2018-04-26T10:04:39.419+02:00", - "updated_at":"2018-04-26T10:04:39.419+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":377888, - "value":"", - "question_id":12969, - "created_at":"2018-04-26T10:04:39.434+02:00", - "updated_at":"2018-04-26T10:04:39.434+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377889, - "value":"", - "question_id":12969, - "created_at":"2018-04-26T10:04:39.443+02:00", - "updated_at":"2018-04-26T10:04:39.443+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377890, - "value":"", - "question_id":12969, - "created_at":"2018-04-26T10:04:39.458+02:00", - "updated_at":"2018-04-26T10:04:39.458+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":377891, - "value":"", - "question_id":12969, - "created_at":"2018-04-26T10:04:39.466+02:00", - "updated_at":"2018-04-26T10:04:39.466+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377892, - "value":"", - "question_id":12969, - "created_at":"2018-04-26T10:04:39.486+02:00", - "updated_at":"2018-04-26T10:04:39.486+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383984, - "value":"Yes", - "question_id":12969, - "created_at":"2017-12-06T13:29:17.096+01:00", - "updated_at":"2017-12-06T13:29:17.096+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":739157, - "value":"Yes", - "question_id":12969, - "created_at":"2018-11-03T17:04:47.690+01:00", - "updated_at":"2018-11-03T17:04:47.690+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377893, - "value":"", - "question_id":12969, - "created_at":"2018-04-26T10:04:39.496+02:00", - "updated_at":"2018-04-26T10:04:39.496+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":1483409, - "value":"Yes", - "question_id":12969, - "created_at":"2020-11-16T13:59:54.794+01:00", - "updated_at":"2020-11-16T13:59:54.794+01:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"post-production", - "title":"Do you offer Media post-production?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Media post production", - "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", - "tags":[ - "multimedia" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365636, - "value":"No", - "question_id":12925, - "created_at":"2017-09-06T12:18:56.835+02:00", - "updated_at":"2017-09-06T12:18:56.835+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365701, - "value":"Yes", - "question_id":12925, - "created_at":"2017-09-07T15:33:55.197+02:00", - "updated_at":"2017-09-07T15:33:55.197+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365923, - "value":"No", - "question_id":12925, - "created_at":"2017-09-13T13:45:55.786+02:00", - "updated_at":"2017-09-13T13:45:55.786+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366367, - "value":"No", - "question_id":12925, - "created_at":"2017-09-29T13:52:38.539+02:00", - "updated_at":"2017-09-29T13:52:38.539+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366590, - "value":"No", - "question_id":12925, - "created_at":"2017-10-08T09:18:57.308+02:00", - "updated_at":"2017-10-08T09:18:57.308+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366918, - "value":"No", - "question_id":12925, - "created_at":"2017-10-11T10:42:36.245+02:00", - "updated_at":"2017-10-11T10:42:36.245+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367492, - "value":"No", - "question_id":12925, - "created_at":"2017-10-17T12:05:49.350+02:00", - "updated_at":"2017-10-17T12:05:49.350+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367757, - "value":"No", - "question_id":12925, - "created_at":"2017-10-23T19:34:06.856+02:00", - "updated_at":"2017-10-23T19:34:06.856+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367960, - "value":"No", - "question_id":12925, - "created_at":"2017-10-24T13:28:58.445+02:00", - "updated_at":"2017-10-24T13:28:58.445+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368961, - "value":"No", - "question_id":12925, - "created_at":"2017-11-08T15:57:34.392+01:00", - "updated_at":"2017-11-08T15:57:34.392+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369084, - "value":"No", - "question_id":12925, - "created_at":"2017-11-10T11:15:36.572+01:00", - "updated_at":"2017-11-10T11:15:36.572+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369245, - "value":"Planned", - "question_id":12925, - "created_at":"2017-11-10T15:39:40.897+01:00", - "updated_at":"2017-11-10T15:39:40.897+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369827, - "value":"No", - "question_id":12925, - "created_at":"2017-11-21T13:47:59.954+01:00", - "updated_at":"2017-11-21T13:47:59.954+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370235, - "value":"No", - "question_id":12925, - "created_at":"2017-11-23T14:12:48.642+01:00", - "updated_at":"2017-11-23T14:12:48.642+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370780, - "value":"No", - "question_id":12925, - "created_at":"2017-11-27T09:36:44.619+01:00", - "updated_at":"2017-11-27T09:36:44.619+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371275, - "value":"No", - "question_id":12925, - "created_at":"2017-11-27T14:22:44.908+01:00", - "updated_at":"2017-11-27T14:22:44.908+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371433, - "value":"No", - "question_id":12925, - "created_at":"2017-11-27T14:49:34.566+01:00", - "updated_at":"2017-11-27T14:49:34.566+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371783, - "value":"No", - "question_id":12925, - "created_at":"2017-11-28T13:18:58.818+01:00", - "updated_at":"2017-11-28T13:18:58.818+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372330, - "value":"No", - "question_id":12925, - "created_at":"2017-11-29T12:34:26.300+01:00", - "updated_at":"2017-11-29T12:34:26.300+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372653, - "value":"No", - "question_id":12925, - "created_at":"2017-11-29T21:47:44.464+01:00", - "updated_at":"2017-11-29T21:47:44.464+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372774, - "value":"No", - "question_id":12925, - "created_at":"2017-11-30T08:34:08.030+01:00", - "updated_at":"2017-11-30T08:34:08.030+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373716, - "value":"No", - "question_id":12925, - "created_at":"2017-12-04T18:00:40.170+01:00", - "updated_at":"2017-12-04T18:00:40.170+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374362, - "value":"No", - "question_id":12925, - "created_at":"2017-12-06T13:16:41.510+01:00", - "updated_at":"2017-12-06T13:16:41.510+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375044, - "value":"No", - "question_id":12925, - "created_at":"2017-12-14T14:22:05.840+01:00", - "updated_at":"2017-12-14T14:22:05.840+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375504, - "value":"No", - "question_id":12925, - "created_at":"2017-12-28T10:36:52.033+01:00", - "updated_at":"2017-12-28T10:36:52.033+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375694, - "value":"Yes", - "question_id":12925, - "created_at":"2018-01-09T17:00:59.947+01:00", - "updated_at":"2018-01-09T17:00:59.947+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375908, - "value":"No", - "question_id":12925, - "created_at":"2018-01-23T12:34:38.889+01:00", - "updated_at":"2018-01-23T12:34:38.889+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378761, - "value":"", - "question_id":12925, - "created_at":"2018-04-26T10:04:47.500+02:00", - "updated_at":"2018-04-26T10:04:47.500+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":378762, - "value":"", - "question_id":12925, - "created_at":"2018-04-26T10:04:47.508+02:00", - "updated_at":"2018-04-26T10:04:47.508+02:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":378763, - "value":"", - "question_id":12925, - "created_at":"2018-04-26T10:04:47.513+02:00", - "updated_at":"2018-04-26T10:04:47.513+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378764, - "value":"", - "question_id":12925, - "created_at":"2018-04-26T10:04:47.518+02:00", - "updated_at":"2018-04-26T10:04:47.518+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":378767, - "value":"", - "question_id":12925, - "created_at":"2018-04-26T10:04:47.535+02:00", - "updated_at":"2018-04-26T10:04:47.535+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":378768, - "value":"", - "question_id":12925, - "created_at":"2018-04-26T10:04:47.541+02:00", - "updated_at":"2018-04-26T10:04:47.541+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378769, - "value":"", - "question_id":12925, - "created_at":"2018-04-26T10:04:47.552+02:00", - "updated_at":"2018-04-26T10:04:47.552+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":378770, - "value":"", - "question_id":12925, - "created_at":"2018-04-26T10:04:47.561+02:00", - "updated_at":"2018-04-26T10:04:47.561+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378771, - "value":"", - "question_id":12925, - "created_at":"2018-04-26T10:04:47.566+02:00", - "updated_at":"2018-04-26T10:04:47.566+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378772, - "value":"", - "question_id":12925, - "created_at":"2018-04-26T10:04:47.573+02:00", - "updated_at":"2018-04-26T10:04:47.573+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":378773, - "value":"", - "question_id":12925, - "created_at":"2018-04-26T10:04:47.585+02:00", - "updated_at":"2018-04-26T10:04:47.585+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":378774, - "value":"", - "question_id":12925, - "created_at":"2018-04-26T10:04:47.592+02:00", - "updated_at":"2018-04-26T10:04:47.592+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378775, - "value":"", - "question_id":12925, - "created_at":"2018-04-26T10:04:47.597+02:00", - "updated_at":"2018-04-26T10:04:47.597+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":384013, - "value":"Yes", - "question_id":12925, - "created_at":"2017-12-05T15:59:59.888+01:00", - "updated_at":"2017-12-05T15:59:59.888+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756409, - "value":"Yes", - "question_id":12925, - "created_at":"2018-11-05T14:34:47.304+01:00", - "updated_at":"2018-11-05T14:34:47.304+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378776, - "value":"", - "question_id":12925, - "created_at":"2018-04-26T10:04:47.604+02:00", - "updated_at":"2018-04-26T10:04:47.604+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"e-portfolio", - "title":"Do you offer e-portfolio service?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"e-portfolio service", - "title_detailed":"Functions to create and share user professional and career e-portfolios.", - "tags":[ - "collaboration" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365629, - "value":"Planned", - "question_id":13017, - "created_at":"2017-09-06T12:18:26.737+02:00", - "updated_at":"2017-09-06T12:18:26.737+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365687, - "value":"Yes", - "question_id":13017, - "created_at":"2017-09-07T15:32:37.783+02:00", - "updated_at":"2017-09-07T15:32:37.783+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365916, - "value":"Yes", - "question_id":13017, - "created_at":"2017-09-13T13:45:33.138+02:00", - "updated_at":"2017-09-13T13:45:33.138+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366585, - "value":"Yes", - "question_id":13017, - "created_at":"2017-10-08T09:18:18.888+02:00", - "updated_at":"2017-10-08T09:18:18.888+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366888, - "value":"Yes", - "question_id":13017, - "created_at":"2017-10-11T09:36:25.992+02:00", - "updated_at":"2017-10-11T09:36:25.992+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367257, - "value":"Yes", - "question_id":13017, - "created_at":"2017-10-11T14:19:55.137+02:00", - "updated_at":"2017-10-11T14:19:55.137+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367345, - "value":"Yes", - "question_id":13017, - "created_at":"2017-10-11T21:17:54.239+02:00", - "updated_at":"2017-10-11T21:17:54.239+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368932, - "value":"Yes", - "question_id":13017, - "created_at":"2017-11-08T15:47:32.146+01:00", - "updated_at":"2017-11-08T15:47:32.146+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369238, - "value":"Yes", - "question_id":13017, - "created_at":"2017-11-10T15:39:08.640+01:00", - "updated_at":"2017-11-10T15:39:08.640+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":369700, - "value":"Yes", - "question_id":13017, - "created_at":"2017-11-21T11:42:08.446+01:00", - "updated_at":"2017-11-21T11:42:08.446+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369829, - "value":"Yes", - "question_id":13017, - "created_at":"2017-11-21T13:48:17.806+01:00", - "updated_at":"2017-11-21T13:48:17.806+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":369904, - "value":"No", - "question_id":13017, - "created_at":"2017-11-21T16:51:46.102+01:00", - "updated_at":"2017-11-21T16:51:46.102+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370222, - "value":"Yes", - "question_id":13017, - "created_at":"2017-11-23T14:09:29.283+01:00", - "updated_at":"2017-11-23T14:09:29.283+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370773, - "value":"Yes", - "question_id":13017, - "created_at":"2017-11-27T09:36:24.611+01:00", - "updated_at":"2017-11-27T09:36:24.611+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371149, - "value":"Yes", - "question_id":13017, - "created_at":"2017-11-27T14:03:25.309+01:00", - "updated_at":"2017-11-27T14:03:25.309+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371302, - "value":"No", - "question_id":13017, - "created_at":"2017-11-27T14:29:50.131+01:00", - "updated_at":"2017-11-27T14:29:50.131+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372644, - "value":"Yes", - "question_id":13017, - "created_at":"2017-11-29T21:46:10.019+01:00", - "updated_at":"2017-11-29T21:46:10.019+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":373226, - "value":"Yes", - "question_id":13017, - "created_at":"2017-12-04T11:00:27.482+01:00", - "updated_at":"2017-12-04T11:00:27.482+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373257, - "value":"Yes", - "question_id":13017, - "created_at":"2017-12-04T11:14:47.075+01:00", - "updated_at":"2017-12-04T11:14:47.075+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373709, - "value":"No", - "question_id":13017, - "created_at":"2017-12-04T17:59:55.526+01:00", - "updated_at":"2017-12-04T17:59:55.526+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374723, - "value":"Yes", - "question_id":13017, - "created_at":"2017-12-13T11:08:21.387+01:00", - "updated_at":"2017-12-13T11:08:21.387+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375466, - "value":"Yes", - "question_id":13017, - "created_at":"2017-12-28T10:19:51.738+01:00", - "updated_at":"2017-12-28T10:19:51.738+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375903, - "value":"Yes", - "question_id":13017, - "created_at":"2018-01-23T12:32:56.434+01:00", - "updated_at":"2018-01-23T12:32:56.434+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":376003, - "value":"Yes", - "question_id":13017, - "created_at":"2018-02-16T09:41:44.573+01:00", - "updated_at":"2018-02-16T09:41:44.573+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378423, - "value":"", - "question_id":13017, - "created_at":"2018-04-26T10:04:44.639+02:00", - "updated_at":"2018-04-26T10:04:44.639+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378425, - "value":"", - "question_id":13017, - "created_at":"2018-04-26T10:04:44.655+02:00", - "updated_at":"2018-04-26T10:04:44.655+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378429, - "value":"", - "question_id":13017, - "created_at":"2018-04-26T10:04:44.687+02:00", - "updated_at":"2018-04-26T10:04:44.687+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378430, - "value":"", - "question_id":13017, - "created_at":"2018-04-26T10:04:44.698+02:00", - "updated_at":"2018-04-26T10:04:44.698+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378431, - "value":"", - "question_id":13017, - "created_at":"2018-04-26T10:04:44.704+02:00", - "updated_at":"2018-04-26T10:04:44.704+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":378433, - "value":"", - "question_id":13017, - "created_at":"2018-04-26T10:04:44.724+02:00", - "updated_at":"2018-04-26T10:04:44.724+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378434, - "value":"", - "question_id":13017, - "created_at":"2018-04-26T10:04:44.729+02:00", - "updated_at":"2018-04-26T10:04:44.729+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383986, - "value":"Yes", - "question_id":13017, - "created_at":"2017-12-05T15:58:08.983+01:00", - "updated_at":"2017-12-05T15:58:08.983+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618225, - "value":"Yes", - "question_id":13017, - "created_at":"2018-10-28T18:34:54.911+01:00", - "updated_at":"2018-10-28T18:34:54.911+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756380, - "value":"Yes", - "question_id":13017, - "created_at":"2018-11-05T14:05:47.056+01:00", - "updated_at":"2018-11-05T14:05:47.056+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774395, - "value":"Yes", - "question_id":13017, - "created_at":"2018-11-15T12:47:25.242+01:00", - "updated_at":"2018-11-15T12:47:25.242+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":797996, - "value":"Yes", - "question_id":13017, - "created_at":"2018-11-27T19:08:48.890+01:00", - "updated_at":"2018-11-27T19:08:48.890+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":826795, - "value":"Yes", - "question_id":13017, - "created_at":"2019-09-13T16:11:58.325+02:00", - "updated_at":"2019-09-13T16:11:58.325+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":883329, - "value":"No", - "question_id":13017, - "created_at":"2019-10-28T11:25:28.234+01:00", - "updated_at":"2019-10-28T11:25:28.234+01:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":1037048, - "value":"Yes", - "question_id":13017, - "created_at":"2019-11-04T16:42:04.535+01:00", - "updated_at":"2019-11-04T16:42:04.535+01:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":1165430, - "value":"Yes", - "question_id":13017, - "created_at":"2019-11-12T20:14:27.680+01:00", - "updated_at":"2019-11-12T20:14:27.680+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378435, - "value":"", - "question_id":13017, - "created_at":"2018-04-26T10:04:44.737+02:00", - "updated_at":"2018-04-26T10:04:44.737+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":1470691, - "value":"Yes", - "question_id":13017, - "created_at":"2020-10-16T13:56:25.153+02:00", - "updated_at":"2020-10-16T13:56:25.153+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":1493627, - "value":"Yes", - "question_id":13017, - "created_at":"2020-12-18T14:45:18.234+01:00", - "updated_at":"2020-12-18T14:45:18.234+01:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-conference", - "title":"Do you offer User conferences", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"User conferences", - "title_detailed":"Hosting of regular user conferences.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365630, - "value":"Yes", - "question_id":13019, - "created_at":"2017-09-06T12:18:30.550+02:00", - "updated_at":"2017-09-06T12:18:30.550+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365688, - "value":"Yes", - "question_id":13019, - "created_at":"2017-09-07T15:32:39.918+02:00", - "updated_at":"2017-09-07T15:32:39.918+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365917, - "value":"No", - "question_id":13019, - "created_at":"2017-09-13T13:45:36.250+02:00", - "updated_at":"2017-09-13T13:45:36.250+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366361, - "value":"No", - "question_id":13019, - "created_at":"2017-09-29T13:52:10.783+02:00", - "updated_at":"2017-09-29T13:52:10.783+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366586, - "value":"Yes", - "question_id":13019, - "created_at":"2017-10-08T09:18:24.467+02:00", - "updated_at":"2017-10-08T09:18:24.467+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366886, - "value":"Yes", - "question_id":13019, - "created_at":"2017-10-11T09:36:21.600+02:00", - "updated_at":"2017-10-11T09:36:21.600+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367479, - "value":"Yes", - "question_id":13019, - "created_at":"2017-10-17T12:04:26.108+02:00", - "updated_at":"2017-10-17T12:04:26.108+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367751, - "value":"No", - "question_id":13019, - "created_at":"2017-10-23T19:33:35.582+02:00", - "updated_at":"2017-10-23T19:33:35.582+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367954, - "value":"No", - "question_id":13019, - "created_at":"2017-10-24T13:27:19.167+02:00", - "updated_at":"2017-10-24T13:27:19.167+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368933, - "value":"Yes", - "question_id":13019, - "created_at":"2017-11-08T15:47:52.697+01:00", - "updated_at":"2017-11-08T15:47:52.697+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370227, - "value":"Yes", - "question_id":13019, - "created_at":"2017-11-23T14:11:10.907+01:00", - "updated_at":"2017-11-23T14:11:10.907+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":370366, - "value":"No", - "question_id":13019, - "created_at":"2017-11-24T16:13:48.616+01:00", - "updated_at":"2017-11-24T16:13:48.616+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":370566, - "value":"No", - "question_id":13019, - "created_at":"2017-11-24T19:10:15.640+01:00", - "updated_at":"2017-11-24T19:10:15.640+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370774, - "value":"No", - "question_id":13019, - "created_at":"2017-11-27T09:36:26.875+01:00", - "updated_at":"2017-11-27T09:36:26.875+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371299, - "value":"No", - "question_id":13019, - "created_at":"2017-11-27T14:29:43.870+01:00", - "updated_at":"2017-11-27T14:29:43.870+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371423, - "value":"Yes", - "question_id":13019, - "created_at":"2017-11-27T14:47:09.042+01:00", - "updated_at":"2017-11-27T14:47:09.042+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371777, - "value":"No", - "question_id":13019, - "created_at":"2017-11-28T13:18:32.039+01:00", - "updated_at":"2017-11-28T13:18:32.039+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372648, - "value":"No", - "question_id":13019, - "created_at":"2017-11-29T21:46:46.366+01:00", - "updated_at":"2017-11-29T21:46:46.366+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":372761, - "value":"No", - "question_id":13019, - "created_at":"2017-11-30T08:33:34.070+01:00", - "updated_at":"2017-11-30T08:33:34.070+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373259, - "value":"Yes", - "question_id":13019, - "created_at":"2017-12-04T11:14:57.037+01:00", - "updated_at":"2017-12-04T11:14:57.037+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373710, - "value":"Yes", - "question_id":13019, - "created_at":"2017-12-04T18:00:03.332+01:00", - "updated_at":"2017-12-04T18:00:03.332+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374350, - "value":"No", - "question_id":13019, - "created_at":"2017-12-06T13:14:26.434+01:00", - "updated_at":"2017-12-06T13:14:26.434+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375038, - "value":"No", - "question_id":13019, - "created_at":"2017-12-14T14:21:45.178+01:00", - "updated_at":"2017-12-14T14:21:45.178+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375385, - "value":"Yes", - "question_id":13019, - "created_at":"2017-12-28T09:44:05.677+01:00", - "updated_at":"2017-12-28T09:44:05.677+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375467, - "value":"Yes", - "question_id":13019, - "created_at":"2017-12-28T10:19:54.522+01:00", - "updated_at":"2017-12-28T10:19:54.522+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378464, - "value":"", - "question_id":13019, - "created_at":"2018-04-26T10:04:45.030+02:00", - "updated_at":"2018-04-26T10:04:45.030+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378466, - "value":"", - "question_id":13019, - "created_at":"2018-04-26T10:04:45.045+02:00", - "updated_at":"2018-04-26T10:04:45.045+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":378468, - "value":"", - "question_id":13019, - "created_at":"2018-04-26T10:04:45.057+02:00", - "updated_at":"2018-04-26T10:04:45.057+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":378469, - "value":"", - "question_id":13019, - "created_at":"2018-04-26T10:04:45.065+02:00", - "updated_at":"2018-04-26T10:04:45.065+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378470, - "value":"", - "question_id":13019, - "created_at":"2018-04-26T10:04:45.076+02:00", - "updated_at":"2018-04-26T10:04:45.076+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":378471, - "value":"", - "question_id":13019, - "created_at":"2018-04-26T10:04:45.083+02:00", - "updated_at":"2018-04-26T10:04:45.083+02:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378472, - "value":"", - "question_id":13019, - "created_at":"2018-04-26T10:04:45.091+02:00", - "updated_at":"2018-04-26T10:04:45.091+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378473, - "value":"", - "question_id":13019, - "created_at":"2018-04-26T10:04:45.098+02:00", - "updated_at":"2018-04-26T10:04:45.098+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":378475, - "value":"", - "question_id":13019, - "created_at":"2018-04-26T10:04:45.117+02:00", - "updated_at":"2018-04-26T10:04:45.117+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378476, - "value":"", - "question_id":13019, - "created_at":"2018-04-26T10:04:45.123+02:00", - "updated_at":"2018-04-26T10:04:45.123+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383974, - "value":"Yes", - "question_id":13019, - "created_at":"2017-12-05T15:59:06.624+01:00", - "updated_at":"2017-12-05T15:59:06.624+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641564, - "value":"Planned", - "question_id":13019, - "created_at":"2018-10-30T13:58:35.268+01:00", - "updated_at":"2018-10-30T13:58:35.268+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774397, - "value":"Yes", - "question_id":13019, - "created_at":"2018-11-15T12:48:43.525+01:00", - "updated_at":"2018-11-15T12:48:43.525+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":826843, - "value":"Yes", - "question_id":13019, - "created_at":"2019-09-17T09:45:37.962+02:00", - "updated_at":"2019-09-17T09:45:37.962+02:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":1248627, - "value":"Yes", - "question_id":13019, - "created_at":"2019-12-02T17:31:06.461+01:00", - "updated_at":"2019-12-02T17:31:06.461+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378477, - "value":"", - "question_id":13019, - "created_at":"2018-04-26T10:04:45.131+02:00", - "updated_at":"2018-04-26T10:04:45.131+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":1470696, - "value":"Yes", - "question_id":13019, - "created_at":"2020-10-16T14:51:29.490+02:00", - "updated_at":"2020-10-16T14:51:29.490+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":1509992, - "value":"Yes", - "question_id":13019, - "created_at":"2021-11-29T17:16:01.999+01:00", - "updated_at":"2021-11-29T17:16:01.999+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"user-portal", - "title":"Do you offer User portals?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"User portals", - "title_detailed":"User portal for service management and monitoring.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365625, - "value":"No", - "question_id":12931, - "created_at":"2017-09-06T12:18:13.335+02:00", - "updated_at":"2017-09-06T12:18:13.335+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365683, - "value":"No", - "question_id":12931, - "created_at":"2017-09-07T15:32:26.992+02:00", - "updated_at":"2017-09-07T15:32:26.992+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":365912, - "value":"No", - "question_id":12931, - "created_at":"2017-09-13T13:45:20.185+02:00", - "updated_at":"2017-09-13T13:45:20.185+02:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366357, - "value":"No", - "question_id":12931, - "created_at":"2017-09-29T13:51:52.196+02:00", - "updated_at":"2017-09-29T13:51:52.196+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366581, - "value":"No", - "question_id":12931, - "created_at":"2017-10-08T09:17:29.829+02:00", - "updated_at":"2017-10-08T09:17:29.829+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":366891, - "value":"No", - "question_id":12931, - "created_at":"2017-10-11T09:36:34.903+02:00", - "updated_at":"2017-10-11T09:36:34.903+02:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367252, - "value":"No", - "question_id":12931, - "created_at":"2017-10-11T14:19:01.510+02:00", - "updated_at":"2017-10-11T14:19:01.510+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":367342, - "value":"Yes", - "question_id":12931, - "created_at":"2017-10-11T21:17:30.943+02:00", - "updated_at":"2017-10-11T21:17:30.943+02:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367747, - "value":"No", - "question_id":12931, - "created_at":"2017-10-23T19:33:15.618+02:00", - "updated_at":"2017-10-23T19:33:15.618+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367950, - "value":"No", - "question_id":12931, - "created_at":"2017-10-24T13:26:15.540+02:00", - "updated_at":"2017-10-24T13:26:15.540+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":368191, - "value":"No", - "question_id":12931, - "created_at":"2017-10-30T09:26:43.432+01:00", - "updated_at":"2017-10-30T09:26:43.432+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368928, - "value":"Yes", - "question_id":12931, - "created_at":"2017-11-08T15:46:29.903+01:00", - "updated_at":"2017-11-08T15:46:29.903+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":369832, - "value":"No", - "question_id":12931, - "created_at":"2017-11-21T13:48:49.139+01:00", - "updated_at":"2017-11-21T13:48:49.139+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370219, - "value":"No", - "question_id":12931, - "created_at":"2017-11-23T14:09:19.228+01:00", - "updated_at":"2017-11-23T14:09:19.228+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":370447, - "value":"No", - "question_id":12931, - "created_at":"2017-11-24T17:04:47.484+01:00", - "updated_at":"2017-11-24T17:04:47.484+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370770, - "value":"No", - "question_id":12931, - "created_at":"2017-11-27T09:36:16.053+01:00", - "updated_at":"2017-11-27T09:36:16.053+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371145, - "value":"No", - "question_id":12931, - "created_at":"2017-11-27T14:02:27.375+01:00", - "updated_at":"2017-11-27T14:02:27.375+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":371311, - "value":"No", - "question_id":12931, - "created_at":"2017-11-27T14:30:08.240+01:00", - "updated_at":"2017-11-27T14:30:08.240+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371773, - "value":"No", - "question_id":12931, - "created_at":"2017-11-28T13:18:22.208+01:00", - "updated_at":"2017-11-28T13:18:22.208+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372319, - "value":"Yes", - "question_id":12931, - "created_at":"2017-11-29T12:32:28.651+01:00", - "updated_at":"2017-11-29T12:32:28.651+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372641, - "value":"No", - "question_id":12931, - "created_at":"2017-11-29T21:45:52.591+01:00", - "updated_at":"2017-11-29T21:45:52.591+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373254, - "value":"No", - "question_id":12931, - "created_at":"2017-12-04T11:14:32.973+01:00", - "updated_at":"2017-12-04T11:14:32.973+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373705, - "value":"Yes", - "question_id":12931, - "created_at":"2017-12-04T17:59:30.254+01:00", - "updated_at":"2017-12-04T17:59:30.254+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374345, - "value":"No", - "question_id":12931, - "created_at":"2017-12-06T13:13:30.927+01:00", - "updated_at":"2017-12-06T13:13:30.927+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375034, - "value":"No", - "question_id":12931, - "created_at":"2017-12-14T14:21:32.127+01:00", - "updated_at":"2017-12-14T14:21:32.127+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375464, - "value":"No", - "question_id":12931, - "created_at":"2017-12-28T10:19:42.523+01:00", - "updated_at":"2017-12-28T10:19:42.523+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":375703, - "value":"No", - "question_id":12931, - "created_at":"2018-01-09T17:28:12.577+01:00", - "updated_at":"2018-01-09T17:28:12.577+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":378271, - "value":"", - "question_id":12931, - "created_at":"2018-04-26T10:04:43.158+02:00", - "updated_at":"2018-04-26T10:04:43.158+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":378272, - "value":"", - "question_id":12931, - "created_at":"2018-04-26T10:04:43.172+02:00", - "updated_at":"2018-04-26T10:04:43.172+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":378273, - "value":"", - "question_id":12931, - "created_at":"2018-04-26T10:04:43.179+02:00", - "updated_at":"2018-04-26T10:04:43.179+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":378275, - "value":"", - "question_id":12931, - "created_at":"2018-04-26T10:04:43.195+02:00", - "updated_at":"2018-04-26T10:04:43.195+02:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":378276, - "value":"", - "question_id":12931, - "created_at":"2018-04-26T10:04:43.204+02:00", - "updated_at":"2018-04-26T10:04:43.204+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":378277, - "value":"", - "question_id":12931, - "created_at":"2018-04-26T10:04:43.214+02:00", - "updated_at":"2018-04-26T10:04:43.214+02:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":378278, - "value":"", - "question_id":12931, - "created_at":"2018-04-26T10:04:43.231+02:00", - "updated_at":"2018-04-26T10:04:43.231+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":378279, - "value":"", - "question_id":12931, - "created_at":"2018-04-26T10:04:43.240+02:00", - "updated_at":"2018-04-26T10:04:43.240+02:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":378280, - "value":"", - "question_id":12931, - "created_at":"2018-04-26T10:04:43.252+02:00", - "updated_at":"2018-04-26T10:04:43.252+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":378281, - "value":"", - "question_id":12931, - "created_at":"2018-04-26T10:04:43.261+02:00", - "updated_at":"2018-04-26T10:04:43.261+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":378282, - "value":"", - "question_id":12931, - "created_at":"2018-04-26T10:04:43.277+02:00", - "updated_at":"2018-04-26T10:04:43.277+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":378283, - "value":"", - "question_id":12931, - "created_at":"2018-04-26T10:04:43.288+02:00", - "updated_at":"2018-04-26T10:04:43.288+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":378284, - "value":"", - "question_id":12931, - "created_at":"2018-04-26T10:04:43.295+02:00", - "updated_at":"2018-04-26T10:04:43.295+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383895, - "value":"Planned", - "question_id":12931, - "created_at":"2017-12-06T13:36:58.916+01:00", - "updated_at":"2017-12-06T13:36:58.916+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":378285, - "value":"", - "question_id":12931, - "created_at":"2018-04-26T10:04:43.306+02:00", - "updated_at":"2018-04-26T10:04:43.306+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":1499391, - "value":"Yes", - "question_id":12931, - "created_at":"2021-11-02T15:28:59.052+01:00", - "updated_at":"2021-11-02T15:28:59.052+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"admin-tools", - "title":"Do you offer Finance/admin systems?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Finance/admin systems", - "title_detailed":"Provision of ICT systems used in finance and administration.", - "tags":[ - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "48":{ - "id":365590, - "value":"Yes", - "question_id":12975, - "created_at":"2017-09-06T12:14:16.443+02:00", - "updated_at":"2017-09-06T12:14:16.443+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "42":{ - "id":365790, - "value":"Yes", - "question_id":12975, - "created_at":"2017-09-07T15:50:38.440+02:00", - "updated_at":"2017-09-07T15:50:38.440+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366331, - "value":"Yes", - "question_id":12975, - "created_at":"2017-09-29T13:45:45.942+02:00", - "updated_at":"2017-09-29T13:45:45.942+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":366609, - "value":"Yes", - "question_id":12975, - "created_at":"2017-10-08T09:21:45.122+02:00", - "updated_at":"2017-10-08T09:21:45.122+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366756, - "value":"Yes", - "question_id":12975, - "created_at":"2017-10-10T12:56:15.550+02:00", - "updated_at":"2017-10-10T12:56:15.550+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":367445, - "value":"Yes", - "question_id":12975, - "created_at":"2017-10-17T11:48:54.201+02:00", - "updated_at":"2017-10-17T11:48:54.201+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367717, - "value":"Yes", - "question_id":12975, - "created_at":"2017-10-23T19:27:19.656+02:00", - "updated_at":"2017-10-23T19:27:19.656+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367920, - "value":"Yes", - "question_id":12975, - "created_at":"2017-10-24T13:17:13.197+02:00", - "updated_at":"2017-10-24T13:17:13.197+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368504, - "value":"Yes", - "question_id":12975, - "created_at":"2017-10-31T14:27:18.550+01:00", - "updated_at":"2017-10-31T14:27:18.550+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368733, - "value":"Yes", - "question_id":12975, - "created_at":"2017-11-02T13:23:59.946+01:00", - "updated_at":"2017-11-02T13:23:59.946+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":369375, - "value":"Yes", - "question_id":12975, - "created_at":"2017-11-11T20:42:07.673+01:00", - "updated_at":"2017-11-11T20:42:07.673+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370180, - "value":"Yes", - "question_id":12975, - "created_at":"2017-11-23T14:01:52.581+01:00", - "updated_at":"2017-11-23T14:01:52.581+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":370604, - "value":"Yes", - "question_id":12975, - "created_at":"2017-11-26T10:29:04.816+01:00", - "updated_at":"2017-11-26T10:29:04.816+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370743, - "value":"Yes", - "question_id":12975, - "created_at":"2017-11-27T09:33:07.346+01:00", - "updated_at":"2017-11-27T09:33:07.346+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":370942, - "value":"Yes", - "question_id":12975, - "created_at":"2017-11-27T10:38:08.647+01:00", - "updated_at":"2017-11-27T10:38:08.647+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371379, - "value":"Yes", - "question_id":12975, - "created_at":"2017-11-27T14:38:39.091+01:00", - "updated_at":"2017-11-27T14:38:39.091+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":371569, - "value":"Yes", - "question_id":12975, - "created_at":"2017-11-27T16:38:56.399+01:00", - "updated_at":"2017-11-27T16:38:56.399+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371739, - "value":"Yes", - "question_id":12975, - "created_at":"2017-11-28T13:09:55.119+01:00", - "updated_at":"2017-11-28T13:09:55.119+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371864, - "value":"Yes", - "question_id":12975, - "created_at":"2017-11-28T14:56:44.322+01:00", - "updated_at":"2017-11-28T14:56:44.322+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372276, - "value":"Yes", - "question_id":12975, - "created_at":"2017-11-29T12:20:23.474+01:00", - "updated_at":"2017-11-29T12:20:23.474+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372604, - "value":"Yes", - "question_id":12975, - "created_at":"2017-11-29T21:38:38.018+01:00", - "updated_at":"2017-11-29T21:38:38.018+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":373306, - "value":"Yes", - "question_id":12975, - "created_at":"2017-12-04T11:23:02.734+01:00", - "updated_at":"2017-12-04T11:23:02.734+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373679, - "value":"Yes", - "question_id":12975, - "created_at":"2017-12-04T17:55:13.264+01:00", - "updated_at":"2017-12-04T17:55:13.264+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374276, - "value":"Yes", - "question_id":12975, - "created_at":"2017-12-06T11:16:37.357+01:00", - "updated_at":"2017-12-06T11:16:37.357+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374674, - "value":"Yes", - "question_id":12975, - "created_at":"2017-12-13T09:41:39.154+01:00", - "updated_at":"2017-12-13T09:41:39.154+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":374919, - "value":"Yes", - "question_id":12975, - "created_at":"2017-12-14T12:47:09.294+01:00", - "updated_at":"2017-12-14T12:47:09.294+01:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":375013, - "value":"Yes", - "question_id":12975, - "created_at":"2017-12-14T14:19:23.605+01:00", - "updated_at":"2017-12-14T14:19:23.605+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375428, - "value":"Yes", - "question_id":12975, - "created_at":"2017-12-28T10:07:40.083+01:00", - "updated_at":"2017-12-28T10:07:40.083+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375821, - "value":"Yes", - "question_id":12975, - "created_at":"2018-01-22T00:49:31.176+01:00", - "updated_at":"2018-01-22T00:49:31.176+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":377660, - "value":"", - "question_id":12975, - "created_at":"2018-04-26T10:04:37.587+02:00", - "updated_at":"2018-04-26T10:04:37.587+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":377662, - "value":"", - "question_id":12975, - "created_at":"2018-04-26T10:04:37.601+02:00", - "updated_at":"2018-04-26T10:04:37.601+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":377666, - "value":"", - "question_id":12975, - "created_at":"2018-04-26T10:04:37.629+02:00", - "updated_at":"2018-04-26T10:04:37.629+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":377668, - "value":"", - "question_id":12975, - "created_at":"2018-04-26T10:04:37.642+02:00", - "updated_at":"2018-04-26T10:04:37.642+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":377670, - "value":"", - "question_id":12975, - "created_at":"2018-04-26T10:04:37.662+02:00", - "updated_at":"2018-04-26T10:04:37.662+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383963, - "value":"Yes", - "question_id":12975, - "created_at":"2017-12-05T15:48:18.797+01:00", - "updated_at":"2017-12-05T15:48:18.797+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":618209, - "value":"Yes", - "question_id":12975, - "created_at":"2018-10-28T18:29:33.603+01:00", - "updated_at":"2018-10-28T18:29:33.603+01:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":618243, - "value":"Yes", - "question_id":12975, - "created_at":"2018-10-29T08:13:05.323+01:00", - "updated_at":"2018-10-29T08:13:05.323+01:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":641544, - "value":"Yes", - "question_id":12975, - "created_at":"2018-10-30T13:49:19.977+01:00", - "updated_at":"2018-10-30T13:49:19.977+01:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":756367, - "value":"Yes", - "question_id":12975, - "created_at":"2018-11-05T14:02:19.841+01:00", - "updated_at":"2018-11-05T14:02:19.841+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":774384, - "value":"Yes", - "question_id":12975, - "created_at":"2018-11-15T12:43:02.168+01:00", - "updated_at":"2018-11-15T12:43:02.168+01:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":827099, - "value":"Yes", - "question_id":12975, - "created_at":"2019-10-02T17:07:04.827+02:00", - "updated_at":"2019-10-02T17:07:04.827+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":1228164, - "value":"Yes", - "question_id":12975, - "created_at":"2019-11-21T20:16:19.914+01:00", - "updated_at":"2019-11-21T20:16:19.914+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":377671, - "value":"", - "question_id":12975, - "created_at":"2018-04-26T10:04:37.669+02:00", - "updated_at":"2018-04-26T10:04:37.669+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"nameserver", - "title":"Do you offer Nameserver service?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"Nameserver services", - "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", - "tags":[ - "ISP" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - }, - { - "42":{ - "id":365827, - "value":"Yes", - "question_id":13045, - "created_at":"2017-09-13T11:34:27.707+02:00", - "updated_at":"2017-09-13T11:34:27.707+02:00", - "response_id":null, - "nren_id":42, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"SWITCH", - "country_name":"Switzerland", - "country_code":"CH", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "16":{ - "id":366139, - "value":"No", - "question_id":13045, - "created_at":"2017-09-19T14:51:36.569+02:00", - "updated_at":"2017-09-19T14:51:36.569+02:00", - "response_id":null, - "nren_id":16, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"DFN", - "country_name":"Germany", - "country_code":"DE", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "7":{ - "id":366308, - "value":"No", - "question_id":13045, - "created_at":"2017-09-29T13:41:18.157+02:00", - "updated_at":"2017-09-29T13:41:18.157+02:00", - "response_id":null, - "nren_id":7, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"CYNET", - "country_name":"Cyprus", - "country_code":"CY", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "54":{ - "id":366744, - "value":"No", - "question_id":13045, - "created_at":"2017-10-10T11:42:02.023+02:00", - "updated_at":"2017-10-10T11:42:02.023+02:00", - "response_id":null, - "nren_id":54, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"BASNET", - "country_name":"Belarus", - "country_code":"BY", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "22":{ - "id":367696, - "value":"No", - "question_id":13045, - "created_at":"2017-10-23T19:25:10.864+02:00", - "updated_at":"2017-10-23T19:25:10.864+02:00", - "response_id":null, - "nren_id":22, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"IUCC", - "country_name":"Israel", - "country_code":"IL", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "15":{ - "id":367888, - "value":"No", - "question_id":13045, - "created_at":"2017-10-24T13:05:45.265+02:00", - "updated_at":"2017-10-24T13:05:45.265+02:00", - "response_id":null, - "nren_id":15, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"GRENA", - "country_name":"Georgia", - "country_code":"GE", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "33":{ - "id":368471, - "value":"Yes", - "question_id":13045, - "created_at":"2017-10-31T14:20:05.213+01:00", - "updated_at":"2017-10-31T14:20:05.213+01:00", - "response_id":null, - "nren_id":33, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"Uninett", - "country_name":"Norway", - "country_code":"NO", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "12":{ - "id":368710, - "value":"No", - "question_id":13045, - "created_at":"2017-11-02T13:21:30.665+01:00", - "updated_at":"2017-11-02T13:21:30.665+01:00", - "response_id":null, - "nren_id":12, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"Funet", - "country_name":"Finland", - "country_code":"FI", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "32":{ - "id":368897, - "value":"Yes", - "question_id":13045, - "created_at":"2017-11-08T15:30:21.739+01:00", - "updated_at":"2017-11-08T15:30:21.739+01:00", - "response_id":null, - "nren_id":32, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"SURFnet", - "country_name":"Netherlands", - "country_code":"NL", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "18":{ - "id":369180, - "value":"Yes", - "question_id":13045, - "created_at":"2017-11-10T15:31:25.102+01:00", - "updated_at":"2017-11-10T15:31:25.102+01:00", - "response_id":null, - "nren_id":18, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"KIFU", - "country_name":"Hungary", - "country_code":"HU", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "4":{ - "id":370137, - "value":"No", - "question_id":13045, - "created_at":"2017-11-23T13:48:54.790+01:00", - "updated_at":"2017-11-23T13:48:54.790+01:00", - "response_id":null, - "nren_id":4, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"ACOnet", - "country_name":"Austria", - "country_code":"AT", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "8":{ - "id":370344, - "value":"Yes", - "question_id":13045, - "created_at":"2017-11-24T16:00:46.183+01:00", - "updated_at":"2017-11-24T16:00:46.183+01:00", - "response_id":null, - "nren_id":8, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"CESNET", - "country_name":"Czech Rep.", - "country_code":"CZ", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "52":{ - "id":370714, - "value":"No", - "question_id":13045, - "created_at":"2017-11-27T09:30:54.454+01:00", - "updated_at":"2017-11-27T09:30:54.454+01:00", - "response_id":null, - "nren_id":52, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"RoEduNet", - "country_name":"Romania", - "country_code":"RO", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "44":{ - "id":371318, - "value":"No", - "question_id":13045, - "created_at":"2017-11-27T14:30:54.997+01:00", - "updated_at":"2017-11-27T14:30:54.997+01:00", - "response_id":null, - "nren_id":44, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"ULAKBIM", - "country_name":"Turkey", - "country_code":"TR", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "17":{ - "id":371708, - "value":"No", - "question_id":13045, - "created_at":"2017-11-28T13:06:46.211+01:00", - "updated_at":"2017-11-28T13:06:46.211+01:00", - "response_id":null, - "nren_id":17, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"GRNET S.A.", - "country_name":"Greece", - "country_code":"GR", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "35":{ - "id":371859, - "value":"No", - "question_id":13045, - "created_at":"2017-11-28T14:54:17.819+01:00", - "updated_at":"2017-11-28T14:54:17.819+01:00", - "response_id":null, - "nren_id":35, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"FCCN", - "country_name":"Portugal", - "country_code":"PT", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "21":{ - "id":372237, - "value":"No", - "question_id":13045, - "created_at":"2017-11-29T12:03:24.506+01:00", - "updated_at":"2017-11-29T12:03:24.506+01:00", - "response_id":null, - "nren_id":21, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"HEAnet", - "country_name":"Ireland", - "country_code":"IE", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "13":{ - "id":372578, - "value":"Yes", - "question_id":13045, - "created_at":"2017-11-29T21:33:57.264+01:00", - "updated_at":"2017-11-29T21:33:57.264+01:00", - "response_id":null, - "nren_id":13, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"RENATER", - "country_name":"France", - "country_code":"FR", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "100":{ - "id":373650, - "value":"Yes", - "question_id":13045, - "created_at":"2017-12-04T17:51:52.886+01:00", - "updated_at":"2017-12-04T17:51:52.886+01:00", - "response_id":null, - "nren_id":100, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"MREN", - "country_name":"Montenegro", - "country_code":"ME", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "200":{ - "id":374034, - "value":"Yes", - "question_id":13045, - "created_at":"2017-12-06T06:56:53.394+01:00", - "updated_at":"2017-12-06T06:56:53.394+01:00", - "response_id":null, - "nren_id":200, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"ASNET-AM", - "country_name":"Armenia", - "country_code":"AM", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "45":{ - "id":374242, - "value":"Yes", - "question_id":13045, - "created_at":"2017-12-06T11:03:33.448+01:00", - "updated_at":"2017-12-06T11:03:33.448+01:00", - "response_id":null, - "nren_id":45, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"URAN", - "country_name":"Ukraine", - "country_code":"UA", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "39":{ - "id":374652, - "value":"Yes", - "question_id":13045, - "created_at":"2017-12-13T09:31:35.518+01:00", - "updated_at":"2017-12-13T09:31:35.518+01:00", - "response_id":null, - "nren_id":39, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"ARNES", - "country_name":"Slovenia", - "country_code":"SI", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "49":{ - "id":374984, - "value":"No", - "question_id":13045, - "created_at":"2017-12-14T14:17:27.885+01:00", - "updated_at":"2017-12-14T14:17:27.885+01:00", - "response_id":null, - "nren_id":49, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"AzScienceNet", - "country_name":"Azerbaijan", - "country_code":"AZ", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "34":{ - "id":375402, - "value":"Yes", - "question_id":13045, - "created_at":"2017-12-28T10:01:40.446+01:00", - "updated_at":"2017-12-28T10:01:40.446+01:00", - "response_id":null, - "nren_id":34, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"PIONIER", - "country_name":"Poland", - "country_code":"PL", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "40":{ - "id":375813, - "value":"", - "question_id":13045, - "created_at":"2018-01-22T00:47:53.323+01:00", - "updated_at":"2018-01-22T00:47:53.323+01:00", - "response_id":null, - "nren_id":40, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"RedIRIS", - "country_name":"Spain", - "country_code":"ES", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "1":{ - "id":376908, - "value":"", - "question_id":13045, - "created_at":"2018-04-26T10:04:29.972+02:00", - "updated_at":"2018-04-26T10:04:29.972+02:00", - "response_id":null, - "nren_id":1, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"ANA", - "country_name":"Albania", - "country_code":"AL", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "48":{ - "id":376909, - "value":"", - "question_id":13045, - "created_at":"2018-04-26T10:04:29.981+02:00", - "updated_at":"2018-04-26T10:04:29.981+02:00", - "response_id":null, - "nren_id":48, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"AMRES", - "country_name":"Serbia", - "country_code":"RS", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "5":{ - "id":376910, - "value":"", - "question_id":13045, - "created_at":"2018-04-26T10:04:29.991+02:00", - "updated_at":"2018-04-26T10:04:29.991+02:00", - "response_id":null, - "nren_id":5, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"Belnet", - "country_name":"Belgium", - "country_code":"BE", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "58":{ - "id":376911, - "value":"", - "question_id":13045, - "created_at":"2018-04-26T10:04:29.998+02:00", - "updated_at":"2018-04-26T10:04:29.998+02:00", - "response_id":null, - "nren_id":58, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"BREN", - "country_name":"Bulgaria", - "country_code":"BG", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "9":{ - "id":376913, - "value":"", - "question_id":13045, - "created_at":"2018-04-26T10:04:30.016+02:00", - "updated_at":"2018-04-26T10:04:30.016+02:00", - "response_id":null, - "nren_id":9, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"DeIC", - "country_name":"Denmark", - "country_code":"DK", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "27":{ - "id":376915, - "value":"", - "question_id":13045, - "created_at":"2018-04-26T10:04:30.040+02:00", - "updated_at":"2018-04-26T10:04:30.040+02:00", - "response_id":null, - "nren_id":27, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"LITNET", - "country_name":"Lithuania", - "country_code":"LT", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "14":{ - "id":376916, - "value":"", - "question_id":13045, - "created_at":"2018-04-26T10:04:30.048+02:00", - "updated_at":"2018-04-26T10:04:30.048+02:00", - "response_id":null, - "nren_id":14, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"MARnet", - "country_name":"Macedonia", - "country_code":"MK", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "28":{ - "id":376917, - "value":"", - "question_id":13045, - "created_at":"2018-04-26T10:04:30.061+02:00", - "updated_at":"2018-04-26T10:04:30.061+02:00", - "response_id":null, - "nren_id":28, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"RESTENA", - "country_name":"Luxembourg", - "country_code":"LU", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "19":{ - "id":376918, - "value":"", - "question_id":13045, - "created_at":"2018-04-26T10:04:30.069+02:00", - "updated_at":"2018-04-26T10:04:30.069+02:00", - "response_id":null, - "nren_id":19, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"RHnet", - "country_name":"Iceland", - "country_code":"IS", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "38":{ - "id":376919, - "value":"", - "question_id":13045, - "created_at":"2018-04-26T10:04:30.078+02:00", - "updated_at":"2018-04-26T10:04:30.078+02:00", - "response_id":null, - "nren_id":38, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"SANET", - "country_name":"Slovakia", - "country_code":"SK", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "29":{ - "id":376921, - "value":"", - "question_id":13045, - "created_at":"2018-04-26T10:04:30.105+02:00", - "updated_at":"2018-04-26T10:04:30.105+02:00", - "response_id":null, - "nren_id":29, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"UoM/RicerkaNet", - "country_name":"Malta", - "country_code":"MT", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "6":{ - "id":383903, - "value":"Yes", - "question_id":13045, - "created_at":"2017-12-05T15:44:53.872+01:00", - "updated_at":"2017-12-05T15:44:53.872+01:00", - "response_id":null, - "nren_id":6, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"CARNET", - "country_name":"Croatia", - "country_code":"HR", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "41":{ - "id":618247, - "value":"Yes", - "question_id":13045, - "created_at":"2018-10-29T08:16:02.888+01:00", - "updated_at":"2018-10-29T08:16:02.888+01:00", - "response_id":null, - "nren_id":41, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"SUNET", - "country_name":"Sweden", - "country_code":"SE", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "30":{ - "id":636522, - "value":"Planned", - "question_id":13045, - "created_at":"2018-10-29T19:54:46.788+01:00", - "updated_at":"2018-10-29T19:54:46.788+01:00", - "response_id":null, - "nren_id":30, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"RENAM", - "country_name":"Moldova", - "country_code":"MD", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "51":{ - "id":376922, - "value":"", - "question_id":13045, - "created_at":"2018-04-26T10:04:30.115+02:00", - "updated_at":"2018-04-26T10:04:30.115+02:00", - "response_id":null, - "nren_id":51, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"LANET", - "country_name":"Latvia", - "country_code":"LV", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "46":{ - "id":1470712, - "value":"Yes", - "question_id":13045, - "created_at":"2020-10-16T17:52:36.474+02:00", - "updated_at":"2020-10-16T17:52:36.474+02:00", - "response_id":null, - "nren_id":46, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"Jisc", - "country_name":"United Kingdom", - "country_code":"GB", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "23":{ - "id":1488868, - "value":"Yes", - "question_id":13045, - "created_at":"2020-11-27T10:53:10.598+01:00", - "updated_at":"2020-11-27T10:53:10.598+01:00", - "response_id":null, - "nren_id":23, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"GARR", - "country_name":"Italy", - "country_code":"IT", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - }, - "11":{ - "id":1494273, - "value":"No", - "question_id":13045, - "created_at":"2021-01-14T15:01:56.574+01:00", - "updated_at":"2021-01-14T15:01:56.574+01:00", - "response_id":null, - "nren_id":11, - "compendium_id":23, - "question_style":"MULTIPLE_CHOICE", - "identifier":"saas", - "title":"Do you offer Software as a Service?", - "nren_abbreviation":"EENet", - "country_name":"Estonia", - "country_code":"EE", - "public":true, - "short":"SaaS", - "title_detailed":"Software as a service e.g. GoogleApps for Education.", - "tags":[ - "storage and hosting", - "professional" - ], - "url":null, - "status":2, - "kpi":[ - - ] - } - } - ] -} \ No newline at end of file diff --git a/compendium_v2/db/model.py b/compendium_v2/db/model.py index 2e982ea65253f1629a9b2da913fcc9747a7f7b27..45d4758d1708bc94987a247ae30b3134b819ee76 100644 --- a/compendium_v2/db/model.py +++ b/compendium_v2/db/model.py @@ -15,21 +15,18 @@ base_schema: Any = declarative_base() class BudgetEntry(base_schema): __tablename__ = 'budgets' - id = sa.Column(sa.Integer, sa.Sequence( - 'budgetentry_seq_id_seq'), nullable=False) nren = sa.Column(sa.String(128), primary_key=True) - budget = sa.Column(sa.String(128)) year = sa.Column(sa.Integer, primary_key=True) + budget = sa.Column(sa.Numeric(asdecimal=False), nullable=False) class FundingSource(base_schema): __tablename__ = 'funding_source' - id = sa.Column(sa.Integer, sa.Sequence( - 'fundingentry_seq_id_seq'), nullable=False) nren = sa.Column(sa.String(128), primary_key=True) year = sa.Column(sa.Integer, primary_key=True) - client_institutions = sa.Column(sa.String(128)) - european_funding = sa.Column(sa.String(128)) - gov_public_bodies = sa.Column(sa.String(128)) - commercial = sa.Column(sa.String(128)) - other = sa.Column(sa.String(128)) + client_institutions = sa.Column( + sa.Numeric(asdecimal=False), nullable=False) + european_funding = sa.Column(sa.Numeric(asdecimal=False), nullable=False) + gov_public_bodies = sa.Column(sa.Numeric(asdecimal=False), nullable=False) + commercial = sa.Column(sa.Numeric(asdecimal=False), nullable=False) + other = sa.Column(sa.Numeric(asdecimal=False), nullable=False) diff --git a/compendium_v2/migrations/versions/833c99d745d7_create_funding_source_schema.py b/compendium_v2/migrations/versions/833c99d745d7_create_funding_source_schema.py deleted file mode 100644 index cee4312f5385eb6ff928ca604f0c9ad19b587453..0000000000000000000000000000000000000000 --- a/compendium_v2/migrations/versions/833c99d745d7_create_funding_source_schema.py +++ /dev/null @@ -1,40 +0,0 @@ -"""create funding source schema - -Revision ID: 833c99d745d7 -Revises: cbcd21fcc151 -Create Date: 2023-03-07 23:47:30.157499 - -""" -from alembic import op -import sqlalchemy as sa - -# revision identifiers, used by Alembic. -revision = '833c99d745d7' -down_revision = 'cbcd21fcc151' -branch_labels = None -depends_on = None - -funding_id_seq = sa.Sequence('fundingentry_seq_id_seq') - - -def upgrade(): - op.execute(sa.schema.CreateSequence(funding_id_seq)) # create the sequence - op.create_table( - 'funding_source', - sa.Column('id', sa.Integer, funding_id_seq, nullable=False, - server_default=funding_id_seq.next_value()), - sa.Column('nren', sa.String(length=128), nullable=False), - sa.Column('year', sa.Integer, nullable=False), - sa.Column('client_institutions', sa.String(length=128)), - sa.Column('european_funding', sa.String(length=128)), - sa.Column('gov_public_bodies', sa.String(length=128)), - sa.Column('commercial', sa.String(length=128)), - sa.Column('other', sa.String(length=128)), - sa.PrimaryKeyConstraint('nren', 'year') - ) - - -def downgrade(): - op.execute( - sa.schema.DropSequence(sa.Sequence('fundingentry_seq_id_seq'))) - op.drop_table('funding_source') diff --git a/compendium_v2/migrations/versions/b70ada054046_initial_db_with_proper_types.py b/compendium_v2/migrations/versions/b70ada054046_initial_db_with_proper_types.py new file mode 100644 index 0000000000000000000000000000000000000000..24ad274bdbe42b3154fa83c4dcc73f62215b432b --- /dev/null +++ b/compendium_v2/migrations/versions/b70ada054046_initial_db_with_proper_types.py @@ -0,0 +1,45 @@ +"""Initial DB with proper types + +Revision ID: b70ada054046 +Revises: +Create Date: 2023-03-27 17:48:46.164991 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = 'b70ada054046' +down_revision = None +branch_labels = None +depends_on = None + + +def upgrade(): + op.create_table( + 'budgets', + sa.Column('nren', sa.String(length=128), nullable=False), + sa.Column('year', sa.Integer(), nullable=False), + sa.Column('budget', sa.Numeric(asdecimal=False), nullable=False), + sa.PrimaryKeyConstraint('nren', 'year') + ) + op.create_table( + 'funding_source', + sa.Column('nren', sa.String(length=128), nullable=False), + sa.Column('year', sa.Integer(), nullable=False), + sa.Column('client_institutions', sa.Numeric( + asdecimal=False), nullable=False), + sa.Column('european_funding', sa.Numeric( + asdecimal=False), nullable=False), + sa.Column('gov_public_bodies', sa.Numeric( + asdecimal=False), nullable=False), + sa.Column('commercial', sa.Numeric(asdecimal=False), nullable=False), + sa.Column('other', sa.Numeric(asdecimal=False), nullable=False), + sa.PrimaryKeyConstraint('nren', 'year') + ) + + +def downgrade(): + op.drop_table('funding_source') + op.drop_table('budgets') diff --git a/compendium_v2/migrations/versions/cbcd21fcc151_initial_db.py b/compendium_v2/migrations/versions/cbcd21fcc151_initial_db.py deleted file mode 100644 index acb48c84a48a380b8d8e91ef3151b8b8f73777f0..0000000000000000000000000000000000000000 --- a/compendium_v2/migrations/versions/cbcd21fcc151_initial_db.py +++ /dev/null @@ -1,37 +0,0 @@ -"""Initial DB - -Revision ID: cbcd21fcc151 -Revises: -Create Date: 2023-02-07 15:56:22.086064 - -""" -from alembic import op -import sqlalchemy as sa - -# revision identifiers, used by Alembic. -revision = 'cbcd21fcc151' -down_revision = None -branch_labels = None -depends_on = None - -# represents the sequence -budget_id_seq = sa.Sequence('budgetentry_seq_id_seq') - - -def upgrade(): - op.execute(sa.schema.CreateSequence(budget_id_seq)) # create the sequence - op.create_table( - 'budgets', - sa.Column('id', sa.Integer, budget_id_seq, nullable=False, - server_default=budget_id_seq.next_value()), - sa.Column('nren', sa.String(length=128), nullable=False), - sa.Column('budget', sa.String(length=128), nullable=True), - sa.Column('year', sa.Integer, nullable=False), - sa.PrimaryKeyConstraint('nren', 'year') - ) - - -def downgrade(): - op.execute( - sa.schema.DropSequence(sa.Sequence('budgetentry_seq_id_seq'))) - op.drop_table('budgets') diff --git a/compendium_v2/publishers/survey_publisher_2022.py b/compendium_v2/publishers/survey_publisher_2022.py index cb5f9ee8e8561fdd34b63e0a1a49349b8ed6073e..37d55e817cb4c115a9dcc464d9dd3e720109c35d 100644 --- a/compendium_v2/publishers/survey_publisher_2022.py +++ b/compendium_v2/publishers/survey_publisher_2022.py @@ -25,7 +25,7 @@ JOIN compendia c ON s.compendium_id = c.id WHERE a.question_id = 16402 AND c.year = 2022 -ORDER BY n.id, a.question_id DESC +ORDER BY n.id, a.question_id, a.updated_at DESC """ FUNDING_SOURCES_TEMPLATE_QUERY = """ @@ -40,7 +40,7 @@ JOIN compendia c ON s.compendium_id = c.id WHERE a.question_id = {} AND c.year = 2022 -ORDER BY n.id, a.question_id DESC +ORDER BY n.id, a.question_id, a.updated_at DESC """ @@ -59,9 +59,21 @@ def setup_db(config): survey_db.init_db_model(dsn_survey) +def query_budget(): + with survey_db.session_scope() as survey: + return survey.execute(text(BUDGET_QUERY)) + + +def query_funding_sources(): + for source in FundingSource: + query = FUNDING_SOURCES_TEMPLATE_QUERY.format(source.value) + with survey_db.session_scope() as survey: + yield source, survey.execute(text(query)) + + def transfer_budget(): - with db.session_scope() as session, survey_db.session_scope() as survey: - rows = survey.execute(text(BUDGET_QUERY)) + with db.session_scope() as session: + rows = query_budget() for row in rows: nren = row[0] _budget = row[1] @@ -86,13 +98,11 @@ def transfer_budget(): def transfer_funding_sources(): - with db.session_scope() as session, survey_db.session_scope() as survey: + with db.session_scope() as session: sources = {source.value: dict() for source in FundingSource} nrens = set() - for source in FundingSource: - data = survey.execute( - text(FUNDING_SOURCES_TEMPLATE_QUERY.format(source.value))) + for source, data in query_funding_sources(): for row in data: nren = row[0] nrens.add(nren) @@ -143,13 +153,17 @@ def transfer_funding_sources(): session.commit() +def _cli(config): + setup_db(config) + transfer_budget() + transfer_funding_sources() + + @click.command() @click.option('--config', type=click.STRING, default='config.json') def cli(config): app_config = load(open(config, 'r')) - setup_db(app_config) - transfer_budget() - transfer_funding_sources() + _cli(app_config) if __name__ == "__main__": diff --git a/compendium_v2/publishers/survey_publisher_v1.py b/compendium_v2/publishers/survey_publisher_v1.py index 09e9656e74b6d0c91679ceb5a30d2c96799082de..6c6320f83dca638449d0a0f981758b8b4c9679ea 100644 --- a/compendium_v2/publishers/survey_publisher_v1.py +++ b/compendium_v2/publishers/survey_publisher_v1.py @@ -1,19 +1,17 @@ import logging import math -import csv import click -from collections import defaultdict from compendium_v2.environment import setup_logging from compendium_v2 import db, survey_db -from compendium_v2.background_task import xlsx_to_csv_sheet_parsing_task +from compendium_v2.background_task import parse_excel_data from compendium_v2.config import load from compendium_v2.db import model from compendium_v2.survey_db import model as survey_model setup_logging() -logger = logging.getLogger('survey_publisher_v1') +logger = logging.getLogger('survey-publisher-v1') def init_db(config): @@ -26,13 +24,8 @@ def init_db(config): def db_budget_migration(): with survey_db.session_scope() as survey_session, \ db.session_scope() as session: - _entries = session.query(model.BudgetEntry) - - inserted = defaultdict(dict) - - for entry in _entries: - inserted[entry.nren][entry.year] = entry.budget + # move data from Survey DB budget table data = survey_session.query(survey_model.Nrens) for nren in data: for budget in nren.budgets: @@ -46,20 +39,16 @@ def db_budget_migration(): f'>200M EUR for {year}. ({budget.budget})') budget_entry = model.BudgetEntry( - nren=abbrev, budget=budget.budget, year=year) + nren=abbrev, budget=float(budget.budget), year=year) session.merge(budget_entry) - # Import the data to database - xlsx_to_csv_sheet_parsing_task.parse_budget_xlsx_file() - with open('compendium_v2/background_task/csv/BudgetCsvFile.csv', - newline='') as csvfile: - reader = csv.reader(csvfile) - - for row in reader: - if row is not None: - budget_entry = model.BudgetEntry( - nren=row[0], budget=row[1], year=row[2]) - session.merge(budget_entry) + # Import the data from excel sheet to database + exceldata = parse_excel_data.fetch_budget_excel_data() + + for nren, budget, year in exceldata: + budget_entry = model.BudgetEntry( + nren=nren, budget=budget, year=year) + session.merge(budget_entry) session.commit() @@ -67,41 +56,44 @@ def db_funding_migration(): with db.session_scope() as session: # Import the data to database - xlsx_to_csv_sheet_parsing_task.parse_income_source_xlsx_file() - with open('compendium_v2/background_task/csv/FundingSourceCsvFile.csv', - newline='') as csvfile: - reader = csv.reader(csvfile) - - for row in reader: - if row is not None: - _data = [float(row[2]), float(row[3]), float(row[4]), - float(row[5]), float(row[6])] - - total = sum(_data) - if not math.isclose(total, 100, abs_tol=0.01): - logger.info( - f'{row[0]} funding sources for {row[1]}' - f' do not sum to 100% ({total})') - - budget_entry = model.FundingSource( - nren=row[0], year=row[1], - client_institutions=row[2], - european_funding=row[3], - gov_public_bodies=row[4], - commercial=row[5], - other=row[6]) - session.merge(budget_entry) + data = parse_excel_data.fetch_funding_excel_data() + + for (nren, year, client_institution, + european_funding, + gov_public_bodies, + commercial, other) in data: + + _data = [client_institution, european_funding, + gov_public_bodies, commercial, other] + total = sum(_data) + if not math.isclose(total, 100, abs_tol=0.01): + logger.info( + f'{nren} funding sources for {year}' + f' do not sum to 100% ({total})') + + budget_entry = model.FundingSource( + nren=nren, year=year, + client_institutions=client_institution, + european_funding=european_funding, + gov_public_bodies=gov_public_bodies, + commercial=commercial, + other=other) + session.merge(budget_entry) session.commit() +def _cli(config): + init_db(config) + db_budget_migration() + db_funding_migration() + + @click.command() @click.option('--config', type=click.STRING, default='config.json') def cli(config): app_config = load(open(config, 'r')) print("survey-publisher-v1 starting") - init_db(app_config) - db_budget_migration() - db_funding_migration() + _cli(app_config) if __name__ == "__main__": diff --git a/compendium_v2/routes/budget.py b/compendium_v2/routes/budget.py index 21ddc0328aacc154a4ba62b355e205d1b3880fde..8900a18869e582dd39bf0eefe136d6a4f74b4b0c 100644 --- a/compendium_v2/routes/budget.py +++ b/compendium_v2/routes/budget.py @@ -1,14 +1,10 @@ -import csv import logging -from collections import defaultdict from typing import Any from flask import Blueprint, jsonify, current_app from compendium_v2 import db, survey_db -from compendium_v2.background_task import xlsx_to_csv_sheet_parsing_task from compendium_v2.db import model -from compendium_v2.survey_db import model as survey_model from compendium_v2.routes import common routes = Blueprint('budget', __name__) @@ -36,12 +32,11 @@ BUDGET_RESPONSE_SCHEMA = { 'budget': { 'type': 'object', 'properties': { - 'id': {'type': 'number'}, 'NREN': {'type': 'string'}, - 'BUDGET': {'type': 'string'}, + 'BUDGET': {'type': 'number'}, 'BUDGET_YEAR': {'type': 'integer'}, }, - 'required': ['id'], + 'required': ['NREN', 'BUDGET', 'BUDGET_YEAR'], 'additionalProperties': False } }, @@ -60,16 +55,15 @@ def budget_view() -> Any: response will be formatted as: .. asjson:: - compendium_v2.routes.data_entry.BUDGET_RESPONSE_SCHEMA + compendium_v2.routes.budget.BUDGET_RESPONSE_SCHEMA :return: """ def _extract_data(entry: model.BudgetEntry): return { - 'id': entry.id, 'NREN': entry.nren, - 'BUDGET': entry.budget, + 'BUDGET': float(entry.budget), 'BUDGET_YEAR': entry.year, } @@ -78,56 +72,3 @@ def budget_view() -> Any: for entry in session.query(model.BudgetEntry)], key=lambda d: (d['BUDGET_YEAR'], d['NREN'])) return jsonify(entries) - - -@routes.route('/migration', methods=['GET']) -@common.require_accepts_json -def db_budget_migration(): - with survey_db.session_scope() as survey_session, \ - db.session_scope() as session: - _entries = session.query(model.BudgetEntry) - - inserted = defaultdict(dict) - - for entry in _entries: - inserted[entry.nren][entry.year] = entry.budget - - data = survey_session.query(survey_model.Nrens) - for nren in data: - for budget in nren.budgets: - abbrev = nren.abbreviation - year = budget.year - - if inserted.get(abbrev, {}).get(year): - continue - else: - inserted[abbrev][year] = True - entry = model.BudgetEntry( - nren=abbrev, budget=budget.budget, year=year) - session.add(entry) - # Import the data to database - xlsx_to_csv_sheet_parsing_task.parse_budget_xlsx_file() - with open('compendium_v2/background_task/csv/BudgetCsvFile.csv', - newline='') as csvfile: - reader = csv.reader(csvfile) - - for row in reader: - if row is not None: - entry = session.query( - model.BudgetEntry).filter_by(nren=row[0], - year=row[ - 2]) - dup_entry: model.BudgetEntry = entry.first() - if dup_entry: - dup_entry.budget = row[1] - entry.update({"budget": row[1]}) - - else: - print("add new") - print(row) - budget_entry = model.BudgetEntry( - nren=row[0], budget=row[1], year=row[2]) - session.add(budget_entry) - session.commit() - - return "Success" diff --git a/compendium_v2/routes/funding.py b/compendium_v2/routes/funding.py index e2ef28b752776b78daa461dfab1f7a22c9b1e86d..0c9b10d8ef3e85ada12a1b8e18ba28e9759a9d55 100644 --- a/compendium_v2/routes/funding.py +++ b/compendium_v2/routes/funding.py @@ -1,11 +1,9 @@ -import csv +import logging from flask import Blueprint, jsonify, current_app from compendium_v2 import db -from compendium_v2.background_task import xlsx_to_csv_sheet_parsing_task from compendium_v2.routes import common from compendium_v2.db import model -import logging from typing import Any routes = Blueprint('funding', __name__) @@ -29,14 +27,14 @@ FUNDING_RESPONSE_SCHEMA = { 'properties': { 'id': {'type': 'number'}, 'NREN': {'type': 'string'}, - 'YEAR': {'type': 'string'}, - 'CLIENT_INSTITUTIONS': {'type': 'string'}, - 'EUROPEAN_FUNDING': {'type': 'string'}, - 'GOV_PUBLIC_BODIES': {'type': 'string'}, - 'COMMERCIAL': {'type': 'string'}, - 'OTHER': {'type': 'string'} + 'YEAR': {'type': 'integer'}, + 'CLIENT_INSTITUTIONS': {'type': 'number'}, + 'EUROPEAN_FUNDING': {'type': 'number'}, + 'GOV_PUBLIC_BODIES': {'type': 'number'}, + 'COMMERCIAL': {'type': 'number'}, + 'OTHER': {'type': 'number'} }, - 'required': ['id'], + 'required': ['NREN', 'YEAR'], 'additionalProperties': False } }, @@ -48,73 +46,31 @@ FUNDING_RESPONSE_SCHEMA = { @routes.route('/', methods=['GET']) @common.require_accepts_json -def budget_view() -> Any: +def funding_source_view() -> Any: """ handler for /api/funding/ requests response will be formatted as: .. asjson:: - compendium_v2.routes.data_entry.BUDGET_RESPONSE_SCHEMA + compendium_v2.routes.funding.FUNDING_RESPONSE_SCHEMA :return: """ def _extract_data(entry: model.FundingSource): return { - 'id': entry.id, 'NREN': entry.nren, - 'YEAR': entry.year, - 'CLIENT_INSTITUTIONS': entry.client_institutions, - 'EUROPEAN_FUNDING': entry.european_funding, - 'GOV_PUBLIC_BODIES': entry.gov_public_bodies, - 'COMMERCIAL': entry.commercial, - 'OTHER': entry.other + 'YEAR': int(entry.year), + 'CLIENT_INSTITUTIONS': float(entry.client_institutions), + 'EUROPEAN_FUNDING': float(entry.european_funding), + 'GOV_PUBLIC_BODIES': float(entry.gov_public_bodies), + 'COMMERCIAL': float(entry.commercial), + 'OTHER': float(entry.other) } with db.session_scope() as session: entries = sorted([_extract_data(entry) for entry in session.query(model.FundingSource)], key=lambda d: (d['NREN'], d['YEAR'])) - dict_obj = {"data": entries} - return jsonify(dict_obj) - - -@routes.route('/migration', methods=['GET']) -@common.require_accepts_json -def db_funding_migration(): - with db.session_scope() as session: - - # Import the data to database - xlsx_to_csv_sheet_parsing_task.parse_income_source_xlsx_file() - with open('compendium_v2/background_task/csv/FundingSourceCsvFile.csv', - newline='') as csvfile: - reader = csv.reader(csvfile) - - for row in reader: - if row is not None: - entry = session.query( - model.FundingSource).filter_by(nren=row[0], - year=row[1]) - dup_entry: model.FundingSource = entry.first() - if dup_entry: - entry.update({"client_institutions": row[2], - "european_funding": row[3], - "gov_public_bodies": row[4], - "commercial": row[5], - "other": row[6]}) - - else: - print("add new") - print(row) - budget_entry = model.FundingSource( - nren=row[0], year=row[1], - client_institutions=row[2], - european_funding=row[3], - gov_public_bodies=row[4], - commercial=row[5], - other=row[6]) - session.add(budget_entry) - session.commit() - - return "Success" + return jsonify(entries) diff --git a/compendium_v2/routes/service_matrix.py b/compendium_v2/routes/service_matrix.py deleted file mode 100644 index 798db6ec75cb2e914d75dd2162785a10915fc653..0000000000000000000000000000000000000000 --- a/compendium_v2/routes/service_matrix.py +++ /dev/null @@ -1,84 +0,0 @@ -""" -Service Matrix Endpoints -========================= - -These endpoints are intended for getting service matrix. - -.. contents:: :local: - -/service-matrix ---------------------- - -.. autofunction:: compendium_v2.routes.service_matrix - -""" -import json -import logging -import os - -from flask import Blueprint - -from compendium_v2.routes import common - -SERVICE_MATRIX_SCHEMA = { - '$schema': 'http://json-schema.org/draft-07/schema#', - 'type': 'object', - 'properties': { - 'key': { - 'type': 'string' - }, - 'nrens': { - 'type': 'array', - 'items': { - 'type': 'object', - 'properties': { - 'name': { - 'type': 'string' - }, - 'nren_id': { - 'type': 'integer' - }, - 'tags': { - 'type': 'array', - 'items': {} - } - }, - 'required': [ - 'name', - 'nren_id', - 'tags' - ], - 'additionalProperties': True - } - } - } -} - -DUMMY_DATA_FILENAME = os.path.abspath(os.path.join( - os.path.dirname(__file__), - '..', - 'datasources', - 'dummy-service-matrix.json' -)) -routes = Blueprint('compendium-v2-service-matrix', __name__) -logger = logging.getLogger(__name__) - -file_name = open(DUMMY_DATA_FILENAME) - -service_matrix_response = json.loads(file_name.read()) - - -@routes.route('', methods=['GET']) -@common.require_accepts_json -def get_service_matrix(): - """ - handler for /service-matrix requests - - response will be formatted as: - - .. asjson:: - compendium_v2.routes.api.THING_LIST_SCHEMA - - :return: - """ - return service_matrix_response diff --git a/compendium_v2/services/__init__.py b/compendium_v2/services/__init__.py deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/compendium_v2/static/bundle.js b/compendium_v2/static/bundle.js index 3b2ef34f08e6b6267c5fe13c4d756fe8f0558995..eaa11a34d47adaad9ed3acee7c3262b3696c78df 100644 --- a/compendium_v2/static/bundle.js +++ b/compendium_v2/static/bundle.js @@ -1,2 +1,2 @@ /*! For license information please see bundle.js.LICENSE.txt */ -(()=>{var t,e,r={844:(t,e)=>{"use strict";e.gr=void 0,e.gr=function t(...e){if(!Array.isArray(e))throw new TypeError("Please, send an array.");const[r,n,...o]=e,i=function(t,e){const r=[];for(let n=0;n<t.length;n++)if(e)for(let o=0;o<e.length;o++)Array.isArray(t[n])?r.push([...t[n],e[o]]):r.push([t[n],e[o]]);else r.push([t[n]]);return r}(r,n);return o.length?t(i,...o):i}},184:(t,e)=>{var r;!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var t=[],e=0;e<arguments.length;e++){var r=arguments[e];if(r){var i=typeof r;if("string"===i||"number"===i)t.push(r);else if(Array.isArray(r)){if(r.length){var a=o.apply(null,r);a&&t.push(a)}}else if("object"===i){if(r.toString!==Object.prototype.toString&&!r.toString.toString().includes("[native code]")){t.push(r.toString());continue}for(var s in r)n.call(r,s)&&r[s]&&t.push(s)}}}return t.join(" ")}t.exports?(o.default=o,t.exports=o):void 0===(r=function(){return o}.apply(e,[]))||(t.exports=r)}()},666:(t,e,r)=>{"use strict";r.d(e,{Z:()=>H});var n=r(81),o=r.n(n),i=r(645),a=r.n(i),s=r(667),l=r.n(s),d=new URL(r(770),r.b),c=new URL(r(199),r.b),u=new URL(r(204),r.b),p=new URL(r(931),r.b),m=new URL(r(486),r.b),f=new URL(r(609),r.b),h=new URL(r(469),r.b),b=new URL(r(122),r.b),g=new URL(r(144),r.b),v=new URL(r(217),r.b),x=new URL(r(956),r.b),y=new URL(r(460),r.b),w=new URL(r(740),r.b),k=new URL(r(254),r.b),_=new URL(r(647),r.b),S=new URL(r(692),r.b),E=a()(o()),C=l()(d),z=l()(c),M=l()(u),P=l()(p),O=l()(m),T=l()(f),L=l()(h),R=l()(b),N=l()(g),D=l()(v),I=l()(x),A=l()(y),j=l()(w),F=l()(k),B=l()(_),U=l()(S);E.push([t.id,'@charset "UTF-8";/*!\n * Bootstrap v5.2.3 (https://getbootstrap.com/)\n * Copyright 2011-2022 The Bootstrap Authors\n * Copyright 2011-2022 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:33,37,41;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-2xl:2rem;--bs-border-radius-pill:50rem;--bs-link-color:#0d6efd;--bs-link-hover-color:#0a58ca;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:1px solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:var(--bs-link-color);text-decoration:underline}a:hover{color:var(--bs-link-hover-color)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid var(--bs-border-color);border-radius:.375rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color:var(--bs-body-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-body-color);--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:var(--bs-body-color);--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:var(--bs-body-color);--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:var(--bs-table-color);vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:2px solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#bacbe6;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#cbccce;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#bcd0c7;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#badce3;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#e6dbb9;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#dfc2c4;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#dfe0e1;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#373b3e;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled{background-color:#e9ecef;opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:calc(1.5em + .75rem + 2px);padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:.375rem}.form-control-color::-webkit-color-swatch{border-radius:.375rem}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + 2px)}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + 2px)}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url('+C+');background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:.25rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:.5rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url('+z+")}.form-check-input:checked[type=radio]{background-image:url("+M+")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("+P+")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("+O+");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("+T+")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("+L+")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;width:100%;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:1px 0}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.375rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.375rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("+R+');background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url('+C+"),url("+R+");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.375rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("+N+');background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url('+C+"),url("+N+');background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:#212529;--bs-btn-bg:transparent;--bs-btn-border-width:1px;--bs-btn-border-color:transparent;--bs-btn-border-radius:0.375rem;--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:none;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:0.5rem}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:0.25rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:#212529;--bs-dropdown-bg:#fff;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:0.375rem;--bs-dropdown-border-width:1px;--bs-dropdown-inner-border-radius:calc(0.375rem - 1px);--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color:#212529;--bs-dropdown-link-hover-color:#1e2125;--bs-dropdown-link-hover-bg:#e9ecef;--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:.375rem}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:#6c757d;display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link.disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:1px;--bs-nav-tabs-border-color:#dee2e6;--bs-nav-tabs-border-radius:0.375rem;--bs-nav-tabs-link-hover-border-color:#e9ecef #e9ecef #dee2e6;--bs-nav-tabs-link-active-color:#495057;--bs-nav-tabs-link-active-bg:#fff;--bs-nav-tabs-link-active-border-color:#dee2e6 #dee2e6 #fff;border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));background:0 0;border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:0.375rem;--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{background:0 0;border:0;border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(0, 0, 0, 0.55);--bs-navbar-hover-color:rgba(0, 0, 0, 0.7);--bs-navbar-disabled-color:rgba(0, 0, 0, 0.3);--bs-navbar-active-color:rgba(0, 0, 0, 0.9);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(0, 0, 0, 0.9);--bs-navbar-brand-hover-color:rgba(0, 0, 0, 0.9);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url('+D+");--bs-navbar-toggler-border-color:rgba(0, 0, 0, 0.1);--bs-navbar-toggler-border-radius:0.375rem;--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .show>.nav-link{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("+I+")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-border-width:1px;--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:0.375rem;--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(0.375rem - 1px);--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(0, 0, 0, 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:#fff;--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:#212529;--bs-accordion-bg:#fff;--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:1px;--bs-accordion-border-radius:0.375rem;--bs-accordion-inner-border-radius:calc(0.375rem - 1px);--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:#212529;--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("+A+");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("+j+');--bs-accordion-btn-focus-border-color:#86b7fe;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:#0c63e4;--bs-accordion-active-bg:#e7f1ff}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:#6c757d;--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:#6c757d;display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:#fff;--bs-pagination-border-width:1px;--bs-pagination-border-color:#dee2e6;--bs-pagination-border-radius:0.375rem;--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:#e9ecef;--bs-pagination-hover-border-color:#dee2e6;--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:#e9ecef;--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:#6c757d;--bs-pagination-disabled-bg:#fff;--bs-pagination-disabled-border-color:#dee2e6;display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:0.5rem}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:0.25rem}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:0.375rem;display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:1px solid var(--bs-alert-border-color);--bs-alert-border-radius:0.375rem;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:#084298;--bs-alert-bg:#cfe2ff;--bs-alert-border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{--bs-alert-color:#41464b;--bs-alert-bg:#e2e3e5;--bs-alert-border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{--bs-alert-color:#0f5132;--bs-alert-bg:#d1e7dd;--bs-alert-border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{--bs-alert-color:#055160;--bs-alert-bg:#cff4fc;--bs-alert-border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{--bs-alert-color:#664d03;--bs-alert-bg:#fff3cd;--bs-alert-border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{--bs-alert-color:#842029;--bs-alert-bg:#f8d7da;--bs-alert-border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{--bs-alert-color:#636464;--bs-alert-bg:#fefefe;--bs-alert-border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{--bs-alert-color:#141619;--bs-alert-bg:#d3d3d4;--bs-alert-border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:#e9ecef;--bs-progress-border-radius:0.375rem;--bs-progress-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color:#212529;--bs-list-group-bg:#fff;--bs-list-group-border-color:rgba(0, 0, 0, 0.125);--bs-list-group-border-width:1px;--bs-list-group-border-radius:0.375rem;--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:#495057;--bs-list-group-action-hover-color:#495057;--bs-list-group-action-hover-bg:#f8f9fa;--bs-list-group-action-active-color:#212529;--bs-list-group-action-active-bg:#e9ecef;--bs-list-group-disabled-color:#6c757d;--bs-list-group-disabled-bg:#fff;--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url('+F+') center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(255, 255, 255, 0.85);--bs-toast-border-width:1px;--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:0.375rem;--bs-toast-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-toast-header-color:#6c757d;--bs-toast-header-bg:rgba(255, 255, 255, 0.85);--bs-toast-header-border-color:rgba(0, 0, 0, 0.05);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex:1090;position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:#fff;--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:1px;--bs-modal-border-radius:0.5rem;--bs-modal-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius:calc(0.5rem - 1px);--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:1px;--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:1px;position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:#fff;--bs-tooltip-bg:#000;--bs-tooltip-border-radius:0.375rem;--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;padding:var(--bs-tooltip-arrow-height);margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:#fff;--bs-popover-border-width:1px;--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:0.5rem;--bs-popover-inner-border-radius:calc(0.5rem - 1px);--bs-popover-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: ;--bs-popover-header-bg:#f0f0f0;--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:#212529;--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url('+B+")}.carousel-control-next-icon{background-image:url("+U+')}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color: ;--bs-offcanvas-bg:#fff;--bs-offcanvas-border-width:1px;--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075)}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:575.98px){.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}}@media (max-width:575.98px){.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:767.98px){.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}}@media (max-width:767.98px){.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:991.98px){.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}}@media (max-width:991.98px){.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1199.98px){.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}}@media (max-width:1199.98px){.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}}@media (max-width:1399.98px){.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity,1))!important}.link-primary{color:#0d6efd!important}.link-primary:focus,.link-primary:hover{color:#0a58ca!important}.link-secondary{color:#6c757d!important}.link-secondary:focus,.link-secondary:hover{color:#565e64!important}.link-success{color:#198754!important}.link-success:focus,.link-success:hover{color:#146c43!important}.link-info{color:#0dcaf0!important}.link-info:focus,.link-info:hover{color:#3dd5f3!important}.link-warning{color:#ffc107!important}.link-warning:focus,.link-warning:hover{color:#ffcd39!important}.link-danger{color:#dc3545!important}.link-danger:focus,.link-danger:hover{color:#b02a37!important}.link-light{color:#f8f9fa!important}.link-light:focus,.link-light:hover{color:#f9fafb!important}.link-dark{color:#212529!important}.link-dark:focus,.link-dark:hover{color:#1a1e21!important}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-1{--bs-border-width:1px}.border-2{--bs-border-width:2px}.border-3{--bs-border-width:3px}.border-4{--bs-border-width:4px}.border-5{--bs-border-width:5px}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-semibold{font-weight:600!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-2xl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}',""]);const H=E},169:(t,e,r)=>{"use strict";r.d(e,{Z:()=>p});var n=r(81),o=r.n(n),i=r(645),a=r.n(i),s=r(667),l=r.n(s),d=new URL(r(116),r.b),c=a()(o()),u=l()(d);c.push([t.id,'.regular-17pt{font-family:"Open Sans",sans-serif;font-size:17pt;font-weight:normal}.bold-20pt{font-family:"Open Sans",sans-serif;font-size:20pt;font-weight:bold}.bold-caps-16pt{font-family:"Open Sans",sans-serif;font-size:16pt;font-weight:bold;text-transform:uppercase}.bold-caps-17pt{font-family:"Open Sans",sans-serif;font-size:17pt;font-weight:bold;text-transform:uppercase}.bold-caps-20pt,.geant-header{font-family:"Open Sans",sans-serif;font-size:20pt;font-weight:bold;text-transform:uppercase}.bold-caps-30pt{font-family:"Open Sans",sans-serif;font-size:30pt;font-weight:bold;text-transform:uppercase}.dark-teal{color:#003f5f}.geant-header{color:#003f5f}.rounded-border{border-radius:25px;border:1px solid #b9bec5}.geant-container,.grey-container{max-width:100vw;height:100vh;padding:2% 0}.grey-container{background-color:#eaedf3}.wordwrap{max-width:30vw;word-wrap:break-word}.center{display:flex;align-items:center;justify-content:center;flex-direction:column}.center-text{display:flex;align-items:center;justify-content:center;padding-bottom:2%;flex-direction:column}.max-width-100vw{max-width:100vw}.compendium-data-header{background-color:#fabe66;color:#fff;padding:10px}.compendium-data-banner{background-color:#fce7c9;color:#003f5f;padding:5px;padding-top:25px}.collapsible-box{margin:1rem;border:2px solid #fabe66;padding:10px;width:80rem;max-width:50vw}.collapsible-content{display:flex}.collapsible-column{flex-basis:100%;padding:1rem}table{min-width:650px}thead{background-color:#d3d3d3}.state_true{background-color:#90ee90}.state_false{background-color:red}.title-background{background-image:url('+u+');background-color:#064c6e;vertical-align:center;padding-bottom:15px;padding-bottom:15px}.footer-img{width:55px;height:38px}.footer{margin-top:8px;background-color:#064c6e;font-size:8px;height:75px;color:#000;width:100%;padding:15px;clear:both}.footer-text{color:#fff;margin-left:30px}.px{padding-left:55px}.header-naviagtion{display:flex;justify-content:space-around;align-items:center;min-width:10vh;background:#064c6e;color:#fff}.nav-links{width:50%;display:flex;justify-content:space-around;align-items:center;list-style:none}.external-page-nav-bar{background-color:#003753;color:#b0cde1;padding-top:10px}.external-page-nav-bar img{float:left}.external-page-nav-bar ul{list-style:none;float:left;margin-bottom:0}.external-page-nav-bar ul li{float:left;padding:10px}.external-page-nav-bar ul li a{font-family:"Open Sans";font-size:14px;font-weight:400}',""]);const p=c},645:t=>{"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var r="",n=void 0!==e[5];return e[4]&&(r+="@supports (".concat(e[4],") {")),e[2]&&(r+="@media ".concat(e[2]," {")),n&&(r+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),r+=t(e),n&&(r+="}"),e[2]&&(r+="}"),e[4]&&(r+="}"),r})).join("")},e.i=function(t,r,n,o,i){"string"==typeof t&&(t=[[null,t,void 0]]);var a={};if(n)for(var s=0;s<this.length;s++){var l=this[s][0];null!=l&&(a[l]=!0)}for(var d=0;d<t.length;d++){var c=[].concat(t[d]);n&&a[c[0]]||(void 0!==i&&(void 0===c[5]||(c[1]="@layer".concat(c[5].length>0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=i),r&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=r):c[2]=r),o&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=o):c[4]="".concat(o)),e.push(c))}},e}},667:t=>{"use strict";t.exports=function(t,e){return e||(e={}),t?(t=String(t.__esModule?t.default:t),/^['"].*['"]$/.test(t)&&(t=t.slice(1,-1)),e.hash&&(t+=e.hash),/["'() \t\n]|(%20)/.test(t)||e.needQuotes?'"'.concat(t.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):t):t}},81:t=>{"use strict";t.exports=function(t){return t[1]}},143:t=>{"use strict";t.exports=function(t,e,r,n,o,i,a,s){if(!t){var l;if(void 0===e)l=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var d=[r,n,o,i,a,s],c=0;(l=new Error(e.replace(/%s/g,(function(){return d[c++]})))).name="Invariant Violation"}throw l.framesToPop=1,l}}},448:(t,e,r)=>{"use strict";var n=r(294),o=r(840);function i(t){for(var e="https://reactjs.org/docs/error-decoder.html?invariant="+t,r=1;r<arguments.length;r++)e+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+t+"; visit "+e+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var a=new Set,s={};function l(t,e){d(t,e),d(t+"Capture",e)}function d(t,e){for(s[t]=e,t=0;t<e.length;t++)a.add(e[t])}var c=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),u=Object.prototype.hasOwnProperty,p=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,m={},f={};function h(t,e,r,n,o,i,a){this.acceptsBooleans=2===e||3===e||4===e,this.attributeName=n,this.attributeNamespace=o,this.mustUseProperty=r,this.propertyName=t,this.type=e,this.sanitizeURL=i,this.removeEmptyString=a}var b={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(t){b[t]=new h(t,0,!1,t,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(t){var e=t[0];b[e]=new h(e,1,!1,t[1],null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(t){b[t]=new h(t,2,!1,t.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(t){b[t]=new h(t,2,!1,t,null,!1,!1)})),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach((function(t){b[t]=new h(t,3,!1,t.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(t){b[t]=new h(t,3,!0,t,null,!1,!1)})),["capture","download"].forEach((function(t){b[t]=new h(t,4,!1,t,null,!1,!1)})),["cols","rows","size","span"].forEach((function(t){b[t]=new h(t,6,!1,t,null,!1,!1)})),["rowSpan","start"].forEach((function(t){b[t]=new h(t,5,!1,t.toLowerCase(),null,!1,!1)}));var g=/[\-:]([a-z])/g;function v(t){return t[1].toUpperCase()}function x(t,e,r,n){var o=b.hasOwnProperty(e)?b[e]:null;(null!==o?0!==o.type:n||!(2<e.length)||"o"!==e[0]&&"O"!==e[0]||"n"!==e[1]&&"N"!==e[1])&&(function(t,e,r,n){if(null==e||function(t,e,r,n){if(null!==r&&0===r.type)return!1;switch(typeof e){case"function":case"symbol":return!0;case"boolean":return!n&&(null!==r?!r.acceptsBooleans:"data-"!==(t=t.toLowerCase().slice(0,5))&&"aria-"!==t);default:return!1}}(t,e,r,n))return!0;if(n)return!1;if(null!==r)switch(r.type){case 3:return!e;case 4:return!1===e;case 5:return isNaN(e);case 6:return isNaN(e)||1>e}return!1}(e,r,o,n)&&(r=null),n||null===o?function(t){return!!u.call(f,t)||!u.call(m,t)&&(p.test(t)?f[t]=!0:(m[t]=!0,!1))}(e)&&(null===r?t.removeAttribute(e):t.setAttribute(e,""+r)):o.mustUseProperty?t[o.propertyName]=null===r?3!==o.type&&"":r:(e=o.attributeName,n=o.attributeNamespace,null===r?t.removeAttribute(e):(r=3===(o=o.type)||4===o&&!0===r?"":""+r,n?t.setAttributeNS(n,e,r):t.setAttribute(e,r))))}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach((function(t){var e=t.replace(g,v);b[e]=new h(e,1,!1,t,null,!1,!1)})),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach((function(t){var e=t.replace(g,v);b[e]=new h(e,1,!1,t,"http://www.w3.org/1999/xlink",!1,!1)})),["xml:base","xml:lang","xml:space"].forEach((function(t){var e=t.replace(g,v);b[e]=new h(e,1,!1,t,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((function(t){b[t]=new h(t,1,!1,t.toLowerCase(),null,!1,!1)})),b.xlinkHref=new h("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((function(t){b[t]=new h(t,1,!1,t.toLowerCase(),null,!0,!0)}));var y=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,w=Symbol.for("react.element"),k=Symbol.for("react.portal"),_=Symbol.for("react.fragment"),S=Symbol.for("react.strict_mode"),E=Symbol.for("react.profiler"),C=Symbol.for("react.provider"),z=Symbol.for("react.context"),M=Symbol.for("react.forward_ref"),P=Symbol.for("react.suspense"),O=Symbol.for("react.suspense_list"),T=Symbol.for("react.memo"),L=Symbol.for("react.lazy");Symbol.for("react.scope"),Symbol.for("react.debug_trace_mode");var R=Symbol.for("react.offscreen");Symbol.for("react.legacy_hidden"),Symbol.for("react.cache"),Symbol.for("react.tracing_marker");var N=Symbol.iterator;function D(t){return null===t||"object"!=typeof t?null:"function"==typeof(t=N&&t[N]||t["@@iterator"])?t:null}var I,A=Object.assign;function j(t){if(void 0===I)try{throw Error()}catch(t){var e=t.stack.trim().match(/\n( *(at )?)/);I=e&&e[1]||""}return"\n"+I+t}var F=!1;function B(t,e){if(!t||F)return"";F=!0;var r=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(e)if(e=function(){throw Error()},Object.defineProperty(e.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(e,[])}catch(t){var n=t}Reflect.construct(t,[],e)}else{try{e.call()}catch(t){n=t}t.call(e.prototype)}else{try{throw Error()}catch(t){n=t}t()}}catch(e){if(e&&n&&"string"==typeof e.stack){for(var o=e.stack.split("\n"),i=n.stack.split("\n"),a=o.length-1,s=i.length-1;1<=a&&0<=s&&o[a]!==i[s];)s--;for(;1<=a&&0<=s;a--,s--)if(o[a]!==i[s]){if(1!==a||1!==s)do{if(a--,0>--s||o[a]!==i[s]){var l="\n"+o[a].replace(" at new "," at ");return t.displayName&&l.includes("<anonymous>")&&(l=l.replace("<anonymous>",t.displayName)),l}}while(1<=a&&0<=s);break}}}finally{F=!1,Error.prepareStackTrace=r}return(t=t?t.displayName||t.name:"")?j(t):""}function U(t){switch(t.tag){case 5:return j(t.type);case 16:return j("Lazy");case 13:return j("Suspense");case 19:return j("SuspenseList");case 0:case 2:case 15:return B(t.type,!1);case 11:return B(t.type.render,!1);case 1:return B(t.type,!0);default:return""}}function H(t){if(null==t)return null;if("function"==typeof t)return t.displayName||t.name||null;if("string"==typeof t)return t;switch(t){case _:return"Fragment";case k:return"Portal";case E:return"Profiler";case S:return"StrictMode";case P:return"Suspense";case O:return"SuspenseList"}if("object"==typeof t)switch(t.$$typeof){case z:return(t.displayName||"Context")+".Consumer";case C:return(t._context.displayName||"Context")+".Provider";case M:var e=t.render;return(t=t.displayName)||(t=""!==(t=e.displayName||e.name||"")?"ForwardRef("+t+")":"ForwardRef"),t;case T:return null!==(e=t.displayName||null)?e:H(t.type)||"Memo";case L:e=t._payload,t=t._init;try{return H(t(e))}catch(t){}}return null}function V(t){var e=t.type;switch(t.tag){case 24:return"Cache";case 9:return(e.displayName||"Context")+".Consumer";case 10:return(e._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return t=(t=e.render).displayName||t.name||"",e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case 7:return"Fragment";case 5:return e;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return H(e);case 8:return e===S?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e}return null}function $(t){switch(typeof t){case"boolean":case"number":case"string":case"undefined":case"object":return t;default:return""}}function W(t){var e=t.type;return(t=t.nodeName)&&"input"===t.toLowerCase()&&("checkbox"===e||"radio"===e)}function Y(t){t._valueTracker||(t._valueTracker=function(t){var e=W(t)?"checked":"value",r=Object.getOwnPropertyDescriptor(t.constructor.prototype,e),n=""+t[e];if(!t.hasOwnProperty(e)&&void 0!==r&&"function"==typeof r.get&&"function"==typeof r.set){var o=r.get,i=r.set;return Object.defineProperty(t,e,{configurable:!0,get:function(){return o.call(this)},set:function(t){n=""+t,i.call(this,t)}}),Object.defineProperty(t,e,{enumerable:r.enumerable}),{getValue:function(){return n},setValue:function(t){n=""+t},stopTracking:function(){t._valueTracker=null,delete t[e]}}}}(t))}function K(t){if(!t)return!1;var e=t._valueTracker;if(!e)return!0;var r=e.getValue(),n="";return t&&(n=W(t)?t.checked?"true":"false":t.value),(t=n)!==r&&(e.setValue(t),!0)}function Q(t){if(void 0===(t=t||("undefined"!=typeof document?document:void 0)))return null;try{return t.activeElement||t.body}catch(e){return t.body}}function X(t,e){var r=e.checked;return A({},e,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=r?r:t._wrapperState.initialChecked})}function q(t,e){var r=null==e.defaultValue?"":e.defaultValue,n=null!=e.checked?e.checked:e.defaultChecked;r=$(null!=e.value?e.value:r),t._wrapperState={initialChecked:n,initialValue:r,controlled:"checkbox"===e.type||"radio"===e.type?null!=e.checked:null!=e.value}}function G(t,e){null!=(e=e.checked)&&x(t,"checked",e,!1)}function Z(t,e){G(t,e);var r=$(e.value),n=e.type;if(null!=r)"number"===n?(0===r&&""===t.value||t.value!=r)&&(t.value=""+r):t.value!==""+r&&(t.value=""+r);else if("submit"===n||"reset"===n)return void t.removeAttribute("value");e.hasOwnProperty("value")?tt(t,e.type,r):e.hasOwnProperty("defaultValue")&&tt(t,e.type,$(e.defaultValue)),null==e.checked&&null!=e.defaultChecked&&(t.defaultChecked=!!e.defaultChecked)}function J(t,e,r){if(e.hasOwnProperty("value")||e.hasOwnProperty("defaultValue")){var n=e.type;if(!("submit"!==n&&"reset"!==n||void 0!==e.value&&null!==e.value))return;e=""+t._wrapperState.initialValue,r||e===t.value||(t.value=e),t.defaultValue=e}""!==(r=t.name)&&(t.name=""),t.defaultChecked=!!t._wrapperState.initialChecked,""!==r&&(t.name=r)}function tt(t,e,r){"number"===e&&Q(t.ownerDocument)===t||(null==r?t.defaultValue=""+t._wrapperState.initialValue:t.defaultValue!==""+r&&(t.defaultValue=""+r))}var et=Array.isArray;function rt(t,e,r,n){if(t=t.options,e){e={};for(var o=0;o<r.length;o++)e["$"+r[o]]=!0;for(r=0;r<t.length;r++)o=e.hasOwnProperty("$"+t[r].value),t[r].selected!==o&&(t[r].selected=o),o&&n&&(t[r].defaultSelected=!0)}else{for(r=""+$(r),e=null,o=0;o<t.length;o++){if(t[o].value===r)return t[o].selected=!0,void(n&&(t[o].defaultSelected=!0));null!==e||t[o].disabled||(e=t[o])}null!==e&&(e.selected=!0)}}function nt(t,e){if(null!=e.dangerouslySetInnerHTML)throw Error(i(91));return A({},e,{value:void 0,defaultValue:void 0,children:""+t._wrapperState.initialValue})}function ot(t,e){var r=e.value;if(null==r){if(r=e.children,e=e.defaultValue,null!=r){if(null!=e)throw Error(i(92));if(et(r)){if(1<r.length)throw Error(i(93));r=r[0]}e=r}null==e&&(e=""),r=e}t._wrapperState={initialValue:$(r)}}function it(t,e){var r=$(e.value),n=$(e.defaultValue);null!=r&&((r=""+r)!==t.value&&(t.value=r),null==e.defaultValue&&t.defaultValue!==r&&(t.defaultValue=r)),null!=n&&(t.defaultValue=""+n)}function at(t){var e=t.textContent;e===t._wrapperState.initialValue&&""!==e&&null!==e&&(t.value=e)}function st(t){switch(t){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function lt(t,e){return null==t||"http://www.w3.org/1999/xhtml"===t?st(e):"http://www.w3.org/2000/svg"===t&&"foreignObject"===e?"http://www.w3.org/1999/xhtml":t}var dt,ct,ut=(ct=function(t,e){if("http://www.w3.org/2000/svg"!==t.namespaceURI||"innerHTML"in t)t.innerHTML=e;else{for((dt=dt||document.createElement("div")).innerHTML="<svg>"+e.valueOf().toString()+"</svg>",e=dt.firstChild;t.firstChild;)t.removeChild(t.firstChild);for(;e.firstChild;)t.appendChild(e.firstChild)}},"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(t,e,r,n){MSApp.execUnsafeLocalFunction((function(){return ct(t,e)}))}:ct);function pt(t,e){if(e){var r=t.firstChild;if(r&&r===t.lastChild&&3===r.nodeType)return void(r.nodeValue=e)}t.textContent=e}var mt={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},ft=["Webkit","ms","Moz","O"];function ht(t,e,r){return null==e||"boolean"==typeof e||""===e?"":r||"number"!=typeof e||0===e||mt.hasOwnProperty(t)&&mt[t]?(""+e).trim():e+"px"}function bt(t,e){for(var r in t=t.style,e)if(e.hasOwnProperty(r)){var n=0===r.indexOf("--"),o=ht(r,e[r],n);"float"===r&&(r="cssFloat"),n?t.setProperty(r,o):t[r]=o}}Object.keys(mt).forEach((function(t){ft.forEach((function(e){e=e+t.charAt(0).toUpperCase()+t.substring(1),mt[e]=mt[t]}))}));var gt=A({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function vt(t,e){if(e){if(gt[t]&&(null!=e.children||null!=e.dangerouslySetInnerHTML))throw Error(i(137,t));if(null!=e.dangerouslySetInnerHTML){if(null!=e.children)throw Error(i(60));if("object"!=typeof e.dangerouslySetInnerHTML||!("__html"in e.dangerouslySetInnerHTML))throw Error(i(61))}if(null!=e.style&&"object"!=typeof e.style)throw Error(i(62))}}function xt(t,e){if(-1===t.indexOf("-"))return"string"==typeof e.is;switch(t){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var yt=null;function wt(t){return(t=t.target||t.srcElement||window).correspondingUseElement&&(t=t.correspondingUseElement),3===t.nodeType?t.parentNode:t}var kt=null,_t=null,St=null;function Et(t){if(t=yo(t)){if("function"!=typeof kt)throw Error(i(280));var e=t.stateNode;e&&(e=ko(e),kt(t.stateNode,t.type,e))}}function Ct(t){_t?St?St.push(t):St=[t]:_t=t}function zt(){if(_t){var t=_t,e=St;if(St=_t=null,Et(t),e)for(t=0;t<e.length;t++)Et(e[t])}}function Mt(t,e){return t(e)}function Pt(){}var Ot=!1;function Tt(t,e,r){if(Ot)return t(e,r);Ot=!0;try{return Mt(t,e,r)}finally{Ot=!1,(null!==_t||null!==St)&&(Pt(),zt())}}function Lt(t,e){var r=t.stateNode;if(null===r)return null;var n=ko(r);if(null===n)return null;r=n[e];t:switch(e){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(n=!n.disabled)||(n=!("button"===(t=t.type)||"input"===t||"select"===t||"textarea"===t)),t=!n;break t;default:t=!1}if(t)return null;if(r&&"function"!=typeof r)throw Error(i(231,e,typeof r));return r}var Rt=!1;if(c)try{var Nt={};Object.defineProperty(Nt,"passive",{get:function(){Rt=!0}}),window.addEventListener("test",Nt,Nt),window.removeEventListener("test",Nt,Nt)}catch(ct){Rt=!1}function Dt(t,e,r,n,o,i,a,s,l){var d=Array.prototype.slice.call(arguments,3);try{e.apply(r,d)}catch(t){this.onError(t)}}var It=!1,At=null,jt=!1,Ft=null,Bt={onError:function(t){It=!0,At=t}};function Ut(t,e,r,n,o,i,a,s,l){It=!1,At=null,Dt.apply(Bt,arguments)}function Ht(t){var e=t,r=t;if(t.alternate)for(;e.return;)e=e.return;else{t=e;do{0!=(4098&(e=t).flags)&&(r=e.return),t=e.return}while(t)}return 3===e.tag?r:null}function Vt(t){if(13===t.tag){var e=t.memoizedState;if(null===e&&null!==(t=t.alternate)&&(e=t.memoizedState),null!==e)return e.dehydrated}return null}function $t(t){if(Ht(t)!==t)throw Error(i(188))}function Wt(t){return null!==(t=function(t){var e=t.alternate;if(!e){if(null===(e=Ht(t)))throw Error(i(188));return e!==t?null:t}for(var r=t,n=e;;){var o=r.return;if(null===o)break;var a=o.alternate;if(null===a){if(null!==(n=o.return)){r=n;continue}break}if(o.child===a.child){for(a=o.child;a;){if(a===r)return $t(o),t;if(a===n)return $t(o),e;a=a.sibling}throw Error(i(188))}if(r.return!==n.return)r=o,n=a;else{for(var s=!1,l=o.child;l;){if(l===r){s=!0,r=o,n=a;break}if(l===n){s=!0,n=o,r=a;break}l=l.sibling}if(!s){for(l=a.child;l;){if(l===r){s=!0,r=a,n=o;break}if(l===n){s=!0,n=a,r=o;break}l=l.sibling}if(!s)throw Error(i(189))}}if(r.alternate!==n)throw Error(i(190))}if(3!==r.tag)throw Error(i(188));return r.stateNode.current===r?t:e}(t))?Yt(t):null}function Yt(t){if(5===t.tag||6===t.tag)return t;for(t=t.child;null!==t;){var e=Yt(t);if(null!==e)return e;t=t.sibling}return null}var Kt=o.unstable_scheduleCallback,Qt=o.unstable_cancelCallback,Xt=o.unstable_shouldYield,qt=o.unstable_requestPaint,Gt=o.unstable_now,Zt=o.unstable_getCurrentPriorityLevel,Jt=o.unstable_ImmediatePriority,te=o.unstable_UserBlockingPriority,ee=o.unstable_NormalPriority,re=o.unstable_LowPriority,ne=o.unstable_IdlePriority,oe=null,ie=null,ae=Math.clz32?Math.clz32:function(t){return 0==(t>>>=0)?32:31-(se(t)/le|0)|0},se=Math.log,le=Math.LN2,de=64,ce=4194304;function ue(t){switch(t&-t){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return 4194240&t;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return 130023424&t;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return t}}function pe(t,e){var r=t.pendingLanes;if(0===r)return 0;var n=0,o=t.suspendedLanes,i=t.pingedLanes,a=268435455&r;if(0!==a){var s=a&~o;0!==s?n=ue(s):0!=(i&=a)&&(n=ue(i))}else 0!=(a=r&~o)?n=ue(a):0!==i&&(n=ue(i));if(0===n)return 0;if(0!==e&&e!==n&&0==(e&o)&&((o=n&-n)>=(i=e&-e)||16===o&&0!=(4194240&i)))return e;if(0!=(4&n)&&(n|=16&r),0!==(e=t.entangledLanes))for(t=t.entanglements,e&=n;0<e;)o=1<<(r=31-ae(e)),n|=t[r],e&=~o;return n}function me(t,e){switch(t){case 1:case 2:case 4:return e+250;case 8:case 16:case 32:case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e+5e3;default:return-1}}function fe(t){return 0!=(t=-1073741825&t.pendingLanes)?t:1073741824&t?1073741824:0}function he(){var t=de;return 0==(4194240&(de<<=1))&&(de=64),t}function be(t){for(var e=[],r=0;31>r;r++)e.push(t);return e}function ge(t,e,r){t.pendingLanes|=e,536870912!==e&&(t.suspendedLanes=0,t.pingedLanes=0),(t=t.eventTimes)[e=31-ae(e)]=r}function ve(t,e){var r=t.entangledLanes|=e;for(t=t.entanglements;r;){var n=31-ae(r),o=1<<n;o&e|t[n]&e&&(t[n]|=e),r&=~o}}var xe=0;function ye(t){return 1<(t&=-t)?4<t?0!=(268435455&t)?16:536870912:4:1}var we,ke,_e,Se,Ee,Ce=!1,ze=[],Me=null,Pe=null,Oe=null,Te=new Map,Le=new Map,Re=[],Ne="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function De(t,e){switch(t){case"focusin":case"focusout":Me=null;break;case"dragenter":case"dragleave":Pe=null;break;case"mouseover":case"mouseout":Oe=null;break;case"pointerover":case"pointerout":Te.delete(e.pointerId);break;case"gotpointercapture":case"lostpointercapture":Le.delete(e.pointerId)}}function Ie(t,e,r,n,o,i){return null===t||t.nativeEvent!==i?(t={blockedOn:e,domEventName:r,eventSystemFlags:n,nativeEvent:i,targetContainers:[o]},null!==e&&null!==(e=yo(e))&&ke(e),t):(t.eventSystemFlags|=n,e=t.targetContainers,null!==o&&-1===e.indexOf(o)&&e.push(o),t)}function Ae(t){var e=xo(t.target);if(null!==e){var r=Ht(e);if(null!==r)if(13===(e=r.tag)){if(null!==(e=Vt(r)))return t.blockedOn=e,void Ee(t.priority,(function(){_e(r)}))}else if(3===e&&r.stateNode.current.memoizedState.isDehydrated)return void(t.blockedOn=3===r.tag?r.stateNode.containerInfo:null)}t.blockedOn=null}function je(t){if(null!==t.blockedOn)return!1;for(var e=t.targetContainers;0<e.length;){var r=Xe(t.domEventName,t.eventSystemFlags,e[0],t.nativeEvent);if(null!==r)return null!==(e=yo(r))&&ke(e),t.blockedOn=r,!1;var n=new(r=t.nativeEvent).constructor(r.type,r);yt=n,r.target.dispatchEvent(n),yt=null,e.shift()}return!0}function Fe(t,e,r){je(t)&&r.delete(e)}function Be(){Ce=!1,null!==Me&&je(Me)&&(Me=null),null!==Pe&&je(Pe)&&(Pe=null),null!==Oe&&je(Oe)&&(Oe=null),Te.forEach(Fe),Le.forEach(Fe)}function Ue(t,e){t.blockedOn===e&&(t.blockedOn=null,Ce||(Ce=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,Be)))}function He(t){function e(e){return Ue(e,t)}if(0<ze.length){Ue(ze[0],t);for(var r=1;r<ze.length;r++){var n=ze[r];n.blockedOn===t&&(n.blockedOn=null)}}for(null!==Me&&Ue(Me,t),null!==Pe&&Ue(Pe,t),null!==Oe&&Ue(Oe,t),Te.forEach(e),Le.forEach(e),r=0;r<Re.length;r++)(n=Re[r]).blockedOn===t&&(n.blockedOn=null);for(;0<Re.length&&null===(r=Re[0]).blockedOn;)Ae(r),null===r.blockedOn&&Re.shift()}var Ve=y.ReactCurrentBatchConfig,$e=!0;function We(t,e,r,n){var o=xe,i=Ve.transition;Ve.transition=null;try{xe=1,Ke(t,e,r,n)}finally{xe=o,Ve.transition=i}}function Ye(t,e,r,n){var o=xe,i=Ve.transition;Ve.transition=null;try{xe=4,Ke(t,e,r,n)}finally{xe=o,Ve.transition=i}}function Ke(t,e,r,n){if($e){var o=Xe(t,e,r,n);if(null===o)$n(t,e,n,Qe,r),De(t,n);else if(function(t,e,r,n,o){switch(e){case"focusin":return Me=Ie(Me,t,e,r,n,o),!0;case"dragenter":return Pe=Ie(Pe,t,e,r,n,o),!0;case"mouseover":return Oe=Ie(Oe,t,e,r,n,o),!0;case"pointerover":var i=o.pointerId;return Te.set(i,Ie(Te.get(i)||null,t,e,r,n,o)),!0;case"gotpointercapture":return i=o.pointerId,Le.set(i,Ie(Le.get(i)||null,t,e,r,n,o)),!0}return!1}(o,t,e,r,n))n.stopPropagation();else if(De(t,n),4&e&&-1<Ne.indexOf(t)){for(;null!==o;){var i=yo(o);if(null!==i&&we(i),null===(i=Xe(t,e,r,n))&&$n(t,e,n,Qe,r),i===o)break;o=i}null!==o&&n.stopPropagation()}else $n(t,e,n,null,r)}}var Qe=null;function Xe(t,e,r,n){if(Qe=null,null!==(t=xo(t=wt(n))))if(null===(e=Ht(t)))t=null;else if(13===(r=e.tag)){if(null!==(t=Vt(e)))return t;t=null}else if(3===r){if(e.stateNode.current.memoizedState.isDehydrated)return 3===e.tag?e.stateNode.containerInfo:null;t=null}else e!==t&&(t=null);return Qe=t,null}function qe(t){switch(t){case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 1;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"toggle":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 4;case"message":switch(Zt()){case Jt:return 1;case te:return 4;case ee:case re:return 16;case ne:return 536870912;default:return 16}default:return 16}}var Ge=null,Ze=null,Je=null;function tr(){if(Je)return Je;var t,e,r=Ze,n=r.length,o="value"in Ge?Ge.value:Ge.textContent,i=o.length;for(t=0;t<n&&r[t]===o[t];t++);var a=n-t;for(e=1;e<=a&&r[n-e]===o[i-e];e++);return Je=o.slice(t,1<e?1-e:void 0)}function er(t){var e=t.keyCode;return"charCode"in t?0===(t=t.charCode)&&13===e&&(t=13):t=e,10===t&&(t=13),32<=t||13===t?t:0}function rr(){return!0}function nr(){return!1}function or(t){function e(e,r,n,o,i){for(var a in this._reactName=e,this._targetInst=n,this.type=r,this.nativeEvent=o,this.target=i,this.currentTarget=null,t)t.hasOwnProperty(a)&&(e=t[a],this[a]=e?e(o):o[a]);return this.isDefaultPrevented=(null!=o.defaultPrevented?o.defaultPrevented:!1===o.returnValue)?rr:nr,this.isPropagationStopped=nr,this}return A(e.prototype,{preventDefault:function(){this.defaultPrevented=!0;var t=this.nativeEvent;t&&(t.preventDefault?t.preventDefault():"unknown"!=typeof t.returnValue&&(t.returnValue=!1),this.isDefaultPrevented=rr)},stopPropagation:function(){var t=this.nativeEvent;t&&(t.stopPropagation?t.stopPropagation():"unknown"!=typeof t.cancelBubble&&(t.cancelBubble=!0),this.isPropagationStopped=rr)},persist:function(){},isPersistent:rr}),e}var ir,ar,sr,lr={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(t){return t.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},dr=or(lr),cr=A({},lr,{view:0,detail:0}),ur=or(cr),pr=A({},cr,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Sr,button:0,buttons:0,relatedTarget:function(t){return void 0===t.relatedTarget?t.fromElement===t.srcElement?t.toElement:t.fromElement:t.relatedTarget},movementX:function(t){return"movementX"in t?t.movementX:(t!==sr&&(sr&&"mousemove"===t.type?(ir=t.screenX-sr.screenX,ar=t.screenY-sr.screenY):ar=ir=0,sr=t),ir)},movementY:function(t){return"movementY"in t?t.movementY:ar}}),mr=or(pr),fr=or(A({},pr,{dataTransfer:0})),hr=or(A({},cr,{relatedTarget:0})),br=or(A({},lr,{animationName:0,elapsedTime:0,pseudoElement:0})),gr=A({},lr,{clipboardData:function(t){return"clipboardData"in t?t.clipboardData:window.clipboardData}}),vr=or(gr),xr=or(A({},lr,{data:0})),yr={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},wr={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},kr={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function _r(t){var e=this.nativeEvent;return e.getModifierState?e.getModifierState(t):!!(t=kr[t])&&!!e[t]}function Sr(){return _r}var Er=A({},cr,{key:function(t){if(t.key){var e=yr[t.key]||t.key;if("Unidentified"!==e)return e}return"keypress"===t.type?13===(t=er(t))?"Enter":String.fromCharCode(t):"keydown"===t.type||"keyup"===t.type?wr[t.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Sr,charCode:function(t){return"keypress"===t.type?er(t):0},keyCode:function(t){return"keydown"===t.type||"keyup"===t.type?t.keyCode:0},which:function(t){return"keypress"===t.type?er(t):"keydown"===t.type||"keyup"===t.type?t.keyCode:0}}),Cr=or(Er),zr=or(A({},pr,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),Mr=or(A({},cr,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Sr})),Pr=or(A({},lr,{propertyName:0,elapsedTime:0,pseudoElement:0})),Or=A({},pr,{deltaX:function(t){return"deltaX"in t?t.deltaX:"wheelDeltaX"in t?-t.wheelDeltaX:0},deltaY:function(t){return"deltaY"in t?t.deltaY:"wheelDeltaY"in t?-t.wheelDeltaY:"wheelDelta"in t?-t.wheelDelta:0},deltaZ:0,deltaMode:0}),Tr=or(Or),Lr=[9,13,27,32],Rr=c&&"CompositionEvent"in window,Nr=null;c&&"documentMode"in document&&(Nr=document.documentMode);var Dr=c&&"TextEvent"in window&&!Nr,Ir=c&&(!Rr||Nr&&8<Nr&&11>=Nr),Ar=String.fromCharCode(32),jr=!1;function Fr(t,e){switch(t){case"keyup":return-1!==Lr.indexOf(e.keyCode);case"keydown":return 229!==e.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Br(t){return"object"==typeof(t=t.detail)&&"data"in t?t.data:null}var Ur=!1,Hr={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Vr(t){var e=t&&t.nodeName&&t.nodeName.toLowerCase();return"input"===e?!!Hr[t.type]:"textarea"===e}function $r(t,e,r,n){Ct(n),0<(e=Yn(e,"onChange")).length&&(r=new dr("onChange","change",null,r,n),t.push({event:r,listeners:e}))}var Wr=null,Yr=null;function Kr(t){jn(t,0)}function Qr(t){if(K(wo(t)))return t}function Xr(t,e){if("change"===t)return e}var qr=!1;if(c){var Gr;if(c){var Zr="oninput"in document;if(!Zr){var Jr=document.createElement("div");Jr.setAttribute("oninput","return;"),Zr="function"==typeof Jr.oninput}Gr=Zr}else Gr=!1;qr=Gr&&(!document.documentMode||9<document.documentMode)}function tn(){Wr&&(Wr.detachEvent("onpropertychange",en),Yr=Wr=null)}function en(t){if("value"===t.propertyName&&Qr(Yr)){var e=[];$r(e,Yr,t,wt(t)),Tt(Kr,e)}}function rn(t,e,r){"focusin"===t?(tn(),Yr=r,(Wr=e).attachEvent("onpropertychange",en)):"focusout"===t&&tn()}function nn(t){if("selectionchange"===t||"keyup"===t||"keydown"===t)return Qr(Yr)}function on(t,e){if("click"===t)return Qr(e)}function an(t,e){if("input"===t||"change"===t)return Qr(e)}var sn="function"==typeof Object.is?Object.is:function(t,e){return t===e&&(0!==t||1/t==1/e)||t!=t&&e!=e};function ln(t,e){if(sn(t,e))return!0;if("object"!=typeof t||null===t||"object"!=typeof e||null===e)return!1;var r=Object.keys(t),n=Object.keys(e);if(r.length!==n.length)return!1;for(n=0;n<r.length;n++){var o=r[n];if(!u.call(e,o)||!sn(t[o],e[o]))return!1}return!0}function dn(t){for(;t&&t.firstChild;)t=t.firstChild;return t}function cn(t,e){var r,n=dn(t);for(t=0;n;){if(3===n.nodeType){if(r=t+n.textContent.length,t<=e&&r>=e)return{node:n,offset:e-t};t=r}t:{for(;n;){if(n.nextSibling){n=n.nextSibling;break t}n=n.parentNode}n=void 0}n=dn(n)}}function un(t,e){return!(!t||!e)&&(t===e||(!t||3!==t.nodeType)&&(e&&3===e.nodeType?un(t,e.parentNode):"contains"in t?t.contains(e):!!t.compareDocumentPosition&&!!(16&t.compareDocumentPosition(e))))}function pn(){for(var t=window,e=Q();e instanceof t.HTMLIFrameElement;){try{var r="string"==typeof e.contentWindow.location.href}catch(t){r=!1}if(!r)break;e=Q((t=e.contentWindow).document)}return e}function mn(t){var e=t&&t.nodeName&&t.nodeName.toLowerCase();return e&&("input"===e&&("text"===t.type||"search"===t.type||"tel"===t.type||"url"===t.type||"password"===t.type)||"textarea"===e||"true"===t.contentEditable)}function fn(t){var e=pn(),r=t.focusedElem,n=t.selectionRange;if(e!==r&&r&&r.ownerDocument&&un(r.ownerDocument.documentElement,r)){if(null!==n&&mn(r))if(e=n.start,void 0===(t=n.end)&&(t=e),"selectionStart"in r)r.selectionStart=e,r.selectionEnd=Math.min(t,r.value.length);else if((t=(e=r.ownerDocument||document)&&e.defaultView||window).getSelection){t=t.getSelection();var o=r.textContent.length,i=Math.min(n.start,o);n=void 0===n.end?i:Math.min(n.end,o),!t.extend&&i>n&&(o=n,n=i,i=o),o=cn(r,i);var a=cn(r,n);o&&a&&(1!==t.rangeCount||t.anchorNode!==o.node||t.anchorOffset!==o.offset||t.focusNode!==a.node||t.focusOffset!==a.offset)&&((e=e.createRange()).setStart(o.node,o.offset),t.removeAllRanges(),i>n?(t.addRange(e),t.extend(a.node,a.offset)):(e.setEnd(a.node,a.offset),t.addRange(e)))}for(e=[],t=r;t=t.parentNode;)1===t.nodeType&&e.push({element:t,left:t.scrollLeft,top:t.scrollTop});for("function"==typeof r.focus&&r.focus(),r=0;r<e.length;r++)(t=e[r]).element.scrollLeft=t.left,t.element.scrollTop=t.top}}var hn=c&&"documentMode"in document&&11>=document.documentMode,bn=null,gn=null,vn=null,xn=!1;function yn(t,e,r){var n=r.window===r?r.document:9===r.nodeType?r:r.ownerDocument;xn||null==bn||bn!==Q(n)||(n="selectionStart"in(n=bn)&&mn(n)?{start:n.selectionStart,end:n.selectionEnd}:{anchorNode:(n=(n.ownerDocument&&n.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:n.anchorOffset,focusNode:n.focusNode,focusOffset:n.focusOffset},vn&&ln(vn,n)||(vn=n,0<(n=Yn(gn,"onSelect")).length&&(e=new dr("onSelect","select",null,e,r),t.push({event:e,listeners:n}),e.target=bn)))}function wn(t,e){var r={};return r[t.toLowerCase()]=e.toLowerCase(),r["Webkit"+t]="webkit"+e,r["Moz"+t]="moz"+e,r}var kn={animationend:wn("Animation","AnimationEnd"),animationiteration:wn("Animation","AnimationIteration"),animationstart:wn("Animation","AnimationStart"),transitionend:wn("Transition","TransitionEnd")},_n={},Sn={};function En(t){if(_n[t])return _n[t];if(!kn[t])return t;var e,r=kn[t];for(e in r)if(r.hasOwnProperty(e)&&e in Sn)return _n[t]=r[e];return t}c&&(Sn=document.createElement("div").style,"AnimationEvent"in window||(delete kn.animationend.animation,delete kn.animationiteration.animation,delete kn.animationstart.animation),"TransitionEvent"in window||delete kn.transitionend.transition);var Cn=En("animationend"),zn=En("animationiteration"),Mn=En("animationstart"),Pn=En("transitionend"),On=new Map,Tn="abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");function Ln(t,e){On.set(t,e),l(e,[t])}for(var Rn=0;Rn<Tn.length;Rn++){var Nn=Tn[Rn];Ln(Nn.toLowerCase(),"on"+(Nn[0].toUpperCase()+Nn.slice(1)))}Ln(Cn,"onAnimationEnd"),Ln(zn,"onAnimationIteration"),Ln(Mn,"onAnimationStart"),Ln("dblclick","onDoubleClick"),Ln("focusin","onFocus"),Ln("focusout","onBlur"),Ln(Pn,"onTransitionEnd"),d("onMouseEnter",["mouseout","mouseover"]),d("onMouseLeave",["mouseout","mouseover"]),d("onPointerEnter",["pointerout","pointerover"]),d("onPointerLeave",["pointerout","pointerover"]),l("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),l("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),l("onBeforeInput",["compositionend","keypress","textInput","paste"]),l("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),l("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),l("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Dn="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),In=new Set("cancel close invalid load scroll toggle".split(" ").concat(Dn));function An(t,e,r){var n=t.type||"unknown-event";t.currentTarget=r,function(t,e,r,n,o,a,s,l,d){if(Ut.apply(this,arguments),It){if(!It)throw Error(i(198));var c=At;It=!1,At=null,jt||(jt=!0,Ft=c)}}(n,e,void 0,t),t.currentTarget=null}function jn(t,e){e=0!=(4&e);for(var r=0;r<t.length;r++){var n=t[r],o=n.event;n=n.listeners;t:{var i=void 0;if(e)for(var a=n.length-1;0<=a;a--){var s=n[a],l=s.instance,d=s.currentTarget;if(s=s.listener,l!==i&&o.isPropagationStopped())break t;An(o,s,d),i=l}else for(a=0;a<n.length;a++){if(l=(s=n[a]).instance,d=s.currentTarget,s=s.listener,l!==i&&o.isPropagationStopped())break t;An(o,s,d),i=l}}}if(jt)throw t=Ft,jt=!1,Ft=null,t}function Fn(t,e){var r=e[bo];void 0===r&&(r=e[bo]=new Set);var n=t+"__bubble";r.has(n)||(Vn(e,t,2,!1),r.add(n))}function Bn(t,e,r){var n=0;e&&(n|=4),Vn(r,t,n,e)}var Un="_reactListening"+Math.random().toString(36).slice(2);function Hn(t){if(!t[Un]){t[Un]=!0,a.forEach((function(e){"selectionchange"!==e&&(In.has(e)||Bn(e,!1,t),Bn(e,!0,t))}));var e=9===t.nodeType?t:t.ownerDocument;null===e||e[Un]||(e[Un]=!0,Bn("selectionchange",!1,e))}}function Vn(t,e,r,n){switch(qe(e)){case 1:var o=We;break;case 4:o=Ye;break;default:o=Ke}r=o.bind(null,e,r,t),o=void 0,!Rt||"touchstart"!==e&&"touchmove"!==e&&"wheel"!==e||(o=!0),n?void 0!==o?t.addEventListener(e,r,{capture:!0,passive:o}):t.addEventListener(e,r,!0):void 0!==o?t.addEventListener(e,r,{passive:o}):t.addEventListener(e,r,!1)}function $n(t,e,r,n,o){var i=n;if(0==(1&e)&&0==(2&e)&&null!==n)t:for(;;){if(null===n)return;var a=n.tag;if(3===a||4===a){var s=n.stateNode.containerInfo;if(s===o||8===s.nodeType&&s.parentNode===o)break;if(4===a)for(a=n.return;null!==a;){var l=a.tag;if((3===l||4===l)&&((l=a.stateNode.containerInfo)===o||8===l.nodeType&&l.parentNode===o))return;a=a.return}for(;null!==s;){if(null===(a=xo(s)))return;if(5===(l=a.tag)||6===l){n=i=a;continue t}s=s.parentNode}}n=n.return}Tt((function(){var n=i,o=wt(r),a=[];t:{var s=On.get(t);if(void 0!==s){var l=dr,d=t;switch(t){case"keypress":if(0===er(r))break t;case"keydown":case"keyup":l=Cr;break;case"focusin":d="focus",l=hr;break;case"focusout":d="blur",l=hr;break;case"beforeblur":case"afterblur":l=hr;break;case"click":if(2===r.button)break t;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":l=mr;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":l=fr;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":l=Mr;break;case Cn:case zn:case Mn:l=br;break;case Pn:l=Pr;break;case"scroll":l=ur;break;case"wheel":l=Tr;break;case"copy":case"cut":case"paste":l=vr;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":l=zr}var c=0!=(4&e),u=!c&&"scroll"===t,p=c?null!==s?s+"Capture":null:s;c=[];for(var m,f=n;null!==f;){var h=(m=f).stateNode;if(5===m.tag&&null!==h&&(m=h,null!==p&&null!=(h=Lt(f,p))&&c.push(Wn(f,h,m))),u)break;f=f.return}0<c.length&&(s=new l(s,d,null,r,o),a.push({event:s,listeners:c}))}}if(0==(7&e)){if(l="mouseout"===t||"pointerout"===t,(!(s="mouseover"===t||"pointerover"===t)||r===yt||!(d=r.relatedTarget||r.fromElement)||!xo(d)&&!d[ho])&&(l||s)&&(s=o.window===o?o:(s=o.ownerDocument)?s.defaultView||s.parentWindow:window,l?(l=n,null!==(d=(d=r.relatedTarget||r.toElement)?xo(d):null)&&(d!==(u=Ht(d))||5!==d.tag&&6!==d.tag)&&(d=null)):(l=null,d=n),l!==d)){if(c=mr,h="onMouseLeave",p="onMouseEnter",f="mouse","pointerout"!==t&&"pointerover"!==t||(c=zr,h="onPointerLeave",p="onPointerEnter",f="pointer"),u=null==l?s:wo(l),m=null==d?s:wo(d),(s=new c(h,f+"leave",l,r,o)).target=u,s.relatedTarget=m,h=null,xo(o)===n&&((c=new c(p,f+"enter",d,r,o)).target=m,c.relatedTarget=u,h=c),u=h,l&&d)t:{for(p=d,f=0,m=c=l;m;m=Kn(m))f++;for(m=0,h=p;h;h=Kn(h))m++;for(;0<f-m;)c=Kn(c),f--;for(;0<m-f;)p=Kn(p),m--;for(;f--;){if(c===p||null!==p&&c===p.alternate)break t;c=Kn(c),p=Kn(p)}c=null}else c=null;null!==l&&Qn(a,s,l,c,!1),null!==d&&null!==u&&Qn(a,u,d,c,!0)}if("select"===(l=(s=n?wo(n):window).nodeName&&s.nodeName.toLowerCase())||"input"===l&&"file"===s.type)var b=Xr;else if(Vr(s))if(qr)b=an;else{b=nn;var g=rn}else(l=s.nodeName)&&"input"===l.toLowerCase()&&("checkbox"===s.type||"radio"===s.type)&&(b=on);switch(b&&(b=b(t,n))?$r(a,b,r,o):(g&&g(t,s,n),"focusout"===t&&(g=s._wrapperState)&&g.controlled&&"number"===s.type&&tt(s,"number",s.value)),g=n?wo(n):window,t){case"focusin":(Vr(g)||"true"===g.contentEditable)&&(bn=g,gn=n,vn=null);break;case"focusout":vn=gn=bn=null;break;case"mousedown":xn=!0;break;case"contextmenu":case"mouseup":case"dragend":xn=!1,yn(a,r,o);break;case"selectionchange":if(hn)break;case"keydown":case"keyup":yn(a,r,o)}var v;if(Rr)t:{switch(t){case"compositionstart":var x="onCompositionStart";break t;case"compositionend":x="onCompositionEnd";break t;case"compositionupdate":x="onCompositionUpdate";break t}x=void 0}else Ur?Fr(t,r)&&(x="onCompositionEnd"):"keydown"===t&&229===r.keyCode&&(x="onCompositionStart");x&&(Ir&&"ko"!==r.locale&&(Ur||"onCompositionStart"!==x?"onCompositionEnd"===x&&Ur&&(v=tr()):(Ze="value"in(Ge=o)?Ge.value:Ge.textContent,Ur=!0)),0<(g=Yn(n,x)).length&&(x=new xr(x,t,null,r,o),a.push({event:x,listeners:g}),(v||null!==(v=Br(r)))&&(x.data=v))),(v=Dr?function(t,e){switch(t){case"compositionend":return Br(e);case"keypress":return 32!==e.which?null:(jr=!0,Ar);case"textInput":return(t=e.data)===Ar&&jr?null:t;default:return null}}(t,r):function(t,e){if(Ur)return"compositionend"===t||!Rr&&Fr(t,e)?(t=tr(),Je=Ze=Ge=null,Ur=!1,t):null;switch(t){case"paste":default:return null;case"keypress":if(!(e.ctrlKey||e.altKey||e.metaKey)||e.ctrlKey&&e.altKey){if(e.char&&1<e.char.length)return e.char;if(e.which)return String.fromCharCode(e.which)}return null;case"compositionend":return Ir&&"ko"!==e.locale?null:e.data}}(t,r))&&0<(n=Yn(n,"onBeforeInput")).length&&(o=new xr("onBeforeInput","beforeinput",null,r,o),a.push({event:o,listeners:n}),o.data=v)}jn(a,e)}))}function Wn(t,e,r){return{instance:t,listener:e,currentTarget:r}}function Yn(t,e){for(var r=e+"Capture",n=[];null!==t;){var o=t,i=o.stateNode;5===o.tag&&null!==i&&(o=i,null!=(i=Lt(t,r))&&n.unshift(Wn(t,i,o)),null!=(i=Lt(t,e))&&n.push(Wn(t,i,o))),t=t.return}return n}function Kn(t){if(null===t)return null;do{t=t.return}while(t&&5!==t.tag);return t||null}function Qn(t,e,r,n,o){for(var i=e._reactName,a=[];null!==r&&r!==n;){var s=r,l=s.alternate,d=s.stateNode;if(null!==l&&l===n)break;5===s.tag&&null!==d&&(s=d,o?null!=(l=Lt(r,i))&&a.unshift(Wn(r,l,s)):o||null!=(l=Lt(r,i))&&a.push(Wn(r,l,s))),r=r.return}0!==a.length&&t.push({event:e,listeners:a})}var Xn=/\r\n?/g,qn=/\u0000|\uFFFD/g;function Gn(t){return("string"==typeof t?t:""+t).replace(Xn,"\n").replace(qn,"")}function Zn(t,e,r){if(e=Gn(e),Gn(t)!==e&&r)throw Error(i(425))}function Jn(){}var to=null,eo=null;function ro(t,e){return"textarea"===t||"noscript"===t||"string"==typeof e.children||"number"==typeof e.children||"object"==typeof e.dangerouslySetInnerHTML&&null!==e.dangerouslySetInnerHTML&&null!=e.dangerouslySetInnerHTML.__html}var no="function"==typeof setTimeout?setTimeout:void 0,oo="function"==typeof clearTimeout?clearTimeout:void 0,io="function"==typeof Promise?Promise:void 0,ao="function"==typeof queueMicrotask?queueMicrotask:void 0!==io?function(t){return io.resolve(null).then(t).catch(so)}:no;function so(t){setTimeout((function(){throw t}))}function lo(t,e){var r=e,n=0;do{var o=r.nextSibling;if(t.removeChild(r),o&&8===o.nodeType)if("/$"===(r=o.data)){if(0===n)return t.removeChild(o),void He(e);n--}else"$"!==r&&"$?"!==r&&"$!"!==r||n++;r=o}while(r);He(e)}function co(t){for(;null!=t;t=t.nextSibling){var e=t.nodeType;if(1===e||3===e)break;if(8===e){if("$"===(e=t.data)||"$!"===e||"$?"===e)break;if("/$"===e)return null}}return t}function uo(t){t=t.previousSibling;for(var e=0;t;){if(8===t.nodeType){var r=t.data;if("$"===r||"$!"===r||"$?"===r){if(0===e)return t;e--}else"/$"===r&&e++}t=t.previousSibling}return null}var po=Math.random().toString(36).slice(2),mo="__reactFiber$"+po,fo="__reactProps$"+po,ho="__reactContainer$"+po,bo="__reactEvents$"+po,go="__reactListeners$"+po,vo="__reactHandles$"+po;function xo(t){var e=t[mo];if(e)return e;for(var r=t.parentNode;r;){if(e=r[ho]||r[mo]){if(r=e.alternate,null!==e.child||null!==r&&null!==r.child)for(t=uo(t);null!==t;){if(r=t[mo])return r;t=uo(t)}return e}r=(t=r).parentNode}return null}function yo(t){return!(t=t[mo]||t[ho])||5!==t.tag&&6!==t.tag&&13!==t.tag&&3!==t.tag?null:t}function wo(t){if(5===t.tag||6===t.tag)return t.stateNode;throw Error(i(33))}function ko(t){return t[fo]||null}var _o=[],So=-1;function Eo(t){return{current:t}}function Co(t){0>So||(t.current=_o[So],_o[So]=null,So--)}function zo(t,e){So++,_o[So]=t.current,t.current=e}var Mo={},Po=Eo(Mo),Oo=Eo(!1),To=Mo;function Lo(t,e){var r=t.type.contextTypes;if(!r)return Mo;var n=t.stateNode;if(n&&n.__reactInternalMemoizedUnmaskedChildContext===e)return n.__reactInternalMemoizedMaskedChildContext;var o,i={};for(o in r)i[o]=e[o];return n&&((t=t.stateNode).__reactInternalMemoizedUnmaskedChildContext=e,t.__reactInternalMemoizedMaskedChildContext=i),i}function Ro(t){return null!=t.childContextTypes}function No(){Co(Oo),Co(Po)}function Do(t,e,r){if(Po.current!==Mo)throw Error(i(168));zo(Po,e),zo(Oo,r)}function Io(t,e,r){var n=t.stateNode;if(e=e.childContextTypes,"function"!=typeof n.getChildContext)return r;for(var o in n=n.getChildContext())if(!(o in e))throw Error(i(108,V(t)||"Unknown",o));return A({},r,n)}function Ao(t){return t=(t=t.stateNode)&&t.__reactInternalMemoizedMergedChildContext||Mo,To=Po.current,zo(Po,t),zo(Oo,Oo.current),!0}function jo(t,e,r){var n=t.stateNode;if(!n)throw Error(i(169));r?(t=Io(t,e,To),n.__reactInternalMemoizedMergedChildContext=t,Co(Oo),Co(Po),zo(Po,t)):Co(Oo),zo(Oo,r)}var Fo=null,Bo=!1,Uo=!1;function Ho(t){null===Fo?Fo=[t]:Fo.push(t)}function Vo(){if(!Uo&&null!==Fo){Uo=!0;var t=0,e=xe;try{var r=Fo;for(xe=1;t<r.length;t++){var n=r[t];do{n=n(!0)}while(null!==n)}Fo=null,Bo=!1}catch(e){throw null!==Fo&&(Fo=Fo.slice(t+1)),Kt(Jt,Vo),e}finally{xe=e,Uo=!1}}return null}var $o=[],Wo=0,Yo=null,Ko=0,Qo=[],Xo=0,qo=null,Go=1,Zo="";function Jo(t,e){$o[Wo++]=Ko,$o[Wo++]=Yo,Yo=t,Ko=e}function ti(t,e,r){Qo[Xo++]=Go,Qo[Xo++]=Zo,Qo[Xo++]=qo,qo=t;var n=Go;t=Zo;var o=32-ae(n)-1;n&=~(1<<o),r+=1;var i=32-ae(e)+o;if(30<i){var a=o-o%5;i=(n&(1<<a)-1).toString(32),n>>=a,o-=a,Go=1<<32-ae(e)+o|r<<o|n,Zo=i+t}else Go=1<<i|r<<o|n,Zo=t}function ei(t){null!==t.return&&(Jo(t,1),ti(t,1,0))}function ri(t){for(;t===Yo;)Yo=$o[--Wo],$o[Wo]=null,Ko=$o[--Wo],$o[Wo]=null;for(;t===qo;)qo=Qo[--Xo],Qo[Xo]=null,Zo=Qo[--Xo],Qo[Xo]=null,Go=Qo[--Xo],Qo[Xo]=null}var ni=null,oi=null,ii=!1,ai=null;function si(t,e){var r=Td(5,null,null,0);r.elementType="DELETED",r.stateNode=e,r.return=t,null===(e=t.deletions)?(t.deletions=[r],t.flags|=16):e.push(r)}function li(t,e){switch(t.tag){case 5:var r=t.type;return null!==(e=1!==e.nodeType||r.toLowerCase()!==e.nodeName.toLowerCase()?null:e)&&(t.stateNode=e,ni=t,oi=co(e.firstChild),!0);case 6:return null!==(e=""===t.pendingProps||3!==e.nodeType?null:e)&&(t.stateNode=e,ni=t,oi=null,!0);case 13:return null!==(e=8!==e.nodeType?null:e)&&(r=null!==qo?{id:Go,overflow:Zo}:null,t.memoizedState={dehydrated:e,treeContext:r,retryLane:1073741824},(r=Td(18,null,null,0)).stateNode=e,r.return=t,t.child=r,ni=t,oi=null,!0);default:return!1}}function di(t){return 0!=(1&t.mode)&&0==(128&t.flags)}function ci(t){if(ii){var e=oi;if(e){var r=e;if(!li(t,e)){if(di(t))throw Error(i(418));e=co(r.nextSibling);var n=ni;e&&li(t,e)?si(n,r):(t.flags=-4097&t.flags|2,ii=!1,ni=t)}}else{if(di(t))throw Error(i(418));t.flags=-4097&t.flags|2,ii=!1,ni=t}}}function ui(t){for(t=t.return;null!==t&&5!==t.tag&&3!==t.tag&&13!==t.tag;)t=t.return;ni=t}function pi(t){if(t!==ni)return!1;if(!ii)return ui(t),ii=!0,!1;var e;if((e=3!==t.tag)&&!(e=5!==t.tag)&&(e="head"!==(e=t.type)&&"body"!==e&&!ro(t.type,t.memoizedProps)),e&&(e=oi)){if(di(t))throw mi(),Error(i(418));for(;e;)si(t,e),e=co(e.nextSibling)}if(ui(t),13===t.tag){if(!(t=null!==(t=t.memoizedState)?t.dehydrated:null))throw Error(i(317));t:{for(t=t.nextSibling,e=0;t;){if(8===t.nodeType){var r=t.data;if("/$"===r){if(0===e){oi=co(t.nextSibling);break t}e--}else"$"!==r&&"$!"!==r&&"$?"!==r||e++}t=t.nextSibling}oi=null}}else oi=ni?co(t.stateNode.nextSibling):null;return!0}function mi(){for(var t=oi;t;)t=co(t.nextSibling)}function fi(){oi=ni=null,ii=!1}function hi(t){null===ai?ai=[t]:ai.push(t)}var bi=y.ReactCurrentBatchConfig;function gi(t,e){if(t&&t.defaultProps){for(var r in e=A({},e),t=t.defaultProps)void 0===e[r]&&(e[r]=t[r]);return e}return e}var vi=Eo(null),xi=null,yi=null,wi=null;function ki(){wi=yi=xi=null}function _i(t){var e=vi.current;Co(vi),t._currentValue=e}function Si(t,e,r){for(;null!==t;){var n=t.alternate;if((t.childLanes&e)!==e?(t.childLanes|=e,null!==n&&(n.childLanes|=e)):null!==n&&(n.childLanes&e)!==e&&(n.childLanes|=e),t===r)break;t=t.return}}function Ei(t,e){xi=t,wi=yi=null,null!==(t=t.dependencies)&&null!==t.firstContext&&(0!=(t.lanes&e)&&(ys=!0),t.firstContext=null)}function Ci(t){var e=t._currentValue;if(wi!==t)if(t={context:t,memoizedValue:e,next:null},null===yi){if(null===xi)throw Error(i(308));yi=t,xi.dependencies={lanes:0,firstContext:t}}else yi=yi.next=t;return e}var zi=null;function Mi(t){null===zi?zi=[t]:zi.push(t)}function Pi(t,e,r,n){var o=e.interleaved;return null===o?(r.next=r,Mi(e)):(r.next=o.next,o.next=r),e.interleaved=r,Oi(t,n)}function Oi(t,e){t.lanes|=e;var r=t.alternate;for(null!==r&&(r.lanes|=e),r=t,t=t.return;null!==t;)t.childLanes|=e,null!==(r=t.alternate)&&(r.childLanes|=e),r=t,t=t.return;return 3===r.tag?r.stateNode:null}var Ti=!1;function Li(t){t.updateQueue={baseState:t.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function Ri(t,e){t=t.updateQueue,e.updateQueue===t&&(e.updateQueue={baseState:t.baseState,firstBaseUpdate:t.firstBaseUpdate,lastBaseUpdate:t.lastBaseUpdate,shared:t.shared,effects:t.effects})}function Ni(t,e){return{eventTime:t,lane:e,tag:0,payload:null,callback:null,next:null}}function Di(t,e,r){var n=t.updateQueue;if(null===n)return null;if(n=n.shared,0!=(2&Ml)){var o=n.pending;return null===o?e.next=e:(e.next=o.next,o.next=e),n.pending=e,Oi(t,r)}return null===(o=n.interleaved)?(e.next=e,Mi(n)):(e.next=o.next,o.next=e),n.interleaved=e,Oi(t,r)}function Ii(t,e,r){if(null!==(e=e.updateQueue)&&(e=e.shared,0!=(4194240&r))){var n=e.lanes;r|=n&=t.pendingLanes,e.lanes=r,ve(t,r)}}function Ai(t,e){var r=t.updateQueue,n=t.alternate;if(null!==n&&r===(n=n.updateQueue)){var o=null,i=null;if(null!==(r=r.firstBaseUpdate)){do{var a={eventTime:r.eventTime,lane:r.lane,tag:r.tag,payload:r.payload,callback:r.callback,next:null};null===i?o=i=a:i=i.next=a,r=r.next}while(null!==r);null===i?o=i=e:i=i.next=e}else o=i=e;return r={baseState:n.baseState,firstBaseUpdate:o,lastBaseUpdate:i,shared:n.shared,effects:n.effects},void(t.updateQueue=r)}null===(t=r.lastBaseUpdate)?r.firstBaseUpdate=e:t.next=e,r.lastBaseUpdate=e}function ji(t,e,r,n){var o=t.updateQueue;Ti=!1;var i=o.firstBaseUpdate,a=o.lastBaseUpdate,s=o.shared.pending;if(null!==s){o.shared.pending=null;var l=s,d=l.next;l.next=null,null===a?i=d:a.next=d,a=l;var c=t.alternate;null!==c&&(s=(c=c.updateQueue).lastBaseUpdate)!==a&&(null===s?c.firstBaseUpdate=d:s.next=d,c.lastBaseUpdate=l)}if(null!==i){var u=o.baseState;for(a=0,c=d=l=null,s=i;;){var p=s.lane,m=s.eventTime;if((n&p)===p){null!==c&&(c=c.next={eventTime:m,lane:0,tag:s.tag,payload:s.payload,callback:s.callback,next:null});t:{var f=t,h=s;switch(p=e,m=r,h.tag){case 1:if("function"==typeof(f=h.payload)){u=f.call(m,u,p);break t}u=f;break t;case 3:f.flags=-65537&f.flags|128;case 0:if(null==(p="function"==typeof(f=h.payload)?f.call(m,u,p):f))break t;u=A({},u,p);break t;case 2:Ti=!0}}null!==s.callback&&0!==s.lane&&(t.flags|=64,null===(p=o.effects)?o.effects=[s]:p.push(s))}else m={eventTime:m,lane:p,tag:s.tag,payload:s.payload,callback:s.callback,next:null},null===c?(d=c=m,l=u):c=c.next=m,a|=p;if(null===(s=s.next)){if(null===(s=o.shared.pending))break;s=(p=s).next,p.next=null,o.lastBaseUpdate=p,o.shared.pending=null}}if(null===c&&(l=u),o.baseState=l,o.firstBaseUpdate=d,o.lastBaseUpdate=c,null!==(e=o.shared.interleaved)){o=e;do{a|=o.lane,o=o.next}while(o!==e)}else null===i&&(o.shared.lanes=0);Il|=a,t.lanes=a,t.memoizedState=u}}function Fi(t,e,r){if(t=e.effects,e.effects=null,null!==t)for(e=0;e<t.length;e++){var n=t[e],o=n.callback;if(null!==o){if(n.callback=null,n=r,"function"!=typeof o)throw Error(i(191,o));o.call(n)}}}var Bi=(new n.Component).refs;function Ui(t,e,r,n){r=null==(r=r(n,e=t.memoizedState))?e:A({},e,r),t.memoizedState=r,0===t.lanes&&(t.updateQueue.baseState=r)}var Hi={isMounted:function(t){return!!(t=t._reactInternals)&&Ht(t)===t},enqueueSetState:function(t,e,r){t=t._reactInternals;var n=td(),o=ed(t),i=Ni(n,o);i.payload=e,null!=r&&(i.callback=r),null!==(e=Di(t,i,o))&&(rd(e,t,o,n),Ii(e,t,o))},enqueueReplaceState:function(t,e,r){t=t._reactInternals;var n=td(),o=ed(t),i=Ni(n,o);i.tag=1,i.payload=e,null!=r&&(i.callback=r),null!==(e=Di(t,i,o))&&(rd(e,t,o,n),Ii(e,t,o))},enqueueForceUpdate:function(t,e){t=t._reactInternals;var r=td(),n=ed(t),o=Ni(r,n);o.tag=2,null!=e&&(o.callback=e),null!==(e=Di(t,o,n))&&(rd(e,t,n,r),Ii(e,t,n))}};function Vi(t,e,r,n,o,i,a){return"function"==typeof(t=t.stateNode).shouldComponentUpdate?t.shouldComponentUpdate(n,i,a):!(e.prototype&&e.prototype.isPureReactComponent&&ln(r,n)&&ln(o,i))}function $i(t,e,r){var n=!1,o=Mo,i=e.contextType;return"object"==typeof i&&null!==i?i=Ci(i):(o=Ro(e)?To:Po.current,i=(n=null!=(n=e.contextTypes))?Lo(t,o):Mo),e=new e(r,i),t.memoizedState=null!==e.state&&void 0!==e.state?e.state:null,e.updater=Hi,t.stateNode=e,e._reactInternals=t,n&&((t=t.stateNode).__reactInternalMemoizedUnmaskedChildContext=o,t.__reactInternalMemoizedMaskedChildContext=i),e}function Wi(t,e,r,n){t=e.state,"function"==typeof e.componentWillReceiveProps&&e.componentWillReceiveProps(r,n),"function"==typeof e.UNSAFE_componentWillReceiveProps&&e.UNSAFE_componentWillReceiveProps(r,n),e.state!==t&&Hi.enqueueReplaceState(e,e.state,null)}function Yi(t,e,r,n){var o=t.stateNode;o.props=r,o.state=t.memoizedState,o.refs=Bi,Li(t);var i=e.contextType;"object"==typeof i&&null!==i?o.context=Ci(i):(i=Ro(e)?To:Po.current,o.context=Lo(t,i)),o.state=t.memoizedState,"function"==typeof(i=e.getDerivedStateFromProps)&&(Ui(t,e,i,r),o.state=t.memoizedState),"function"==typeof e.getDerivedStateFromProps||"function"==typeof o.getSnapshotBeforeUpdate||"function"!=typeof o.UNSAFE_componentWillMount&&"function"!=typeof o.componentWillMount||(e=o.state,"function"==typeof o.componentWillMount&&o.componentWillMount(),"function"==typeof o.UNSAFE_componentWillMount&&o.UNSAFE_componentWillMount(),e!==o.state&&Hi.enqueueReplaceState(o,o.state,null),ji(t,r,o,n),o.state=t.memoizedState),"function"==typeof o.componentDidMount&&(t.flags|=4194308)}function Ki(t,e,r){if(null!==(t=r.ref)&&"function"!=typeof t&&"object"!=typeof t){if(r._owner){if(r=r._owner){if(1!==r.tag)throw Error(i(309));var n=r.stateNode}if(!n)throw Error(i(147,t));var o=n,a=""+t;return null!==e&&null!==e.ref&&"function"==typeof e.ref&&e.ref._stringRef===a?e.ref:(e=function(t){var e=o.refs;e===Bi&&(e=o.refs={}),null===t?delete e[a]:e[a]=t},e._stringRef=a,e)}if("string"!=typeof t)throw Error(i(284));if(!r._owner)throw Error(i(290,t))}return t}function Qi(t,e){throw t=Object.prototype.toString.call(e),Error(i(31,"[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t))}function Xi(t){return(0,t._init)(t._payload)}function qi(t){function e(e,r){if(t){var n=e.deletions;null===n?(e.deletions=[r],e.flags|=16):n.push(r)}}function r(r,n){if(!t)return null;for(;null!==n;)e(r,n),n=n.sibling;return null}function n(t,e){for(t=new Map;null!==e;)null!==e.key?t.set(e.key,e):t.set(e.index,e),e=e.sibling;return t}function o(t,e){return(t=Rd(t,e)).index=0,t.sibling=null,t}function a(e,r,n){return e.index=n,t?null!==(n=e.alternate)?(n=n.index)<r?(e.flags|=2,r):n:(e.flags|=2,r):(e.flags|=1048576,r)}function s(e){return t&&null===e.alternate&&(e.flags|=2),e}function l(t,e,r,n){return null===e||6!==e.tag?((e=Ad(r,t.mode,n)).return=t,e):((e=o(e,r)).return=t,e)}function d(t,e,r,n){var i=r.type;return i===_?u(t,e,r.props.children,n,r.key):null!==e&&(e.elementType===i||"object"==typeof i&&null!==i&&i.$$typeof===L&&Xi(i)===e.type)?((n=o(e,r.props)).ref=Ki(t,e,r),n.return=t,n):((n=Nd(r.type,r.key,r.props,null,t.mode,n)).ref=Ki(t,e,r),n.return=t,n)}function c(t,e,r,n){return null===e||4!==e.tag||e.stateNode.containerInfo!==r.containerInfo||e.stateNode.implementation!==r.implementation?((e=jd(r,t.mode,n)).return=t,e):((e=o(e,r.children||[])).return=t,e)}function u(t,e,r,n,i){return null===e||7!==e.tag?((e=Dd(r,t.mode,n,i)).return=t,e):((e=o(e,r)).return=t,e)}function p(t,e,r){if("string"==typeof e&&""!==e||"number"==typeof e)return(e=Ad(""+e,t.mode,r)).return=t,e;if("object"==typeof e&&null!==e){switch(e.$$typeof){case w:return(r=Nd(e.type,e.key,e.props,null,t.mode,r)).ref=Ki(t,null,e),r.return=t,r;case k:return(e=jd(e,t.mode,r)).return=t,e;case L:return p(t,(0,e._init)(e._payload),r)}if(et(e)||D(e))return(e=Dd(e,t.mode,r,null)).return=t,e;Qi(t,e)}return null}function m(t,e,r,n){var o=null!==e?e.key:null;if("string"==typeof r&&""!==r||"number"==typeof r)return null!==o?null:l(t,e,""+r,n);if("object"==typeof r&&null!==r){switch(r.$$typeof){case w:return r.key===o?d(t,e,r,n):null;case k:return r.key===o?c(t,e,r,n):null;case L:return m(t,e,(o=r._init)(r._payload),n)}if(et(r)||D(r))return null!==o?null:u(t,e,r,n,null);Qi(t,r)}return null}function f(t,e,r,n,o){if("string"==typeof n&&""!==n||"number"==typeof n)return l(e,t=t.get(r)||null,""+n,o);if("object"==typeof n&&null!==n){switch(n.$$typeof){case w:return d(e,t=t.get(null===n.key?r:n.key)||null,n,o);case k:return c(e,t=t.get(null===n.key?r:n.key)||null,n,o);case L:return f(t,e,r,(0,n._init)(n._payload),o)}if(et(n)||D(n))return u(e,t=t.get(r)||null,n,o,null);Qi(e,n)}return null}function h(o,i,s,l){for(var d=null,c=null,u=i,h=i=0,b=null;null!==u&&h<s.length;h++){u.index>h?(b=u,u=null):b=u.sibling;var g=m(o,u,s[h],l);if(null===g){null===u&&(u=b);break}t&&u&&null===g.alternate&&e(o,u),i=a(g,i,h),null===c?d=g:c.sibling=g,c=g,u=b}if(h===s.length)return r(o,u),ii&&Jo(o,h),d;if(null===u){for(;h<s.length;h++)null!==(u=p(o,s[h],l))&&(i=a(u,i,h),null===c?d=u:c.sibling=u,c=u);return ii&&Jo(o,h),d}for(u=n(o,u);h<s.length;h++)null!==(b=f(u,o,h,s[h],l))&&(t&&null!==b.alternate&&u.delete(null===b.key?h:b.key),i=a(b,i,h),null===c?d=b:c.sibling=b,c=b);return t&&u.forEach((function(t){return e(o,t)})),ii&&Jo(o,h),d}function b(o,s,l,d){var c=D(l);if("function"!=typeof c)throw Error(i(150));if(null==(l=c.call(l)))throw Error(i(151));for(var u=c=null,h=s,b=s=0,g=null,v=l.next();null!==h&&!v.done;b++,v=l.next()){h.index>b?(g=h,h=null):g=h.sibling;var x=m(o,h,v.value,d);if(null===x){null===h&&(h=g);break}t&&h&&null===x.alternate&&e(o,h),s=a(x,s,b),null===u?c=x:u.sibling=x,u=x,h=g}if(v.done)return r(o,h),ii&&Jo(o,b),c;if(null===h){for(;!v.done;b++,v=l.next())null!==(v=p(o,v.value,d))&&(s=a(v,s,b),null===u?c=v:u.sibling=v,u=v);return ii&&Jo(o,b),c}for(h=n(o,h);!v.done;b++,v=l.next())null!==(v=f(h,o,b,v.value,d))&&(t&&null!==v.alternate&&h.delete(null===v.key?b:v.key),s=a(v,s,b),null===u?c=v:u.sibling=v,u=v);return t&&h.forEach((function(t){return e(o,t)})),ii&&Jo(o,b),c}return function t(n,i,a,l){if("object"==typeof a&&null!==a&&a.type===_&&null===a.key&&(a=a.props.children),"object"==typeof a&&null!==a){switch(a.$$typeof){case w:t:{for(var d=a.key,c=i;null!==c;){if(c.key===d){if((d=a.type)===_){if(7===c.tag){r(n,c.sibling),(i=o(c,a.props.children)).return=n,n=i;break t}}else if(c.elementType===d||"object"==typeof d&&null!==d&&d.$$typeof===L&&Xi(d)===c.type){r(n,c.sibling),(i=o(c,a.props)).ref=Ki(n,c,a),i.return=n,n=i;break t}r(n,c);break}e(n,c),c=c.sibling}a.type===_?((i=Dd(a.props.children,n.mode,l,a.key)).return=n,n=i):((l=Nd(a.type,a.key,a.props,null,n.mode,l)).ref=Ki(n,i,a),l.return=n,n=l)}return s(n);case k:t:{for(c=a.key;null!==i;){if(i.key===c){if(4===i.tag&&i.stateNode.containerInfo===a.containerInfo&&i.stateNode.implementation===a.implementation){r(n,i.sibling),(i=o(i,a.children||[])).return=n,n=i;break t}r(n,i);break}e(n,i),i=i.sibling}(i=jd(a,n.mode,l)).return=n,n=i}return s(n);case L:return t(n,i,(c=a._init)(a._payload),l)}if(et(a))return h(n,i,a,l);if(D(a))return b(n,i,a,l);Qi(n,a)}return"string"==typeof a&&""!==a||"number"==typeof a?(a=""+a,null!==i&&6===i.tag?(r(n,i.sibling),(i=o(i,a)).return=n,n=i):(r(n,i),(i=Ad(a,n.mode,l)).return=n,n=i),s(n)):r(n,i)}}var Gi=qi(!0),Zi=qi(!1),Ji={},ta=Eo(Ji),ea=Eo(Ji),ra=Eo(Ji);function na(t){if(t===Ji)throw Error(i(174));return t}function oa(t,e){switch(zo(ra,e),zo(ea,t),zo(ta,Ji),t=e.nodeType){case 9:case 11:e=(e=e.documentElement)?e.namespaceURI:lt(null,"");break;default:e=lt(e=(t=8===t?e.parentNode:e).namespaceURI||null,t=t.tagName)}Co(ta),zo(ta,e)}function ia(){Co(ta),Co(ea),Co(ra)}function aa(t){na(ra.current);var e=na(ta.current),r=lt(e,t.type);e!==r&&(zo(ea,t),zo(ta,r))}function sa(t){ea.current===t&&(Co(ta),Co(ea))}var la=Eo(0);function da(t){for(var e=t;null!==e;){if(13===e.tag){var r=e.memoizedState;if(null!==r&&(null===(r=r.dehydrated)||"$?"===r.data||"$!"===r.data))return e}else if(19===e.tag&&void 0!==e.memoizedProps.revealOrder){if(0!=(128&e.flags))return e}else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break;for(;null===e.sibling;){if(null===e.return||e.return===t)return null;e=e.return}e.sibling.return=e.return,e=e.sibling}return null}var ca=[];function ua(){for(var t=0;t<ca.length;t++)ca[t]._workInProgressVersionPrimary=null;ca.length=0}var pa=y.ReactCurrentDispatcher,ma=y.ReactCurrentBatchConfig,fa=0,ha=null,ba=null,ga=null,va=!1,xa=!1,ya=0,wa=0;function ka(){throw Error(i(321))}function _a(t,e){if(null===e)return!1;for(var r=0;r<e.length&&r<t.length;r++)if(!sn(t[r],e[r]))return!1;return!0}function Sa(t,e,r,n,o,a){if(fa=a,ha=e,e.memoizedState=null,e.updateQueue=null,e.lanes=0,pa.current=null===t||null===t.memoizedState?ss:ls,t=r(n,o),xa){a=0;do{if(xa=!1,ya=0,25<=a)throw Error(i(301));a+=1,ga=ba=null,e.updateQueue=null,pa.current=ds,t=r(n,o)}while(xa)}if(pa.current=as,e=null!==ba&&null!==ba.next,fa=0,ga=ba=ha=null,va=!1,e)throw Error(i(300));return t}function Ea(){var t=0!==ya;return ya=0,t}function Ca(){var t={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===ga?ha.memoizedState=ga=t:ga=ga.next=t,ga}function za(){if(null===ba){var t=ha.alternate;t=null!==t?t.memoizedState:null}else t=ba.next;var e=null===ga?ha.memoizedState:ga.next;if(null!==e)ga=e,ba=t;else{if(null===t)throw Error(i(310));t={memoizedState:(ba=t).memoizedState,baseState:ba.baseState,baseQueue:ba.baseQueue,queue:ba.queue,next:null},null===ga?ha.memoizedState=ga=t:ga=ga.next=t}return ga}function Ma(t,e){return"function"==typeof e?e(t):e}function Pa(t){var e=za(),r=e.queue;if(null===r)throw Error(i(311));r.lastRenderedReducer=t;var n=ba,o=n.baseQueue,a=r.pending;if(null!==a){if(null!==o){var s=o.next;o.next=a.next,a.next=s}n.baseQueue=o=a,r.pending=null}if(null!==o){a=o.next,n=n.baseState;var l=s=null,d=null,c=a;do{var u=c.lane;if((fa&u)===u)null!==d&&(d=d.next={lane:0,action:c.action,hasEagerState:c.hasEagerState,eagerState:c.eagerState,next:null}),n=c.hasEagerState?c.eagerState:t(n,c.action);else{var p={lane:u,action:c.action,hasEagerState:c.hasEagerState,eagerState:c.eagerState,next:null};null===d?(l=d=p,s=n):d=d.next=p,ha.lanes|=u,Il|=u}c=c.next}while(null!==c&&c!==a);null===d?s=n:d.next=l,sn(n,e.memoizedState)||(ys=!0),e.memoizedState=n,e.baseState=s,e.baseQueue=d,r.lastRenderedState=n}if(null!==(t=r.interleaved)){o=t;do{a=o.lane,ha.lanes|=a,Il|=a,o=o.next}while(o!==t)}else null===o&&(r.lanes=0);return[e.memoizedState,r.dispatch]}function Oa(t){var e=za(),r=e.queue;if(null===r)throw Error(i(311));r.lastRenderedReducer=t;var n=r.dispatch,o=r.pending,a=e.memoizedState;if(null!==o){r.pending=null;var s=o=o.next;do{a=t(a,s.action),s=s.next}while(s!==o);sn(a,e.memoizedState)||(ys=!0),e.memoizedState=a,null===e.baseQueue&&(e.baseState=a),r.lastRenderedState=a}return[a,n]}function Ta(){}function La(t,e){var r=ha,n=za(),o=e(),a=!sn(n.memoizedState,o);if(a&&(n.memoizedState=o,ys=!0),n=n.queue,$a(Da.bind(null,r,n,t),[t]),n.getSnapshot!==e||a||null!==ga&&1&ga.memoizedState.tag){if(r.flags|=2048,Fa(9,Na.bind(null,r,n,o,e),void 0,null),null===Pl)throw Error(i(349));0!=(30&fa)||Ra(r,e,o)}return o}function Ra(t,e,r){t.flags|=16384,t={getSnapshot:e,value:r},null===(e=ha.updateQueue)?(e={lastEffect:null,stores:null},ha.updateQueue=e,e.stores=[t]):null===(r=e.stores)?e.stores=[t]:r.push(t)}function Na(t,e,r,n){e.value=r,e.getSnapshot=n,Ia(e)&&Aa(t)}function Da(t,e,r){return r((function(){Ia(e)&&Aa(t)}))}function Ia(t){var e=t.getSnapshot;t=t.value;try{var r=e();return!sn(t,r)}catch(t){return!0}}function Aa(t){var e=Oi(t,1);null!==e&&rd(e,t,1,-1)}function ja(t){var e=Ca();return"function"==typeof t&&(t=t()),e.memoizedState=e.baseState=t,t={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:Ma,lastRenderedState:t},e.queue=t,t=t.dispatch=rs.bind(null,ha,t),[e.memoizedState,t]}function Fa(t,e,r,n){return t={tag:t,create:e,destroy:r,deps:n,next:null},null===(e=ha.updateQueue)?(e={lastEffect:null,stores:null},ha.updateQueue=e,e.lastEffect=t.next=t):null===(r=e.lastEffect)?e.lastEffect=t.next=t:(n=r.next,r.next=t,t.next=n,e.lastEffect=t),t}function Ba(){return za().memoizedState}function Ua(t,e,r,n){var o=Ca();ha.flags|=t,o.memoizedState=Fa(1|e,r,void 0,void 0===n?null:n)}function Ha(t,e,r,n){var o=za();n=void 0===n?null:n;var i=void 0;if(null!==ba){var a=ba.memoizedState;if(i=a.destroy,null!==n&&_a(n,a.deps))return void(o.memoizedState=Fa(e,r,i,n))}ha.flags|=t,o.memoizedState=Fa(1|e,r,i,n)}function Va(t,e){return Ua(8390656,8,t,e)}function $a(t,e){return Ha(2048,8,t,e)}function Wa(t,e){return Ha(4,2,t,e)}function Ya(t,e){return Ha(4,4,t,e)}function Ka(t,e){return"function"==typeof e?(t=t(),e(t),function(){e(null)}):null!=e?(t=t(),e.current=t,function(){e.current=null}):void 0}function Qa(t,e,r){return r=null!=r?r.concat([t]):null,Ha(4,4,Ka.bind(null,e,t),r)}function Xa(){}function qa(t,e){var r=za();e=void 0===e?null:e;var n=r.memoizedState;return null!==n&&null!==e&&_a(e,n[1])?n[0]:(r.memoizedState=[t,e],t)}function Ga(t,e){var r=za();e=void 0===e?null:e;var n=r.memoizedState;return null!==n&&null!==e&&_a(e,n[1])?n[0]:(t=t(),r.memoizedState=[t,e],t)}function Za(t,e,r){return 0==(21&fa)?(t.baseState&&(t.baseState=!1,ys=!0),t.memoizedState=r):(sn(r,e)||(r=he(),ha.lanes|=r,Il|=r,t.baseState=!0),e)}function Ja(t,e){var r=xe;xe=0!==r&&4>r?r:4,t(!0);var n=ma.transition;ma.transition={};try{t(!1),e()}finally{xe=r,ma.transition=n}}function ts(){return za().memoizedState}function es(t,e,r){var n=ed(t);r={lane:n,action:r,hasEagerState:!1,eagerState:null,next:null},ns(t)?os(e,r):null!==(r=Pi(t,e,r,n))&&(rd(r,t,n,td()),is(r,e,n))}function rs(t,e,r){var n=ed(t),o={lane:n,action:r,hasEagerState:!1,eagerState:null,next:null};if(ns(t))os(e,o);else{var i=t.alternate;if(0===t.lanes&&(null===i||0===i.lanes)&&null!==(i=e.lastRenderedReducer))try{var a=e.lastRenderedState,s=i(a,r);if(o.hasEagerState=!0,o.eagerState=s,sn(s,a)){var l=e.interleaved;return null===l?(o.next=o,Mi(e)):(o.next=l.next,l.next=o),void(e.interleaved=o)}}catch(t){}null!==(r=Pi(t,e,o,n))&&(rd(r,t,n,o=td()),is(r,e,n))}}function ns(t){var e=t.alternate;return t===ha||null!==e&&e===ha}function os(t,e){xa=va=!0;var r=t.pending;null===r?e.next=e:(e.next=r.next,r.next=e),t.pending=e}function is(t,e,r){if(0!=(4194240&r)){var n=e.lanes;r|=n&=t.pendingLanes,e.lanes=r,ve(t,r)}}var as={readContext:Ci,useCallback:ka,useContext:ka,useEffect:ka,useImperativeHandle:ka,useInsertionEffect:ka,useLayoutEffect:ka,useMemo:ka,useReducer:ka,useRef:ka,useState:ka,useDebugValue:ka,useDeferredValue:ka,useTransition:ka,useMutableSource:ka,useSyncExternalStore:ka,useId:ka,unstable_isNewReconciler:!1},ss={readContext:Ci,useCallback:function(t,e){return Ca().memoizedState=[t,void 0===e?null:e],t},useContext:Ci,useEffect:Va,useImperativeHandle:function(t,e,r){return r=null!=r?r.concat([t]):null,Ua(4194308,4,Ka.bind(null,e,t),r)},useLayoutEffect:function(t,e){return Ua(4194308,4,t,e)},useInsertionEffect:function(t,e){return Ua(4,2,t,e)},useMemo:function(t,e){var r=Ca();return e=void 0===e?null:e,t=t(),r.memoizedState=[t,e],t},useReducer:function(t,e,r){var n=Ca();return e=void 0!==r?r(e):e,n.memoizedState=n.baseState=e,t={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:t,lastRenderedState:e},n.queue=t,t=t.dispatch=es.bind(null,ha,t),[n.memoizedState,t]},useRef:function(t){return t={current:t},Ca().memoizedState=t},useState:ja,useDebugValue:Xa,useDeferredValue:function(t){return Ca().memoizedState=t},useTransition:function(){var t=ja(!1),e=t[0];return t=Ja.bind(null,t[1]),Ca().memoizedState=t,[e,t]},useMutableSource:function(){},useSyncExternalStore:function(t,e,r){var n=ha,o=Ca();if(ii){if(void 0===r)throw Error(i(407));r=r()}else{if(r=e(),null===Pl)throw Error(i(349));0!=(30&fa)||Ra(n,e,r)}o.memoizedState=r;var a={value:r,getSnapshot:e};return o.queue=a,Va(Da.bind(null,n,a,t),[t]),n.flags|=2048,Fa(9,Na.bind(null,n,a,r,e),void 0,null),r},useId:function(){var t=Ca(),e=Pl.identifierPrefix;if(ii){var r=Zo;e=":"+e+"R"+(r=(Go&~(1<<32-ae(Go)-1)).toString(32)+r),0<(r=ya++)&&(e+="H"+r.toString(32)),e+=":"}else e=":"+e+"r"+(r=wa++).toString(32)+":";return t.memoizedState=e},unstable_isNewReconciler:!1},ls={readContext:Ci,useCallback:qa,useContext:Ci,useEffect:$a,useImperativeHandle:Qa,useInsertionEffect:Wa,useLayoutEffect:Ya,useMemo:Ga,useReducer:Pa,useRef:Ba,useState:function(){return Pa(Ma)},useDebugValue:Xa,useDeferredValue:function(t){return Za(za(),ba.memoizedState,t)},useTransition:function(){return[Pa(Ma)[0],za().memoizedState]},useMutableSource:Ta,useSyncExternalStore:La,useId:ts,unstable_isNewReconciler:!1},ds={readContext:Ci,useCallback:qa,useContext:Ci,useEffect:$a,useImperativeHandle:Qa,useInsertionEffect:Wa,useLayoutEffect:Ya,useMemo:Ga,useReducer:Oa,useRef:Ba,useState:function(){return Oa(Ma)},useDebugValue:Xa,useDeferredValue:function(t){var e=za();return null===ba?e.memoizedState=t:Za(e,ba.memoizedState,t)},useTransition:function(){return[Oa(Ma)[0],za().memoizedState]},useMutableSource:Ta,useSyncExternalStore:La,useId:ts,unstable_isNewReconciler:!1};function cs(t,e){try{var r="",n=e;do{r+=U(n),n=n.return}while(n);var o=r}catch(t){o="\nError generating stack: "+t.message+"\n"+t.stack}return{value:t,source:e,stack:o,digest:null}}function us(t,e,r){return{value:t,source:null,stack:null!=r?r:null,digest:null!=e?e:null}}function ps(t,e){try{console.error(e.value)}catch(t){setTimeout((function(){throw t}))}}var ms="function"==typeof WeakMap?WeakMap:Map;function fs(t,e,r){(r=Ni(-1,r)).tag=3,r.payload={element:null};var n=e.value;return r.callback=function(){$l||($l=!0,Wl=n),ps(0,e)},r}function hs(t,e,r){(r=Ni(-1,r)).tag=3;var n=t.type.getDerivedStateFromError;if("function"==typeof n){var o=e.value;r.payload=function(){return n(o)},r.callback=function(){ps(0,e)}}var i=t.stateNode;return null!==i&&"function"==typeof i.componentDidCatch&&(r.callback=function(){ps(0,e),"function"!=typeof n&&(null===Yl?Yl=new Set([this]):Yl.add(this));var t=e.stack;this.componentDidCatch(e.value,{componentStack:null!==t?t:""})}),r}function bs(t,e,r){var n=t.pingCache;if(null===n){n=t.pingCache=new ms;var o=new Set;n.set(e,o)}else void 0===(o=n.get(e))&&(o=new Set,n.set(e,o));o.has(r)||(o.add(r),t=Ed.bind(null,t,e,r),e.then(t,t))}function gs(t){do{var e;if((e=13===t.tag)&&(e=null===(e=t.memoizedState)||null!==e.dehydrated),e)return t;t=t.return}while(null!==t);return null}function vs(t,e,r,n,o){return 0==(1&t.mode)?(t===e?t.flags|=65536:(t.flags|=128,r.flags|=131072,r.flags&=-52805,1===r.tag&&(null===r.alternate?r.tag=17:((e=Ni(-1,1)).tag=2,Di(r,e,1))),r.lanes|=1),t):(t.flags|=65536,t.lanes=o,t)}var xs=y.ReactCurrentOwner,ys=!1;function ws(t,e,r,n){e.child=null===t?Zi(e,null,r,n):Gi(e,t.child,r,n)}function ks(t,e,r,n,o){r=r.render;var i=e.ref;return Ei(e,o),n=Sa(t,e,r,n,i,o),r=Ea(),null===t||ys?(ii&&r&&ei(e),e.flags|=1,ws(t,e,n,o),e.child):(e.updateQueue=t.updateQueue,e.flags&=-2053,t.lanes&=~o,$s(t,e,o))}function _s(t,e,r,n,o){if(null===t){var i=r.type;return"function"!=typeof i||Ld(i)||void 0!==i.defaultProps||null!==r.compare||void 0!==r.defaultProps?((t=Nd(r.type,null,n,e,e.mode,o)).ref=e.ref,t.return=e,e.child=t):(e.tag=15,e.type=i,Ss(t,e,i,n,o))}if(i=t.child,0==(t.lanes&o)){var a=i.memoizedProps;if((r=null!==(r=r.compare)?r:ln)(a,n)&&t.ref===e.ref)return $s(t,e,o)}return e.flags|=1,(t=Rd(i,n)).ref=e.ref,t.return=e,e.child=t}function Ss(t,e,r,n,o){if(null!==t){var i=t.memoizedProps;if(ln(i,n)&&t.ref===e.ref){if(ys=!1,e.pendingProps=n=i,0==(t.lanes&o))return e.lanes=t.lanes,$s(t,e,o);0!=(131072&t.flags)&&(ys=!0)}}return zs(t,e,r,n,o)}function Es(t,e,r){var n=e.pendingProps,o=n.children,i=null!==t?t.memoizedState:null;if("hidden"===n.mode)if(0==(1&e.mode))e.memoizedState={baseLanes:0,cachePool:null,transitions:null},zo(Rl,Ll),Ll|=r;else{if(0==(1073741824&r))return t=null!==i?i.baseLanes|r:r,e.lanes=e.childLanes=1073741824,e.memoizedState={baseLanes:t,cachePool:null,transitions:null},e.updateQueue=null,zo(Rl,Ll),Ll|=t,null;e.memoizedState={baseLanes:0,cachePool:null,transitions:null},n=null!==i?i.baseLanes:r,zo(Rl,Ll),Ll|=n}else null!==i?(n=i.baseLanes|r,e.memoizedState=null):n=r,zo(Rl,Ll),Ll|=n;return ws(t,e,o,r),e.child}function Cs(t,e){var r=e.ref;(null===t&&null!==r||null!==t&&t.ref!==r)&&(e.flags|=512,e.flags|=2097152)}function zs(t,e,r,n,o){var i=Ro(r)?To:Po.current;return i=Lo(e,i),Ei(e,o),r=Sa(t,e,r,n,i,o),n=Ea(),null===t||ys?(ii&&n&&ei(e),e.flags|=1,ws(t,e,r,o),e.child):(e.updateQueue=t.updateQueue,e.flags&=-2053,t.lanes&=~o,$s(t,e,o))}function Ms(t,e,r,n,o){if(Ro(r)){var i=!0;Ao(e)}else i=!1;if(Ei(e,o),null===e.stateNode)Vs(t,e),$i(e,r,n),Yi(e,r,n,o),n=!0;else if(null===t){var a=e.stateNode,s=e.memoizedProps;a.props=s;var l=a.context,d=r.contextType;d="object"==typeof d&&null!==d?Ci(d):Lo(e,d=Ro(r)?To:Po.current);var c=r.getDerivedStateFromProps,u="function"==typeof c||"function"==typeof a.getSnapshotBeforeUpdate;u||"function"!=typeof a.UNSAFE_componentWillReceiveProps&&"function"!=typeof a.componentWillReceiveProps||(s!==n||l!==d)&&Wi(e,a,n,d),Ti=!1;var p=e.memoizedState;a.state=p,ji(e,n,a,o),l=e.memoizedState,s!==n||p!==l||Oo.current||Ti?("function"==typeof c&&(Ui(e,r,c,n),l=e.memoizedState),(s=Ti||Vi(e,r,s,n,p,l,d))?(u||"function"!=typeof a.UNSAFE_componentWillMount&&"function"!=typeof a.componentWillMount||("function"==typeof a.componentWillMount&&a.componentWillMount(),"function"==typeof a.UNSAFE_componentWillMount&&a.UNSAFE_componentWillMount()),"function"==typeof a.componentDidMount&&(e.flags|=4194308)):("function"==typeof a.componentDidMount&&(e.flags|=4194308),e.memoizedProps=n,e.memoizedState=l),a.props=n,a.state=l,a.context=d,n=s):("function"==typeof a.componentDidMount&&(e.flags|=4194308),n=!1)}else{a=e.stateNode,Ri(t,e),s=e.memoizedProps,d=e.type===e.elementType?s:gi(e.type,s),a.props=d,u=e.pendingProps,p=a.context,l="object"==typeof(l=r.contextType)&&null!==l?Ci(l):Lo(e,l=Ro(r)?To:Po.current);var m=r.getDerivedStateFromProps;(c="function"==typeof m||"function"==typeof a.getSnapshotBeforeUpdate)||"function"!=typeof a.UNSAFE_componentWillReceiveProps&&"function"!=typeof a.componentWillReceiveProps||(s!==u||p!==l)&&Wi(e,a,n,l),Ti=!1,p=e.memoizedState,a.state=p,ji(e,n,a,o);var f=e.memoizedState;s!==u||p!==f||Oo.current||Ti?("function"==typeof m&&(Ui(e,r,m,n),f=e.memoizedState),(d=Ti||Vi(e,r,d,n,p,f,l)||!1)?(c||"function"!=typeof a.UNSAFE_componentWillUpdate&&"function"!=typeof a.componentWillUpdate||("function"==typeof a.componentWillUpdate&&a.componentWillUpdate(n,f,l),"function"==typeof a.UNSAFE_componentWillUpdate&&a.UNSAFE_componentWillUpdate(n,f,l)),"function"==typeof a.componentDidUpdate&&(e.flags|=4),"function"==typeof a.getSnapshotBeforeUpdate&&(e.flags|=1024)):("function"!=typeof a.componentDidUpdate||s===t.memoizedProps&&p===t.memoizedState||(e.flags|=4),"function"!=typeof a.getSnapshotBeforeUpdate||s===t.memoizedProps&&p===t.memoizedState||(e.flags|=1024),e.memoizedProps=n,e.memoizedState=f),a.props=n,a.state=f,a.context=l,n=d):("function"!=typeof a.componentDidUpdate||s===t.memoizedProps&&p===t.memoizedState||(e.flags|=4),"function"!=typeof a.getSnapshotBeforeUpdate||s===t.memoizedProps&&p===t.memoizedState||(e.flags|=1024),n=!1)}return Ps(t,e,r,n,i,o)}function Ps(t,e,r,n,o,i){Cs(t,e);var a=0!=(128&e.flags);if(!n&&!a)return o&&jo(e,r,!1),$s(t,e,i);n=e.stateNode,xs.current=e;var s=a&&"function"!=typeof r.getDerivedStateFromError?null:n.render();return e.flags|=1,null!==t&&a?(e.child=Gi(e,t.child,null,i),e.child=Gi(e,null,s,i)):ws(t,e,s,i),e.memoizedState=n.state,o&&jo(e,r,!0),e.child}function Os(t){var e=t.stateNode;e.pendingContext?Do(0,e.pendingContext,e.pendingContext!==e.context):e.context&&Do(0,e.context,!1),oa(t,e.containerInfo)}function Ts(t,e,r,n,o){return fi(),hi(o),e.flags|=256,ws(t,e,r,n),e.child}var Ls,Rs,Ns,Ds={dehydrated:null,treeContext:null,retryLane:0};function Is(t){return{baseLanes:t,cachePool:null,transitions:null}}function As(t,e,r){var n,o=e.pendingProps,a=la.current,s=!1,l=0!=(128&e.flags);if((n=l)||(n=(null===t||null!==t.memoizedState)&&0!=(2&a)),n?(s=!0,e.flags&=-129):null!==t&&null===t.memoizedState||(a|=1),zo(la,1&a),null===t)return ci(e),null!==(t=e.memoizedState)&&null!==(t=t.dehydrated)?(0==(1&e.mode)?e.lanes=1:"$!"===t.data?e.lanes=8:e.lanes=1073741824,null):(l=o.children,t=o.fallback,s?(o=e.mode,s=e.child,l={mode:"hidden",children:l},0==(1&o)&&null!==s?(s.childLanes=0,s.pendingProps=l):s=Id(l,o,0,null),t=Dd(t,o,r,null),s.return=e,t.return=e,s.sibling=t,e.child=s,e.child.memoizedState=Is(r),e.memoizedState=Ds,t):js(e,l));if(null!==(a=t.memoizedState)&&null!==(n=a.dehydrated))return function(t,e,r,n,o,a,s){if(r)return 256&e.flags?(e.flags&=-257,Fs(t,e,s,n=us(Error(i(422))))):null!==e.memoizedState?(e.child=t.child,e.flags|=128,null):(a=n.fallback,o=e.mode,n=Id({mode:"visible",children:n.children},o,0,null),(a=Dd(a,o,s,null)).flags|=2,n.return=e,a.return=e,n.sibling=a,e.child=n,0!=(1&e.mode)&&Gi(e,t.child,null,s),e.child.memoizedState=Is(s),e.memoizedState=Ds,a);if(0==(1&e.mode))return Fs(t,e,s,null);if("$!"===o.data){if(n=o.nextSibling&&o.nextSibling.dataset)var l=n.dgst;return n=l,Fs(t,e,s,n=us(a=Error(i(419)),n,void 0))}if(l=0!=(s&t.childLanes),ys||l){if(null!==(n=Pl)){switch(s&-s){case 4:o=2;break;case 16:o=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:o=32;break;case 536870912:o=268435456;break;default:o=0}0!==(o=0!=(o&(n.suspendedLanes|s))?0:o)&&o!==a.retryLane&&(a.retryLane=o,Oi(t,o),rd(n,t,o,-1))}return hd(),Fs(t,e,s,n=us(Error(i(421))))}return"$?"===o.data?(e.flags|=128,e.child=t.child,e=zd.bind(null,t),o._reactRetry=e,null):(t=a.treeContext,oi=co(o.nextSibling),ni=e,ii=!0,ai=null,null!==t&&(Qo[Xo++]=Go,Qo[Xo++]=Zo,Qo[Xo++]=qo,Go=t.id,Zo=t.overflow,qo=e),(e=js(e,n.children)).flags|=4096,e)}(t,e,l,o,n,a,r);if(s){s=o.fallback,l=e.mode,n=(a=t.child).sibling;var d={mode:"hidden",children:o.children};return 0==(1&l)&&e.child!==a?((o=e.child).childLanes=0,o.pendingProps=d,e.deletions=null):(o=Rd(a,d)).subtreeFlags=14680064&a.subtreeFlags,null!==n?s=Rd(n,s):(s=Dd(s,l,r,null)).flags|=2,s.return=e,o.return=e,o.sibling=s,e.child=o,o=s,s=e.child,l=null===(l=t.child.memoizedState)?Is(r):{baseLanes:l.baseLanes|r,cachePool:null,transitions:l.transitions},s.memoizedState=l,s.childLanes=t.childLanes&~r,e.memoizedState=Ds,o}return t=(s=t.child).sibling,o=Rd(s,{mode:"visible",children:o.children}),0==(1&e.mode)&&(o.lanes=r),o.return=e,o.sibling=null,null!==t&&(null===(r=e.deletions)?(e.deletions=[t],e.flags|=16):r.push(t)),e.child=o,e.memoizedState=null,o}function js(t,e){return(e=Id({mode:"visible",children:e},t.mode,0,null)).return=t,t.child=e}function Fs(t,e,r,n){return null!==n&&hi(n),Gi(e,t.child,null,r),(t=js(e,e.pendingProps.children)).flags|=2,e.memoizedState=null,t}function Bs(t,e,r){t.lanes|=e;var n=t.alternate;null!==n&&(n.lanes|=e),Si(t.return,e,r)}function Us(t,e,r,n,o){var i=t.memoizedState;null===i?t.memoizedState={isBackwards:e,rendering:null,renderingStartTime:0,last:n,tail:r,tailMode:o}:(i.isBackwards=e,i.rendering=null,i.renderingStartTime=0,i.last=n,i.tail=r,i.tailMode=o)}function Hs(t,e,r){var n=e.pendingProps,o=n.revealOrder,i=n.tail;if(ws(t,e,n.children,r),0!=(2&(n=la.current)))n=1&n|2,e.flags|=128;else{if(null!==t&&0!=(128&t.flags))t:for(t=e.child;null!==t;){if(13===t.tag)null!==t.memoizedState&&Bs(t,r,e);else if(19===t.tag)Bs(t,r,e);else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break t;for(;null===t.sibling;){if(null===t.return||t.return===e)break t;t=t.return}t.sibling.return=t.return,t=t.sibling}n&=1}if(zo(la,n),0==(1&e.mode))e.memoizedState=null;else switch(o){case"forwards":for(r=e.child,o=null;null!==r;)null!==(t=r.alternate)&&null===da(t)&&(o=r),r=r.sibling;null===(r=o)?(o=e.child,e.child=null):(o=r.sibling,r.sibling=null),Us(e,!1,o,r,i);break;case"backwards":for(r=null,o=e.child,e.child=null;null!==o;){if(null!==(t=o.alternate)&&null===da(t)){e.child=o;break}t=o.sibling,o.sibling=r,r=o,o=t}Us(e,!0,r,null,i);break;case"together":Us(e,!1,null,null,void 0);break;default:e.memoizedState=null}return e.child}function Vs(t,e){0==(1&e.mode)&&null!==t&&(t.alternate=null,e.alternate=null,e.flags|=2)}function $s(t,e,r){if(null!==t&&(e.dependencies=t.dependencies),Il|=e.lanes,0==(r&e.childLanes))return null;if(null!==t&&e.child!==t.child)throw Error(i(153));if(null!==e.child){for(r=Rd(t=e.child,t.pendingProps),e.child=r,r.return=e;null!==t.sibling;)t=t.sibling,(r=r.sibling=Rd(t,t.pendingProps)).return=e;r.sibling=null}return e.child}function Ws(t,e){if(!ii)switch(t.tailMode){case"hidden":e=t.tail;for(var r=null;null!==e;)null!==e.alternate&&(r=e),e=e.sibling;null===r?t.tail=null:r.sibling=null;break;case"collapsed":r=t.tail;for(var n=null;null!==r;)null!==r.alternate&&(n=r),r=r.sibling;null===n?e||null===t.tail?t.tail=null:t.tail.sibling=null:n.sibling=null}}function Ys(t){var e=null!==t.alternate&&t.alternate.child===t.child,r=0,n=0;if(e)for(var o=t.child;null!==o;)r|=o.lanes|o.childLanes,n|=14680064&o.subtreeFlags,n|=14680064&o.flags,o.return=t,o=o.sibling;else for(o=t.child;null!==o;)r|=o.lanes|o.childLanes,n|=o.subtreeFlags,n|=o.flags,o.return=t,o=o.sibling;return t.subtreeFlags|=n,t.childLanes=r,e}function Ks(t,e,r){var n=e.pendingProps;switch(ri(e),e.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return Ys(e),null;case 1:case 17:return Ro(e.type)&&No(),Ys(e),null;case 3:return n=e.stateNode,ia(),Co(Oo),Co(Po),ua(),n.pendingContext&&(n.context=n.pendingContext,n.pendingContext=null),null!==t&&null!==t.child||(pi(e)?e.flags|=4:null===t||t.memoizedState.isDehydrated&&0==(256&e.flags)||(e.flags|=1024,null!==ai&&(ad(ai),ai=null))),Ys(e),null;case 5:sa(e);var o=na(ra.current);if(r=e.type,null!==t&&null!=e.stateNode)Rs(t,e,r,n),t.ref!==e.ref&&(e.flags|=512,e.flags|=2097152);else{if(!n){if(null===e.stateNode)throw Error(i(166));return Ys(e),null}if(t=na(ta.current),pi(e)){n=e.stateNode,r=e.type;var a=e.memoizedProps;switch(n[mo]=e,n[fo]=a,t=0!=(1&e.mode),r){case"dialog":Fn("cancel",n),Fn("close",n);break;case"iframe":case"object":case"embed":Fn("load",n);break;case"video":case"audio":for(o=0;o<Dn.length;o++)Fn(Dn[o],n);break;case"source":Fn("error",n);break;case"img":case"image":case"link":Fn("error",n),Fn("load",n);break;case"details":Fn("toggle",n);break;case"input":q(n,a),Fn("invalid",n);break;case"select":n._wrapperState={wasMultiple:!!a.multiple},Fn("invalid",n);break;case"textarea":ot(n,a),Fn("invalid",n)}for(var l in vt(r,a),o=null,a)if(a.hasOwnProperty(l)){var d=a[l];"children"===l?"string"==typeof d?n.textContent!==d&&(!0!==a.suppressHydrationWarning&&Zn(n.textContent,d,t),o=["children",d]):"number"==typeof d&&n.textContent!==""+d&&(!0!==a.suppressHydrationWarning&&Zn(n.textContent,d,t),o=["children",""+d]):s.hasOwnProperty(l)&&null!=d&&"onScroll"===l&&Fn("scroll",n)}switch(r){case"input":Y(n),J(n,a,!0);break;case"textarea":Y(n),at(n);break;case"select":case"option":break;default:"function"==typeof a.onClick&&(n.onclick=Jn)}n=o,e.updateQueue=n,null!==n&&(e.flags|=4)}else{l=9===o.nodeType?o:o.ownerDocument,"http://www.w3.org/1999/xhtml"===t&&(t=st(r)),"http://www.w3.org/1999/xhtml"===t?"script"===r?((t=l.createElement("div")).innerHTML="<script><\/script>",t=t.removeChild(t.firstChild)):"string"==typeof n.is?t=l.createElement(r,{is:n.is}):(t=l.createElement(r),"select"===r&&(l=t,n.multiple?l.multiple=!0:n.size&&(l.size=n.size))):t=l.createElementNS(t,r),t[mo]=e,t[fo]=n,Ls(t,e),e.stateNode=t;t:{switch(l=xt(r,n),r){case"dialog":Fn("cancel",t),Fn("close",t),o=n;break;case"iframe":case"object":case"embed":Fn("load",t),o=n;break;case"video":case"audio":for(o=0;o<Dn.length;o++)Fn(Dn[o],t);o=n;break;case"source":Fn("error",t),o=n;break;case"img":case"image":case"link":Fn("error",t),Fn("load",t),o=n;break;case"details":Fn("toggle",t),o=n;break;case"input":q(t,n),o=X(t,n),Fn("invalid",t);break;case"option":default:o=n;break;case"select":t._wrapperState={wasMultiple:!!n.multiple},o=A({},n,{value:void 0}),Fn("invalid",t);break;case"textarea":ot(t,n),o=nt(t,n),Fn("invalid",t)}for(a in vt(r,o),d=o)if(d.hasOwnProperty(a)){var c=d[a];"style"===a?bt(t,c):"dangerouslySetInnerHTML"===a?null!=(c=c?c.__html:void 0)&&ut(t,c):"children"===a?"string"==typeof c?("textarea"!==r||""!==c)&&pt(t,c):"number"==typeof c&&pt(t,""+c):"suppressContentEditableWarning"!==a&&"suppressHydrationWarning"!==a&&"autoFocus"!==a&&(s.hasOwnProperty(a)?null!=c&&"onScroll"===a&&Fn("scroll",t):null!=c&&x(t,a,c,l))}switch(r){case"input":Y(t),J(t,n,!1);break;case"textarea":Y(t),at(t);break;case"option":null!=n.value&&t.setAttribute("value",""+$(n.value));break;case"select":t.multiple=!!n.multiple,null!=(a=n.value)?rt(t,!!n.multiple,a,!1):null!=n.defaultValue&&rt(t,!!n.multiple,n.defaultValue,!0);break;default:"function"==typeof o.onClick&&(t.onclick=Jn)}switch(r){case"button":case"input":case"select":case"textarea":n=!!n.autoFocus;break t;case"img":n=!0;break t;default:n=!1}}n&&(e.flags|=4)}null!==e.ref&&(e.flags|=512,e.flags|=2097152)}return Ys(e),null;case 6:if(t&&null!=e.stateNode)Ns(0,e,t.memoizedProps,n);else{if("string"!=typeof n&&null===e.stateNode)throw Error(i(166));if(r=na(ra.current),na(ta.current),pi(e)){if(n=e.stateNode,r=e.memoizedProps,n[mo]=e,(a=n.nodeValue!==r)&&null!==(t=ni))switch(t.tag){case 3:Zn(n.nodeValue,r,0!=(1&t.mode));break;case 5:!0!==t.memoizedProps.suppressHydrationWarning&&Zn(n.nodeValue,r,0!=(1&t.mode))}a&&(e.flags|=4)}else(n=(9===r.nodeType?r:r.ownerDocument).createTextNode(n))[mo]=e,e.stateNode=n}return Ys(e),null;case 13:if(Co(la),n=e.memoizedState,null===t||null!==t.memoizedState&&null!==t.memoizedState.dehydrated){if(ii&&null!==oi&&0!=(1&e.mode)&&0==(128&e.flags))mi(),fi(),e.flags|=98560,a=!1;else if(a=pi(e),null!==n&&null!==n.dehydrated){if(null===t){if(!a)throw Error(i(318));if(!(a=null!==(a=e.memoizedState)?a.dehydrated:null))throw Error(i(317));a[mo]=e}else fi(),0==(128&e.flags)&&(e.memoizedState=null),e.flags|=4;Ys(e),a=!1}else null!==ai&&(ad(ai),ai=null),a=!0;if(!a)return 65536&e.flags?e:null}return 0!=(128&e.flags)?(e.lanes=r,e):((n=null!==n)!=(null!==t&&null!==t.memoizedState)&&n&&(e.child.flags|=8192,0!=(1&e.mode)&&(null===t||0!=(1&la.current)?0===Nl&&(Nl=3):hd())),null!==e.updateQueue&&(e.flags|=4),Ys(e),null);case 4:return ia(),null===t&&Hn(e.stateNode.containerInfo),Ys(e),null;case 10:return _i(e.type._context),Ys(e),null;case 19:if(Co(la),null===(a=e.memoizedState))return Ys(e),null;if(n=0!=(128&e.flags),null===(l=a.rendering))if(n)Ws(a,!1);else{if(0!==Nl||null!==t&&0!=(128&t.flags))for(t=e.child;null!==t;){if(null!==(l=da(t))){for(e.flags|=128,Ws(a,!1),null!==(n=l.updateQueue)&&(e.updateQueue=n,e.flags|=4),e.subtreeFlags=0,n=r,r=e.child;null!==r;)t=n,(a=r).flags&=14680066,null===(l=a.alternate)?(a.childLanes=0,a.lanes=t,a.child=null,a.subtreeFlags=0,a.memoizedProps=null,a.memoizedState=null,a.updateQueue=null,a.dependencies=null,a.stateNode=null):(a.childLanes=l.childLanes,a.lanes=l.lanes,a.child=l.child,a.subtreeFlags=0,a.deletions=null,a.memoizedProps=l.memoizedProps,a.memoizedState=l.memoizedState,a.updateQueue=l.updateQueue,a.type=l.type,t=l.dependencies,a.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext}),r=r.sibling;return zo(la,1&la.current|2),e.child}t=t.sibling}null!==a.tail&&Gt()>Hl&&(e.flags|=128,n=!0,Ws(a,!1),e.lanes=4194304)}else{if(!n)if(null!==(t=da(l))){if(e.flags|=128,n=!0,null!==(r=t.updateQueue)&&(e.updateQueue=r,e.flags|=4),Ws(a,!0),null===a.tail&&"hidden"===a.tailMode&&!l.alternate&&!ii)return Ys(e),null}else 2*Gt()-a.renderingStartTime>Hl&&1073741824!==r&&(e.flags|=128,n=!0,Ws(a,!1),e.lanes=4194304);a.isBackwards?(l.sibling=e.child,e.child=l):(null!==(r=a.last)?r.sibling=l:e.child=l,a.last=l)}return null!==a.tail?(e=a.tail,a.rendering=e,a.tail=e.sibling,a.renderingStartTime=Gt(),e.sibling=null,r=la.current,zo(la,n?1&r|2:1&r),e):(Ys(e),null);case 22:case 23:return ud(),n=null!==e.memoizedState,null!==t&&null!==t.memoizedState!==n&&(e.flags|=8192),n&&0!=(1&e.mode)?0!=(1073741824&Ll)&&(Ys(e),6&e.subtreeFlags&&(e.flags|=8192)):Ys(e),null;case 24:case 25:return null}throw Error(i(156,e.tag))}function Qs(t,e){switch(ri(e),e.tag){case 1:return Ro(e.type)&&No(),65536&(t=e.flags)?(e.flags=-65537&t|128,e):null;case 3:return ia(),Co(Oo),Co(Po),ua(),0!=(65536&(t=e.flags))&&0==(128&t)?(e.flags=-65537&t|128,e):null;case 5:return sa(e),null;case 13:if(Co(la),null!==(t=e.memoizedState)&&null!==t.dehydrated){if(null===e.alternate)throw Error(i(340));fi()}return 65536&(t=e.flags)?(e.flags=-65537&t|128,e):null;case 19:return Co(la),null;case 4:return ia(),null;case 10:return _i(e.type._context),null;case 22:case 23:return ud(),null;default:return null}}Ls=function(t,e){for(var r=e.child;null!==r;){if(5===r.tag||6===r.tag)t.appendChild(r.stateNode);else if(4!==r.tag&&null!==r.child){r.child.return=r,r=r.child;continue}if(r===e)break;for(;null===r.sibling;){if(null===r.return||r.return===e)return;r=r.return}r.sibling.return=r.return,r=r.sibling}},Rs=function(t,e,r,n){var o=t.memoizedProps;if(o!==n){t=e.stateNode,na(ta.current);var i,a=null;switch(r){case"input":o=X(t,o),n=X(t,n),a=[];break;case"select":o=A({},o,{value:void 0}),n=A({},n,{value:void 0}),a=[];break;case"textarea":o=nt(t,o),n=nt(t,n),a=[];break;default:"function"!=typeof o.onClick&&"function"==typeof n.onClick&&(t.onclick=Jn)}for(c in vt(r,n),r=null,o)if(!n.hasOwnProperty(c)&&o.hasOwnProperty(c)&&null!=o[c])if("style"===c){var l=o[c];for(i in l)l.hasOwnProperty(i)&&(r||(r={}),r[i]="")}else"dangerouslySetInnerHTML"!==c&&"children"!==c&&"suppressContentEditableWarning"!==c&&"suppressHydrationWarning"!==c&&"autoFocus"!==c&&(s.hasOwnProperty(c)?a||(a=[]):(a=a||[]).push(c,null));for(c in n){var d=n[c];if(l=null!=o?o[c]:void 0,n.hasOwnProperty(c)&&d!==l&&(null!=d||null!=l))if("style"===c)if(l){for(i in l)!l.hasOwnProperty(i)||d&&d.hasOwnProperty(i)||(r||(r={}),r[i]="");for(i in d)d.hasOwnProperty(i)&&l[i]!==d[i]&&(r||(r={}),r[i]=d[i])}else r||(a||(a=[]),a.push(c,r)),r=d;else"dangerouslySetInnerHTML"===c?(d=d?d.__html:void 0,l=l?l.__html:void 0,null!=d&&l!==d&&(a=a||[]).push(c,d)):"children"===c?"string"!=typeof d&&"number"!=typeof d||(a=a||[]).push(c,""+d):"suppressContentEditableWarning"!==c&&"suppressHydrationWarning"!==c&&(s.hasOwnProperty(c)?(null!=d&&"onScroll"===c&&Fn("scroll",t),a||l===d||(a=[])):(a=a||[]).push(c,d))}r&&(a=a||[]).push("style",r);var c=a;(e.updateQueue=c)&&(e.flags|=4)}},Ns=function(t,e,r,n){r!==n&&(e.flags|=4)};var Xs=!1,qs=!1,Gs="function"==typeof WeakSet?WeakSet:Set,Zs=null;function Js(t,e){var r=t.ref;if(null!==r)if("function"==typeof r)try{r(null)}catch(r){Sd(t,e,r)}else r.current=null}function tl(t,e,r){try{r()}catch(r){Sd(t,e,r)}}var el=!1;function rl(t,e,r){var n=e.updateQueue;if(null!==(n=null!==n?n.lastEffect:null)){var o=n=n.next;do{if((o.tag&t)===t){var i=o.destroy;o.destroy=void 0,void 0!==i&&tl(e,r,i)}o=o.next}while(o!==n)}}function nl(t,e){if(null!==(e=null!==(e=e.updateQueue)?e.lastEffect:null)){var r=e=e.next;do{if((r.tag&t)===t){var n=r.create;r.destroy=n()}r=r.next}while(r!==e)}}function ol(t){var e=t.ref;if(null!==e){var r=t.stateNode;t.tag,t=r,"function"==typeof e?e(t):e.current=t}}function il(t){var e=t.alternate;null!==e&&(t.alternate=null,il(e)),t.child=null,t.deletions=null,t.sibling=null,5===t.tag&&null!==(e=t.stateNode)&&(delete e[mo],delete e[fo],delete e[bo],delete e[go],delete e[vo]),t.stateNode=null,t.return=null,t.dependencies=null,t.memoizedProps=null,t.memoizedState=null,t.pendingProps=null,t.stateNode=null,t.updateQueue=null}function al(t){return 5===t.tag||3===t.tag||4===t.tag}function sl(t){t:for(;;){for(;null===t.sibling;){if(null===t.return||al(t.return))return null;t=t.return}for(t.sibling.return=t.return,t=t.sibling;5!==t.tag&&6!==t.tag&&18!==t.tag;){if(2&t.flags)continue t;if(null===t.child||4===t.tag)continue t;t.child.return=t,t=t.child}if(!(2&t.flags))return t.stateNode}}function ll(t,e,r){var n=t.tag;if(5===n||6===n)t=t.stateNode,e?8===r.nodeType?r.parentNode.insertBefore(t,e):r.insertBefore(t,e):(8===r.nodeType?(e=r.parentNode).insertBefore(t,r):(e=r).appendChild(t),null!=(r=r._reactRootContainer)||null!==e.onclick||(e.onclick=Jn));else if(4!==n&&null!==(t=t.child))for(ll(t,e,r),t=t.sibling;null!==t;)ll(t,e,r),t=t.sibling}function dl(t,e,r){var n=t.tag;if(5===n||6===n)t=t.stateNode,e?r.insertBefore(t,e):r.appendChild(t);else if(4!==n&&null!==(t=t.child))for(dl(t,e,r),t=t.sibling;null!==t;)dl(t,e,r),t=t.sibling}var cl=null,ul=!1;function pl(t,e,r){for(r=r.child;null!==r;)ml(t,e,r),r=r.sibling}function ml(t,e,r){if(ie&&"function"==typeof ie.onCommitFiberUnmount)try{ie.onCommitFiberUnmount(oe,r)}catch(t){}switch(r.tag){case 5:qs||Js(r,e);case 6:var n=cl,o=ul;cl=null,pl(t,e,r),ul=o,null!==(cl=n)&&(ul?(t=cl,r=r.stateNode,8===t.nodeType?t.parentNode.removeChild(r):t.removeChild(r)):cl.removeChild(r.stateNode));break;case 18:null!==cl&&(ul?(t=cl,r=r.stateNode,8===t.nodeType?lo(t.parentNode,r):1===t.nodeType&&lo(t,r),He(t)):lo(cl,r.stateNode));break;case 4:n=cl,o=ul,cl=r.stateNode.containerInfo,ul=!0,pl(t,e,r),cl=n,ul=o;break;case 0:case 11:case 14:case 15:if(!qs&&null!==(n=r.updateQueue)&&null!==(n=n.lastEffect)){o=n=n.next;do{var i=o,a=i.destroy;i=i.tag,void 0!==a&&(0!=(2&i)||0!=(4&i))&&tl(r,e,a),o=o.next}while(o!==n)}pl(t,e,r);break;case 1:if(!qs&&(Js(r,e),"function"==typeof(n=r.stateNode).componentWillUnmount))try{n.props=r.memoizedProps,n.state=r.memoizedState,n.componentWillUnmount()}catch(t){Sd(r,e,t)}pl(t,e,r);break;case 21:pl(t,e,r);break;case 22:1&r.mode?(qs=(n=qs)||null!==r.memoizedState,pl(t,e,r),qs=n):pl(t,e,r);break;default:pl(t,e,r)}}function fl(t){var e=t.updateQueue;if(null!==e){t.updateQueue=null;var r=t.stateNode;null===r&&(r=t.stateNode=new Gs),e.forEach((function(e){var n=Md.bind(null,t,e);r.has(e)||(r.add(e),e.then(n,n))}))}}function hl(t,e){var r=e.deletions;if(null!==r)for(var n=0;n<r.length;n++){var o=r[n];try{var a=t,s=e,l=s;t:for(;null!==l;){switch(l.tag){case 5:cl=l.stateNode,ul=!1;break t;case 3:case 4:cl=l.stateNode.containerInfo,ul=!0;break t}l=l.return}if(null===cl)throw Error(i(160));ml(a,s,o),cl=null,ul=!1;var d=o.alternate;null!==d&&(d.return=null),o.return=null}catch(t){Sd(o,e,t)}}if(12854&e.subtreeFlags)for(e=e.child;null!==e;)bl(e,t),e=e.sibling}function bl(t,e){var r=t.alternate,n=t.flags;switch(t.tag){case 0:case 11:case 14:case 15:if(hl(e,t),gl(t),4&n){try{rl(3,t,t.return),nl(3,t)}catch(e){Sd(t,t.return,e)}try{rl(5,t,t.return)}catch(e){Sd(t,t.return,e)}}break;case 1:hl(e,t),gl(t),512&n&&null!==r&&Js(r,r.return);break;case 5:if(hl(e,t),gl(t),512&n&&null!==r&&Js(r,r.return),32&t.flags){var o=t.stateNode;try{pt(o,"")}catch(e){Sd(t,t.return,e)}}if(4&n&&null!=(o=t.stateNode)){var a=t.memoizedProps,s=null!==r?r.memoizedProps:a,l=t.type,d=t.updateQueue;if(t.updateQueue=null,null!==d)try{"input"===l&&"radio"===a.type&&null!=a.name&&G(o,a),xt(l,s);var c=xt(l,a);for(s=0;s<d.length;s+=2){var u=d[s],p=d[s+1];"style"===u?bt(o,p):"dangerouslySetInnerHTML"===u?ut(o,p):"children"===u?pt(o,p):x(o,u,p,c)}switch(l){case"input":Z(o,a);break;case"textarea":it(o,a);break;case"select":var m=o._wrapperState.wasMultiple;o._wrapperState.wasMultiple=!!a.multiple;var f=a.value;null!=f?rt(o,!!a.multiple,f,!1):m!==!!a.multiple&&(null!=a.defaultValue?rt(o,!!a.multiple,a.defaultValue,!0):rt(o,!!a.multiple,a.multiple?[]:"",!1))}o[fo]=a}catch(e){Sd(t,t.return,e)}}break;case 6:if(hl(e,t),gl(t),4&n){if(null===t.stateNode)throw Error(i(162));o=t.stateNode,a=t.memoizedProps;try{o.nodeValue=a}catch(e){Sd(t,t.return,e)}}break;case 3:if(hl(e,t),gl(t),4&n&&null!==r&&r.memoizedState.isDehydrated)try{He(e.containerInfo)}catch(e){Sd(t,t.return,e)}break;case 4:default:hl(e,t),gl(t);break;case 13:hl(e,t),gl(t),8192&(o=t.child).flags&&(a=null!==o.memoizedState,o.stateNode.isHidden=a,!a||null!==o.alternate&&null!==o.alternate.memoizedState||(Ul=Gt())),4&n&&fl(t);break;case 22:if(u=null!==r&&null!==r.memoizedState,1&t.mode?(qs=(c=qs)||u,hl(e,t),qs=c):hl(e,t),gl(t),8192&n){if(c=null!==t.memoizedState,(t.stateNode.isHidden=c)&&!u&&0!=(1&t.mode))for(Zs=t,u=t.child;null!==u;){for(p=Zs=u;null!==Zs;){switch(f=(m=Zs).child,m.tag){case 0:case 11:case 14:case 15:rl(4,m,m.return);break;case 1:Js(m,m.return);var h=m.stateNode;if("function"==typeof h.componentWillUnmount){n=m,r=m.return;try{e=n,h.props=e.memoizedProps,h.state=e.memoizedState,h.componentWillUnmount()}catch(t){Sd(n,r,t)}}break;case 5:Js(m,m.return);break;case 22:if(null!==m.memoizedState){wl(p);continue}}null!==f?(f.return=m,Zs=f):wl(p)}u=u.sibling}t:for(u=null,p=t;;){if(5===p.tag){if(null===u){u=p;try{o=p.stateNode,c?"function"==typeof(a=o.style).setProperty?a.setProperty("display","none","important"):a.display="none":(l=p.stateNode,s=null!=(d=p.memoizedProps.style)&&d.hasOwnProperty("display")?d.display:null,l.style.display=ht("display",s))}catch(e){Sd(t,t.return,e)}}}else if(6===p.tag){if(null===u)try{p.stateNode.nodeValue=c?"":p.memoizedProps}catch(e){Sd(t,t.return,e)}}else if((22!==p.tag&&23!==p.tag||null===p.memoizedState||p===t)&&null!==p.child){p.child.return=p,p=p.child;continue}if(p===t)break t;for(;null===p.sibling;){if(null===p.return||p.return===t)break t;u===p&&(u=null),p=p.return}u===p&&(u=null),p.sibling.return=p.return,p=p.sibling}}break;case 19:hl(e,t),gl(t),4&n&&fl(t);case 21:}}function gl(t){var e=t.flags;if(2&e){try{t:{for(var r=t.return;null!==r;){if(al(r)){var n=r;break t}r=r.return}throw Error(i(160))}switch(n.tag){case 5:var o=n.stateNode;32&n.flags&&(pt(o,""),n.flags&=-33),dl(t,sl(t),o);break;case 3:case 4:var a=n.stateNode.containerInfo;ll(t,sl(t),a);break;default:throw Error(i(161))}}catch(e){Sd(t,t.return,e)}t.flags&=-3}4096&e&&(t.flags&=-4097)}function vl(t,e,r){Zs=t,xl(t,e,r)}function xl(t,e,r){for(var n=0!=(1&t.mode);null!==Zs;){var o=Zs,i=o.child;if(22===o.tag&&n){var a=null!==o.memoizedState||Xs;if(!a){var s=o.alternate,l=null!==s&&null!==s.memoizedState||qs;s=Xs;var d=qs;if(Xs=a,(qs=l)&&!d)for(Zs=o;null!==Zs;)l=(a=Zs).child,22===a.tag&&null!==a.memoizedState?kl(o):null!==l?(l.return=a,Zs=l):kl(o);for(;null!==i;)Zs=i,xl(i,e,r),i=i.sibling;Zs=o,Xs=s,qs=d}yl(t)}else 0!=(8772&o.subtreeFlags)&&null!==i?(i.return=o,Zs=i):yl(t)}}function yl(t){for(;null!==Zs;){var e=Zs;if(0!=(8772&e.flags)){var r=e.alternate;try{if(0!=(8772&e.flags))switch(e.tag){case 0:case 11:case 15:qs||nl(5,e);break;case 1:var n=e.stateNode;if(4&e.flags&&!qs)if(null===r)n.componentDidMount();else{var o=e.elementType===e.type?r.memoizedProps:gi(e.type,r.memoizedProps);n.componentDidUpdate(o,r.memoizedState,n.__reactInternalSnapshotBeforeUpdate)}var a=e.updateQueue;null!==a&&Fi(e,a,n);break;case 3:var s=e.updateQueue;if(null!==s){if(r=null,null!==e.child)switch(e.child.tag){case 5:case 1:r=e.child.stateNode}Fi(e,s,r)}break;case 5:var l=e.stateNode;if(null===r&&4&e.flags){r=l;var d=e.memoizedProps;switch(e.type){case"button":case"input":case"select":case"textarea":d.autoFocus&&r.focus();break;case"img":d.src&&(r.src=d.src)}}break;case 6:case 4:case 12:case 19:case 17:case 21:case 22:case 23:case 25:break;case 13:if(null===e.memoizedState){var c=e.alternate;if(null!==c){var u=c.memoizedState;if(null!==u){var p=u.dehydrated;null!==p&&He(p)}}}break;default:throw Error(i(163))}qs||512&e.flags&&ol(e)}catch(t){Sd(e,e.return,t)}}if(e===t){Zs=null;break}if(null!==(r=e.sibling)){r.return=e.return,Zs=r;break}Zs=e.return}}function wl(t){for(;null!==Zs;){var e=Zs;if(e===t){Zs=null;break}var r=e.sibling;if(null!==r){r.return=e.return,Zs=r;break}Zs=e.return}}function kl(t){for(;null!==Zs;){var e=Zs;try{switch(e.tag){case 0:case 11:case 15:var r=e.return;try{nl(4,e)}catch(t){Sd(e,r,t)}break;case 1:var n=e.stateNode;if("function"==typeof n.componentDidMount){var o=e.return;try{n.componentDidMount()}catch(t){Sd(e,o,t)}}var i=e.return;try{ol(e)}catch(t){Sd(e,i,t)}break;case 5:var a=e.return;try{ol(e)}catch(t){Sd(e,a,t)}}}catch(t){Sd(e,e.return,t)}if(e===t){Zs=null;break}var s=e.sibling;if(null!==s){s.return=e.return,Zs=s;break}Zs=e.return}}var _l,Sl=Math.ceil,El=y.ReactCurrentDispatcher,Cl=y.ReactCurrentOwner,zl=y.ReactCurrentBatchConfig,Ml=0,Pl=null,Ol=null,Tl=0,Ll=0,Rl=Eo(0),Nl=0,Dl=null,Il=0,Al=0,jl=0,Fl=null,Bl=null,Ul=0,Hl=1/0,Vl=null,$l=!1,Wl=null,Yl=null,Kl=!1,Ql=null,Xl=0,ql=0,Gl=null,Zl=-1,Jl=0;function td(){return 0!=(6&Ml)?Gt():-1!==Zl?Zl:Zl=Gt()}function ed(t){return 0==(1&t.mode)?1:0!=(2&Ml)&&0!==Tl?Tl&-Tl:null!==bi.transition?(0===Jl&&(Jl=he()),Jl):0!==(t=xe)?t:t=void 0===(t=window.event)?16:qe(t.type)}function rd(t,e,r,n){if(50<ql)throw ql=0,Gl=null,Error(i(185));ge(t,r,n),0!=(2&Ml)&&t===Pl||(t===Pl&&(0==(2&Ml)&&(Al|=r),4===Nl&&sd(t,Tl)),nd(t,n),1===r&&0===Ml&&0==(1&e.mode)&&(Hl=Gt()+500,Bo&&Vo()))}function nd(t,e){var r=t.callbackNode;!function(t,e){for(var r=t.suspendedLanes,n=t.pingedLanes,o=t.expirationTimes,i=t.pendingLanes;0<i;){var a=31-ae(i),s=1<<a,l=o[a];-1===l?0!=(s&r)&&0==(s&n)||(o[a]=me(s,e)):l<=e&&(t.expiredLanes|=s),i&=~s}}(t,e);var n=pe(t,t===Pl?Tl:0);if(0===n)null!==r&&Qt(r),t.callbackNode=null,t.callbackPriority=0;else if(e=n&-n,t.callbackPriority!==e){if(null!=r&&Qt(r),1===e)0===t.tag?function(t){Bo=!0,Ho(t)}(ld.bind(null,t)):Ho(ld.bind(null,t)),ao((function(){0==(6&Ml)&&Vo()})),r=null;else{switch(ye(n)){case 1:r=Jt;break;case 4:r=te;break;case 16:default:r=ee;break;case 536870912:r=ne}r=Pd(r,od.bind(null,t))}t.callbackPriority=e,t.callbackNode=r}}function od(t,e){if(Zl=-1,Jl=0,0!=(6&Ml))throw Error(i(327));var r=t.callbackNode;if(kd()&&t.callbackNode!==r)return null;var n=pe(t,t===Pl?Tl:0);if(0===n)return null;if(0!=(30&n)||0!=(n&t.expiredLanes)||e)e=bd(t,n);else{e=n;var o=Ml;Ml|=2;var a=fd();for(Pl===t&&Tl===e||(Vl=null,Hl=Gt()+500,pd(t,e));;)try{vd();break}catch(e){md(t,e)}ki(),El.current=a,Ml=o,null!==Ol?e=0:(Pl=null,Tl=0,e=Nl)}if(0!==e){if(2===e&&0!==(o=fe(t))&&(n=o,e=id(t,o)),1===e)throw r=Dl,pd(t,0),sd(t,n),nd(t,Gt()),r;if(6===e)sd(t,n);else{if(o=t.current.alternate,0==(30&n)&&!function(t){for(var e=t;;){if(16384&e.flags){var r=e.updateQueue;if(null!==r&&null!==(r=r.stores))for(var n=0;n<r.length;n++){var o=r[n],i=o.getSnapshot;o=o.value;try{if(!sn(i(),o))return!1}catch(t){return!1}}}if(r=e.child,16384&e.subtreeFlags&&null!==r)r.return=e,e=r;else{if(e===t)break;for(;null===e.sibling;){if(null===e.return||e.return===t)return!0;e=e.return}e.sibling.return=e.return,e=e.sibling}}return!0}(o)&&(2===(e=bd(t,n))&&0!==(a=fe(t))&&(n=a,e=id(t,a)),1===e))throw r=Dl,pd(t,0),sd(t,n),nd(t,Gt()),r;switch(t.finishedWork=o,t.finishedLanes=n,e){case 0:case 1:throw Error(i(345));case 2:case 5:wd(t,Bl,Vl);break;case 3:if(sd(t,n),(130023424&n)===n&&10<(e=Ul+500-Gt())){if(0!==pe(t,0))break;if(((o=t.suspendedLanes)&n)!==n){td(),t.pingedLanes|=t.suspendedLanes&o;break}t.timeoutHandle=no(wd.bind(null,t,Bl,Vl),e);break}wd(t,Bl,Vl);break;case 4:if(sd(t,n),(4194240&n)===n)break;for(e=t.eventTimes,o=-1;0<n;){var s=31-ae(n);a=1<<s,(s=e[s])>o&&(o=s),n&=~a}if(n=o,10<(n=(120>(n=Gt()-n)?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Sl(n/1960))-n)){t.timeoutHandle=no(wd.bind(null,t,Bl,Vl),n);break}wd(t,Bl,Vl);break;default:throw Error(i(329))}}}return nd(t,Gt()),t.callbackNode===r?od.bind(null,t):null}function id(t,e){var r=Fl;return t.current.memoizedState.isDehydrated&&(pd(t,e).flags|=256),2!==(t=bd(t,e))&&(e=Bl,Bl=r,null!==e&&ad(e)),t}function ad(t){null===Bl?Bl=t:Bl.push.apply(Bl,t)}function sd(t,e){for(e&=~jl,e&=~Al,t.suspendedLanes|=e,t.pingedLanes&=~e,t=t.expirationTimes;0<e;){var r=31-ae(e),n=1<<r;t[r]=-1,e&=~n}}function ld(t){if(0!=(6&Ml))throw Error(i(327));kd();var e=pe(t,0);if(0==(1&e))return nd(t,Gt()),null;var r=bd(t,e);if(0!==t.tag&&2===r){var n=fe(t);0!==n&&(e=n,r=id(t,n))}if(1===r)throw r=Dl,pd(t,0),sd(t,e),nd(t,Gt()),r;if(6===r)throw Error(i(345));return t.finishedWork=t.current.alternate,t.finishedLanes=e,wd(t,Bl,Vl),nd(t,Gt()),null}function dd(t,e){var r=Ml;Ml|=1;try{return t(e)}finally{0===(Ml=r)&&(Hl=Gt()+500,Bo&&Vo())}}function cd(t){null!==Ql&&0===Ql.tag&&0==(6&Ml)&&kd();var e=Ml;Ml|=1;var r=zl.transition,n=xe;try{if(zl.transition=null,xe=1,t)return t()}finally{xe=n,zl.transition=r,0==(6&(Ml=e))&&Vo()}}function ud(){Ll=Rl.current,Co(Rl)}function pd(t,e){t.finishedWork=null,t.finishedLanes=0;var r=t.timeoutHandle;if(-1!==r&&(t.timeoutHandle=-1,oo(r)),null!==Ol)for(r=Ol.return;null!==r;){var n=r;switch(ri(n),n.tag){case 1:null!=(n=n.type.childContextTypes)&&No();break;case 3:ia(),Co(Oo),Co(Po),ua();break;case 5:sa(n);break;case 4:ia();break;case 13:case 19:Co(la);break;case 10:_i(n.type._context);break;case 22:case 23:ud()}r=r.return}if(Pl=t,Ol=t=Rd(t.current,null),Tl=Ll=e,Nl=0,Dl=null,jl=Al=Il=0,Bl=Fl=null,null!==zi){for(e=0;e<zi.length;e++)if(null!==(n=(r=zi[e]).interleaved)){r.interleaved=null;var o=n.next,i=r.pending;if(null!==i){var a=i.next;i.next=o,n.next=a}r.pending=n}zi=null}return t}function md(t,e){for(;;){var r=Ol;try{if(ki(),pa.current=as,va){for(var n=ha.memoizedState;null!==n;){var o=n.queue;null!==o&&(o.pending=null),n=n.next}va=!1}if(fa=0,ga=ba=ha=null,xa=!1,ya=0,Cl.current=null,null===r||null===r.return){Nl=1,Dl=e,Ol=null;break}t:{var a=t,s=r.return,l=r,d=e;if(e=Tl,l.flags|=32768,null!==d&&"object"==typeof d&&"function"==typeof d.then){var c=d,u=l,p=u.tag;if(0==(1&u.mode)&&(0===p||11===p||15===p)){var m=u.alternate;m?(u.updateQueue=m.updateQueue,u.memoizedState=m.memoizedState,u.lanes=m.lanes):(u.updateQueue=null,u.memoizedState=null)}var f=gs(s);if(null!==f){f.flags&=-257,vs(f,s,l,0,e),1&f.mode&&bs(a,c,e),d=c;var h=(e=f).updateQueue;if(null===h){var b=new Set;b.add(d),e.updateQueue=b}else h.add(d);break t}if(0==(1&e)){bs(a,c,e),hd();break t}d=Error(i(426))}else if(ii&&1&l.mode){var g=gs(s);if(null!==g){0==(65536&g.flags)&&(g.flags|=256),vs(g,s,l,0,e),hi(cs(d,l));break t}}a=d=cs(d,l),4!==Nl&&(Nl=2),null===Fl?Fl=[a]:Fl.push(a),a=s;do{switch(a.tag){case 3:a.flags|=65536,e&=-e,a.lanes|=e,Ai(a,fs(0,d,e));break t;case 1:l=d;var v=a.type,x=a.stateNode;if(0==(128&a.flags)&&("function"==typeof v.getDerivedStateFromError||null!==x&&"function"==typeof x.componentDidCatch&&(null===Yl||!Yl.has(x)))){a.flags|=65536,e&=-e,a.lanes|=e,Ai(a,hs(a,l,e));break t}}a=a.return}while(null!==a)}yd(r)}catch(t){e=t,Ol===r&&null!==r&&(Ol=r=r.return);continue}break}}function fd(){var t=El.current;return El.current=as,null===t?as:t}function hd(){0!==Nl&&3!==Nl&&2!==Nl||(Nl=4),null===Pl||0==(268435455&Il)&&0==(268435455&Al)||sd(Pl,Tl)}function bd(t,e){var r=Ml;Ml|=2;var n=fd();for(Pl===t&&Tl===e||(Vl=null,pd(t,e));;)try{gd();break}catch(e){md(t,e)}if(ki(),Ml=r,El.current=n,null!==Ol)throw Error(i(261));return Pl=null,Tl=0,Nl}function gd(){for(;null!==Ol;)xd(Ol)}function vd(){for(;null!==Ol&&!Xt();)xd(Ol)}function xd(t){var e=_l(t.alternate,t,Ll);t.memoizedProps=t.pendingProps,null===e?yd(t):Ol=e,Cl.current=null}function yd(t){var e=t;do{var r=e.alternate;if(t=e.return,0==(32768&e.flags)){if(null!==(r=Ks(r,e,Ll)))return void(Ol=r)}else{if(null!==(r=Qs(r,e)))return r.flags&=32767,void(Ol=r);if(null===t)return Nl=6,void(Ol=null);t.flags|=32768,t.subtreeFlags=0,t.deletions=null}if(null!==(e=e.sibling))return void(Ol=e);Ol=e=t}while(null!==e);0===Nl&&(Nl=5)}function wd(t,e,r){var n=xe,o=zl.transition;try{zl.transition=null,xe=1,function(t,e,r,n){do{kd()}while(null!==Ql);if(0!=(6&Ml))throw Error(i(327));r=t.finishedWork;var o=t.finishedLanes;if(null===r)return null;if(t.finishedWork=null,t.finishedLanes=0,r===t.current)throw Error(i(177));t.callbackNode=null,t.callbackPriority=0;var a=r.lanes|r.childLanes;if(function(t,e){var r=t.pendingLanes&~e;t.pendingLanes=e,t.suspendedLanes=0,t.pingedLanes=0,t.expiredLanes&=e,t.mutableReadLanes&=e,t.entangledLanes&=e,e=t.entanglements;var n=t.eventTimes;for(t=t.expirationTimes;0<r;){var o=31-ae(r),i=1<<o;e[o]=0,n[o]=-1,t[o]=-1,r&=~i}}(t,a),t===Pl&&(Ol=Pl=null,Tl=0),0==(2064&r.subtreeFlags)&&0==(2064&r.flags)||Kl||(Kl=!0,Pd(ee,(function(){return kd(),null}))),a=0!=(15990&r.flags),0!=(15990&r.subtreeFlags)||a){a=zl.transition,zl.transition=null;var s=xe;xe=1;var l=Ml;Ml|=4,Cl.current=null,function(t,e){if(to=$e,mn(t=pn())){if("selectionStart"in t)var r={start:t.selectionStart,end:t.selectionEnd};else t:{var n=(r=(r=t.ownerDocument)&&r.defaultView||window).getSelection&&r.getSelection();if(n&&0!==n.rangeCount){r=n.anchorNode;var o=n.anchorOffset,a=n.focusNode;n=n.focusOffset;try{r.nodeType,a.nodeType}catch(t){r=null;break t}var s=0,l=-1,d=-1,c=0,u=0,p=t,m=null;e:for(;;){for(var f;p!==r||0!==o&&3!==p.nodeType||(l=s+o),p!==a||0!==n&&3!==p.nodeType||(d=s+n),3===p.nodeType&&(s+=p.nodeValue.length),null!==(f=p.firstChild);)m=p,p=f;for(;;){if(p===t)break e;if(m===r&&++c===o&&(l=s),m===a&&++u===n&&(d=s),null!==(f=p.nextSibling))break;m=(p=m).parentNode}p=f}r=-1===l||-1===d?null:{start:l,end:d}}else r=null}r=r||{start:0,end:0}}else r=null;for(eo={focusedElem:t,selectionRange:r},$e=!1,Zs=e;null!==Zs;)if(t=(e=Zs).child,0!=(1028&e.subtreeFlags)&&null!==t)t.return=e,Zs=t;else for(;null!==Zs;){e=Zs;try{var h=e.alternate;if(0!=(1024&e.flags))switch(e.tag){case 0:case 11:case 15:case 5:case 6:case 4:case 17:break;case 1:if(null!==h){var b=h.memoizedProps,g=h.memoizedState,v=e.stateNode,x=v.getSnapshotBeforeUpdate(e.elementType===e.type?b:gi(e.type,b),g);v.__reactInternalSnapshotBeforeUpdate=x}break;case 3:var y=e.stateNode.containerInfo;1===y.nodeType?y.textContent="":9===y.nodeType&&y.documentElement&&y.removeChild(y.documentElement);break;default:throw Error(i(163))}}catch(t){Sd(e,e.return,t)}if(null!==(t=e.sibling)){t.return=e.return,Zs=t;break}Zs=e.return}h=el,el=!1}(t,r),bl(r,t),fn(eo),$e=!!to,eo=to=null,t.current=r,vl(r,t,o),qt(),Ml=l,xe=s,zl.transition=a}else t.current=r;if(Kl&&(Kl=!1,Ql=t,Xl=o),0===(a=t.pendingLanes)&&(Yl=null),function(t){if(ie&&"function"==typeof ie.onCommitFiberRoot)try{ie.onCommitFiberRoot(oe,t,void 0,128==(128&t.current.flags))}catch(t){}}(r.stateNode),nd(t,Gt()),null!==e)for(n=t.onRecoverableError,r=0;r<e.length;r++)n((o=e[r]).value,{componentStack:o.stack,digest:o.digest});if($l)throw $l=!1,t=Wl,Wl=null,t;0!=(1&Xl)&&0!==t.tag&&kd(),0!=(1&(a=t.pendingLanes))?t===Gl?ql++:(ql=0,Gl=t):ql=0,Vo()}(t,e,r,n)}finally{zl.transition=o,xe=n}return null}function kd(){if(null!==Ql){var t=ye(Xl),e=zl.transition,r=xe;try{if(zl.transition=null,xe=16>t?16:t,null===Ql)var n=!1;else{if(t=Ql,Ql=null,Xl=0,0!=(6&Ml))throw Error(i(331));var o=Ml;for(Ml|=4,Zs=t.current;null!==Zs;){var a=Zs,s=a.child;if(0!=(16&Zs.flags)){var l=a.deletions;if(null!==l){for(var d=0;d<l.length;d++){var c=l[d];for(Zs=c;null!==Zs;){var u=Zs;switch(u.tag){case 0:case 11:case 15:rl(8,u,a)}var p=u.child;if(null!==p)p.return=u,Zs=p;else for(;null!==Zs;){var m=(u=Zs).sibling,f=u.return;if(il(u),u===c){Zs=null;break}if(null!==m){m.return=f,Zs=m;break}Zs=f}}}var h=a.alternate;if(null!==h){var b=h.child;if(null!==b){h.child=null;do{var g=b.sibling;b.sibling=null,b=g}while(null!==b)}}Zs=a}}if(0!=(2064&a.subtreeFlags)&&null!==s)s.return=a,Zs=s;else t:for(;null!==Zs;){if(0!=(2048&(a=Zs).flags))switch(a.tag){case 0:case 11:case 15:rl(9,a,a.return)}var v=a.sibling;if(null!==v){v.return=a.return,Zs=v;break t}Zs=a.return}}var x=t.current;for(Zs=x;null!==Zs;){var y=(s=Zs).child;if(0!=(2064&s.subtreeFlags)&&null!==y)y.return=s,Zs=y;else t:for(s=x;null!==Zs;){if(0!=(2048&(l=Zs).flags))try{switch(l.tag){case 0:case 11:case 15:nl(9,l)}}catch(t){Sd(l,l.return,t)}if(l===s){Zs=null;break t}var w=l.sibling;if(null!==w){w.return=l.return,Zs=w;break t}Zs=l.return}}if(Ml=o,Vo(),ie&&"function"==typeof ie.onPostCommitFiberRoot)try{ie.onPostCommitFiberRoot(oe,t)}catch(t){}n=!0}return n}finally{xe=r,zl.transition=e}}return!1}function _d(t,e,r){t=Di(t,e=fs(0,e=cs(r,e),1),1),e=td(),null!==t&&(ge(t,1,e),nd(t,e))}function Sd(t,e,r){if(3===t.tag)_d(t,t,r);else for(;null!==e;){if(3===e.tag){_d(e,t,r);break}if(1===e.tag){var n=e.stateNode;if("function"==typeof e.type.getDerivedStateFromError||"function"==typeof n.componentDidCatch&&(null===Yl||!Yl.has(n))){e=Di(e,t=hs(e,t=cs(r,t),1),1),t=td(),null!==e&&(ge(e,1,t),nd(e,t));break}}e=e.return}}function Ed(t,e,r){var n=t.pingCache;null!==n&&n.delete(e),e=td(),t.pingedLanes|=t.suspendedLanes&r,Pl===t&&(Tl&r)===r&&(4===Nl||3===Nl&&(130023424&Tl)===Tl&&500>Gt()-Ul?pd(t,0):jl|=r),nd(t,e)}function Cd(t,e){0===e&&(0==(1&t.mode)?e=1:(e=ce,0==(130023424&(ce<<=1))&&(ce=4194304)));var r=td();null!==(t=Oi(t,e))&&(ge(t,e,r),nd(t,r))}function zd(t){var e=t.memoizedState,r=0;null!==e&&(r=e.retryLane),Cd(t,r)}function Md(t,e){var r=0;switch(t.tag){case 13:var n=t.stateNode,o=t.memoizedState;null!==o&&(r=o.retryLane);break;case 19:n=t.stateNode;break;default:throw Error(i(314))}null!==n&&n.delete(e),Cd(t,r)}function Pd(t,e){return Kt(t,e)}function Od(t,e,r,n){this.tag=t,this.key=r,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=e,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=n,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Td(t,e,r,n){return new Od(t,e,r,n)}function Ld(t){return!(!(t=t.prototype)||!t.isReactComponent)}function Rd(t,e){var r=t.alternate;return null===r?((r=Td(t.tag,e,t.key,t.mode)).elementType=t.elementType,r.type=t.type,r.stateNode=t.stateNode,r.alternate=t,t.alternate=r):(r.pendingProps=e,r.type=t.type,r.flags=0,r.subtreeFlags=0,r.deletions=null),r.flags=14680064&t.flags,r.childLanes=t.childLanes,r.lanes=t.lanes,r.child=t.child,r.memoizedProps=t.memoizedProps,r.memoizedState=t.memoizedState,r.updateQueue=t.updateQueue,e=t.dependencies,r.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext},r.sibling=t.sibling,r.index=t.index,r.ref=t.ref,r}function Nd(t,e,r,n,o,a){var s=2;if(n=t,"function"==typeof t)Ld(t)&&(s=1);else if("string"==typeof t)s=5;else t:switch(t){case _:return Dd(r.children,o,a,e);case S:s=8,o|=8;break;case E:return(t=Td(12,r,e,2|o)).elementType=E,t.lanes=a,t;case P:return(t=Td(13,r,e,o)).elementType=P,t.lanes=a,t;case O:return(t=Td(19,r,e,o)).elementType=O,t.lanes=a,t;case R:return Id(r,o,a,e);default:if("object"==typeof t&&null!==t)switch(t.$$typeof){case C:s=10;break t;case z:s=9;break t;case M:s=11;break t;case T:s=14;break t;case L:s=16,n=null;break t}throw Error(i(130,null==t?t:typeof t,""))}return(e=Td(s,r,e,o)).elementType=t,e.type=n,e.lanes=a,e}function Dd(t,e,r,n){return(t=Td(7,t,n,e)).lanes=r,t}function Id(t,e,r,n){return(t=Td(22,t,n,e)).elementType=R,t.lanes=r,t.stateNode={isHidden:!1},t}function Ad(t,e,r){return(t=Td(6,t,null,e)).lanes=r,t}function jd(t,e,r){return(e=Td(4,null!==t.children?t.children:[],t.key,e)).lanes=r,e.stateNode={containerInfo:t.containerInfo,pendingChildren:null,implementation:t.implementation},e}function Fd(t,e,r,n,o){this.tag=e,this.containerInfo=t,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=be(0),this.expirationTimes=be(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=be(0),this.identifierPrefix=n,this.onRecoverableError=o,this.mutableSourceEagerHydrationData=null}function Bd(t,e,r,n,o,i,a,s,l){return t=new Fd(t,e,r,s,l),1===e?(e=1,!0===i&&(e|=8)):e=0,i=Td(3,null,null,e),t.current=i,i.stateNode=t,i.memoizedState={element:n,isDehydrated:r,cache:null,transitions:null,pendingSuspenseBoundaries:null},Li(i),t}function Ud(t,e,r){var n=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:k,key:null==n?null:""+n,children:t,containerInfo:e,implementation:r}}function Hd(t){if(!t)return Mo;t:{if(Ht(t=t._reactInternals)!==t||1!==t.tag)throw Error(i(170));var e=t;do{switch(e.tag){case 3:e=e.stateNode.context;break t;case 1:if(Ro(e.type)){e=e.stateNode.__reactInternalMemoizedMergedChildContext;break t}}e=e.return}while(null!==e);throw Error(i(171))}if(1===t.tag){var r=t.type;if(Ro(r))return Io(t,r,e)}return e}function Vd(t,e,r,n,o,i,a,s,l){return(t=Bd(r,n,!0,t,0,i,0,s,l)).context=Hd(null),r=t.current,(i=Ni(n=td(),o=ed(r))).callback=null!=e?e:null,Di(r,i,o),t.current.lanes=o,ge(t,o,n),nd(t,n),t}function $d(t,e,r,n){var o=e.current,i=td(),a=ed(o);return r=Hd(r),null===e.context?e.context=r:e.pendingContext=r,(e=Ni(i,a)).payload={element:t},null!==(n=void 0===n?null:n)&&(e.callback=n),null!==(t=Di(o,e,a))&&(rd(t,o,a,i),Ii(t,o,a)),a}function Wd(t){return(t=t.current).child?(t.child.tag,t.child.stateNode):null}function Yd(t,e){if(null!==(t=t.memoizedState)&&null!==t.dehydrated){var r=t.retryLane;t.retryLane=0!==r&&r<e?r:e}}function Kd(t,e){Yd(t,e),(t=t.alternate)&&Yd(t,e)}_l=function(t,e,r){if(null!==t)if(t.memoizedProps!==e.pendingProps||Oo.current)ys=!0;else{if(0==(t.lanes&r)&&0==(128&e.flags))return ys=!1,function(t,e,r){switch(e.tag){case 3:Os(e),fi();break;case 5:aa(e);break;case 1:Ro(e.type)&&Ao(e);break;case 4:oa(e,e.stateNode.containerInfo);break;case 10:var n=e.type._context,o=e.memoizedProps.value;zo(vi,n._currentValue),n._currentValue=o;break;case 13:if(null!==(n=e.memoizedState))return null!==n.dehydrated?(zo(la,1&la.current),e.flags|=128,null):0!=(r&e.child.childLanes)?As(t,e,r):(zo(la,1&la.current),null!==(t=$s(t,e,r))?t.sibling:null);zo(la,1&la.current);break;case 19:if(n=0!=(r&e.childLanes),0!=(128&t.flags)){if(n)return Hs(t,e,r);e.flags|=128}if(null!==(o=e.memoizedState)&&(o.rendering=null,o.tail=null,o.lastEffect=null),zo(la,la.current),n)break;return null;case 22:case 23:return e.lanes=0,Es(t,e,r)}return $s(t,e,r)}(t,e,r);ys=0!=(131072&t.flags)}else ys=!1,ii&&0!=(1048576&e.flags)&&ti(e,Ko,e.index);switch(e.lanes=0,e.tag){case 2:var n=e.type;Vs(t,e),t=e.pendingProps;var o=Lo(e,Po.current);Ei(e,r),o=Sa(null,e,n,t,o,r);var a=Ea();return e.flags|=1,"object"==typeof o&&null!==o&&"function"==typeof o.render&&void 0===o.$$typeof?(e.tag=1,e.memoizedState=null,e.updateQueue=null,Ro(n)?(a=!0,Ao(e)):a=!1,e.memoizedState=null!==o.state&&void 0!==o.state?o.state:null,Li(e),o.updater=Hi,e.stateNode=o,o._reactInternals=e,Yi(e,n,t,r),e=Ps(null,e,n,!0,a,r)):(e.tag=0,ii&&a&&ei(e),ws(null,e,o,r),e=e.child),e;case 16:n=e.elementType;t:{switch(Vs(t,e),t=e.pendingProps,n=(o=n._init)(n._payload),e.type=n,o=e.tag=function(t){if("function"==typeof t)return Ld(t)?1:0;if(null!=t){if((t=t.$$typeof)===M)return 11;if(t===T)return 14}return 2}(n),t=gi(n,t),o){case 0:e=zs(null,e,n,t,r);break t;case 1:e=Ms(null,e,n,t,r);break t;case 11:e=ks(null,e,n,t,r);break t;case 14:e=_s(null,e,n,gi(n.type,t),r);break t}throw Error(i(306,n,""))}return e;case 0:return n=e.type,o=e.pendingProps,zs(t,e,n,o=e.elementType===n?o:gi(n,o),r);case 1:return n=e.type,o=e.pendingProps,Ms(t,e,n,o=e.elementType===n?o:gi(n,o),r);case 3:t:{if(Os(e),null===t)throw Error(i(387));n=e.pendingProps,o=(a=e.memoizedState).element,Ri(t,e),ji(e,n,null,r);var s=e.memoizedState;if(n=s.element,a.isDehydrated){if(a={element:n,isDehydrated:!1,cache:s.cache,pendingSuspenseBoundaries:s.pendingSuspenseBoundaries,transitions:s.transitions},e.updateQueue.baseState=a,e.memoizedState=a,256&e.flags){e=Ts(t,e,n,r,o=cs(Error(i(423)),e));break t}if(n!==o){e=Ts(t,e,n,r,o=cs(Error(i(424)),e));break t}for(oi=co(e.stateNode.containerInfo.firstChild),ni=e,ii=!0,ai=null,r=Zi(e,null,n,r),e.child=r;r;)r.flags=-3&r.flags|4096,r=r.sibling}else{if(fi(),n===o){e=$s(t,e,r);break t}ws(t,e,n,r)}e=e.child}return e;case 5:return aa(e),null===t&&ci(e),n=e.type,o=e.pendingProps,a=null!==t?t.memoizedProps:null,s=o.children,ro(n,o)?s=null:null!==a&&ro(n,a)&&(e.flags|=32),Cs(t,e),ws(t,e,s,r),e.child;case 6:return null===t&&ci(e),null;case 13:return As(t,e,r);case 4:return oa(e,e.stateNode.containerInfo),n=e.pendingProps,null===t?e.child=Gi(e,null,n,r):ws(t,e,n,r),e.child;case 11:return n=e.type,o=e.pendingProps,ks(t,e,n,o=e.elementType===n?o:gi(n,o),r);case 7:return ws(t,e,e.pendingProps,r),e.child;case 8:case 12:return ws(t,e,e.pendingProps.children,r),e.child;case 10:t:{if(n=e.type._context,o=e.pendingProps,a=e.memoizedProps,s=o.value,zo(vi,n._currentValue),n._currentValue=s,null!==a)if(sn(a.value,s)){if(a.children===o.children&&!Oo.current){e=$s(t,e,r);break t}}else for(null!==(a=e.child)&&(a.return=e);null!==a;){var l=a.dependencies;if(null!==l){s=a.child;for(var d=l.firstContext;null!==d;){if(d.context===n){if(1===a.tag){(d=Ni(-1,r&-r)).tag=2;var c=a.updateQueue;if(null!==c){var u=(c=c.shared).pending;null===u?d.next=d:(d.next=u.next,u.next=d),c.pending=d}}a.lanes|=r,null!==(d=a.alternate)&&(d.lanes|=r),Si(a.return,r,e),l.lanes|=r;break}d=d.next}}else if(10===a.tag)s=a.type===e.type?null:a.child;else if(18===a.tag){if(null===(s=a.return))throw Error(i(341));s.lanes|=r,null!==(l=s.alternate)&&(l.lanes|=r),Si(s,r,e),s=a.sibling}else s=a.child;if(null!==s)s.return=a;else for(s=a;null!==s;){if(s===e){s=null;break}if(null!==(a=s.sibling)){a.return=s.return,s=a;break}s=s.return}a=s}ws(t,e,o.children,r),e=e.child}return e;case 9:return o=e.type,n=e.pendingProps.children,Ei(e,r),n=n(o=Ci(o)),e.flags|=1,ws(t,e,n,r),e.child;case 14:return o=gi(n=e.type,e.pendingProps),_s(t,e,n,o=gi(n.type,o),r);case 15:return Ss(t,e,e.type,e.pendingProps,r);case 17:return n=e.type,o=e.pendingProps,o=e.elementType===n?o:gi(n,o),Vs(t,e),e.tag=1,Ro(n)?(t=!0,Ao(e)):t=!1,Ei(e,r),$i(e,n,o),Yi(e,n,o,r),Ps(null,e,n,!0,t,r);case 19:return Hs(t,e,r);case 22:return Es(t,e,r)}throw Error(i(156,e.tag))};var Qd="function"==typeof reportError?reportError:function(t){console.error(t)};function Xd(t){this._internalRoot=t}function qd(t){this._internalRoot=t}function Gd(t){return!(!t||1!==t.nodeType&&9!==t.nodeType&&11!==t.nodeType)}function Zd(t){return!(!t||1!==t.nodeType&&9!==t.nodeType&&11!==t.nodeType&&(8!==t.nodeType||" react-mount-point-unstable "!==t.nodeValue))}function Jd(){}function tc(t,e,r,n,o){var i=r._reactRootContainer;if(i){var a=i;if("function"==typeof o){var s=o;o=function(){var t=Wd(a);s.call(t)}}$d(e,a,t,o)}else a=function(t,e,r,n,o){if(o){if("function"==typeof n){var i=n;n=function(){var t=Wd(a);i.call(t)}}var a=Vd(e,n,t,0,null,!1,0,"",Jd);return t._reactRootContainer=a,t[ho]=a.current,Hn(8===t.nodeType?t.parentNode:t),cd(),a}for(;o=t.lastChild;)t.removeChild(o);if("function"==typeof n){var s=n;n=function(){var t=Wd(l);s.call(t)}}var l=Bd(t,0,!1,null,0,!1,0,"",Jd);return t._reactRootContainer=l,t[ho]=l.current,Hn(8===t.nodeType?t.parentNode:t),cd((function(){$d(e,l,r,n)})),l}(r,e,t,o,n);return Wd(a)}qd.prototype.render=Xd.prototype.render=function(t){var e=this._internalRoot;if(null===e)throw Error(i(409));$d(t,e,null,null)},qd.prototype.unmount=Xd.prototype.unmount=function(){var t=this._internalRoot;if(null!==t){this._internalRoot=null;var e=t.containerInfo;cd((function(){$d(null,t,null,null)})),e[ho]=null}},qd.prototype.unstable_scheduleHydration=function(t){if(t){var e=Se();t={blockedOn:null,target:t,priority:e};for(var r=0;r<Re.length&&0!==e&&e<Re[r].priority;r++);Re.splice(r,0,t),0===r&&Ae(t)}},we=function(t){switch(t.tag){case 3:var e=t.stateNode;if(e.current.memoizedState.isDehydrated){var r=ue(e.pendingLanes);0!==r&&(ve(e,1|r),nd(e,Gt()),0==(6&Ml)&&(Hl=Gt()+500,Vo()))}break;case 13:cd((function(){var e=Oi(t,1);if(null!==e){var r=td();rd(e,t,1,r)}})),Kd(t,1)}},ke=function(t){if(13===t.tag){var e=Oi(t,134217728);null!==e&&rd(e,t,134217728,td()),Kd(t,134217728)}},_e=function(t){if(13===t.tag){var e=ed(t),r=Oi(t,e);null!==r&&rd(r,t,e,td()),Kd(t,e)}},Se=function(){return xe},Ee=function(t,e){var r=xe;try{return xe=t,e()}finally{xe=r}},kt=function(t,e,r){switch(e){case"input":if(Z(t,r),e=r.name,"radio"===r.type&&null!=e){for(r=t;r.parentNode;)r=r.parentNode;for(r=r.querySelectorAll("input[name="+JSON.stringify(""+e)+'][type="radio"]'),e=0;e<r.length;e++){var n=r[e];if(n!==t&&n.form===t.form){var o=ko(n);if(!o)throw Error(i(90));K(n),Z(n,o)}}}break;case"textarea":it(t,r);break;case"select":null!=(e=r.value)&&rt(t,!!r.multiple,e,!1)}},Mt=dd,Pt=cd;var ec={usingClientEntryPoint:!1,Events:[yo,wo,ko,Ct,zt,dd]},rc={findFiberByHostInstance:xo,bundleType:0,version:"18.2.0",rendererPackageName:"react-dom"},nc={bundleType:rc.bundleType,version:rc.version,rendererPackageName:rc.rendererPackageName,rendererConfig:rc.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:y.ReactCurrentDispatcher,findHostInstanceByFiber:function(t){return null===(t=Wt(t))?null:t.stateNode},findFiberByHostInstance:rc.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:"18.2.0-next-9e3b772b8-20220608"};if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var oc=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!oc.isDisabled&&oc.supportsFiber)try{oe=oc.inject(nc),ie=oc}catch(ct){}}e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ec,e.createPortal=function(t,e){var r=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!Gd(e))throw Error(i(200));return Ud(t,e,null,r)},e.createRoot=function(t,e){if(!Gd(t))throw Error(i(299));var r=!1,n="",o=Qd;return null!=e&&(!0===e.unstable_strictMode&&(r=!0),void 0!==e.identifierPrefix&&(n=e.identifierPrefix),void 0!==e.onRecoverableError&&(o=e.onRecoverableError)),e=Bd(t,1,!1,null,0,r,0,n,o),t[ho]=e.current,Hn(8===t.nodeType?t.parentNode:t),new Xd(e)},e.findDOMNode=function(t){if(null==t)return null;if(1===t.nodeType)return t;var e=t._reactInternals;if(void 0===e){if("function"==typeof t.render)throw Error(i(188));throw t=Object.keys(t).join(","),Error(i(268,t))}return null===(t=Wt(e))?null:t.stateNode},e.flushSync=function(t){return cd(t)},e.hydrate=function(t,e,r){if(!Zd(e))throw Error(i(200));return tc(null,t,e,!0,r)},e.hydrateRoot=function(t,e,r){if(!Gd(t))throw Error(i(405));var n=null!=r&&r.hydratedSources||null,o=!1,a="",s=Qd;if(null!=r&&(!0===r.unstable_strictMode&&(o=!0),void 0!==r.identifierPrefix&&(a=r.identifierPrefix),void 0!==r.onRecoverableError&&(s=r.onRecoverableError)),e=Vd(e,null,t,1,null!=r?r:null,o,0,a,s),t[ho]=e.current,Hn(t),n)for(t=0;t<n.length;t++)o=(o=(r=n[t])._getVersion)(r._source),null==e.mutableSourceEagerHydrationData?e.mutableSourceEagerHydrationData=[r,o]:e.mutableSourceEagerHydrationData.push(r,o);return new qd(e)},e.render=function(t,e,r){if(!Zd(e))throw Error(i(200));return tc(null,t,e,!1,r)},e.unmountComponentAtNode=function(t){if(!Zd(t))throw Error(i(40));return!!t._reactRootContainer&&(cd((function(){tc(null,null,t,!1,(function(){t._reactRootContainer=null,t[ho]=null}))})),!0)},e.unstable_batchedUpdates=dd,e.unstable_renderSubtreeIntoContainer=function(t,e,r,n){if(!Zd(r))throw Error(i(200));if(null==t||void 0===t._reactInternals)throw Error(i(38));return tc(t,e,r,!1,n)},e.version="18.2.0-next-9e3b772b8-20220608"},745:(t,e,r)=>{"use strict";var n=r(935);e.s=n.createRoot,n.hydrateRoot},935:(t,e,r)=>{"use strict";!function t(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(t){console.error(t)}}(),t.exports=r(448)},251:(t,e,r)=>{"use strict";var n=r(294),o=Symbol.for("react.element"),i=(Symbol.for("react.fragment"),Object.prototype.hasOwnProperty),a=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,s={key:!0,ref:!0,__self:!0,__source:!0};e.jsx=function(t,e,r){var n,l={},d=null,c=null;for(n in void 0!==r&&(d=""+r),void 0!==e.key&&(d=""+e.key),void 0!==e.ref&&(c=e.ref),e)i.call(e,n)&&!s.hasOwnProperty(n)&&(l[n]=e[n]);if(t&&t.defaultProps)for(n in e=t.defaultProps)void 0===l[n]&&(l[n]=e[n]);return{$$typeof:o,type:t,key:d,ref:c,props:l,_owner:a.current}}},408:(t,e)=>{"use strict";var r=Symbol.for("react.element"),n=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),i=Symbol.for("react.strict_mode"),a=Symbol.for("react.profiler"),s=Symbol.for("react.provider"),l=Symbol.for("react.context"),d=Symbol.for("react.forward_ref"),c=Symbol.for("react.suspense"),u=Symbol.for("react.memo"),p=Symbol.for("react.lazy"),m=Symbol.iterator,f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h=Object.assign,b={};function g(t,e,r){this.props=t,this.context=e,this.refs=b,this.updater=r||f}function v(){}function x(t,e,r){this.props=t,this.context=e,this.refs=b,this.updater=r||f}g.prototype.isReactComponent={},g.prototype.setState=function(t,e){if("object"!=typeof t&&"function"!=typeof t&&null!=t)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,t,e,"setState")},g.prototype.forceUpdate=function(t){this.updater.enqueueForceUpdate(this,t,"forceUpdate")},v.prototype=g.prototype;var y=x.prototype=new v;y.constructor=x,h(y,g.prototype),y.isPureReactComponent=!0;var w=Array.isArray,k=Object.prototype.hasOwnProperty,_={current:null},S={key:!0,ref:!0,__self:!0,__source:!0};function E(t,e,n){var o,i={},a=null,s=null;if(null!=e)for(o in void 0!==e.ref&&(s=e.ref),void 0!==e.key&&(a=""+e.key),e)k.call(e,o)&&!S.hasOwnProperty(o)&&(i[o]=e[o]);var l=arguments.length-2;if(1===l)i.children=n;else if(1<l){for(var d=Array(l),c=0;c<l;c++)d[c]=arguments[c+2];i.children=d}if(t&&t.defaultProps)for(o in l=t.defaultProps)void 0===i[o]&&(i[o]=l[o]);return{$$typeof:r,type:t,key:a,ref:s,props:i,_owner:_.current}}function C(t){return"object"==typeof t&&null!==t&&t.$$typeof===r}var z=/\/+/g;function M(t,e){return"object"==typeof t&&null!==t&&null!=t.key?function(t){var e={"=":"=0",":":"=2"};return"$"+t.replace(/[=:]/g,(function(t){return e[t]}))}(""+t.key):e.toString(36)}function P(t,e,o,i,a){var s=typeof t;"undefined"!==s&&"boolean"!==s||(t=null);var l=!1;if(null===t)l=!0;else switch(s){case"string":case"number":l=!0;break;case"object":switch(t.$$typeof){case r:case n:l=!0}}if(l)return a=a(l=t),t=""===i?"."+M(l,0):i,w(a)?(o="",null!=t&&(o=t.replace(z,"$&/")+"/"),P(a,e,o,"",(function(t){return t}))):null!=a&&(C(a)&&(a=function(t,e){return{$$typeof:r,type:t.type,key:e,ref:t.ref,props:t.props,_owner:t._owner}}(a,o+(!a.key||l&&l.key===a.key?"":(""+a.key).replace(z,"$&/")+"/")+t)),e.push(a)),1;if(l=0,i=""===i?".":i+":",w(t))for(var d=0;d<t.length;d++){var c=i+M(s=t[d],d);l+=P(s,e,o,c,a)}else if(c=function(t){return null===t||"object"!=typeof t?null:"function"==typeof(t=m&&t[m]||t["@@iterator"])?t:null}(t),"function"==typeof c)for(t=c.call(t),d=0;!(s=t.next()).done;)l+=P(s=s.value,e,o,c=i+M(s,d++),a);else if("object"===s)throw e=String(t),Error("Objects are not valid as a React child (found: "+("[object Object]"===e?"object with keys {"+Object.keys(t).join(", ")+"}":e)+"). If you meant to render a collection of children, use an array instead.");return l}function O(t,e,r){if(null==t)return t;var n=[],o=0;return P(t,n,"","",(function(t){return e.call(r,t,o++)})),n}function T(t){if(-1===t._status){var e=t._result;(e=e()).then((function(e){0!==t._status&&-1!==t._status||(t._status=1,t._result=e)}),(function(e){0!==t._status&&-1!==t._status||(t._status=2,t._result=e)})),-1===t._status&&(t._status=0,t._result=e)}if(1===t._status)return t._result.default;throw t._result}var L={current:null},R={transition:null},N={ReactCurrentDispatcher:L,ReactCurrentBatchConfig:R,ReactCurrentOwner:_};e.Children={map:O,forEach:function(t,e,r){O(t,(function(){e.apply(this,arguments)}),r)},count:function(t){var e=0;return O(t,(function(){e++})),e},toArray:function(t){return O(t,(function(t){return t}))||[]},only:function(t){if(!C(t))throw Error("React.Children.only expected to receive a single React element child.");return t}},e.Component=g,e.Fragment=o,e.Profiler=a,e.PureComponent=x,e.StrictMode=i,e.Suspense=c,e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=N,e.cloneElement=function(t,e,n){if(null==t)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+t+".");var o=h({},t.props),i=t.key,a=t.ref,s=t._owner;if(null!=e){if(void 0!==e.ref&&(a=e.ref,s=_.current),void 0!==e.key&&(i=""+e.key),t.type&&t.type.defaultProps)var l=t.type.defaultProps;for(d in e)k.call(e,d)&&!S.hasOwnProperty(d)&&(o[d]=void 0===e[d]&&void 0!==l?l[d]:e[d])}var d=arguments.length-2;if(1===d)o.children=n;else if(1<d){l=Array(d);for(var c=0;c<d;c++)l[c]=arguments[c+2];o.children=l}return{$$typeof:r,type:t.type,key:i,ref:a,props:o,_owner:s}},e.createContext=function(t){return(t={$$typeof:l,_currentValue:t,_currentValue2:t,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null}).Provider={$$typeof:s,_context:t},t.Consumer=t},e.createElement=E,e.createFactory=function(t){var e=E.bind(null,t);return e.type=t,e},e.createRef=function(){return{current:null}},e.forwardRef=function(t){return{$$typeof:d,render:t}},e.isValidElement=C,e.lazy=function(t){return{$$typeof:p,_payload:{_status:-1,_result:t},_init:T}},e.memo=function(t,e){return{$$typeof:u,type:t,compare:void 0===e?null:e}},e.startTransition=function(t){var e=R.transition;R.transition={};try{t()}finally{R.transition=e}},e.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.")},e.useCallback=function(t,e){return L.current.useCallback(t,e)},e.useContext=function(t){return L.current.useContext(t)},e.useDebugValue=function(){},e.useDeferredValue=function(t){return L.current.useDeferredValue(t)},e.useEffect=function(t,e){return L.current.useEffect(t,e)},e.useId=function(){return L.current.useId()},e.useImperativeHandle=function(t,e,r){return L.current.useImperativeHandle(t,e,r)},e.useInsertionEffect=function(t,e){return L.current.useInsertionEffect(t,e)},e.useLayoutEffect=function(t,e){return L.current.useLayoutEffect(t,e)},e.useMemo=function(t,e){return L.current.useMemo(t,e)},e.useReducer=function(t,e,r){return L.current.useReducer(t,e,r)},e.useRef=function(t){return L.current.useRef(t)},e.useState=function(t){return L.current.useState(t)},e.useSyncExternalStore=function(t,e,r){return L.current.useSyncExternalStore(t,e,r)},e.useTransition=function(){return L.current.useTransition()},e.version="18.2.0"},294:(t,e,r)=>{"use strict";t.exports=r(408)},893:(t,e,r)=>{"use strict";t.exports=r(251)},53:(t,e)=>{"use strict";function r(t,e){var r=t.length;t.push(e);t:for(;0<r;){var n=r-1>>>1,o=t[n];if(!(0<i(o,e)))break t;t[n]=e,t[r]=o,r=n}}function n(t){return 0===t.length?null:t[0]}function o(t){if(0===t.length)return null;var e=t[0],r=t.pop();if(r!==e){t[0]=r;t:for(var n=0,o=t.length,a=o>>>1;n<a;){var s=2*(n+1)-1,l=t[s],d=s+1,c=t[d];if(0>i(l,r))d<o&&0>i(c,l)?(t[n]=c,t[d]=r,n=d):(t[n]=l,t[s]=r,n=s);else{if(!(d<o&&0>i(c,r)))break t;t[n]=c,t[d]=r,n=d}}}return e}function i(t,e){var r=t.sortIndex-e.sortIndex;return 0!==r?r:t.id-e.id}if("object"==typeof performance&&"function"==typeof performance.now){var a=performance;e.unstable_now=function(){return a.now()}}else{var s=Date,l=s.now();e.unstable_now=function(){return s.now()-l}}var d=[],c=[],u=1,p=null,m=3,f=!1,h=!1,b=!1,g="function"==typeof setTimeout?setTimeout:null,v="function"==typeof clearTimeout?clearTimeout:null,x="undefined"!=typeof setImmediate?setImmediate:null;function y(t){for(var e=n(c);null!==e;){if(null===e.callback)o(c);else{if(!(e.startTime<=t))break;o(c),e.sortIndex=e.expirationTime,r(d,e)}e=n(c)}}function w(t){if(b=!1,y(t),!h)if(null!==n(d))h=!0,R(k);else{var e=n(c);null!==e&&N(w,e.startTime-t)}}function k(t,r){h=!1,b&&(b=!1,v(C),C=-1),f=!0;var i=m;try{for(y(r),p=n(d);null!==p&&(!(p.expirationTime>r)||t&&!P());){var a=p.callback;if("function"==typeof a){p.callback=null,m=p.priorityLevel;var s=a(p.expirationTime<=r);r=e.unstable_now(),"function"==typeof s?p.callback=s:p===n(d)&&o(d),y(r)}else o(d);p=n(d)}if(null!==p)var l=!0;else{var u=n(c);null!==u&&N(w,u.startTime-r),l=!1}return l}finally{p=null,m=i,f=!1}}"undefined"!=typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var _,S=!1,E=null,C=-1,z=5,M=-1;function P(){return!(e.unstable_now()-M<z)}function O(){if(null!==E){var t=e.unstable_now();M=t;var r=!0;try{r=E(!0,t)}finally{r?_():(S=!1,E=null)}}else S=!1}if("function"==typeof x)_=function(){x(O)};else if("undefined"!=typeof MessageChannel){var T=new MessageChannel,L=T.port2;T.port1.onmessage=O,_=function(){L.postMessage(null)}}else _=function(){g(O,0)};function R(t){E=t,S||(S=!0,_())}function N(t,r){C=g((function(){t(e.unstable_now())}),r)}e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(t){t.callback=null},e.unstable_continueExecution=function(){h||f||(h=!0,R(k))},e.unstable_forceFrameRate=function(t){0>t||125<t?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):z=0<t?Math.floor(1e3/t):5},e.unstable_getCurrentPriorityLevel=function(){return m},e.unstable_getFirstCallbackNode=function(){return n(d)},e.unstable_next=function(t){switch(m){case 1:case 2:case 3:var e=3;break;default:e=m}var r=m;m=e;try{return t()}finally{m=r}},e.unstable_pauseExecution=function(){},e.unstable_requestPaint=function(){},e.unstable_runWithPriority=function(t,e){switch(t){case 1:case 2:case 3:case 4:case 5:break;default:t=3}var r=m;m=t;try{return e()}finally{m=r}},e.unstable_scheduleCallback=function(t,o,i){var a=e.unstable_now();switch(i="object"==typeof i&&null!==i&&"number"==typeof(i=i.delay)&&0<i?a+i:a,t){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return t={id:u++,callback:o,priorityLevel:t,startTime:i,expirationTime:s=i+s,sortIndex:-1},i>a?(t.sortIndex=i,r(c,t),null===n(d)&&t===n(c)&&(b?(v(C),C=-1):b=!0,N(w,i-a))):(t.sortIndex=s,r(d,t),h||f||(h=!0,R(k))),t},e.unstable_shouldYield=P,e.unstable_wrapCallback=function(t){var e=m;return function(){var r=m;m=e;try{return t.apply(this,arguments)}finally{m=r}}}},840:(t,e,r)=>{"use strict";t.exports=r(53)},379:t=>{"use strict";var e=[];function r(t){for(var r=-1,n=0;n<e.length;n++)if(e[n].identifier===t){r=n;break}return r}function n(t,n){for(var i={},a=[],s=0;s<t.length;s++){var l=t[s],d=n.base?l[0]+n.base:l[0],c=i[d]||0,u="".concat(d," ").concat(c);i[d]=c+1;var p=r(u),m={css:l[1],media:l[2],sourceMap:l[3],supports:l[4],layer:l[5]};if(-1!==p)e[p].references++,e[p].updater(m);else{var f=o(m,n);n.byIndex=s,e.splice(s,0,{identifier:u,updater:f,references:1})}a.push(u)}return a}function o(t,e){var r=e.domAPI(e);return r.update(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap&&e.supports===t.supports&&e.layer===t.layer)return;r.update(t=e)}else r.remove()}}t.exports=function(t,o){var i=n(t=t||[],o=o||{});return function(t){t=t||[];for(var a=0;a<i.length;a++){var s=r(i[a]);e[s].references--}for(var l=n(t,o),d=0;d<i.length;d++){var c=r(i[d]);0===e[c].references&&(e[c].updater(),e.splice(c,1))}i=l}}},569:t=>{"use strict";var e={};t.exports=function(t,r){var n=function(t){if(void 0===e[t]){var r=document.querySelector(t);if(window.HTMLIFrameElement&&r instanceof window.HTMLIFrameElement)try{r=r.contentDocument.head}catch(t){r=null}e[t]=r}return e[t]}(t);if(!n)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");n.appendChild(r)}},216:t=>{"use strict";t.exports=function(t){var e=document.createElement("style");return t.setAttributes(e,t.attributes),t.insert(e,t.options),e}},565:(t,e,r)=>{"use strict";t.exports=function(t){var e=r.nc;e&&t.setAttribute("nonce",e)}},795:t=>{"use strict";t.exports=function(t){var e=t.insertStyleElement(t);return{update:function(r){!function(t,e,r){var n="";r.supports&&(n+="@supports (".concat(r.supports,") {")),r.media&&(n+="@media ".concat(r.media," {"));var o=void 0!==r.layer;o&&(n+="@layer".concat(r.layer.length>0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var i=r.sourceMap;i&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),e.styleTagTransform(n,t,e.options)}(e,t,r)},remove:function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(e)}}}},589:t=>{"use strict";t.exports=function(t,e){if(e.styleSheet)e.styleSheet.cssText=t;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(t))}}},473:t=>{"use strict";t.exports=function(){}},204:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%272%27 fill=%27%23fff%27/%3e%3c/svg%3e"},609:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27%2386b7fe%27/%3e%3c/svg%3e"},469:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27%23fff%27/%3e%3c/svg%3e"},486:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27rgba%280, 0, 0, 0.25%29%27/%3e%3c/svg%3e"},144:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 12 12%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3e%3c/svg%3e"},254:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23000%27%3e%3cpath d=%27M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z%27/%3e%3c/svg%3e"},740:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%230c63e4%27%3e%3cpath fill-rule=%27evenodd%27 d=%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z%27/%3e%3c/svg%3e"},460:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23212529%27%3e%3cpath fill-rule=%27evenodd%27 d=%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z%27/%3e%3c/svg%3e"},647:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23fff%27%3e%3cpath d=%27M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z%27/%3e%3c/svg%3e"},692:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23fff%27%3e%3cpath d=%27M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z%27/%3e%3c/svg%3e"},770:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3e%3cpath fill=%27none%27 stroke=%27%23343a40%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27m2 5 6 6 6-6%27/%3e%3c/svg%3e"},931:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 20 20%27%3e%3cpath fill=%27none%27 stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%273%27 d=%27M6 10h8%27/%3e%3c/svg%3e"},199:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 20 20%27%3e%3cpath fill=%27none%27 stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%273%27 d=%27m6 10 3 3 6-6%27/%3e%3c/svg%3e"},217:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%280, 0, 0, 0.55%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e"},956:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%28255, 255, 255, 0.55%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e"},122:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%23198754%27 d=%27M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3e%3c/svg%3e"},116:(t,e,r)=>{"use strict";t.exports=r.p+"defcfd325de59a97ed78.png"},61:(t,e,r)=>{var n=r(698).default;function o(){"use strict";t.exports=o=function(){return e},t.exports.__esModule=!0,t.exports.default=t.exports;var e={},r=Object.prototype,i=r.hasOwnProperty,a=Object.defineProperty||function(t,e,r){t[e]=r.value},s="function"==typeof Symbol?Symbol:{},l=s.iterator||"@@iterator",d=s.asyncIterator||"@@asyncIterator",c=s.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function p(t,e,r,n){var o=e&&e.prototype instanceof h?e:h,i=Object.create(o.prototype),s=new M(n||[]);return a(i,"_invoke",{value:S(t,r,s)}),i}function m(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=p;var f={};function h(){}function b(){}function g(){}var v={};u(v,l,(function(){return this}));var x=Object.getPrototypeOf,y=x&&x(x(P([])));y&&y!==r&&i.call(y,l)&&(v=y);var w=g.prototype=h.prototype=Object.create(v);function k(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function _(t,e){function r(o,a,s,l){var d=m(t[o],t,a);if("throw"!==d.type){var c=d.arg,u=c.value;return u&&"object"==n(u)&&i.call(u,"__await")?e.resolve(u.__await).then((function(t){r("next",t,s,l)}),(function(t){r("throw",t,s,l)})):e.resolve(u).then((function(t){c.value=t,s(c)}),(function(t){return r("throw",t,s,l)}))}l(d.arg)}var o;a(this,"_invoke",{value:function(t,n){function i(){return new e((function(e,o){r(t,n,e,o)}))}return o=o?o.then(i,i):i()}})}function S(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return{value:void 0,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=E(a,r);if(s){if(s===f)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var l=m(t,e,r);if("normal"===l.type){if(n=r.done?"completed":"suspendedYield",l.arg===f)continue;return{value:l.arg,done:r.done}}"throw"===l.type&&(n="completed",r.method="throw",r.arg=l.arg)}}}function E(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,E(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),f;var o=m(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,f;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,f):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,f)}function C(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function z(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function M(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(C,this),this.reset(!0)}function P(t){if(t){var e=t[l];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var r=-1,n=function e(){for(;++r<t.length;)if(i.call(t,r))return e.value=t[r],e.done=!1,e;return e.value=void 0,e.done=!0,e};return n.next=n}}return{next:O}}function O(){return{value:void 0,done:!0}}return b.prototype=g,a(w,"constructor",{value:g,configurable:!0}),a(g,"constructor",{value:b,configurable:!0}),b.displayName=u(g,c,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,g):(t.__proto__=g,u(t,c,"GeneratorFunction")),t.prototype=Object.create(w),t},e.awrap=function(t){return{__await:t}},k(_.prototype),u(_.prototype,d,(function(){return this})),e.AsyncIterator=_,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new _(p(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},k(w),u(w,c,"Generator"),u(w,l,(function(){return this})),u(w,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=P,M.prototype={constructor:M,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(z),!t)for(var e in this)"t"===e.charAt(0)&&i.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function r(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n],a=o.completion;if("root"===o.tryLoc)return r("end");if(o.tryLoc<=this.prev){var s=i.call(o,"catchLoc"),l=i.call(o,"finallyLoc");if(s&&l){if(this.prev<o.catchLoc)return r(o.catchLoc,!0);if(this.prev<o.finallyLoc)return r(o.finallyLoc)}else if(s){if(this.prev<o.catchLoc)return r(o.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return r(o.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&i.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var o=n;break}}o&&("break"===t||"continue"===t)&&o.tryLoc<=e&&e<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=t,a.arg=e,o?(this.method="next",this.next=o.finallyLoc,f):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),f},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),z(r),f}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;z(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:P(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),f}},e}t.exports=o,t.exports.__esModule=!0,t.exports.default=t.exports},698:t=>{function e(r){return t.exports=e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},t.exports.__esModule=!0,t.exports.default=t.exports,e(r)}t.exports=e,t.exports.__esModule=!0,t.exports.default=t.exports},687:(t,e,r)=>{var n=r(61)();t.exports=n;try{regeneratorRuntime=n}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=n:Function("r","regeneratorRuntime = r")(n)}}},n={};function o(t){var e=n[t];if(void 0!==e)return e.exports;var i=n[t]={id:t,exports:{}};return r[t](i,i.exports,o),i.exports}o.m=r,o.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return o.d(e,{a:e}),e},e=Object.getPrototypeOf?t=>Object.getPrototypeOf(t):t=>t.__proto__,o.t=function(r,n){if(1&n&&(r=this(r)),8&n)return r;if("object"==typeof r&&r){if(4&n&&r.__esModule)return r;if(16&n&&"function"==typeof r.then)return r}var i=Object.create(null);o.r(i);var a={};t=t||[null,e({}),e([]),e(e)];for(var s=2&n&&r;"object"==typeof s&&!~t.indexOf(s);s=e(s))Object.getOwnPropertyNames(s).forEach((t=>a[t]=()=>r[t]));return a.default=()=>r,o.d(i,a),i},o.d=(t,e)=>{for(var r in e)o.o(e,r)&&!o.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),o.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),o.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},(()=>{var t;o.g.importScripts&&(t=o.g.location+"");var e=o.g.document;if(!t&&e&&(e.currentScript&&(t=e.currentScript.src),!t)){var r=e.getElementsByTagName("script");r.length&&(t=r[r.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),o.p=t})(),o.b=document.baseURI||self.location.href,o.nc=void 0,(()=>{"use strict";var t,e=o(294),r=o.t(e,2),n=o(745);function i(){return i=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t},i.apply(this,arguments)}!function(t){t.Pop="POP",t.Push="PUSH",t.Replace="REPLACE"}(t||(t={}));const a="popstate";function s(t,e){if(!1===t||null==t)throw new Error(e)}function l(t){return{usr:t.state,key:t.key}}function d(t,e,r,n){return void 0===r&&(r=null),i({pathname:"string"==typeof t?t:t.pathname,search:"",hash:""},"string"==typeof e?u(e):e,{state:r,key:e&&e.key||n||Math.random().toString(36).substr(2,8)})}function c(t){let{pathname:e="/",search:r="",hash:n=""}=t;return r&&"?"!==r&&(e+="?"===r.charAt(0)?r:"?"+r),n&&"#"!==n&&(e+="#"===n.charAt(0)?n:"#"+n),e}function u(t){let e={};if(t){let r=t.indexOf("#");r>=0&&(e.hash=t.substr(r),t=t.substr(0,r));let n=t.indexOf("?");n>=0&&(e.search=t.substr(n),t=t.substr(0,n)),t&&(e.pathname=t)}return e}function p(t){let e="undefined"!=typeof window&&void 0!==window.location&&"null"!==window.location.origin?window.location.origin:window.location.href,r="string"==typeof t?t:c(t);return s(e,"No window.location.(origin|href) available to create URL for href: "+r),new URL(r,e)}var m;function f(t,e,r){void 0===r&&(r="/");let n=_(("string"==typeof e?u(e):e).pathname||"/",r);if(null==n)return null;let o=h(t);!function(t){t.sort(((t,e)=>t.score!==e.score?e.score-t.score:function(t,e){return t.length===e.length&&t.slice(0,-1).every(((t,r)=>t===e[r]))?t[t.length-1]-e[e.length-1]:0}(t.routesMeta.map((t=>t.childrenIndex)),e.routesMeta.map((t=>t.childrenIndex)))))}(o);let i=null;for(let t=0;null==i&&t<o.length;++t)i=y(o[t],k(n));return i}function h(t,e,r,n){void 0===e&&(e=[]),void 0===r&&(r=[]),void 0===n&&(n="");let o=(t,o,i)=>{let a={relativePath:void 0===i?t.path||"":i,caseSensitive:!0===t.caseSensitive,childrenIndex:o,route:t};a.relativePath.startsWith("/")&&(s(a.relativePath.startsWith(n),'Absolute route path "'+a.relativePath+'" nested under path "'+n+'" is not valid. An absolute child route path must start with the combined path of all its parent routes.'),a.relativePath=a.relativePath.slice(n.length));let l=M([n,a.relativePath]),d=r.concat(a);t.children&&t.children.length>0&&(s(!0!==t.index,'Index routes must not have child routes. Please remove all child routes from route path "'+l+'".'),h(t.children,e,d,l)),(null!=t.path||t.index)&&e.push({path:l,score:x(l,t.index),routesMeta:d})};return t.forEach(((t,e)=>{var r;if(""!==t.path&&null!=(r=t.path)&&r.includes("?"))for(let r of b(t.path))o(t,e,r);else o(t,e)})),e}function b(t){let e=t.split("/");if(0===e.length)return[];let[r,...n]=e,o=r.endsWith("?"),i=r.replace(/\?$/,"");if(0===n.length)return o?[i,""]:[i];let a=b(n.join("/")),s=[];return s.push(...a.map((t=>""===t?i:[i,t].join("/")))),o&&s.push(...a),s.map((e=>t.startsWith("/")&&""===e?"/":e))}!function(t){t.data="data",t.deferred="deferred",t.redirect="redirect",t.error="error"}(m||(m={}));const g=/^:\w+$/,v=t=>"*"===t;function x(t,e){let r=t.split("/"),n=r.length;return r.some(v)&&(n+=-2),e&&(n+=2),r.filter((t=>!v(t))).reduce(((t,e)=>t+(g.test(e)?3:""===e?1:10)),n)}function y(t,e){let{routesMeta:r}=t,n={},o="/",i=[];for(let t=0;t<r.length;++t){let a=r[t],s=t===r.length-1,l="/"===o?e:e.slice(o.length)||"/",d=w({path:a.relativePath,caseSensitive:a.caseSensitive,end:s},l);if(!d)return null;Object.assign(n,d.params);let c=a.route;i.push({params:n,pathname:M([o,d.pathname]),pathnameBase:P(M([o,d.pathnameBase])),route:c}),"/"!==d.pathnameBase&&(o=M([o,d.pathnameBase]))}return i}function w(t,e){"string"==typeof t&&(t={path:t,caseSensitive:!1,end:!0});let[r,n]=function(t,e,r){void 0===e&&(e=!1),void 0===r&&(r=!0),S("*"===t||!t.endsWith("*")||t.endsWith("/*"),'Route path "'+t+'" will be treated as if it were "'+t.replace(/\*$/,"/*")+'" because the `*` character must always follow a `/` in the pattern. To get rid of this warning, please change the route path to "'+t.replace(/\*$/,"/*")+'".');let n=[],o="^"+t.replace(/\/*\*?$/,"").replace(/^\/*/,"/").replace(/[\\.*+^$?{}|()[\]]/g,"\\$&").replace(/\/:(\w+)/g,((t,e)=>(n.push(e),"/([^\\/]+)")));return t.endsWith("*")?(n.push("*"),o+="*"===t||"/*"===t?"(.*)$":"(?:\\/(.+)|\\/*)$"):r?o+="\\/*$":""!==t&&"/"!==t&&(o+="(?:(?=\\/|$))"),[new RegExp(o,e?void 0:"i"),n]}(t.path,t.caseSensitive,t.end),o=e.match(r);if(!o)return null;let i=o[0],a=i.replace(/(.)\/+$/,"$1"),s=o.slice(1);return{params:n.reduce(((t,e,r)=>{if("*"===e){let t=s[r]||"";a=i.slice(0,i.length-t.length).replace(/(.)\/+$/,"$1")}return t[e]=function(t,e){try{return decodeURIComponent(t)}catch(r){return S(!1,'The value for the URL param "'+e+'" will not be decoded because the string "'+t+'" is a malformed URL segment. This is probably due to a bad percent encoding ('+r+")."),t}}(s[r]||"",e),t}),{}),pathname:i,pathnameBase:a,pattern:t}}function k(t){try{return decodeURI(t)}catch(e){return S(!1,'The URL path "'+t+'" could not be decoded because it is is a malformed URL segment. This is probably due to a bad percent encoding ('+e+")."),t}}function _(t,e){if("/"===e)return t;if(!t.toLowerCase().startsWith(e.toLowerCase()))return null;let r=e.endsWith("/")?e.length-1:e.length,n=t.charAt(r);return n&&"/"!==n?null:t.slice(r)||"/"}function S(t,e){if(!t){"undefined"!=typeof console&&console.warn(e);try{throw new Error(e)}catch(t){}}}function E(t,e,r,n){return"Cannot include a '"+t+"' character in a manually specified `to."+e+"` field ["+JSON.stringify(n)+"]. Please separate it out to the `to."+r+'` field. Alternatively you may provide the full path as a string in <Link to="..."> and the router will parse it for you.'}function C(t){return t.filter(((t,e)=>0===e||t.route.path&&t.route.path.length>0))}function z(t,e,r,n){let o;void 0===n&&(n=!1),"string"==typeof t?o=u(t):(o=i({},t),s(!o.pathname||!o.pathname.includes("?"),E("?","pathname","search",o)),s(!o.pathname||!o.pathname.includes("#"),E("#","pathname","hash",o)),s(!o.search||!o.search.includes("#"),E("#","search","hash",o)));let a,l=""===t||""===o.pathname,d=l?"/":o.pathname;if(n||null==d)a=r;else{let t=e.length-1;if(d.startsWith("..")){let e=d.split("/");for(;".."===e[0];)e.shift(),t-=1;o.pathname=e.join("/")}a=t>=0?e[t]:"/"}let c=function(t,e){void 0===e&&(e="/");let{pathname:r,search:n="",hash:o=""}="string"==typeof t?u(t):t,i=r?r.startsWith("/")?r:function(t,e){let r=e.replace(/\/+$/,"").split("/");return t.split("/").forEach((t=>{".."===t?r.length>1&&r.pop():"."!==t&&r.push(t)})),r.length>1?r.join("/"):"/"}(r,e):e;return{pathname:i,search:O(n),hash:T(o)}}(o,a),p=d&&"/"!==d&&d.endsWith("/"),m=(l||"."===d)&&r.endsWith("/");return c.pathname.endsWith("/")||!p&&!m||(c.pathname+="/"),c}const M=t=>t.join("/").replace(/\/\/+/g,"/"),P=t=>t.replace(/\/+$/,"").replace(/^\/*/,"/"),O=t=>t&&"?"!==t?t.startsWith("?")?t:"?"+t:"",T=t=>t&&"#"!==t?t.startsWith("#")?t:"#"+t:"";class L extends Error{}class R{constructor(t,e,r,n){void 0===n&&(n=!1),this.status=t,this.statusText=e||"",this.internal=n,r instanceof Error?(this.data=r.toString(),this.error=r):this.data=r}}function N(t){return t instanceof R}const D=["post","put","patch","delete"],I=(new Set(D),["get",...D]);function A(){return A=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t},A.apply(this,arguments)}new Set(I),new Set([301,302,303,307,308]),new Set([307,308]),"undefined"!=typeof window&&void 0!==window.document&&window.document.createElement;"function"==typeof Object.is&&Object.is;const{useState:j,useEffect:F,useLayoutEffect:B,useDebugValue:U}=r;"undefined"==typeof window||void 0===window.document||window.document.createElement,r.useSyncExternalStore;const H=e.createContext(null),V=e.createContext(null),$=e.createContext(null),W=e.createContext(null),Y=e.createContext(null),K=e.createContext({outlet:null,matches:[]}),Q=e.createContext(null);function X(){return null!=e.useContext(Y)}function q(){return X()||s(!1),e.useContext(Y).location}function G(t,r){let{relative:n}=void 0===r?{}:r,{matches:o}=e.useContext(K),{pathname:i}=q(),a=JSON.stringify(C(o).map((t=>t.pathnameBase)));return e.useMemo((()=>z(t,JSON.parse(a),i,"path"===n)),[t,a,i,n])}function Z(){let t=function(){var t;let r=e.useContext(Q),n=function(t){let r=e.useContext($);return r||s(!1),r}(rt.UseRouteError),o=e.useContext(K),i=o.matches[o.matches.length-1];return r||(o||s(!1),!i.route.id&&s(!1),null==(t=n.errors)?void 0:t[i.route.id])}(),r=N(t)?t.status+" "+t.statusText:t instanceof Error?t.message:JSON.stringify(t),n=t instanceof Error?t.stack:null,o="rgba(200,200,200, 0.5)",i={padding:"0.5rem",backgroundColor:o},a={padding:"2px 4px",backgroundColor:o};return e.createElement(e.Fragment,null,e.createElement("h2",null,"Unhandled Thrown Error!"),e.createElement("h3",{style:{fontStyle:"italic"}},r),n?e.createElement("pre",{style:i},n):null,e.createElement("p",null,"💿 Hey developer 👋"),e.createElement("p",null,"You can provide a way better UX than this when your app throws errors by providing your own ",e.createElement("code",{style:a},"errorElement")," props on ",e.createElement("code",{style:a},"<Route>")))}class J extends e.Component{constructor(t){super(t),this.state={location:t.location,error:t.error}}static getDerivedStateFromError(t){return{error:t}}static getDerivedStateFromProps(t,e){return e.location!==t.location?{error:t.error,location:t.location}:{error:t.error||e.error,location:e.location}}componentDidCatch(t,e){console.error("React Router caught the following error during render",t,e)}render(){return this.state.error?e.createElement(Q.Provider,{value:this.state.error,children:this.props.component}):this.props.children}}function tt(t){let{routeContext:r,match:n,children:o}=t,i=e.useContext(H);return i&&n.route.errorElement&&(i._deepestRenderedBoundaryId=n.route.id),e.createElement(K.Provider,{value:r},o)}var et,rt,nt;function ot(t){s(!1)}function it(r){let{basename:n="/",children:o=null,location:i,navigationType:a=t.Pop,navigator:l,static:d=!1}=r;X()&&s(!1);let c=n.replace(/^\/*/,"/"),p=e.useMemo((()=>({basename:c,navigator:l,static:d})),[c,l,d]);"string"==typeof i&&(i=u(i));let{pathname:m="/",search:f="",hash:h="",state:b=null,key:g="default"}=i,v=e.useMemo((()=>{let t=_(m,c);return null==t?null:{pathname:t,search:f,hash:h,state:b,key:g}}),[c,m,f,h,b,g]);return null==v?null:e.createElement(W.Provider,{value:p},e.createElement(Y.Provider,{children:o,value:{location:v,navigationType:a}}))}function at(r){let{children:n,location:o}=r,i=e.useContext(V);return function(r,n){X()||s(!1);let{navigator:o}=e.useContext(W),i=e.useContext($),{matches:a}=e.useContext(K),l=a[a.length-1],d=l?l.params:{},c=(l&&l.pathname,l?l.pathnameBase:"/");l&&l.route;let p,m=q();if(n){var h;let t="string"==typeof n?u(n):n;"/"===c||(null==(h=t.pathname)?void 0:h.startsWith(c))||s(!1),p=t}else p=m;let b=p.pathname||"/",g=f(r,{pathname:"/"===c?b:b.slice(c.length)||"/"}),v=function(t,r,n){if(void 0===r&&(r=[]),null==t){if(null==n||!n.errors)return null;t=n.matches}let o=t,i=null==n?void 0:n.errors;if(null!=i){let t=o.findIndex((t=>t.route.id&&(null==i?void 0:i[t.route.id])));t>=0||s(!1),o=o.slice(0,Math.min(o.length,t+1))}return o.reduceRight(((t,a,s)=>{let l=a.route.id?null==i?void 0:i[a.route.id]:null,d=n?a.route.errorElement||e.createElement(Z,null):null,c=()=>e.createElement(tt,{match:a,routeContext:{outlet:t,matches:r.concat(o.slice(0,s+1))}},l?d:void 0!==a.route.element?a.route.element:t);return n&&(a.route.errorElement||0===s)?e.createElement(J,{location:n.location,component:d,error:l,children:c()}):c()}),null)}(g&&g.map((t=>Object.assign({},t,{params:Object.assign({},d,t.params),pathname:M([c,o.encodeLocation?o.encodeLocation(t.pathname).pathname:t.pathname]),pathnameBase:"/"===t.pathnameBase?c:M([c,o.encodeLocation?o.encodeLocation(t.pathnameBase).pathname:t.pathnameBase])}))),a,i||void 0);return n&&v?e.createElement(Y.Provider,{value:{location:A({pathname:"/",search:"",hash:"",state:null,key:"default"},p),navigationType:t.Pop}},v):v}(i&&!n?i.router.routes:lt(n),o)}!function(t){t.UseRevalidator="useRevalidator"}(et||(et={})),function(t){t.UseLoaderData="useLoaderData",t.UseActionData="useActionData",t.UseRouteError="useRouteError",t.UseNavigation="useNavigation",t.UseRouteLoaderData="useRouteLoaderData",t.UseMatches="useMatches",t.UseRevalidator="useRevalidator"}(rt||(rt={})),function(t){t[t.pending=0]="pending",t[t.success=1]="success",t[t.error=2]="error"}(nt||(nt={})),new Promise((()=>{}));class st extends e.Component{constructor(t){super(t),this.state={error:null}}static getDerivedStateFromError(t){return{error:t}}componentDidCatch(t,e){console.error("<Await> caught the following error during render",t,e)}render(){let{children:t,errorElement:e,resolve:r}=this.props,n=null,o=nt.pending;if(r instanceof Promise)if(this.state.error){nt.error;let t=this.state.error;Promise.reject().catch((()=>{})),Object.defineProperty(n,"_tracked",{get:()=>!0}),Object.defineProperty(n,"_error",{get:()=>t})}else r._tracked?void 0!==n._error?nt.error:void 0!==n._data?nt.success:nt.pending:(nt.pending,Object.defineProperty(r,"_tracked",{get:()=>!0}),r.then((t=>Object.defineProperty(r,"_data",{get:()=>t})),(t=>Object.defineProperty(r,"_error",{get:()=>t}))));else nt.success,Promise.resolve(),Object.defineProperty(n,"_tracked",{get:()=>!0}),Object.defineProperty(n,"_data",{get:()=>r});if(o===nt.error&&n._error instanceof AbortedDeferredError)throw neverSettledPromise;if(o===nt.error&&!e)throw n._error;if(o===nt.error)return React.createElement(AwaitContext.Provider,{value:n,children:e});if(o===nt.success)return React.createElement(AwaitContext.Provider,{value:n,children:t});throw n}}function lt(t,r){void 0===r&&(r=[]);let n=[];return e.Children.forEach(t,((t,o)=>{if(!e.isValidElement(t))return;if(t.type===e.Fragment)return void n.push.apply(n,lt(t.props.children,r));t.type!==ot&&s(!1),t.props.index&&t.props.children&&s(!1);let i=[...r,o],a={id:t.props.id||i.join("-"),caseSensitive:t.props.caseSensitive,element:t.props.element,index:t.props.index,path:t.props.path,loader:t.props.loader,action:t.props.action,errorElement:t.props.errorElement,hasErrorBoundary:null!=t.props.errorElement,shouldRevalidate:t.props.shouldRevalidate,handle:t.props.handle};t.props.children&&(a.children=lt(t.props.children,i)),n.push(a)})),n}function dt(){return dt=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t},dt.apply(this,arguments)}const ct=["onClick","relative","reloadDocument","replace","state","target","to","preventScrollReset"];function ut(r){let{basename:n,children:o,window:i}=r,s=e.useRef();null==s.current&&(s.current=function(e){return void 0===e&&(e={}),function(e,r,n,o){void 0===o&&(o={});let{window:i=document.defaultView,v5Compat:s=!1}=o,u=i.history,m=t.Pop,f=null;function h(){m=t.Pop,f&&f({action:m,location:b.location})}let b={get action(){return m},get location(){return e(i,u)},listen(t){if(f)throw new Error("A history only accepts one active listener");return i.addEventListener(a,h),f=t,()=>{i.removeEventListener(a,h),f=null}},createHref:t=>r(i,t),encodeLocation(t){let e=p("string"==typeof t?t:c(t));return{pathname:e.pathname,search:e.search,hash:e.hash}},push:function(e,r){m=t.Push;let o=d(b.location,e,r);n&&n(o,e);let a=l(o),c=b.createHref(o);try{u.pushState(a,"",c)}catch(t){i.location.assign(c)}s&&f&&f({action:m,location:b.location})},replace:function(e,r){m=t.Replace;let o=d(b.location,e,r);n&&n(o,e);let i=l(o),a=b.createHref(o);u.replaceState(i,"",a),s&&f&&f({action:m,location:b.location})},go:t=>u.go(t)};return b}((function(t,e){let{pathname:r,search:n,hash:o}=t.location;return d("",{pathname:r,search:n,hash:o},e.state&&e.state.usr||null,e.state&&e.state.key||"default")}),(function(t,e){return"string"==typeof e?e:c(e)}),null,e)}({window:i,v5Compat:!0}));let u=s.current,[m,f]=e.useState({action:u.action,location:u.location});return e.useLayoutEffect((()=>u.listen(f)),[u]),e.createElement(it,{basename:n,children:o,location:m.location,navigationType:m.action,navigator:u})}const pt=e.forwardRef((function(t,r){let{onClick:n,relative:o,reloadDocument:i,replace:a,state:l,target:d,to:u,preventScrollReset:p}=t,m=function(t,e){if(null==t)return{};var r,n,o={},i=Object.keys(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||(o[r]=t[r]);return o}(t,ct),f=function(t,r){let{relative:n}=void 0===r?{}:r;X()||s(!1);let{basename:o,navigator:i}=e.useContext(W),{hash:a,pathname:l,search:d}=G(t,{relative:n}),c=l;return"/"!==o&&(c="/"===l?o:M([o,l])),i.createHref({pathname:c,search:d,hash:a})}(u,{relative:o}),h=function(t,r){let{target:n,replace:o,state:i,preventScrollReset:a,relative:l}=void 0===r?{}:r,d=function(){X()||s(!1);let{basename:t,navigator:r}=e.useContext(W),{matches:n}=e.useContext(K),{pathname:o}=q(),i=JSON.stringify(C(n).map((t=>t.pathnameBase))),a=e.useRef(!1);e.useEffect((()=>{a.current=!0}));let l=e.useCallback((function(e,n){if(void 0===n&&(n={}),!a.current)return;if("number"==typeof e)return void r.go(e);let s=z(e,JSON.parse(i),o,"path"===n.relative);"/"!==t&&(s.pathname="/"===s.pathname?t:M([t,s.pathname])),(n.replace?r.replace:r.push)(s,n.state,n)}),[t,r,i,o]);return l}(),u=q(),p=G(t,{relative:l});return e.useCallback((e=>{if(function(t,e){return!(0!==t.button||e&&"_self"!==e||function(t){return!!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)}(t))}(e,n)){e.preventDefault();let r=void 0!==o?o:c(u)===c(p);d(t,{replace:r,state:i,preventScrollReset:a,relative:l})}}),[u,d,p,o,i,n,t,a,l])}(u,{replace:a,state:l,target:d,preventScrollReset:p,relative:o});return e.createElement("a",dt({},m,{href:f,onClick:i?n:function(t){n&&n(t),t.defaultPrevented||h(t)},ref:r,target:d}))}));var mt,ft;(function(t){t.UseScrollRestoration="useScrollRestoration",t.UseSubmitImpl="useSubmitImpl",t.UseFetcher="useFetcher"})(mt||(mt={})),function(t){t.UseFetchers="useFetchers",t.UseScrollRestoration="useScrollRestoration"}(ft||(ft={}));var ht=o(184),bt=o.n(ht),gt=o(893);const vt=e.createContext({prefixes:{},breakpoints:["xxl","xl","lg","md","sm","xs"],minBreakpoint:"xs"}),{Consumer:xt,Provider:yt}=vt;function wt(t,r){const{prefixes:n}=(0,e.useContext)(vt);return t||n[r]||r}function kt(){const{breakpoints:t}=(0,e.useContext)(vt);return t}function _t(){const{minBreakpoint:t}=(0,e.useContext)(vt);return t}const St=e.forwardRef((({bsPrefix:t,fluid:e,as:r="div",className:n,...o},i)=>{const a=wt(t,"container"),s="string"==typeof e?`-${e}`:"-fluid";return(0,gt.jsx)(r,{ref:i,...o,className:bt()(n,e?`${a}${s}`:a)})}));St.displayName="Container",St.defaultProps={fluid:!1};const Et=St,Ct=e.forwardRef((({bsPrefix:t,className:e,as:r="div",...n},o)=>{const i=wt(t,"row"),a=kt(),s=_t(),l=`${i}-cols`,d=[];return a.forEach((t=>{const e=n[t];let r;delete n[t],null!=e&&"object"==typeof e?({cols:r}=e):r=e;const o=t!==s?`-${t}`:"";null!=r&&d.push(`${l}${o}-${r}`)})),(0,gt.jsx)(r,{ref:o,...n,className:bt()(e,i,...d)})}));Ct.displayName="Row";const zt=Ct,Mt=e.forwardRef(((t,e)=>{const[{className:r,...n},{as:o="div",bsPrefix:i,spans:a}]=function({as:t,bsPrefix:e,className:r,...n}){e=wt(e,"col");const o=kt(),i=_t(),a=[],s=[];return o.forEach((t=>{const r=n[t];let o,l,d;delete n[t],"object"==typeof r&&null!=r?({span:o,offset:l,order:d}=r):o=r;const c=t!==i?`-${t}`:"";o&&a.push(!0===o?`${e}${c}`:`${e}${c}-${o}`),null!=d&&s.push(`order${c}-${d}`),null!=l&&s.push(`offset${c}-${l}`)})),[{...n,className:bt()(r,...a,...s)},{as:t,bsPrefix:e,spans:a}]}(t);return(0,gt.jsx)(o,{...n,ref:e,className:bt()(r,!a.length&&i)})}));Mt.displayName="Col";const Pt=Mt;var Ot=/-(.)/g;const Tt=t=>{return t[0].toUpperCase()+(e=t,e.replace(Ot,(function(t,e){return e.toUpperCase()}))).slice(1);var e};function Lt(t,{displayName:r=Tt(t),Component:n,defaultProps:o}={}){const i=e.forwardRef((({className:e,bsPrefix:r,as:o=n||"div",...i},a)=>{const s=wt(r,t);return(0,gt.jsx)(o,{ref:a,className:bt()(e,s),...i})}));return i.defaultProps=o,i.displayName=r,i}const Rt=t=>e.forwardRef(((e,r)=>(0,gt.jsx)("div",{...e,ref:r,className:bt()(e.className,t)}))),Nt=e.forwardRef((({bsPrefix:t,className:e,variant:r,as:n="img",...o},i)=>{const a=wt(t,"card-img");return(0,gt.jsx)(n,{ref:i,className:bt()(r?`${a}-${r}`:a,e),...o})}));Nt.displayName="CardImg";const Dt=Nt,It=e.createContext(null);It.displayName="CardHeaderContext";const At=It,jt=e.forwardRef((({bsPrefix:t,className:r,as:n="div",...o},i)=>{const a=wt(t,"card-header"),s=(0,e.useMemo)((()=>({cardHeaderBsPrefix:a})),[a]);return(0,gt.jsx)(At.Provider,{value:s,children:(0,gt.jsx)(n,{ref:i,...o,className:bt()(r,a)})})}));jt.displayName="CardHeader";const Ft=jt,Bt=Rt("h5"),Ut=Rt("h6"),Ht=Lt("card-body"),Vt=Lt("card-title",{Component:Bt}),$t=Lt("card-subtitle",{Component:Ut}),Wt=Lt("card-link",{Component:"a"}),Yt=Lt("card-text",{Component:"p"}),Kt=Lt("card-footer"),Qt=Lt("card-img-overlay"),Xt=e.forwardRef((({bsPrefix:t,className:e,bg:r,text:n,border:o,body:i,children:a,as:s="div",...l},d)=>{const c=wt(t,"card");return(0,gt.jsx)(s,{ref:d,...l,className:bt()(e,c,r&&`bg-${r}`,n&&`text-${n}`,o&&`border-${o}`),children:i?(0,gt.jsx)(Ht,{children:a}):a})}));Xt.displayName="Card",Xt.defaultProps={body:!1};const qt=Object.assign(Xt,{Img:Dt,Title:Vt,Subtitle:$t,Body:Ht,Link:Wt,Text:Yt,Header:Ft,Footer:Kt,ImgOverlay:Qt}),Gt=o.p+"images/section_data_large.png",Zt=o.p+"images/section_reports_large.png",Jt=function(){return e.createElement(Et,{className:"grey-container"},e.createElement(zt,null,e.createElement("div",{className:"center-text max-width-100vw"},e.createElement("h1",{className:"geant-header"},"THE GÉANT COMPENDIUM OF NRENS"),e.createElement("br",null),e.createElement("p",{className:"wordwrap"},"What the Compendium is, the history of it, the aim, what you can find in it etc etc etc etc Lorem ipsum dolor sit amet, consec tetur adi piscing elit, sed do eiusmod tempor inc dolor sit amet, consec tetur adi piscing elit, sed do eiusmod tempor inc"))),e.createElement(zt,null,e.createElement(Pt,null,e.createElement(Et,{style:{backgroundColor:"white"},className:"rounded-border"},e.createElement(zt,{className:"justify-content-md-center"},e.createElement(Pt,{align:"center"},e.createElement(qt,{border:"light",style:{width:"18rem"}},e.createElement(pt,{to:"/data"},e.createElement(qt.Img,{src:Gt}),e.createElement(qt.Body,null,e.createElement(qt.Title,null,"Compendium Data"),e.createElement(qt.Text,null,"The results of the Compendium Surveys lled in annually by NRENs. Questions cover many topics: Network, Connected Users, Services, Standards & Policies"))))),e.createElement(Pt,{align:"center"},e.createElement(qt,{border:"light",style:{width:"18rem"}},e.createElement(qt.Img,{src:Zt}),e.createElement(qt.Body,null,e.createElement(qt.Title,null,"Compendium Reports"),e.createElement(qt.Text,null,"A GÉANT Compendium Report is published annually, drawing on data from the Compendium Survey lled in by NRENs, complemented by information from other surveys")))))))))},te=o.p+"images/geant_logo_f2020_new.svg",ee=function(){return e.createElement("div",{className:"external-page-nav-bar"},e.createElement(Et,null,e.createElement(zt,null,e.createElement(Pt,null,e.createElement("img",{src:te}),e.createElement("ul",null,e.createElement("li",null,e.createElement("a",null,"NETWORK")),e.createElement("li",null,e.createElement("a",null,"SERVICES")),e.createElement("li",null,e.createElement("a",null,"COMMUNITY")),e.createElement("li",null,e.createElement("a",null,"TNC")),e.createElement("li",null,e.createElement("a",null,"PROJECTS")),e.createElement("li",null,e.createElement("a",null,"CONNECT")),e.createElement("li",null,e.createElement("a",null,"IMPACT")),e.createElement("li",null,e.createElement("a",null,"CAREERS")),e.createElement("li",null,e.createElement("a",null,"ABOUT")),e.createElement("li",null,e.createElement("a",null,"NEWS")),e.createElement("li",null,e.createElement("a",null,"RESOURCES")))))))},re=function(){return e.createElement("div",null,e.createElement("h1",null,"About Page"))};function ne(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function oe(t,e){if(t){if("string"==typeof t)return ne(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?ne(t,e):void 0}}function ie(t){return function(t){if(Array.isArray(t))return ne(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||oe(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ae(t,e,r,n,o,i,a){try{var s=t[i](a),l=s.value}catch(t){return void r(t)}s.done?e(l):Promise.resolve(l).then(n,o)}function se(t){return function(){var e=this,r=arguments;return new Promise((function(n,o){var i=t.apply(e,r);function a(t){ae(i,n,o,a,s,"next",t)}function s(t){ae(i,n,o,a,s,"throw",t)}a(void 0)}))}}function le(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,s=[],l=!0,d=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==e);l=!0);}catch(t){d=!0,o=t}finally{try{if(!l&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(d)throw o}}return s}}(t,e)||oe(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var de=o(687),ce=o.n(de);function ue(){return ue=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t},ue.apply(this,arguments)}function pe(t,e){if(null==t)return{};var r,n,o={},i=Object.keys(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||(o[r]=t[r]);return o}function me(t){return"default"+t.charAt(0).toUpperCase()+t.substr(1)}function fe(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,e);if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t,"string");return"symbol"==typeof e?e:String(e)}function he(t,r){return Object.keys(r).reduce((function(n,o){var i,a=n,s=a[me(o)],l=a[o],d=pe(a,[me(o),o].map(fe)),c=r[o],u=function(t,r,n){var o=(0,e.useRef)(void 0!==t),i=(0,e.useState)(r),a=i[0],s=i[1],l=void 0!==t,d=o.current;return o.current=l,!l&&d&&a!==r&&s(r),[l?t:a,(0,e.useCallback)((function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),o=1;o<e;o++)r[o-1]=arguments[o];n&&n.apply(void 0,[t].concat(r)),s(t)}),[n])]}(l,s,t[c]),p=u[0],m=u[1];return ue({},d,((i={})[o]=p,i[c]=m,i))}),t)}o(143);var be=/([A-Z])/g,ge=/^ms-/;function ve(t){return function(t){return t.replace(be,"-$1").toLowerCase()}(t).replace(ge,"-ms-")}var xe=/^((translate|rotate|scale)(X|Y|Z|3d)?|matrix(3d)?|perspective|skew(X|Y)?)$/i;const ye=function(t,e){var r="",n="";if("string"==typeof e)return t.style.getPropertyValue(ve(e))||function(t,e){return function(t){var e=function(t){return t&&t.ownerDocument||document}(t);return e&&e.defaultView||window}(t).getComputedStyle(t,void 0)}(t).getPropertyValue(ve(e));Object.keys(e).forEach((function(o){var i=e[o];i||0===i?function(t){return!(!t||!xe.test(t))}(o)?n+=o+"("+i+") ":r+=ve(o)+": "+i+";":t.style.removeProperty(ve(o))})),n&&(r+="transform: "+n+";"),t.style.cssText+=";"+r};function we(t,e){return we=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},we(t,e)}var ke=o(935);const _e=e.createContext(null);var Se="unmounted",Ee="exited",Ce="entering",ze="entered",Me="exiting",Pe=function(t){var r,n;function o(e,r){var n;n=t.call(this,e,r)||this;var o,i=r&&!r.isMounting?e.enter:e.appear;return n.appearStatus=null,e.in?i?(o=Ee,n.appearStatus=Ce):o=ze:o=e.unmountOnExit||e.mountOnEnter?Se:Ee,n.state={status:o},n.nextCallback=null,n}n=t,(r=o).prototype=Object.create(n.prototype),r.prototype.constructor=r,we(r,n),o.getDerivedStateFromProps=function(t,e){return t.in&&e.status===Se?{status:Ee}:null};var i=o.prototype;return i.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},i.componentDidUpdate=function(t){var e=null;if(t!==this.props){var r=this.state.status;this.props.in?r!==Ce&&r!==ze&&(e=Ce):r!==Ce&&r!==ze||(e=Me)}this.updateStatus(!1,e)},i.componentWillUnmount=function(){this.cancelNextCallback()},i.getTimeouts=function(){var t,e,r,n=this.props.timeout;return t=e=r=n,null!=n&&"number"!=typeof n&&(t=n.exit,e=n.enter,r=void 0!==n.appear?n.appear:e),{exit:t,enter:e,appear:r}},i.updateStatus=function(t,e){if(void 0===t&&(t=!1),null!==e)if(this.cancelNextCallback(),e===Ce){if(this.props.unmountOnExit||this.props.mountOnEnter){var r=this.props.nodeRef?this.props.nodeRef.current:ke.findDOMNode(this);r&&function(t){t.scrollTop}(r)}this.performEnter(t)}else this.performExit();else this.props.unmountOnExit&&this.state.status===Ee&&this.setState({status:Se})},i.performEnter=function(t){var e=this,r=this.props.enter,n=this.context?this.context.isMounting:t,o=this.props.nodeRef?[n]:[ke.findDOMNode(this),n],i=o[0],a=o[1],s=this.getTimeouts(),l=n?s.appear:s.enter;t||r?(this.props.onEnter(i,a),this.safeSetState({status:Ce},(function(){e.props.onEntering(i,a),e.onTransitionEnd(l,(function(){e.safeSetState({status:ze},(function(){e.props.onEntered(i,a)}))}))}))):this.safeSetState({status:ze},(function(){e.props.onEntered(i)}))},i.performExit=function(){var t=this,e=this.props.exit,r=this.getTimeouts(),n=this.props.nodeRef?void 0:ke.findDOMNode(this);e?(this.props.onExit(n),this.safeSetState({status:Me},(function(){t.props.onExiting(n),t.onTransitionEnd(r.exit,(function(){t.safeSetState({status:Ee},(function(){t.props.onExited(n)}))}))}))):this.safeSetState({status:Ee},(function(){t.props.onExited(n)}))},i.cancelNextCallback=function(){null!==this.nextCallback&&(this.nextCallback.cancel(),this.nextCallback=null)},i.safeSetState=function(t,e){e=this.setNextCallback(e),this.setState(t,e)},i.setNextCallback=function(t){var e=this,r=!0;return this.nextCallback=function(n){r&&(r=!1,e.nextCallback=null,t(n))},this.nextCallback.cancel=function(){r=!1},this.nextCallback},i.onTransitionEnd=function(t,e){this.setNextCallback(e);var r=this.props.nodeRef?this.props.nodeRef.current:ke.findDOMNode(this),n=null==t&&!this.props.addEndListener;if(r&&!n){if(this.props.addEndListener){var o=this.props.nodeRef?[this.nextCallback]:[r,this.nextCallback],i=o[0],a=o[1];this.props.addEndListener(i,a)}null!=t&&setTimeout(this.nextCallback,t)}else setTimeout(this.nextCallback,0)},i.render=function(){var t=this.state.status;if(t===Se)return null;var r=this.props,n=r.children,o=(r.in,r.mountOnEnter,r.unmountOnExit,r.appear,r.enter,r.exit,r.timeout,r.addEndListener,r.onEnter,r.onEntering,r.onEntered,r.onExit,r.onExiting,r.onExited,r.nodeRef,pe(r,["children","in","mountOnEnter","unmountOnExit","appear","enter","exit","timeout","addEndListener","onEnter","onEntering","onEntered","onExit","onExiting","onExited","nodeRef"]));return e.createElement(_e.Provider,{value:null},"function"==typeof n?n(t,o):e.cloneElement(e.Children.only(n),o))},o}(e.Component);function Oe(){}Pe.contextType=_e,Pe.propTypes={},Pe.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:Oe,onEntering:Oe,onEntered:Oe,onExit:Oe,onExiting:Oe,onExited:Oe},Pe.UNMOUNTED=Se,Pe.EXITED=Ee,Pe.ENTERING=Ce,Pe.ENTERED=ze,Pe.EXITING=Me;const Te=Pe,Le=!("undefined"==typeof window||!window.document||!window.document.createElement);var Re=!1,Ne=!1;try{var De={get passive(){return Re=!0},get once(){return Ne=Re=!0}};Le&&(window.addEventListener("test",De,De),window.removeEventListener("test",De,!0))}catch(t){}const Ie=function(t,e,r,n){return function(t,e,r,n){if(n&&"boolean"!=typeof n&&!Ne){var o=n.once,i=n.capture,a=r;!Ne&&o&&(a=r.__once||function t(n){this.removeEventListener(e,t,i),r.call(this,n)},r.__once=a),t.addEventListener(e,a,Re?n:i)}t.addEventListener(e,r,n)}(t,e,r,n),function(){!function(t,e,r,n){var o=n&&"boolean"!=typeof n?n.capture:n;t.removeEventListener(e,r,o),r.__once&&t.removeEventListener(e,r.__once,o)}(t,e,r,n)}};function Ae(t,e,r,n){var o,i;null==r&&(i=-1===(o=ye(t,"transitionDuration")||"").indexOf("ms")?1e3:1,r=parseFloat(o)*i||0);var a=function(t,e,r){void 0===r&&(r=5);var n=!1,o=setTimeout((function(){n||function(t,e,r,n){if(void 0===r&&(r=!1),void 0===n&&(n=!0),t){var o=document.createEvent("HTMLEvents");o.initEvent("transitionend",r,n),t.dispatchEvent(o)}}(t,0,!0)}),e+r),i=Ie(t,"transitionend",(function(){n=!0}),{once:!0});return function(){clearTimeout(o),i()}}(t,r,n),s=Ie(t,"transitionend",e);return function(){a(),s()}}function je(t,e){const r=ye(t,e)||"",n=-1===r.indexOf("ms")?1e3:1;return parseFloat(r)*n}function Fe(t,e){const r=je(t,"transitionDuration"),n=je(t,"transitionDelay"),o=Ae(t,(r=>{r.target===t&&(o(),e(r))}),r+n)}const Be=function(...t){return t.filter((t=>null!=t)).reduce(((t,e)=>{if("function"!=typeof e)throw new Error("Invalid Argument Type, must only provide functions, undefined, or null.");return null===t?e:function(...r){t.apply(this,r),e.apply(this,r)}}),null)};var Ue=function(t){return t&&"function"!=typeof t?function(e){t.current=e}:t};const He=function(t,r){return(0,e.useMemo)((function(){return function(t,e){var r=Ue(t),n=Ue(e);return function(t){r&&r(t),n&&n(t)}}(t,r)}),[t,r])},Ve=e.forwardRef((({onEnter:t,onEntering:r,onEntered:n,onExit:o,onExiting:i,onExited:a,addEndListener:s,children:l,childRef:d,...c},u)=>{const p=(0,e.useRef)(null),m=He(p,d),f=t=>{var e;m((e=t)&&"setState"in e?ke.findDOMNode(e):null!=e?e:null)},h=t=>e=>{t&&p.current&&t(p.current,e)},b=(0,e.useCallback)(h(t),[t]),g=(0,e.useCallback)(h(r),[r]),v=(0,e.useCallback)(h(n),[n]),x=(0,e.useCallback)(h(o),[o]),y=(0,e.useCallback)(h(i),[i]),w=(0,e.useCallback)(h(a),[a]),k=(0,e.useCallback)(h(s),[s]);return(0,gt.jsx)(Te,{ref:u,...c,onEnter:b,onEntered:v,onEntering:g,onExit:x,onExited:w,onExiting:y,addEndListener:k,nodeRef:p,children:"function"==typeof l?(t,e)=>l(t,{...e,ref:f}):e.cloneElement(l,{ref:f})})})),$e=Ve,We={height:["marginTop","marginBottom"],width:["marginLeft","marginRight"]};function Ye(t,e){const r=e[`offset${t[0].toUpperCase()}${t.slice(1)}`],n=We[t];return r+parseInt(ye(e,n[0]),10)+parseInt(ye(e,n[1]),10)}const Ke={[Ee]:"collapse",[Me]:"collapsing",[Ce]:"collapsing",[ze]:"collapse show"},Qe={in:!1,timeout:300,mountOnEnter:!1,unmountOnExit:!1,appear:!1,getDimensionValue:Ye},Xe=e.forwardRef((({onEnter:t,onEntering:r,onEntered:n,onExit:o,onExiting:i,className:a,children:s,dimension:l="height",getDimensionValue:d=Ye,...c},u)=>{const p="function"==typeof l?l():l,m=(0,e.useMemo)((()=>Be((t=>{t.style[p]="0"}),t)),[p,t]),f=(0,e.useMemo)((()=>Be((t=>{const e=`scroll${p[0].toUpperCase()}${p.slice(1)}`;t.style[p]=`${t[e]}px`}),r)),[p,r]),h=(0,e.useMemo)((()=>Be((t=>{t.style[p]=null}),n)),[p,n]),b=(0,e.useMemo)((()=>Be((t=>{t.style[p]=`${d(p,t)}px`,t.offsetHeight}),o)),[o,d,p]),g=(0,e.useMemo)((()=>Be((t=>{t.style[p]=null}),i)),[p,i]);return(0,gt.jsx)($e,{ref:u,addEndListener:Fe,...c,"aria-expanded":c.role?c.in:null,onEnter:m,onEntering:f,onEntered:h,onExit:b,onExiting:g,childRef:s.ref,children:(t,r)=>e.cloneElement(s,{...r,className:bt()(a,s.props.className,Ke[t],"width"===p&&"collapse-horizontal")})})}));Xe.defaultProps=Qe;const qe=Xe;function Ge(t,e){return Array.isArray(t)?t.includes(e):t===e}const Ze=e.createContext({});Ze.displayName="AccordionContext";const Je=Ze,tr=e.forwardRef((({as:t="div",bsPrefix:r,className:n,children:o,eventKey:i,...a},s)=>{const{activeEventKey:l}=(0,e.useContext)(Je);return r=wt(r,"accordion-collapse"),(0,gt.jsx)(qe,{ref:s,in:Ge(l,i),...a,className:bt()(n,r),children:(0,gt.jsx)(t,{children:e.Children.only(o)})})}));tr.displayName="AccordionCollapse";const er=tr,rr=e.createContext({eventKey:""});rr.displayName="AccordionItemContext";const nr=rr,or=e.forwardRef((({as:t="div",bsPrefix:r,className:n,onEnter:o,onEntering:i,onEntered:a,onExit:s,onExiting:l,onExited:d,...c},u)=>{r=wt(r,"accordion-body");const{eventKey:p}=(0,e.useContext)(nr);return(0,gt.jsx)(er,{eventKey:p,onEnter:o,onEntering:i,onEntered:a,onExit:s,onExiting:l,onExited:d,children:(0,gt.jsx)(t,{ref:u,...c,className:bt()(n,r)})})}));or.displayName="AccordionBody";const ir=or,ar=e.forwardRef((({as:t="button",bsPrefix:r,className:n,onClick:o,...i},a)=>{r=wt(r,"accordion-button");const{eventKey:s}=(0,e.useContext)(nr),l=function(t,r){const{activeEventKey:n,onSelect:o,alwaysOpen:i}=(0,e.useContext)(Je);return e=>{let a=t===n?null:t;i&&(a=Array.isArray(n)?n.includes(t)?n.filter((e=>e!==t)):[...n,t]:[t]),null==o||o(a,e),null==r||r(e)}}(s,o),{activeEventKey:d}=(0,e.useContext)(Je);return"button"===t&&(i.type="button"),(0,gt.jsx)(t,{ref:a,onClick:l,...i,"aria-expanded":s===d,className:bt()(n,r,!Ge(d,s)&&"collapsed")})}));ar.displayName="AccordionButton";const sr=ar,lr=e.forwardRef((({as:t="h2",bsPrefix:e,className:r,children:n,onClick:o,...i},a)=>(e=wt(e,"accordion-header"),(0,gt.jsx)(t,{ref:a,...i,className:bt()(r,e),children:(0,gt.jsx)(sr,{onClick:o,children:n})}))));lr.displayName="AccordionHeader";const dr=lr,cr=e.forwardRef((({as:t="div",bsPrefix:r,className:n,eventKey:o,...i},a)=>{r=wt(r,"accordion-item");const s=(0,e.useMemo)((()=>({eventKey:o})),[o]);return(0,gt.jsx)(nr.Provider,{value:s,children:(0,gt.jsx)(t,{ref:a,...i,className:bt()(n,r)})})}));cr.displayName="AccordionItem";const ur=cr,pr=e.forwardRef(((t,r)=>{const{as:n="div",activeKey:o,bsPrefix:i,className:a,onSelect:s,flush:l,alwaysOpen:d,...c}=he(t,{activeKey:"onSelect"}),u=wt(i,"accordion"),p=(0,e.useMemo)((()=>({activeEventKey:o,onSelect:s,alwaysOpen:d})),[o,s,d]);return(0,gt.jsx)(Je.Provider,{value:p,children:(0,gt.jsx)(n,{ref:r,...c,className:bt()(a,u,l&&`${u}-flush`)})})}));pr.displayName="Accordion";const mr=Object.assign(pr,{Button:sr,Collapse:er,Item:ur,Header:dr,Body:ir});o(473);var fr=Function.prototype.bind.call(Function.prototype.call,[].slice);const hr=e.createContext(null);hr.displayName="NavContext";const br=hr,gr=(t,e=null)=>null!=t?String(t):e||null,vr=e.createContext(null),xr=e.createContext(null);function yr(t){return`data-rr-ui-${t}`}function wr(t){var r=function(t){var r=(0,e.useRef)(t);return(0,e.useEffect)((function(){r.current=t}),[t]),r}(t);return(0,e.useCallback)((function(){return r.current&&r.current.apply(r,arguments)}),[r])}const kr=["as","disabled"],_r=e.forwardRef(((t,e)=>{let{as:r,disabled:n}=t,o=function(t,e){if(null==t)return{};var r,n,o={},i=Object.keys(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||(o[r]=t[r]);return o}(t,kr);const[i,{tagName:a}]=function({tagName:t,disabled:e,href:r,target:n,rel:o,role:i,onClick:a,tabIndex:s=0,type:l}){t||(t=null!=r||null!=n||null!=o?"a":"button");const d={tagName:t};if("button"===t)return[{type:l||"button",disabled:e},d];const c=n=>{(e||"a"===t&&function(t){return!t||"#"===t.trim()}(r))&&n.preventDefault(),e?n.stopPropagation():null==a||a(n)};return"a"===t&&(r||(r="#"),e&&(r=void 0)),[{role:null!=i?i:"button",disabled:void 0,tabIndex:e?void 0:s,href:r,target:"a"===t?n:void 0,"aria-disabled":e||void 0,rel:"a"===t?o:void 0,onClick:c,onKeyDown:t=>{" "===t.key&&(t.preventDefault(),c(t))}},d]}(Object.assign({tagName:r,disabled:n},o));return(0,gt.jsx)(a,Object.assign({},o,i,{ref:e}))}));_r.displayName="Button";const Sr=_r,Er=["as","active","eventKey"];function Cr({key:t,onClick:r,active:n,id:o,role:i,disabled:a}){const s=(0,e.useContext)(vr),l=(0,e.useContext)(br),d=(0,e.useContext)(xr);let c=n;const u={role:i};if(l){i||"tablist"!==l.role||(u.role="tab");const e=l.getControllerId(null!=t?t:null),r=l.getControlledId(null!=t?t:null);u[yr("event-key")]=t,u.id=e||o,c=null==n&&null!=t?l.activeKey===t:n,!c&&(null!=d&&d.unmountOnExit||null!=d&&d.mountOnEnter)||(u["aria-controls"]=r)}return"tab"===u.role&&(u["aria-selected"]=c,c||(u.tabIndex=-1),a&&(u.tabIndex=-1,u["aria-disabled"]=!0)),u.onClick=wr((e=>{a||(null==r||r(e),null!=t&&s&&!e.isPropagationStopped()&&s(t,e))})),[u,{isActive:c}]}const zr=e.forwardRef(((t,e)=>{let{as:r=Sr,active:n,eventKey:o}=t,i=function(t,e){if(null==t)return{};var r,n,o={},i=Object.keys(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||(o[r]=t[r]);return o}(t,Er);const[a,s]=Cr(Object.assign({key:gr(o,i.href),active:n},i));return a[yr("active")]=s.isActive,(0,gt.jsx)(r,Object.assign({},i,a,{ref:e}))}));zr.displayName="NavItem";const Mr=zr,Pr=["as","onSelect","activeKey","role","onKeyDown"],Or=()=>{},Tr=yr("event-key"),Lr=e.forwardRef(((t,r)=>{let{as:n="div",onSelect:o,activeKey:i,role:a,onKeyDown:s}=t,l=function(t,e){if(null==t)return{};var r,n,o={},i=Object.keys(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||(o[r]=t[r]);return o}(t,Pr);const d=(0,e.useReducer)((function(t){return!t}),!1)[1],c=(0,e.useRef)(!1),u=(0,e.useContext)(vr),p=(0,e.useContext)(xr);let m,f;p&&(a=a||"tablist",i=p.activeKey,m=p.getControlledId,f=p.getControllerId);const h=(0,e.useRef)(null),b=t=>{const e=h.current;if(!e)return null;const r=(n=`[${Tr}]:not([aria-disabled=true])`,fr(e.querySelectorAll(n)));var n;const o=e.querySelector("[aria-selected=true]");if(!o||o!==document.activeElement)return null;const i=r.indexOf(o);if(-1===i)return null;let a=i+t;return a>=r.length&&(a=0),a<0&&(a=r.length-1),r[a]},g=(t,e)=>{null!=t&&(null==o||o(t,e),null==u||u(t,e))};(0,e.useEffect)((()=>{if(h.current&&c.current){const t=h.current.querySelector(`[${Tr}][aria-selected=true]`);null==t||t.focus()}c.current=!1}));const v=He(r,h);return(0,gt.jsx)(vr.Provider,{value:g,children:(0,gt.jsx)(br.Provider,{value:{role:a,activeKey:gr(i),getControlledId:m||Or,getControllerId:f||Or},children:(0,gt.jsx)(n,Object.assign({},l,{onKeyDown:t=>{if(null==s||s(t),!p)return;let e;switch(t.key){case"ArrowLeft":case"ArrowUp":e=b(-1);break;case"ArrowRight":case"ArrowDown":e=b(1);break;default:return}e&&(t.preventDefault(),g(e.dataset[("EventKey","rrUiEventKey")]||null,t),c.current=!0,d())},ref:v,role:a}))})})}));Lr.displayName="Nav";const Rr=Object.assign(Lr,{Item:Mr}),Nr=e.forwardRef((({bsPrefix:t,active:e,disabled:r,eventKey:n,className:o,variant:i,action:a,as:s,...l},d)=>{t=wt(t,"list-group-item");const[c,u]=Cr({key:gr(n,l.href),active:e,...l}),p=wr((t=>{if(r)return t.preventDefault(),void t.stopPropagation();c.onClick(t)}));r&&void 0===l.tabIndex&&(l.tabIndex=-1,l["aria-disabled"]=!0);const m=s||(a?l.href?"a":"button":"div");return(0,gt.jsx)(m,{ref:d,...l,...c,onClick:p,className:bt()(o,t,u.isActive&&"active",r&&"disabled",i&&`${t}-${i}`,a&&`${t}-action`)})}));Nr.displayName="ListGroupItem";const Dr=Nr,Ir=e.forwardRef(((t,e)=>{const{className:r,bsPrefix:n,variant:o,horizontal:i,numbered:a,as:s="div",...l}=he(t,{activeKey:"onSelect"}),d=wt(n,"list-group");let c;return i&&(c=!0===i?"horizontal":`horizontal-${i}`),(0,gt.jsx)(Rr,{ref:e,...l,as:s,className:bt()(r,d,o&&`${d}-${o}`,c&&`${d}-${c}`,a&&`${d}-numbered`)})}));Ir.displayName="ListGroup";const Ar=Object.assign(Ir,{Item:Dr});function jr(t){return t+.5|0}const Fr=(t,e,r)=>Math.max(Math.min(t,r),e);function Br(t){return Fr(jr(2.55*t),0,255)}function Ur(t){return Fr(jr(255*t),0,255)}function Hr(t){return Fr(jr(t/2.55)/100,0,1)}function Vr(t){return Fr(jr(100*t),0,100)}const $r={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,A:10,B:11,C:12,D:13,E:14,F:15,a:10,b:11,c:12,d:13,e:14,f:15},Wr=[..."0123456789ABCDEF"],Yr=t=>Wr[15&t],Kr=t=>Wr[(240&t)>>4]+Wr[15&t],Qr=t=>(240&t)>>4==(15&t);const Xr=/^(hsla?|hwb|hsv)\(\s*([-+.e\d]+)(?:deg)?[\s,]+([-+.e\d]+)%[\s,]+([-+.e\d]+)%(?:[\s,]+([-+.e\d]+)(%)?)?\s*\)$/;function qr(t,e,r){const n=e*Math.min(r,1-r),o=(e,o=(e+t/30)%12)=>r-n*Math.max(Math.min(o-3,9-o,1),-1);return[o(0),o(8),o(4)]}function Gr(t,e,r){const n=(n,o=(n+t/60)%6)=>r-r*e*Math.max(Math.min(o,4-o,1),0);return[n(5),n(3),n(1)]}function Zr(t,e,r){const n=qr(t,1,.5);let o;for(e+r>1&&(o=1/(e+r),e*=o,r*=o),o=0;o<3;o++)n[o]*=1-e-r,n[o]+=e;return n}function Jr(t){const e=t.r/255,r=t.g/255,n=t.b/255,o=Math.max(e,r,n),i=Math.min(e,r,n),a=(o+i)/2;let s,l,d;return o!==i&&(d=o-i,l=a>.5?d/(2-o-i):d/(o+i),s=function(t,e,r,n,o){return t===o?(e-r)/n+(e<r?6:0):e===o?(r-t)/n+2:(t-e)/n+4}(e,r,n,d,o),s=60*s+.5),[0|s,l||0,a]}function tn(t,e,r,n){return(Array.isArray(e)?t(e[0],e[1],e[2]):t(e,r,n)).map(Ur)}function en(t,e,r){return tn(qr,t,e,r)}function rn(t){return(t%360+360)%360}const nn={x:"dark",Z:"light",Y:"re",X:"blu",W:"gr",V:"medium",U:"slate",A:"ee",T:"ol",S:"or",B:"ra",C:"lateg",D:"ights",R:"in",Q:"turquois",E:"hi",P:"ro",O:"al",N:"le",M:"de",L:"yello",F:"en",K:"ch",G:"arks",H:"ea",I:"ightg",J:"wh"},on={OiceXe:"f0f8ff",antiquewEte:"faebd7",aqua:"ffff",aquamarRe:"7fffd4",azuY:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"0",blanKedOmond:"ffebcd",Xe:"ff",XeviTet:"8a2be2",bPwn:"a52a2a",burlywood:"deb887",caMtXe:"5f9ea0",KartYuse:"7fff00",KocTate:"d2691e",cSO:"ff7f50",cSnflowerXe:"6495ed",cSnsilk:"fff8dc",crimson:"dc143c",cyan:"ffff",xXe:"8b",xcyan:"8b8b",xgTMnPd:"b8860b",xWay:"a9a9a9",xgYF:"6400",xgYy:"a9a9a9",xkhaki:"bdb76b",xmagFta:"8b008b",xTivegYF:"556b2f",xSange:"ff8c00",xScEd:"9932cc",xYd:"8b0000",xsOmon:"e9967a",xsHgYF:"8fbc8f",xUXe:"483d8b",xUWay:"2f4f4f",xUgYy:"2f4f4f",xQe:"ced1",xviTet:"9400d3",dAppRk:"ff1493",dApskyXe:"bfff",dimWay:"696969",dimgYy:"696969",dodgerXe:"1e90ff",fiYbrick:"b22222",flSOwEte:"fffaf0",foYstWAn:"228b22",fuKsia:"ff00ff",gaRsbSo:"dcdcdc",ghostwEte:"f8f8ff",gTd:"ffd700",gTMnPd:"daa520",Way:"808080",gYF:"8000",gYFLw:"adff2f",gYy:"808080",honeyMw:"f0fff0",hotpRk:"ff69b4",RdianYd:"cd5c5c",Rdigo:"4b0082",ivSy:"fffff0",khaki:"f0e68c",lavFMr:"e6e6fa",lavFMrXsh:"fff0f5",lawngYF:"7cfc00",NmoncEffon:"fffacd",ZXe:"add8e6",ZcSO:"f08080",Zcyan:"e0ffff",ZgTMnPdLw:"fafad2",ZWay:"d3d3d3",ZgYF:"90ee90",ZgYy:"d3d3d3",ZpRk:"ffb6c1",ZsOmon:"ffa07a",ZsHgYF:"20b2aa",ZskyXe:"87cefa",ZUWay:"778899",ZUgYy:"778899",ZstAlXe:"b0c4de",ZLw:"ffffe0",lime:"ff00",limegYF:"32cd32",lRF:"faf0e6",magFta:"ff00ff",maPon:"800000",VaquamarRe:"66cdaa",VXe:"cd",VScEd:"ba55d3",VpurpN:"9370db",VsHgYF:"3cb371",VUXe:"7b68ee",VsprRggYF:"fa9a",VQe:"48d1cc",VviTetYd:"c71585",midnightXe:"191970",mRtcYam:"f5fffa",mistyPse:"ffe4e1",moccasR:"ffe4b5",navajowEte:"ffdead",navy:"80",Tdlace:"fdf5e6",Tive:"808000",TivedBb:"6b8e23",Sange:"ffa500",SangeYd:"ff4500",ScEd:"da70d6",pOegTMnPd:"eee8aa",pOegYF:"98fb98",pOeQe:"afeeee",pOeviTetYd:"db7093",papayawEp:"ffefd5",pHKpuff:"ffdab9",peru:"cd853f",pRk:"ffc0cb",plum:"dda0dd",powMrXe:"b0e0e6",purpN:"800080",YbeccapurpN:"663399",Yd:"ff0000",Psybrown:"bc8f8f",PyOXe:"4169e1",saddNbPwn:"8b4513",sOmon:"fa8072",sandybPwn:"f4a460",sHgYF:"2e8b57",sHshell:"fff5ee",siFna:"a0522d",silver:"c0c0c0",skyXe:"87ceeb",UXe:"6a5acd",UWay:"708090",UgYy:"708090",snow:"fffafa",sprRggYF:"ff7f",stAlXe:"4682b4",tan:"d2b48c",teO:"8080",tEstN:"d8bfd8",tomato:"ff6347",Qe:"40e0d0",viTet:"ee82ee",JHt:"f5deb3",wEte:"ffffff",wEtesmoke:"f5f5f5",Lw:"ffff00",LwgYF:"9acd32"};let an;const sn=/^rgba?\(\s*([-+.\d]+)(%)?[\s,]+([-+.e\d]+)(%)?[\s,]+([-+.e\d]+)(%)?(?:[\s,/]+([-+.e\d]+)(%)?)?\s*\)$/,ln=t=>t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055,dn=t=>t<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4);function cn(t,e,r){if(t){let n=Jr(t);n[e]=Math.max(0,Math.min(n[e]+n[e]*r,0===e?360:1)),n=en(n),t.r=n[0],t.g=n[1],t.b=n[2]}}function un(t,e){return t?Object.assign(e||{},t):t}function pn(t){var e={r:0,g:0,b:0,a:255};return Array.isArray(t)?t.length>=3&&(e={r:t[0],g:t[1],b:t[2],a:255},t.length>3&&(e.a=Ur(t[3]))):(e=un(t,{r:0,g:0,b:0,a:1})).a=Ur(e.a),e}function mn(t){return"r"===t.charAt(0)?function(t){const e=sn.exec(t);let r,n,o,i=255;if(e){if(e[7]!==r){const t=+e[7];i=e[8]?Br(t):Fr(255*t,0,255)}return r=+e[1],n=+e[3],o=+e[5],r=255&(e[2]?Br(r):Fr(r,0,255)),n=255&(e[4]?Br(n):Fr(n,0,255)),o=255&(e[6]?Br(o):Fr(o,0,255)),{r,g:n,b:o,a:i}}}(t):function(t){const e=Xr.exec(t);let r,n=255;if(!e)return;e[5]!==r&&(n=e[6]?Br(+e[5]):Ur(+e[5]));const o=rn(+e[2]),i=+e[3]/100,a=+e[4]/100;return r="hwb"===e[1]?function(t,e,r){return tn(Zr,t,e,r)}(o,i,a):"hsv"===e[1]?function(t,e,r){return tn(Gr,t,e,r)}(o,i,a):en(o,i,a),{r:r[0],g:r[1],b:r[2],a:n}}(t)}class fn{constructor(t){if(t instanceof fn)return t;const e=typeof t;let r;var n,o,i;"object"===e?r=pn(t):"string"===e&&(i=(n=t).length,"#"===n[0]&&(4===i||5===i?o={r:255&17*$r[n[1]],g:255&17*$r[n[2]],b:255&17*$r[n[3]],a:5===i?17*$r[n[4]]:255}:7!==i&&9!==i||(o={r:$r[n[1]]<<4|$r[n[2]],g:$r[n[3]]<<4|$r[n[4]],b:$r[n[5]]<<4|$r[n[6]],a:9===i?$r[n[7]]<<4|$r[n[8]]:255})),r=o||function(t){an||(an=function(){const t={},e=Object.keys(on),r=Object.keys(nn);let n,o,i,a,s;for(n=0;n<e.length;n++){for(a=s=e[n],o=0;o<r.length;o++)i=r[o],s=s.replace(i,nn[i]);i=parseInt(on[a],16),t[s]=[i>>16&255,i>>8&255,255&i]}return t}(),an.transparent=[0,0,0,0]);const e=an[t.toLowerCase()];return e&&{r:e[0],g:e[1],b:e[2],a:4===e.length?e[3]:255}}(t)||mn(t)),this._rgb=r,this._valid=!!r}get valid(){return this._valid}get rgb(){var t=un(this._rgb);return t&&(t.a=Hr(t.a)),t}set rgb(t){this._rgb=pn(t)}rgbString(){return this._valid?(t=this._rgb)&&(t.a<255?`rgba(${t.r}, ${t.g}, ${t.b}, ${Hr(t.a)})`:`rgb(${t.r}, ${t.g}, ${t.b})`):void 0;var t}hexString(){return this._valid?(t=this._rgb,e=(t=>Qr(t.r)&&Qr(t.g)&&Qr(t.b)&&Qr(t.a))(t)?Yr:Kr,t?"#"+e(t.r)+e(t.g)+e(t.b)+((t,e)=>t<255?e(t):"")(t.a,e):void 0):void 0;var t,e}hslString(){return this._valid?function(t){if(!t)return;const e=Jr(t),r=e[0],n=Vr(e[1]),o=Vr(e[2]);return t.a<255?`hsla(${r}, ${n}%, ${o}%, ${Hr(t.a)})`:`hsl(${r}, ${n}%, ${o}%)`}(this._rgb):void 0}mix(t,e){if(t){const r=this.rgb,n=t.rgb;let o;const i=e===o?.5:e,a=2*i-1,s=r.a-n.a,l=((a*s==-1?a:(a+s)/(1+a*s))+1)/2;o=1-l,r.r=255&l*r.r+o*n.r+.5,r.g=255&l*r.g+o*n.g+.5,r.b=255&l*r.b+o*n.b+.5,r.a=i*r.a+(1-i)*n.a,this.rgb=r}return this}interpolate(t,e){return t&&(this._rgb=function(t,e,r){const n=dn(Hr(t.r)),o=dn(Hr(t.g)),i=dn(Hr(t.b));return{r:Ur(ln(n+r*(dn(Hr(e.r))-n))),g:Ur(ln(o+r*(dn(Hr(e.g))-o))),b:Ur(ln(i+r*(dn(Hr(e.b))-i))),a:t.a+r*(e.a-t.a)}}(this._rgb,t._rgb,e)),this}clone(){return new fn(this.rgb)}alpha(t){return this._rgb.a=Ur(t),this}clearer(t){return this._rgb.a*=1-t,this}greyscale(){const t=this._rgb,e=jr(.3*t.r+.59*t.g+.11*t.b);return t.r=t.g=t.b=e,this}opaquer(t){return this._rgb.a*=1+t,this}negate(){const t=this._rgb;return t.r=255-t.r,t.g=255-t.g,t.b=255-t.b,this}lighten(t){return cn(this._rgb,2,t),this}darken(t){return cn(this._rgb,2,-t),this}saturate(t){return cn(this._rgb,1,t),this}desaturate(t){return cn(this._rgb,1,-t),this}rotate(t){return function(t,e){var r=Jr(t);r[0]=rn(r[0]+e),r=en(r),t.r=r[0],t.g=r[1],t.b=r[2]}(this._rgb,t),this}}function hn(){}const bn=(()=>{let t=0;return()=>t++})();function gn(t){return null==t}function vn(t){if(Array.isArray&&Array.isArray(t))return!0;const e=Object.prototype.toString.call(t);return"[object"===e.slice(0,7)&&"Array]"===e.slice(-6)}function xn(t){return null!==t&&"[object Object]"===Object.prototype.toString.call(t)}function yn(t){return("number"==typeof t||t instanceof Number)&&isFinite(+t)}function wn(t,e){return yn(t)?t:e}function kn(t,e){return void 0===t?e:t}function _n(t,e,r){if(t&&"function"==typeof t.call)return t.apply(r,e)}function Sn(t,e,r,n){let o,i,a;if(vn(t))if(i=t.length,n)for(o=i-1;o>=0;o--)e.call(r,t[o],o);else for(o=0;o<i;o++)e.call(r,t[o],o);else if(xn(t))for(a=Object.keys(t),i=a.length,o=0;o<i;o++)e.call(r,t[a[o]],a[o])}function En(t,e){let r,n,o,i;if(!t||!e||t.length!==e.length)return!1;for(r=0,n=t.length;r<n;++r)if(o=t[r],i=e[r],o.datasetIndex!==i.datasetIndex||o.index!==i.index)return!1;return!0}function Cn(t){if(vn(t))return t.map(Cn);if(xn(t)){const e=Object.create(null),r=Object.keys(t),n=r.length;let o=0;for(;o<n;++o)e[r[o]]=Cn(t[r[o]]);return e}return t}function zn(t){return-1===["__proto__","prototype","constructor"].indexOf(t)}function Mn(t,e,r,n){if(!zn(t))return;const o=e[t],i=r[t];xn(o)&&xn(i)?Pn(o,i,n):e[t]=Cn(i)}function Pn(t,e,r){const n=vn(e)?e:[e],o=n.length;if(!xn(t))return t;const i=(r=r||{}).merger||Mn;let a;for(let e=0;e<o;++e){if(a=n[e],!xn(a))continue;const o=Object.keys(a);for(let e=0,n=o.length;e<n;++e)i(o[e],t,a,r)}return t}function On(t,e){return Pn(t,e,{merger:Tn})}function Tn(t,e,r){if(!zn(t))return;const n=e[t],o=r[t];xn(n)&&xn(o)?On(n,o):Object.prototype.hasOwnProperty.call(e,t)||(e[t]=Cn(o))}const Ln={"":t=>t,x:t=>t.x,y:t=>t.y};function Rn(t,e){const r=Ln[e]||(Ln[e]=function(t){const e=function(t){const e=t.split("."),r=[];let n="";for(const t of e)n+=t,n.endsWith("\\")?n=n.slice(0,-1)+".":(r.push(n),n="");return r}(t);return t=>{for(const r of e){if(""===r)break;t=t&&t[r]}return t}}(e));return r(t)}function Nn(t){return t.charAt(0).toUpperCase()+t.slice(1)}const Dn=t=>void 0!==t,In=t=>"function"==typeof t,An=(t,e)=>{if(t.size!==e.size)return!1;for(const r of t)if(!e.has(r))return!1;return!0},jn=Math.PI,Fn=2*jn,Bn=Fn+jn,Un=Number.POSITIVE_INFINITY,Hn=jn/180,Vn=jn/2,$n=jn/4,Wn=2*jn/3,Yn=Math.log10,Kn=Math.sign;function Qn(t,e,r){return Math.abs(t-e)<r}function Xn(t){const e=Math.round(t);t=Qn(t,e,t/1e3)?e:t;const r=Math.pow(10,Math.floor(Yn(t))),n=t/r;return(n<=1?1:n<=2?2:n<=5?5:10)*r}function qn(t){return!isNaN(parseFloat(t))&&isFinite(t)}function Gn(t,e,r){let n,o,i;for(n=0,o=t.length;n<o;n++)i=t[n][r],isNaN(i)||(e.min=Math.min(e.min,i),e.max=Math.max(e.max,i))}function Zn(t){return t*(jn/180)}function Jn(t){if(!yn(t))return;let e=1,r=0;for(;Math.round(t*e)/e!==t;)e*=10,r++;return r}function to(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))}function eo(t,e){return(t-e+Bn)%Fn-jn}function ro(t){return(t%Fn+Fn)%Fn}function no(t,e,r,n){const o=ro(t),i=ro(e),a=ro(r),s=ro(i-o),l=ro(a-o),d=ro(o-i),c=ro(o-a);return o===i||o===a||n&&i===a||s>l&&d<c}function oo(t,e,r){return Math.max(e,Math.min(r,t))}function io(t,e,r,n=1e-6){return t>=Math.min(e,r)-n&&t<=Math.max(e,r)+n}function ao(t,e,r){r=r||(r=>t[r]<e);let n,o=t.length-1,i=0;for(;o-i>1;)n=i+o>>1,r(n)?i=n:o=n;return{lo:i,hi:o}}const so=(t,e,r,n)=>ao(t,r,n?n=>{const o=t[n][e];return o<r||o===r&&t[n+1][e]===r}:n=>t[n][e]<r),lo=(t,e,r)=>ao(t,r,(n=>t[n][e]>=r)),co=["push","pop","shift","splice","unshift"];function uo(t,e){const r=t._chartjs;if(!r)return;const n=r.listeners,o=n.indexOf(e);-1!==o&&n.splice(o,1),n.length>0||(co.forEach((e=>{delete t[e]})),delete t._chartjs)}const po="undefined"==typeof window?function(t){return t()}:window.requestAnimationFrame;function mo(t,e){let r=[],n=!1;return function(...o){r=o,n||(n=!0,po.call(window,(()=>{n=!1,t.apply(e,r)})))}}const fo=t=>"start"===t?"left":"end"===t?"right":"center",ho=(t,e,r)=>"start"===t?e:"end"===t?r:(e+r)/2;const bo=t=>0===t||1===t,go=(t,e,r)=>-Math.pow(2,10*(t-=1))*Math.sin((t-e)*Fn/r),vo=(t,e,r)=>Math.pow(2,-10*t)*Math.sin((t-e)*Fn/r)+1,xo={linear:t=>t,easeInQuad:t=>t*t,easeOutQuad:t=>-t*(t-2),easeInOutQuad:t=>(t/=.5)<1?.5*t*t:-.5*(--t*(t-2)-1),easeInCubic:t=>t*t*t,easeOutCubic:t=>(t-=1)*t*t+1,easeInOutCubic:t=>(t/=.5)<1?.5*t*t*t:.5*((t-=2)*t*t+2),easeInQuart:t=>t*t*t*t,easeOutQuart:t=>-((t-=1)*t*t*t-1),easeInOutQuart:t=>(t/=.5)<1?.5*t*t*t*t:-.5*((t-=2)*t*t*t-2),easeInQuint:t=>t*t*t*t*t,easeOutQuint:t=>(t-=1)*t*t*t*t+1,easeInOutQuint:t=>(t/=.5)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2),easeInSine:t=>1-Math.cos(t*Vn),easeOutSine:t=>Math.sin(t*Vn),easeInOutSine:t=>-.5*(Math.cos(jn*t)-1),easeInExpo:t=>0===t?0:Math.pow(2,10*(t-1)),easeOutExpo:t=>1===t?1:1-Math.pow(2,-10*t),easeInOutExpo:t=>bo(t)?t:t<.5?.5*Math.pow(2,10*(2*t-1)):.5*(2-Math.pow(2,-10*(2*t-1))),easeInCirc:t=>t>=1?t:-(Math.sqrt(1-t*t)-1),easeOutCirc:t=>Math.sqrt(1-(t-=1)*t),easeInOutCirc:t=>(t/=.5)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1),easeInElastic:t=>bo(t)?t:go(t,.075,.3),easeOutElastic:t=>bo(t)?t:vo(t,.075,.3),easeInOutElastic(t){const e=.1125;return bo(t)?t:t<.5?.5*go(2*t,e,.45):.5+.5*vo(2*t-1,e,.45)},easeInBack(t){const e=1.70158;return t*t*((e+1)*t-e)},easeOutBack(t){const e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},easeInOutBack(t){let e=1.70158;return(t/=.5)<1?t*t*((1+(e*=1.525))*t-e)*.5:.5*((t-=2)*t*((1+(e*=1.525))*t+e)+2)},easeInBounce:t=>1-xo.easeOutBounce(1-t),easeOutBounce(t){const e=7.5625,r=2.75;return t<1/r?e*t*t:t<2/r?e*(t-=1.5/r)*t+.75:t<2.5/r?e*(t-=2.25/r)*t+.9375:e*(t-=2.625/r)*t+.984375},easeInOutBounce:t=>t<.5?.5*xo.easeInBounce(2*t):.5*xo.easeOutBounce(2*t-1)+.5};function yo(t){if(t&&"object"==typeof t){const e=t.toString();return"[object CanvasPattern]"===e||"[object CanvasGradient]"===e}return!1}function wo(t){return yo(t)?t:new fn(t)}function ko(t){return yo(t)?t:new fn(t).saturate(.5).darken(.1).hexString()}const _o=["x","y","borderWidth","radius","tension"],So=["color","borderColor","backgroundColor"],Eo=new Map;function Co(t,e,r){return function(t,e){e=e||{};const r=t+JSON.stringify(e);let n=Eo.get(r);return n||(n=new Intl.NumberFormat(t,e),Eo.set(r,n)),n}(e,r).format(t)}const zo={values:t=>vn(t)?t:""+t,numeric(t,e,r){if(0===t)return"0";const n=this.chart.options.locale;let o,i=t;if(r.length>1){const e=Math.max(Math.abs(r[0].value),Math.abs(r[r.length-1].value));(e<1e-4||e>1e15)&&(o="scientific"),i=function(t,e){let r=e.length>3?e[2].value-e[1].value:e[1].value-e[0].value;return Math.abs(r)>=1&&t!==Math.floor(t)&&(r=t-Math.floor(t)),r}(t,r)}const a=Yn(Math.abs(i)),s=Math.max(Math.min(-1*Math.floor(a),20),0),l={notation:o,minimumFractionDigits:s,maximumFractionDigits:s};return Object.assign(l,this.options.ticks.format),Co(t,n,l)},logarithmic(t,e,r){if(0===t)return"0";const n=r[e].significand||t/Math.pow(10,Math.floor(Yn(t)));return[1,2,3,5,10,15].includes(n)||e>.8*r.length?zo.numeric.call(this,t,e,r):""}};var Mo={formatters:zo};const Po=Object.create(null),Oo=Object.create(null);function To(t,e){if(!e)return t;const r=e.split(".");for(let e=0,n=r.length;e<n;++e){const n=r[e];t=t[n]||(t[n]=Object.create(null))}return t}function Lo(t,e,r){return"string"==typeof e?Pn(To(t,e),r):Pn(To(t,""),e)}class Ro{constructor(t,e){this.animation=void 0,this.backgroundColor="rgba(0,0,0,0.1)",this.borderColor="rgba(0,0,0,0.1)",this.color="#666",this.datasets={},this.devicePixelRatio=t=>t.chart.platform.getDevicePixelRatio(),this.elements={},this.events=["mousemove","mouseout","click","touchstart","touchmove"],this.font={family:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",size:12,style:"normal",lineHeight:1.2,weight:null},this.hover={},this.hoverBackgroundColor=(t,e)=>ko(e.backgroundColor),this.hoverBorderColor=(t,e)=>ko(e.borderColor),this.hoverColor=(t,e)=>ko(e.color),this.indexAxis="x",this.interaction={mode:"nearest",intersect:!0,includeInvisible:!1},this.maintainAspectRatio=!0,this.onHover=null,this.onClick=null,this.parsing=!0,this.plugins={},this.responsive=!0,this.scale=void 0,this.scales={},this.showLine=!0,this.drawActiveElementsOnTop=!0,this.describe(t),this.apply(e)}set(t,e){return Lo(this,t,e)}get(t){return To(this,t)}describe(t,e){return Lo(Oo,t,e)}override(t,e){return Lo(Po,t,e)}route(t,e,r,n){const o=To(this,t),i=To(this,r),a="_"+e;Object.defineProperties(o,{[a]:{value:o[e],writable:!0},[e]:{enumerable:!0,get(){const t=this[a],e=i[n];return xn(t)?Object.assign({},e,t):kn(t,e)},set(t){this[a]=t}}})}apply(t){t.forEach((t=>t(this)))}}var No=new Ro({_scriptable:t=>!t.startsWith("on"),_indexable:t=>"events"!==t,hover:{_fallback:"interaction"},interaction:{_scriptable:!1,_indexable:!1}},[function(t){t.set("animation",{delay:void 0,duration:1e3,easing:"easeOutQuart",fn:void 0,from:void 0,loop:void 0,to:void 0,type:void 0}),t.describe("animation",{_fallback:!1,_indexable:!1,_scriptable:t=>"onProgress"!==t&&"onComplete"!==t&&"fn"!==t}),t.set("animations",{colors:{type:"color",properties:So},numbers:{type:"number",properties:_o}}),t.describe("animations",{_fallback:"animation"}),t.set("transitions",{active:{animation:{duration:400}},resize:{animation:{duration:0}},show:{animations:{colors:{from:"transparent"},visible:{type:"boolean",duration:0}}},hide:{animations:{colors:{to:"transparent"},visible:{type:"boolean",easing:"linear",fn:t=>0|t}}}})},function(t){t.set("layout",{autoPadding:!0,padding:{top:0,right:0,bottom:0,left:0}})},function(t){t.set("scale",{display:!0,offset:!1,reverse:!1,beginAtZero:!1,bounds:"ticks",grace:0,grid:{display:!0,lineWidth:1,drawOnChartArea:!0,drawTicks:!0,tickLength:8,tickWidth:(t,e)=>e.lineWidth,tickColor:(t,e)=>e.color,offset:!1},border:{display:!0,dash:[],dashOffset:0,width:1},title:{display:!1,text:"",padding:{top:4,bottom:4}},ticks:{minRotation:0,maxRotation:50,mirror:!1,textStrokeWidth:0,textStrokeColor:"",padding:3,display:!0,autoSkip:!0,autoSkipPadding:3,labelOffset:0,callback:Mo.formatters.values,minor:{},major:{},align:"center",crossAlign:"near",showLabelBackdrop:!1,backdropColor:"rgba(255, 255, 255, 0.75)",backdropPadding:2}}),t.route("scale.ticks","color","","color"),t.route("scale.grid","color","","borderColor"),t.route("scale.border","color","","borderColor"),t.route("scale.title","color","","color"),t.describe("scale",{_fallback:!1,_scriptable:t=>!t.startsWith("before")&&!t.startsWith("after")&&"callback"!==t&&"parser"!==t,_indexable:t=>"borderDash"!==t&&"tickBorderDash"!==t&&"dash"!==t}),t.describe("scales",{_fallback:"scale"}),t.describe("scale.ticks",{_scriptable:t=>"backdropPadding"!==t&&"callback"!==t,_indexable:t=>"backdropPadding"!==t})}]);function Do(t,e,r,n,o){let i=e[o];return i||(i=e[o]=t.measureText(o).width,r.push(o)),i>n&&(n=i),n}function Io(t,e,r){const n=t.currentDevicePixelRatio,o=0!==r?Math.max(r/2,.5):0;return Math.round((e-o)*n)/n+o}function Ao(t,e){(e=e||t.getContext("2d")).save(),e.resetTransform(),e.clearRect(0,0,t.width,t.height),e.restore()}function jo(t,e,r,n){Fo(t,e,r,n,null)}function Fo(t,e,r,n,o){let i,a,s,l,d,c,u,p;const m=e.pointStyle,f=e.rotation,h=e.radius;let b=(f||0)*Hn;if(m&&"object"==typeof m&&(i=m.toString(),"[object HTMLImageElement]"===i||"[object HTMLCanvasElement]"===i))return t.save(),t.translate(r,n),t.rotate(b),t.drawImage(m,-m.width/2,-m.height/2,m.width,m.height),void t.restore();if(!(isNaN(h)||h<=0)){switch(t.beginPath(),m){default:o?t.ellipse(r,n,o/2,h,0,0,Fn):t.arc(r,n,h,0,Fn),t.closePath();break;case"triangle":c=o?o/2:h,t.moveTo(r+Math.sin(b)*c,n-Math.cos(b)*h),b+=Wn,t.lineTo(r+Math.sin(b)*c,n-Math.cos(b)*h),b+=Wn,t.lineTo(r+Math.sin(b)*c,n-Math.cos(b)*h),t.closePath();break;case"rectRounded":d=.516*h,l=h-d,a=Math.cos(b+$n)*l,u=Math.cos(b+$n)*(o?o/2-d:l),s=Math.sin(b+$n)*l,p=Math.sin(b+$n)*(o?o/2-d:l),t.arc(r-u,n-s,d,b-jn,b-Vn),t.arc(r+p,n-a,d,b-Vn,b),t.arc(r+u,n+s,d,b,b+Vn),t.arc(r-p,n+a,d,b+Vn,b+jn),t.closePath();break;case"rect":if(!f){l=Math.SQRT1_2*h,c=o?o/2:l,t.rect(r-c,n-l,2*c,2*l);break}b+=$n;case"rectRot":u=Math.cos(b)*(o?o/2:h),a=Math.cos(b)*h,s=Math.sin(b)*h,p=Math.sin(b)*(o?o/2:h),t.moveTo(r-u,n-s),t.lineTo(r+p,n-a),t.lineTo(r+u,n+s),t.lineTo(r-p,n+a),t.closePath();break;case"crossRot":b+=$n;case"cross":u=Math.cos(b)*(o?o/2:h),a=Math.cos(b)*h,s=Math.sin(b)*h,p=Math.sin(b)*(o?o/2:h),t.moveTo(r-u,n-s),t.lineTo(r+u,n+s),t.moveTo(r+p,n-a),t.lineTo(r-p,n+a);break;case"star":u=Math.cos(b)*(o?o/2:h),a=Math.cos(b)*h,s=Math.sin(b)*h,p=Math.sin(b)*(o?o/2:h),t.moveTo(r-u,n-s),t.lineTo(r+u,n+s),t.moveTo(r+p,n-a),t.lineTo(r-p,n+a),b+=$n,u=Math.cos(b)*(o?o/2:h),a=Math.cos(b)*h,s=Math.sin(b)*h,p=Math.sin(b)*(o?o/2:h),t.moveTo(r-u,n-s),t.lineTo(r+u,n+s),t.moveTo(r+p,n-a),t.lineTo(r-p,n+a);break;case"line":a=o?o/2:Math.cos(b)*h,s=Math.sin(b)*h,t.moveTo(r-a,n-s),t.lineTo(r+a,n+s);break;case"dash":t.moveTo(r,n),t.lineTo(r+Math.cos(b)*(o?o/2:h),n+Math.sin(b)*h);break;case!1:t.closePath()}t.fill(),e.borderWidth>0&&t.stroke()}}function Bo(t,e,r){return r=r||.5,!e||t&&t.x>e.left-r&&t.x<e.right+r&&t.y>e.top-r&&t.y<e.bottom+r}function Uo(t,e){t.save(),t.beginPath(),t.rect(e.left,e.top,e.right-e.left,e.bottom-e.top),t.clip()}function Ho(t){t.restore()}function Vo(t,e,r,n,o){if(!e)return t.lineTo(r.x,r.y);if("middle"===o){const n=(e.x+r.x)/2;t.lineTo(n,e.y),t.lineTo(n,r.y)}else"after"===o!=!!n?t.lineTo(e.x,r.y):t.lineTo(r.x,e.y);t.lineTo(r.x,r.y)}function $o(t,e,r,n){if(!e)return t.lineTo(r.x,r.y);t.bezierCurveTo(n?e.cp1x:e.cp2x,n?e.cp1y:e.cp2y,n?r.cp2x:r.cp1x,n?r.cp2y:r.cp1y,r.x,r.y)}function Wo(t,e,r,n,o,i={}){const a=vn(e)?e:[e],s=i.strokeWidth>0&&""!==i.strokeColor;let l,d;for(t.save(),t.font=o.string,function(t,e){e.translation&&t.translate(e.translation[0],e.translation[1]),gn(e.rotation)||t.rotate(e.rotation),e.color&&(t.fillStyle=e.color),e.textAlign&&(t.textAlign=e.textAlign),e.textBaseline&&(t.textBaseline=e.textBaseline)}(t,i),l=0;l<a.length;++l)d=a[l],i.backdrop&&Ko(t,i.backdrop),s&&(i.strokeColor&&(t.strokeStyle=i.strokeColor),gn(i.strokeWidth)||(t.lineWidth=i.strokeWidth),t.strokeText(d,r,n,i.maxWidth)),t.fillText(d,r,n,i.maxWidth),Yo(t,r,n,d,i),n+=o.lineHeight;t.restore()}function Yo(t,e,r,n,o){if(o.strikethrough||o.underline){const i=t.measureText(n),a=e-i.actualBoundingBoxLeft,s=e+i.actualBoundingBoxRight,l=r-i.actualBoundingBoxAscent,d=r+i.actualBoundingBoxDescent,c=o.strikethrough?(l+d)/2:d;t.strokeStyle=t.fillStyle,t.beginPath(),t.lineWidth=o.decorationWidth||2,t.moveTo(a,c),t.lineTo(s,c),t.stroke()}}function Ko(t,e){const r=t.fillStyle;t.fillStyle=e.color,t.fillRect(e.left,e.top,e.width,e.height),t.fillStyle=r}function Qo(t,e){const{x:r,y:n,w:o,h:i,radius:a}=e;t.arc(r+a.topLeft,n+a.topLeft,a.topLeft,-Vn,jn,!0),t.lineTo(r,n+i-a.bottomLeft),t.arc(r+a.bottomLeft,n+i-a.bottomLeft,a.bottomLeft,jn,Vn,!0),t.lineTo(r+o-a.bottomRight,n+i),t.arc(r+o-a.bottomRight,n+i-a.bottomRight,a.bottomRight,Vn,0,!0),t.lineTo(r+o,n+a.topRight),t.arc(r+o-a.topRight,n+a.topRight,a.topRight,0,-Vn,!0),t.lineTo(r+a.topLeft,n)}const Xo=/^(normal|(\d+(?:\.\d+)?)(px|em|%)?)$/,qo=/^(normal|italic|initial|inherit|unset|(oblique( -?[0-9]?[0-9]deg)?))$/;function Go(t,e){const r=(""+t).match(Xo);if(!r||"normal"===r[1])return 1.2*e;switch(t=+r[2],r[3]){case"px":return t;case"%":t/=100}return e*t}function Zo(t,e){const r={},n=xn(e),o=n?Object.keys(e):e,i=xn(t)?n?r=>kn(t[r],t[e[r]]):e=>t[e]:()=>t;for(const t of o)r[t]=+i(t)||0;return r}function Jo(t){return Zo(t,{top:"y",right:"x",bottom:"y",left:"x"})}function ti(t){return Zo(t,["topLeft","topRight","bottomLeft","bottomRight"])}function ei(t){const e=Jo(t);return e.width=e.left+e.right,e.height=e.top+e.bottom,e}function ri(t,e){t=t||{},e=e||No.font;let r=kn(t.size,e.size);"string"==typeof r&&(r=parseInt(r,10));let n=kn(t.style,e.style);n&&!(""+n).match(qo)&&(console.warn('Invalid font style specified: "'+n+'"'),n=void 0);const o={family:kn(t.family,e.family),lineHeight:Go(kn(t.lineHeight,e.lineHeight),r),size:r,style:n,weight:kn(t.weight,e.weight),string:""};return o.string=function(t){return!t||gn(t.size)||gn(t.family)?null:(t.style?t.style+" ":"")+(t.weight?t.weight+" ":"")+t.size+"px "+t.family}(o),o}function ni(t,e,r,n){let o,i,a,s=!0;for(o=0,i=t.length;o<i;++o)if(a=t[o],void 0!==a&&(void 0!==e&&"function"==typeof a&&(a=a(e),s=!1),void 0!==r&&vn(a)&&(a=a[r%a.length],s=!1),void 0!==a))return n&&!s&&(n.cacheable=!1),a}function oi(t,e){return Object.assign(Object.create(t),e)}function ii(t,e=[""],r=t,n,o=(()=>t[0])){Dn(n)||(n=bi("_fallback",t));const i={[Symbol.toStringTag]:"Object",_cacheable:!0,_scopes:t,_rootScopes:r,_fallback:n,_getTarget:o,override:o=>ii([o,...t],e,r,n)};return new Proxy(i,{deleteProperty:(e,r)=>(delete e[r],delete e._keys,delete t[0][r],!0),get:(r,n)=>ci(r,n,(()=>function(t,e,r,n){let o;for(const i of e)if(o=bi(li(i,t),r),Dn(o))return di(t,o)?fi(r,n,t,o):o}(n,e,t,r))),getOwnPropertyDescriptor:(t,e)=>Reflect.getOwnPropertyDescriptor(t._scopes[0],e),getPrototypeOf:()=>Reflect.getPrototypeOf(t[0]),has:(t,e)=>gi(t).includes(e),ownKeys:t=>gi(t),set(t,e,r){const n=t._storage||(t._storage=o());return t[e]=n[e]=r,delete t._keys,!0}})}function ai(t,e,r,n){const o={_cacheable:!1,_proxy:t,_context:e,_subProxy:r,_stack:new Set,_descriptors:si(t,n),setContext:e=>ai(t,e,r,n),override:o=>ai(t.override(o),e,r,n)};return new Proxy(o,{deleteProperty:(e,r)=>(delete e[r],delete t[r],!0),get:(t,e,r)=>ci(t,e,(()=>function(t,e,r){const{_proxy:n,_context:o,_subProxy:i,_descriptors:a}=t;let s=n[e];return In(s)&&a.isScriptable(e)&&(s=function(t,e,r,n){const{_proxy:o,_context:i,_subProxy:a,_stack:s}=r;if(s.has(t))throw new Error("Recursion detected: "+Array.from(s).join("->")+"->"+t);return s.add(t),e=e(i,a||n),s.delete(t),di(t,e)&&(e=fi(o._scopes,o,t,e)),e}(e,s,t,r)),vn(s)&&s.length&&(s=function(t,e,r,n){const{_proxy:o,_context:i,_subProxy:a,_descriptors:s}=r;if(Dn(i.index)&&n(t))e=e[i.index%e.length];else if(xn(e[0])){const r=e,n=o._scopes.filter((t=>t!==r));e=[];for(const l of r){const r=fi(n,o,t,l);e.push(ai(r,i,a&&a[t],s))}}return e}(e,s,t,a.isIndexable)),di(e,s)&&(s=ai(s,o,i&&i[e],a)),s}(t,e,r))),getOwnPropertyDescriptor:(e,r)=>e._descriptors.allKeys?Reflect.has(t,r)?{enumerable:!0,configurable:!0}:void 0:Reflect.getOwnPropertyDescriptor(t,r),getPrototypeOf:()=>Reflect.getPrototypeOf(t),has:(e,r)=>Reflect.has(t,r),ownKeys:()=>Reflect.ownKeys(t),set:(e,r,n)=>(t[r]=n,delete e[r],!0)})}function si(t,e={scriptable:!0,indexable:!0}){const{_scriptable:r=e.scriptable,_indexable:n=e.indexable,_allKeys:o=e.allKeys}=t;return{allKeys:o,scriptable:r,indexable:n,isScriptable:In(r)?r:()=>r,isIndexable:In(n)?n:()=>n}}const li=(t,e)=>t?t+Nn(e):e,di=(t,e)=>xn(e)&&"adapters"!==t&&(null===Object.getPrototypeOf(e)||e.constructor===Object);function ci(t,e,r){if(Object.prototype.hasOwnProperty.call(t,e))return t[e];const n=r();return t[e]=n,n}function ui(t,e,r){return In(t)?t(e,r):t}const pi=(t,e)=>!0===t?e:"string"==typeof t?Rn(e,t):void 0;function mi(t,e,r,n,o){for(const i of e){const e=pi(r,i);if(e){t.add(e);const i=ui(e._fallback,r,o);if(Dn(i)&&i!==r&&i!==n)return i}else if(!1===e&&Dn(n)&&r!==n)return null}return!1}function fi(t,e,r,n){const o=e._rootScopes,i=ui(e._fallback,r,n),a=[...t,...o],s=new Set;s.add(n);let l=hi(s,a,r,i||r,n);return null!==l&&(!Dn(i)||i===r||(l=hi(s,a,i,l,n),null!==l))&&ii(Array.from(s),[""],o,i,(()=>function(t,e,r){const n=t._getTarget();e in n||(n[e]={});const o=n[e];return vn(o)&&xn(r)?r:o||{}}(e,r,n)))}function hi(t,e,r,n,o){for(;r;)r=mi(t,e,r,n,o);return r}function bi(t,e){for(const r of e){if(!r)continue;const e=r[t];if(Dn(e))return e}}function gi(t){let e=t._keys;return e||(e=t._keys=function(t){const e=new Set;for(const r of t)for(const t of Object.keys(r).filter((t=>!t.startsWith("_"))))e.add(t);return Array.from(e)}(t._scopes)),e}const vi=Number.EPSILON||1e-14,xi=(t,e)=>e<t.length&&!t[e].skip&&t[e],yi=t=>"x"===t?"y":"x";function wi(t,e,r,n){const o=t.skip?e:t,i=e,a=r.skip?e:r,s=to(i,o),l=to(a,i);let d=s/(s+l),c=l/(s+l);d=isNaN(d)?0:d,c=isNaN(c)?0:c;const u=n*d,p=n*c;return{previous:{x:i.x-u*(a.x-o.x),y:i.y-u*(a.y-o.y)},next:{x:i.x+p*(a.x-o.x),y:i.y+p*(a.y-o.y)}}}function ki(t,e,r){return Math.max(Math.min(t,r),e)}function _i(t,e,r,n,o){let i,a,s,l;if(e.spanGaps&&(t=t.filter((t=>!t.skip))),"monotone"===e.cubicInterpolationMode)!function(t,e="x"){const r=yi(e),n=t.length,o=Array(n).fill(0),i=Array(n);let a,s,l,d=xi(t,0);for(a=0;a<n;++a)if(s=l,l=d,d=xi(t,a+1),l){if(d){const t=d[e]-l[e];o[a]=0!==t?(d[r]-l[r])/t:0}i[a]=s?d?Kn(o[a-1])!==Kn(o[a])?0:(o[a-1]+o[a])/2:o[a-1]:o[a]}!function(t,e,r){const n=t.length;let o,i,a,s,l,d=xi(t,0);for(let c=0;c<n-1;++c)l=d,d=xi(t,c+1),l&&d&&(Qn(e[c],0,vi)?r[c]=r[c+1]=0:(o=r[c]/e[c],i=r[c+1]/e[c],s=Math.pow(o,2)+Math.pow(i,2),s<=9||(a=3/Math.sqrt(s),r[c]=o*a*e[c],r[c+1]=i*a*e[c])))}(t,o,i),function(t,e,r="x"){const n=yi(r),o=t.length;let i,a,s,l=xi(t,0);for(let d=0;d<o;++d){if(a=s,s=l,l=xi(t,d+1),!s)continue;const o=s[r],c=s[n];a&&(i=(o-a[r])/3,s[`cp1${r}`]=o-i,s[`cp1${n}`]=c-i*e[d]),l&&(i=(l[r]-o)/3,s[`cp2${r}`]=o+i,s[`cp2${n}`]=c+i*e[d])}}(t,i,e)}(t,o);else{let r=n?t[t.length-1]:t[0];for(i=0,a=t.length;i<a;++i)s=t[i],l=wi(r,s,t[Math.min(i+1,a-(n?0:1))%a],e.tension),s.cp1x=l.previous.x,s.cp1y=l.previous.y,s.cp2x=l.next.x,s.cp2y=l.next.y,r=s}e.capBezierPoints&&function(t,e){let r,n,o,i,a,s=Bo(t[0],e);for(r=0,n=t.length;r<n;++r)a=i,i=s,s=r<n-1&&Bo(t[r+1],e),i&&(o=t[r],a&&(o.cp1x=ki(o.cp1x,e.left,e.right),o.cp1y=ki(o.cp1y,e.top,e.bottom)),s&&(o.cp2x=ki(o.cp2x,e.left,e.right),o.cp2y=ki(o.cp2y,e.top,e.bottom)))}(t,r)}function Si(){return"undefined"!=typeof window&&"undefined"!=typeof document}function Ei(t){let e=t.parentNode;return e&&"[object ShadowRoot]"===e.toString()&&(e=e.host),e}function Ci(t,e,r){let n;return"string"==typeof t?(n=parseInt(t,10),-1!==t.indexOf("%")&&(n=n/100*e.parentNode[r])):n=t,n}const zi=t=>t.ownerDocument.defaultView.getComputedStyle(t,null),Mi=["top","right","bottom","left"];function Pi(t,e,r){const n={};r=r?"-"+r:"";for(let o=0;o<4;o++){const i=Mi[o];n[i]=parseFloat(t[e+"-"+i+r])||0}return n.width=n.left+n.right,n.height=n.top+n.bottom,n}function Oi(t,e){if("native"in t)return t;const{canvas:r,currentDevicePixelRatio:n}=e,o=zi(r),i="border-box"===o.boxSizing,a=Pi(o,"padding"),s=Pi(o,"border","width"),{x:l,y:d,box:c}=function(t,e){const r=t.touches,n=r&&r.length?r[0]:t,{offsetX:o,offsetY:i}=n;let a,s,l=!1;if(((t,e,r)=>(t>0||e>0)&&(!r||!r.shadowRoot))(o,i,t.target))a=o,s=i;else{const t=e.getBoundingClientRect();a=n.clientX-t.left,s=n.clientY-t.top,l=!0}return{x:a,y:s,box:l}}(t,r),u=a.left+(c&&s.left),p=a.top+(c&&s.top);let{width:m,height:f}=e;return i&&(m-=a.width+s.width,f-=a.height+s.height),{x:Math.round((l-u)/m*r.width/n),y:Math.round((d-p)/f*r.height/n)}}const Ti=t=>Math.round(10*t)/10;function Li(t,e,r){const n=e||1,o=Math.floor(t.height*n),i=Math.floor(t.width*n);t.height=Math.floor(t.height),t.width=Math.floor(t.width);const a=t.canvas;return a.style&&(r||!a.style.height&&!a.style.width)&&(a.style.height=`${t.height}px`,a.style.width=`${t.width}px`),(t.currentDevicePixelRatio!==n||a.height!==o||a.width!==i)&&(t.currentDevicePixelRatio=n,a.height=o,a.width=i,t.ctx.setTransform(n,0,0,n,0,0),!0)}const Ri=function(){let t=!1;try{const e={get passive(){return t=!0,!1}};window.addEventListener("test",null,e),window.removeEventListener("test",null,e)}catch(t){}return t}();function Ni(t,e){const r=function(t,e){return zi(t).getPropertyValue(e)}(t,e),n=r&&r.match(/^(\d+)(\.\d+)?px$/);return n?+n[1]:void 0}function Di(t,e,r,n){return{x:t.x+r*(e.x-t.x),y:t.y+r*(e.y-t.y)}}function Ii(t,e,r,n){return{x:t.x+r*(e.x-t.x),y:"middle"===n?r<.5?t.y:e.y:"after"===n?r<1?t.y:e.y:r>0?e.y:t.y}}function Ai(t,e,r,n){const o={x:t.cp2x,y:t.cp2y},i={x:e.cp1x,y:e.cp1y},a=Di(t,o,r),s=Di(o,i,r),l=Di(i,e,r),d=Di(a,s,r),c=Di(s,l,r);return Di(d,c,r)}function ji(t,e,r){return t?function(t,e){return{x:r=>t+t+e-r,setWidth(t){e=t},textAlign:t=>"center"===t?t:"right"===t?"left":"right",xPlus:(t,e)=>t-e,leftForLtr:(t,e)=>t-e}}(e,r):{x:t=>t,setWidth(t){},textAlign:t=>t,xPlus:(t,e)=>t+e,leftForLtr:(t,e)=>t}}function Fi(t,e){let r,n;"ltr"!==e&&"rtl"!==e||(r=t.canvas.style,n=[r.getPropertyValue("direction"),r.getPropertyPriority("direction")],r.setProperty("direction",e,"important"),t.prevTextDirection=n)}function Bi(t,e){void 0!==e&&(delete t.prevTextDirection,t.canvas.style.setProperty("direction",e[0],e[1]))}function Ui(t){return"angle"===t?{between:no,compare:eo,normalize:ro}:{between:io,compare:(t,e)=>t-e,normalize:t=>t}}function Hi({start:t,end:e,count:r,loop:n,style:o}){return{start:t%r,end:e%r,loop:n&&(e-t+1)%r==0,style:o}}function Vi(t,e,r){if(!r)return[t];const{property:n,start:o,end:i}=r,a=e.length,{compare:s,between:l,normalize:d}=Ui(n),{start:c,end:u,loop:p,style:m}=function(t,e,r){const{property:n,start:o,end:i}=r,{between:a,normalize:s}=Ui(n),l=e.length;let d,c,{start:u,end:p,loop:m}=t;if(m){for(u+=l,p+=l,d=0,c=l;d<c&&a(s(e[u%l][n]),o,i);++d)u--,p--;u%=l,p%=l}return p<u&&(p+=l),{start:u,end:p,loop:m,style:t.style}}(t,e,r),f=[];let h,b,g,v=!1,x=null;for(let t=c,r=c;t<=u;++t)b=e[t%a],b.skip||(h=d(b[n]),h!==g&&(v=l(h,o,i),null===x&&(v||l(o,g,h)&&0!==s(o,g))&&(x=0===s(h,o)?t:r),null!==x&&(!v||0===s(i,h)||l(i,g,h))&&(f.push(Hi({start:x,end:t,loop:p,count:a,style:m})),x=null),r=t,g=h));return null!==x&&f.push(Hi({start:x,end:u,loop:p,count:a,style:m})),f}function $i(t){return{backgroundColor:t.backgroundColor,borderCapStyle:t.borderCapStyle,borderDash:t.borderDash,borderDashOffset:t.borderDashOffset,borderJoinStyle:t.borderJoinStyle,borderWidth:t.borderWidth,borderColor:t.borderColor}}function Wi(t,e){return e&&JSON.stringify(t)!==JSON.stringify(e)}class Yi{constructor(){this._request=null,this._charts=new Map,this._running=!1,this._lastDate=void 0}_notify(t,e,r,n){const o=e.listeners[n],i=e.duration;o.forEach((n=>n({chart:t,initial:e.initial,numSteps:i,currentStep:Math.min(r-e.start,i)})))}_refresh(){this._request||(this._running=!0,this._request=po.call(window,(()=>{this._update(),this._request=null,this._running&&this._refresh()})))}_update(t=Date.now()){let e=0;this._charts.forEach(((r,n)=>{if(!r.running||!r.items.length)return;const o=r.items;let i,a=o.length-1,s=!1;for(;a>=0;--a)i=o[a],i._active?(i._total>r.duration&&(r.duration=i._total),i.tick(t),s=!0):(o[a]=o[o.length-1],o.pop());s&&(n.draw(),this._notify(n,r,t,"progress")),o.length||(r.running=!1,this._notify(n,r,t,"complete"),r.initial=!1),e+=o.length})),this._lastDate=t,0===e&&(this._running=!1)}_getAnims(t){const e=this._charts;let r=e.get(t);return r||(r={running:!1,initial:!0,items:[],listeners:{complete:[],progress:[]}},e.set(t,r)),r}listen(t,e,r){this._getAnims(t).listeners[e].push(r)}add(t,e){e&&e.length&&this._getAnims(t).items.push(...e)}has(t){return this._getAnims(t).items.length>0}start(t){const e=this._charts.get(t);e&&(e.running=!0,e.start=Date.now(),e.duration=e.items.reduce(((t,e)=>Math.max(t,e._duration)),0),this._refresh())}running(t){if(!this._running)return!1;const e=this._charts.get(t);return!!(e&&e.running&&e.items.length)}stop(t){const e=this._charts.get(t);if(!e||!e.items.length)return;const r=e.items;let n=r.length-1;for(;n>=0;--n)r[n].cancel();e.items=[],this._notify(t,e,Date.now(),"complete")}remove(t){return this._charts.delete(t)}}var Ki=new Yi;const Qi="transparent",Xi={boolean:(t,e,r)=>r>.5?e:t,color(t,e,r){const n=wo(t||Qi),o=n.valid&&wo(e||Qi);return o&&o.valid?o.mix(n,r).hexString():e},number:(t,e,r)=>t+(e-t)*r};class qi{constructor(t,e,r,n){const o=e[r];n=ni([t.to,n,o,t.from]);const i=ni([t.from,o,n]);this._active=!0,this._fn=t.fn||Xi[t.type||typeof i],this._easing=xo[t.easing]||xo.linear,this._start=Math.floor(Date.now()+(t.delay||0)),this._duration=this._total=Math.floor(t.duration),this._loop=!!t.loop,this._target=e,this._prop=r,this._from=i,this._to=n,this._promises=void 0}active(){return this._active}update(t,e,r){if(this._active){this._notify(!1);const n=this._target[this._prop],o=r-this._start,i=this._duration-o;this._start=r,this._duration=Math.floor(Math.max(i,t.duration)),this._total+=o,this._loop=!!t.loop,this._to=ni([t.to,e,n,t.from]),this._from=ni([t.from,n,e])}}cancel(){this._active&&(this.tick(Date.now()),this._active=!1,this._notify(!1))}tick(t){const e=t-this._start,r=this._duration,n=this._prop,o=this._from,i=this._loop,a=this._to;let s;if(this._active=o!==a&&(i||e<r),!this._active)return this._target[n]=a,void this._notify(!0);e<0?this._target[n]=o:(s=e/r%2,s=i&&s>1?2-s:s,s=this._easing(Math.min(1,Math.max(0,s))),this._target[n]=this._fn(o,a,s))}wait(){const t=this._promises||(this._promises=[]);return new Promise(((e,r)=>{t.push({res:e,rej:r})}))}_notify(t){const e=t?"res":"rej",r=this._promises||[];for(let t=0;t<r.length;t++)r[t][e]()}}class Gi{constructor(t,e){this._chart=t,this._properties=new Map,this.configure(e)}configure(t){if(!xn(t))return;const e=Object.keys(No.animation),r=this._properties;Object.getOwnPropertyNames(t).forEach((n=>{const o=t[n];if(!xn(o))return;const i={};for(const t of e)i[t]=o[t];(vn(o.properties)&&o.properties||[n]).forEach((t=>{t!==n&&r.has(t)||r.set(t,i)}))}))}_animateOptions(t,e){const r=e.options,n=function(t,e){if(!e)return;let r=t.options;if(r)return r.$shared&&(t.options=r=Object.assign({},r,{$shared:!1,$animations:{}})),r;t.options=e}(t,r);if(!n)return[];const o=this._createAnimations(n,r);return r.$shared&&function(t,e){const r=[],n=Object.keys(e);for(let e=0;e<n.length;e++){const o=t[n[e]];o&&o.active()&&r.push(o.wait())}return Promise.all(r)}(t.options.$animations,r).then((()=>{t.options=r}),(()=>{})),o}_createAnimations(t,e){const r=this._properties,n=[],o=t.$animations||(t.$animations={}),i=Object.keys(e),a=Date.now();let s;for(s=i.length-1;s>=0;--s){const l=i[s];if("$"===l.charAt(0))continue;if("options"===l){n.push(...this._animateOptions(t,e));continue}const d=e[l];let c=o[l];const u=r.get(l);if(c){if(u&&c.active()){c.update(u,d,a);continue}c.cancel()}u&&u.duration?(o[l]=c=new qi(u,t,l,d),n.push(c)):t[l]=d}return n}update(t,e){if(0===this._properties.size)return void Object.assign(t,e);const r=this._createAnimations(t,e);return r.length?(Ki.add(this._chart,r),!0):void 0}}function Zi(t,e){const r=t&&t.options||{},n=r.reverse,o=void 0===r.min?e:0,i=void 0===r.max?e:0;return{start:n?i:o,end:n?o:i}}function Ji(t,e){const r=[],n=t._getSortedDatasetMetas(e);let o,i;for(o=0,i=n.length;o<i;++o)r.push(n[o].index);return r}function ta(t,e,r,n={}){const o=t.keys,i="single"===n.mode;let a,s,l,d;if(null!==e){for(a=0,s=o.length;a<s;++a){if(l=+o[a],l===r){if(n.all)continue;break}d=t.values[l],yn(d)&&(i||0===e||Kn(e)===Kn(d))&&(e+=d)}return e}}function ea(t,e){const r=t&&t.options.stacked;return r||void 0===r&&void 0!==e.stack}function ra(t,e,r){const n=t[e]||(t[e]={});return n[r]||(n[r]={})}function na(t,e,r,n){for(const o of e.getMatchingVisibleMetas(n).reverse()){const e=t[o.index];if(r&&e>0||!r&&e<0)return o.index}return null}function oa(t,e){const{chart:r,_cachedMeta:n}=t,o=r._stacks||(r._stacks={}),{iScale:i,vScale:a,index:s}=n,l=i.axis,d=a.axis,c=function(t,e,r){return`${t.id}.${e.id}.${r.stack||r.type}`}(i,a,n),u=e.length;let p;for(let t=0;t<u;++t){const r=e[t],{[l]:i,[d]:u}=r;p=(r._stacks||(r._stacks={}))[d]=ra(o,c,i),p[s]=u,p._top=na(p,a,!0,n.type),p._bottom=na(p,a,!1,n.type),(p._visualValues||(p._visualValues={}))[s]=u}}function ia(t,e){const r=t.scales;return Object.keys(r).filter((t=>r[t].axis===e)).shift()}function aa(t,e){const r=t.controller.index,n=t.vScale&&t.vScale.axis;if(n){e=e||t._parsed;for(const t of e){const e=t._stacks;if(!e||void 0===e[n]||void 0===e[n][r])return;delete e[n][r],void 0!==e[n]._visualValues&&void 0!==e[n]._visualValues[r]&&delete e[n]._visualValues[r]}}}const sa=t=>"reset"===t||"none"===t,la=(t,e)=>e?t:Object.assign({},t);class da{static defaults={};static datasetElementType=null;static dataElementType=null;constructor(t,e){this.chart=t,this._ctx=t.ctx,this.index=e,this._cachedDataOpts={},this._cachedMeta=this.getMeta(),this._type=this._cachedMeta.type,this.options=void 0,this._parsing=!1,this._data=void 0,this._objectData=void 0,this._sharedOptions=void 0,this._drawStart=void 0,this._drawCount=void 0,this.enableOptionSharing=!1,this.supportsDecimation=!1,this.$context=void 0,this._syncList=[],this.datasetElementType=new.target.datasetElementType,this.dataElementType=new.target.dataElementType,this.initialize()}initialize(){const t=this._cachedMeta;this.configure(),this.linkScales(),t._stacked=ea(t.vScale,t),this.addElements(),this.options.fill&&!this.chart.isPluginEnabled("filler")&&console.warn("Tried to use the 'fill' option without the 'Filler' plugin enabled. Please import and register the 'Filler' plugin and make sure it is not disabled in the options")}updateIndex(t){this.index!==t&&aa(this._cachedMeta),this.index=t}linkScales(){const t=this.chart,e=this._cachedMeta,r=this.getDataset(),n=(t,e,r,n)=>"x"===t?e:"r"===t?n:r,o=e.xAxisID=kn(r.xAxisID,ia(t,"x")),i=e.yAxisID=kn(r.yAxisID,ia(t,"y")),a=e.rAxisID=kn(r.rAxisID,ia(t,"r")),s=e.indexAxis,l=e.iAxisID=n(s,o,i,a),d=e.vAxisID=n(s,i,o,a);e.xScale=this.getScaleForId(o),e.yScale=this.getScaleForId(i),e.rScale=this.getScaleForId(a),e.iScale=this.getScaleForId(l),e.vScale=this.getScaleForId(d)}getDataset(){return this.chart.data.datasets[this.index]}getMeta(){return this.chart.getDatasetMeta(this.index)}getScaleForId(t){return this.chart.scales[t]}_getOtherScale(t){const e=this._cachedMeta;return t===e.iScale?e.vScale:e.iScale}reset(){this._update("reset")}_destroy(){const t=this._cachedMeta;this._data&&uo(this._data,this),t._stacked&&aa(t)}_dataCheck(){const t=this.getDataset(),e=t.data||(t.data=[]),r=this._data;if(xn(e))this._data=function(t){const e=Object.keys(t),r=new Array(e.length);let n,o,i;for(n=0,o=e.length;n<o;++n)i=e[n],r[n]={x:i,y:t[i]};return r}(e);else if(r!==e){if(r){uo(r,this);const t=this._cachedMeta;aa(t),t._parsed=[]}e&&Object.isExtensible(e)&&(this,(n=e)._chartjs?n._chartjs.listeners.push(this):(Object.defineProperty(n,"_chartjs",{configurable:!0,enumerable:!1,value:{listeners:[this]}}),co.forEach((t=>{const e="_onData"+Nn(t),r=n[t];Object.defineProperty(n,t,{configurable:!0,enumerable:!1,value(...t){const o=r.apply(this,t);return n._chartjs.listeners.forEach((r=>{"function"==typeof r[e]&&r[e](...t)})),o}})})))),this._syncList=[],this._data=e}var n}addElements(){const t=this._cachedMeta;this._dataCheck(),this.datasetElementType&&(t.dataset=new this.datasetElementType)}buildOrUpdateElements(t){const e=this._cachedMeta,r=this.getDataset();let n=!1;this._dataCheck();const o=e._stacked;e._stacked=ea(e.vScale,e),e.stack!==r.stack&&(n=!0,aa(e),e.stack=r.stack),this._resyncElements(t),(n||o!==e._stacked)&&oa(this,e._parsed)}configure(){const t=this.chart.config,e=t.datasetScopeKeys(this._type),r=t.getOptionScopes(this.getDataset(),e,!0);this.options=t.createResolver(r,this.getContext()),this._parsing=this.options.parsing,this._cachedDataOpts={}}parse(t,e){const{_cachedMeta:r,_data:n}=this,{iScale:o,_stacked:i}=r,a=o.axis;let s,l,d,c=0===t&&e===n.length||r._sorted,u=t>0&&r._parsed[t-1];if(!1===this._parsing)r._parsed=n,r._sorted=!0,d=n;else{d=vn(n[t])?this.parseArrayData(r,n,t,e):xn(n[t])?this.parseObjectData(r,n,t,e):this.parsePrimitiveData(r,n,t,e);const o=()=>null===l[a]||u&&l[a]<u[a];for(s=0;s<e;++s)r._parsed[s+t]=l=d[s],c&&(o()&&(c=!1),u=l);r._sorted=c}i&&oa(this,d)}parsePrimitiveData(t,e,r,n){const{iScale:o,vScale:i}=t,a=o.axis,s=i.axis,l=o.getLabels(),d=o===i,c=new Array(n);let u,p,m;for(u=0,p=n;u<p;++u)m=u+r,c[u]={[a]:d||o.parse(l[m],m),[s]:i.parse(e[m],m)};return c}parseArrayData(t,e,r,n){const{xScale:o,yScale:i}=t,a=new Array(n);let s,l,d,c;for(s=0,l=n;s<l;++s)d=s+r,c=e[d],a[s]={x:o.parse(c[0],d),y:i.parse(c[1],d)};return a}parseObjectData(t,e,r,n){const{xScale:o,yScale:i}=t,{xAxisKey:a="x",yAxisKey:s="y"}=this._parsing,l=new Array(n);let d,c,u,p;for(d=0,c=n;d<c;++d)u=d+r,p=e[u],l[d]={x:o.parse(Rn(p,a),u),y:i.parse(Rn(p,s),u)};return l}getParsed(t){return this._cachedMeta._parsed[t]}getDataElement(t){return this._cachedMeta.data[t]}applyStack(t,e,r){const n=this.chart,o=this._cachedMeta,i=e[t.axis];return ta({keys:Ji(n,!0),values:e._stacks[t.axis]._visualValues},i,o.index,{mode:r})}updateRangeFromParsed(t,e,r,n){const o=r[e.axis];let i=null===o?NaN:o;const a=n&&r._stacks[e.axis];n&&a&&(n.values=a,i=ta(n,o,this._cachedMeta.index)),t.min=Math.min(t.min,i),t.max=Math.max(t.max,i)}getMinMax(t,e){const r=this._cachedMeta,n=r._parsed,o=r._sorted&&t===r.iScale,i=n.length,a=this._getOtherScale(t),s=((t,e,r)=>t&&!e.hidden&&e._stacked&&{keys:Ji(r,!0),values:null})(e,r,this.chart),l={min:Number.POSITIVE_INFINITY,max:Number.NEGATIVE_INFINITY},{min:d,max:c}=function(t){const{min:e,max:r,minDefined:n,maxDefined:o}=t.getUserBounds();return{min:n?e:Number.NEGATIVE_INFINITY,max:o?r:Number.POSITIVE_INFINITY}}(a);let u,p;function m(){p=n[u];const e=p[a.axis];return!yn(p[t.axis])||d>e||c<e}for(u=0;u<i&&(m()||(this.updateRangeFromParsed(l,t,p,s),!o));++u);if(o)for(u=i-1;u>=0;--u)if(!m()){this.updateRangeFromParsed(l,t,p,s);break}return l}getAllParsedValues(t){const e=this._cachedMeta._parsed,r=[];let n,o,i;for(n=0,o=e.length;n<o;++n)i=e[n][t.axis],yn(i)&&r.push(i);return r}getMaxOverflow(){return!1}getLabelAndValue(t){const e=this._cachedMeta,r=e.iScale,n=e.vScale,o=this.getParsed(t);return{label:r?""+r.getLabelForValue(o[r.axis]):"",value:n?""+n.getLabelForValue(o[n.axis]):""}}_update(t){const e=this._cachedMeta;this.update(t||"default"),e._clip=function(t){let e,r,n,o;return xn(t)?(e=t.top,r=t.right,n=t.bottom,o=t.left):e=r=n=o=t,{top:e,right:r,bottom:n,left:o,disabled:!1===t}}(kn(this.options.clip,function(t,e,r){if(!1===r)return!1;const n=Zi(t,r),o=Zi(e,r);return{top:o.end,right:n.end,bottom:o.start,left:n.start}}(e.xScale,e.yScale,this.getMaxOverflow())))}update(t){}draw(){const t=this._ctx,e=this.chart,r=this._cachedMeta,n=r.data||[],o=e.chartArea,i=[],a=this._drawStart||0,s=this._drawCount||n.length-a,l=this.options.drawActiveElementsOnTop;let d;for(r.dataset&&r.dataset.draw(t,o,a,s),d=a;d<a+s;++d){const e=n[d];e.hidden||(e.active&&l?i.push(e):e.draw(t,o))}for(d=0;d<i.length;++d)i[d].draw(t,o)}getStyle(t,e){const r=e?"active":"default";return void 0===t&&this._cachedMeta.dataset?this.resolveDatasetElementOptions(r):this.resolveDataElementOptions(t||0,r)}getContext(t,e,r){const n=this.getDataset();let o;if(t>=0&&t<this._cachedMeta.data.length){const e=this._cachedMeta.data[t];o=e.$context||(e.$context=function(t,e,r){return oi(t,{active:!1,dataIndex:e,parsed:void 0,raw:void 0,element:r,index:e,mode:"default",type:"data"})}(this.getContext(),t,e)),o.parsed=this.getParsed(t),o.raw=n.data[t],o.index=o.dataIndex=t}else o=this.$context||(this.$context=function(t,e){return oi(t,{active:!1,dataset:void 0,datasetIndex:e,index:e,mode:"default",type:"dataset"})}(this.chart.getContext(),this.index)),o.dataset=n,o.index=o.datasetIndex=this.index;return o.active=!!e,o.mode=r,o}resolveDatasetElementOptions(t){return this._resolveElementOptions(this.datasetElementType.id,t)}resolveDataElementOptions(t,e){return this._resolveElementOptions(this.dataElementType.id,e,t)}_resolveElementOptions(t,e="default",r){const n="active"===e,o=this._cachedDataOpts,i=t+"-"+e,a=o[i],s=this.enableOptionSharing&&Dn(r);if(a)return la(a,s);const l=this.chart.config,d=l.datasetElementScopeKeys(this._type,t),c=n?[`${t}Hover`,"hover",t,""]:[t,""],u=l.getOptionScopes(this.getDataset(),d),p=Object.keys(No.elements[t]),m=l.resolveNamedOptions(u,p,(()=>this.getContext(r,n,e)),c);return m.$shared&&(m.$shared=s,o[i]=Object.freeze(la(m,s))),m}_resolveAnimations(t,e,r){const n=this.chart,o=this._cachedDataOpts,i=`animation-${e}`,a=o[i];if(a)return a;let s;if(!1!==n.options.animation){const n=this.chart.config,o=n.datasetAnimationScopeKeys(this._type,e),i=n.getOptionScopes(this.getDataset(),o);s=n.createResolver(i,this.getContext(t,r,e))}const l=new Gi(n,s&&s.animations);return s&&s._cacheable&&(o[i]=Object.freeze(l)),l}getSharedOptions(t){if(t.$shared)return this._sharedOptions||(this._sharedOptions=Object.assign({},t))}includeOptions(t,e){return!e||sa(t)||this.chart._animationsDisabled}_getSharedOptions(t,e){const r=this.resolveDataElementOptions(t,e),n=this._sharedOptions,o=this.getSharedOptions(r),i=this.includeOptions(e,o)||o!==n;return this.updateSharedOptions(o,e,r),{sharedOptions:o,includeOptions:i}}updateElement(t,e,r,n){sa(n)?Object.assign(t,r):this._resolveAnimations(e,n).update(t,r)}updateSharedOptions(t,e,r){t&&!sa(e)&&this._resolveAnimations(void 0,e).update(t,r)}_setStyle(t,e,r,n){t.active=n;const o=this.getStyle(e,n);this._resolveAnimations(e,r,n).update(t,{options:!n&&this.getSharedOptions(o)||o})}removeHoverStyle(t,e,r){this._setStyle(t,r,"active",!1)}setHoverStyle(t,e,r){this._setStyle(t,r,"active",!0)}_removeDatasetHoverStyle(){const t=this._cachedMeta.dataset;t&&this._setStyle(t,void 0,"active",!1)}_setDatasetHoverStyle(){const t=this._cachedMeta.dataset;t&&this._setStyle(t,void 0,"active",!0)}_resyncElements(t){const e=this._data,r=this._cachedMeta.data;for(const[t,e,r]of this._syncList)this[t](e,r);this._syncList=[];const n=r.length,o=e.length,i=Math.min(o,n);i&&this.parse(0,i),o>n?this._insertElements(n,o-n,t):o<n&&this._removeElements(o,n-o)}_insertElements(t,e,r=!0){const n=this._cachedMeta,o=n.data,i=t+e;let a;const s=t=>{for(t.length+=e,a=t.length-1;a>=i;a--)t[a]=t[a-e]};for(s(o),a=t;a<i;++a)o[a]=new this.dataElementType;this._parsing&&s(n._parsed),this.parse(t,e),r&&this.updateElements(o,t,e,"reset")}updateElements(t,e,r,n){}_removeElements(t,e){const r=this._cachedMeta;if(this._parsing){const n=r._parsed.splice(t,e);r._stacked&&aa(r,n)}r.data.splice(t,e)}_sync(t){if(this._parsing)this._syncList.push(t);else{const[e,r,n]=t;this[e](r,n)}this.chart._dataChanges.push([this.index,...t])}_onDataPush(){const t=arguments.length;this._sync(["_insertElements",this.getDataset().data.length-t,t])}_onDataPop(){this._sync(["_removeElements",this._cachedMeta.data.length-1,1])}_onDataShift(){this._sync(["_removeElements",0,1])}_onDataSplice(t,e){e&&this._sync(["_removeElements",t,e]);const r=arguments.length-2;r&&this._sync(["_insertElements",t,r])}_onDataUnshift(){this._sync(["_insertElements",0,arguments.length])}}function ca(t){const e=t.iScale,r=function(t,e){if(!t._cache.$bar){const r=t.getMatchingVisibleMetas(e);let n=[];for(let e=0,o=r.length;e<o;e++)n=n.concat(r[e].controller.getAllParsedValues(t));t._cache.$bar=function(t){const e=new Set;let r,n;for(r=0,n=t.length;r<n;++r)e.add(t[r]);return e.size===n?t:Array.from(e)}(n.sort(((t,e)=>t-e)))}return t._cache.$bar}(e,t.type);let n,o,i,a,s=e._length;const l=()=>{32767!==i&&-32768!==i&&(Dn(a)&&(s=Math.min(s,Math.abs(i-a)||s)),a=i)};for(n=0,o=r.length;n<o;++n)i=e.getPixelForValue(r[n]),l();for(a=void 0,n=0,o=e.ticks.length;n<o;++n)i=e.getPixelForTick(n),l();return s}function ua(t,e,r,n){return vn(t)?function(t,e,r,n){const o=r.parse(t[0],n),i=r.parse(t[1],n),a=Math.min(o,i),s=Math.max(o,i);let l=a,d=s;Math.abs(a)>Math.abs(s)&&(l=s,d=a),e[r.axis]=d,e._custom={barStart:l,barEnd:d,start:o,end:i,min:a,max:s}}(t,e,r,n):e[r.axis]=r.parse(t,n),e}function pa(t,e,r,n){const o=t.iScale,i=t.vScale,a=o.getLabels(),s=o===i,l=[];let d,c,u,p;for(d=r,c=r+n;d<c;++d)p=e[d],u={},u[o.axis]=s||o.parse(a[d],d),l.push(ua(p,u,i,d));return l}function ma(t){return t&&void 0!==t.barStart&&void 0!==t.barEnd}function fa(t,e,r,n){let o=e.borderSkipped;const i={};if(!o)return void(t.borderSkipped=i);if(!0===o)return void(t.borderSkipped={top:!0,right:!0,bottom:!0,left:!0});const{start:a,end:s,reverse:l,top:d,bottom:c}=function(t){let e,r,n,o,i;return t.horizontal?(e=t.base>t.x,r="left",n="right"):(e=t.base<t.y,r="bottom",n="top"),e?(o="end",i="start"):(o="start",i="end"),{start:r,end:n,reverse:e,top:o,bottom:i}}(t);"middle"===o&&r&&(t.enableBorderRadius=!0,(r._top||0)===n?o=d:(r._bottom||0)===n?o=c:(i[ha(c,a,s,l)]=!0,o=d)),i[ha(o,a,s,l)]=!0,t.borderSkipped=i}function ha(t,e,r,n){var o,i,a;return n?(a=r,t=ba(t=(o=t)===(i=e)?a:o===a?i:o,r,e)):t=ba(t,e,r),t}function ba(t,e,r){return"start"===t?e:"end"===t?r:t}function ga(t,{inflateAmount:e},r){t.inflateAmount="auto"===e?1===r?.33:0:e}class va extends da{static id="bar";static defaults={datasetElementType:!1,dataElementType:"bar",categoryPercentage:.8,barPercentage:.9,grouped:!0,animations:{numbers:{type:"number",properties:["x","y","base","width","height"]}}};static overrides={scales:{_index_:{type:"category",offset:!0,grid:{offset:!0}},_value_:{type:"linear",beginAtZero:!0}}};parsePrimitiveData(t,e,r,n){return pa(t,e,r,n)}parseArrayData(t,e,r,n){return pa(t,e,r,n)}parseObjectData(t,e,r,n){const{iScale:o,vScale:i}=t,{xAxisKey:a="x",yAxisKey:s="y"}=this._parsing,l="x"===o.axis?a:s,d="x"===i.axis?a:s,c=[];let u,p,m,f;for(u=r,p=r+n;u<p;++u)f=e[u],m={},m[o.axis]=o.parse(Rn(f,l),u),c.push(ua(Rn(f,d),m,i,u));return c}updateRangeFromParsed(t,e,r,n){super.updateRangeFromParsed(t,e,r,n);const o=r._custom;o&&e===this._cachedMeta.vScale&&(t.min=Math.min(t.min,o.min),t.max=Math.max(t.max,o.max))}getMaxOverflow(){return 0}getLabelAndValue(t){const e=this._cachedMeta,{iScale:r,vScale:n}=e,o=this.getParsed(t),i=o._custom,a=ma(i)?"["+i.start+", "+i.end+"]":""+n.getLabelForValue(o[n.axis]);return{label:""+r.getLabelForValue(o[r.axis]),value:a}}initialize(){this.enableOptionSharing=!0,super.initialize(),this._cachedMeta.stack=this.getDataset().stack}update(t){const e=this._cachedMeta;this.updateElements(e.data,0,e.data.length,t)}updateElements(t,e,r,n){const o="reset"===n,{index:i,_cachedMeta:{vScale:a}}=this,s=a.getBasePixel(),l=a.isHorizontal(),d=this._getRuler(),{sharedOptions:c,includeOptions:u}=this._getSharedOptions(e,n);for(let p=e;p<e+r;p++){const e=this.getParsed(p),r=o||gn(e[a.axis])?{base:s,head:s}:this._calculateBarValuePixels(p),m=this._calculateBarIndexPixels(p,d),f=(e._stacks||{})[a.axis],h={horizontal:l,base:r.base,enableBorderRadius:!f||ma(e._custom)||i===f._top||i===f._bottom,x:l?r.head:m.center,y:l?m.center:r.head,height:l?m.size:Math.abs(r.size),width:l?Math.abs(r.size):m.size};u&&(h.options=c||this.resolveDataElementOptions(p,t[p].active?"active":n));const b=h.options||t[p].options;fa(h,b,f,i),ga(h,b,d.ratio),this.updateElement(t[p],p,h,n)}}_getStacks(t,e){const{iScale:r}=this._cachedMeta,n=r.getMatchingVisibleMetas(this._type).filter((t=>t.controller.options.grouped)),o=r.options.stacked,i=[],a=t=>{const r=t.controller.getParsed(e),n=r&&r[t.vScale.axis];if(gn(n)||isNaN(n))return!0};for(const r of n)if((void 0===e||!a(r))&&((!1===o||-1===i.indexOf(r.stack)||void 0===o&&void 0===r.stack)&&i.push(r.stack),r.index===t))break;return i.length||i.push(void 0),i}_getStackCount(t){return this._getStacks(void 0,t).length}_getStackIndex(t,e,r){const n=this._getStacks(t,r),o=void 0!==e?n.indexOf(e):-1;return-1===o?n.length-1:o}_getRuler(){const t=this.options,e=this._cachedMeta,r=e.iScale,n=[];let o,i;for(o=0,i=e.data.length;o<i;++o)n.push(r.getPixelForValue(this.getParsed(o)[r.axis],o));const a=t.barThickness;return{min:a||ca(e),pixels:n,start:r._startPixel,end:r._endPixel,stackCount:this._getStackCount(),scale:r,grouped:t.grouped,ratio:a?1:t.categoryPercentage*t.barPercentage}}_calculateBarValuePixels(t){const{_cachedMeta:{vScale:e,_stacked:r,index:n},options:{base:o,minBarLength:i}}=this,a=o||0,s=this.getParsed(t),l=s._custom,d=ma(l);let c,u,p=s[e.axis],m=0,f=r?this.applyStack(e,s,r):p;f!==p&&(m=f-p,f=p),d&&(p=l.barStart,f=l.barEnd-l.barStart,0!==p&&Kn(p)!==Kn(l.barEnd)&&(m=0),m+=p);const h=gn(o)||d?m:o;let b=e.getPixelForValue(h);if(c=this.chart.getDataVisibility(t)?e.getPixelForValue(m+f):b,u=c-b,Math.abs(u)<i){u=function(t,e,r){return 0!==t?Kn(t):(e.isHorizontal()?1:-1)*(e.min>=r?1:-1)}(u,e,a)*i,p===a&&(b-=u/2);const t=e.getPixelForDecimal(0),o=e.getPixelForDecimal(1),l=Math.min(t,o),m=Math.max(t,o);b=Math.max(Math.min(b,m),l),c=b+u,r&&!d&&(s._stacks[e.axis]._visualValues[n]=e.getValueForPixel(c)-e.getValueForPixel(b))}if(b===e.getPixelForValue(a)){const t=Kn(u)*e.getLineWidthForValue(a)/2;b+=t,u-=t}return{size:u,base:b,head:c,center:c+u/2}}_calculateBarIndexPixels(t,e){const r=e.scale,n=this.options,o=n.skipNull,i=kn(n.maxBarThickness,1/0);let a,s;if(e.grouped){const r=o?this._getStackCount(t):e.stackCount,l="flex"===n.barThickness?function(t,e,r,n){const o=e.pixels,i=o[t];let a=t>0?o[t-1]:null,s=t<o.length-1?o[t+1]:null;const l=r.categoryPercentage;null===a&&(a=i-(null===s?e.end-e.start:s-i)),null===s&&(s=i+i-a);const d=i-(i-Math.min(a,s))/2*l;return{chunk:Math.abs(s-a)/2*l/n,ratio:r.barPercentage,start:d}}(t,e,n,r):function(t,e,r,n){const o=r.barThickness;let i,a;return gn(o)?(i=e.min*r.categoryPercentage,a=r.barPercentage):(i=o*n,a=1),{chunk:i/n,ratio:a,start:e.pixels[t]-i/2}}(t,e,n,r),d=this._getStackIndex(this.index,this._cachedMeta.stack,o?t:void 0);a=l.start+l.chunk*d+l.chunk/2,s=Math.min(i,l.chunk*l.ratio)}else a=r.getPixelForValue(this.getParsed(t)[r.axis],t),s=Math.min(i,e.min*e.ratio);return{base:a-s/2,head:a+s/2,center:a,size:s}}draw(){const t=this._cachedMeta,e=t.vScale,r=t.data,n=r.length;let o=0;for(;o<n;++o)null!==this.getParsed(o)[e.axis]&&r[o].draw(this._ctx)}}class xa extends da{static id="line";static defaults={datasetElementType:"line",dataElementType:"point",showLine:!0,spanGaps:!1};static overrides={scales:{_index_:{type:"category"},_value_:{type:"linear"}}};initialize(){this.enableOptionSharing=!0,this.supportsDecimation=!0,super.initialize()}update(t){const e=this._cachedMeta,{dataset:r,data:n=[],_dataset:o}=e,i=this.chart._animationsDisabled;let{start:a,count:s}=function(t,e,r){const n=e.length;let o=0,i=n;if(t._sorted){const{iScale:a,_parsed:s}=t,l=a.axis,{min:d,max:c,minDefined:u,maxDefined:p}=a.getUserBounds();u&&(o=oo(Math.min(so(s,a.axis,d).lo,r?n:so(e,l,a.getPixelForValue(d)).lo),0,n-1)),i=p?oo(Math.max(so(s,a.axis,c,!0).hi+1,r?0:so(e,l,a.getPixelForValue(c),!0).hi+1),o,n)-o:n-o}return{start:o,count:i}}(e,n,i);this._drawStart=a,this._drawCount=s,function(t){const{xScale:e,yScale:r,_scaleRanges:n}=t,o={xmin:e.min,xmax:e.max,ymin:r.min,ymax:r.max};if(!n)return t._scaleRanges=o,!0;const i=n.xmin!==e.min||n.xmax!==e.max||n.ymin!==r.min||n.ymax!==r.max;return Object.assign(n,o),i}(e)&&(a=0,s=n.length),r._chart=this.chart,r._datasetIndex=this.index,r._decimated=!!o._decimated,r.points=n;const l=this.resolveDatasetElementOptions(t);this.options.showLine||(l.borderWidth=0),l.segment=this.options.segment,this.updateElement(r,void 0,{animated:!i,options:l},t),this.updateElements(n,a,s,t)}updateElements(t,e,r,n){const o="reset"===n,{iScale:i,vScale:a,_stacked:s,_dataset:l}=this._cachedMeta,{sharedOptions:d,includeOptions:c}=this._getSharedOptions(e,n),u=i.axis,p=a.axis,{spanGaps:m,segment:f}=this.options,h=qn(m)?m:Number.POSITIVE_INFINITY,b=this.chart._animationsDisabled||o||"none"===n,g=e+r,v=t.length;let x=e>0&&this.getParsed(e-1);for(let r=0;r<v;++r){const m=t[r],v=b?m:{};if(r<e||r>=g){v.skip=!0;continue}const y=this.getParsed(r),w=gn(y[p]),k=v[u]=i.getPixelForValue(y[u],r),_=v[p]=o||w?a.getBasePixel():a.getPixelForValue(s?this.applyStack(a,y,s):y[p],r);v.skip=isNaN(k)||isNaN(_)||w,v.stop=r>0&&Math.abs(y[u]-x[u])>h,f&&(v.parsed=y,v.raw=l.data[r]),c&&(v.options=d||this.resolveDataElementOptions(r,m.active?"active":n)),b||this.updateElement(m,r,v,n),x=y}}getMaxOverflow(){const t=this._cachedMeta,e=t.dataset,r=e.options&&e.options.borderWidth||0,n=t.data||[];if(!n.length)return r;const o=n[0].size(this.resolveDataElementOptions(0)),i=n[n.length-1].size(this.resolveDataElementOptions(n.length-1));return Math.max(r,o,i)/2}draw(){const t=this._cachedMeta;t.dataset.updateControlPoints(this.chart.chartArea,t.iScale.axis),super.draw()}}function ya(t,e,r,n){const{controller:o,data:i,_sorted:a}=t,s=o._cachedMeta.iScale;if(s&&e===s.axis&&"r"!==e&&a&&i.length){const t=s._reversePixels?lo:so;if(!n)return t(i,e,r);if(o._sharedOptions){const n=i[0],o="function"==typeof n.getRange&&n.getRange(e);if(o){const n=t(i,e,r-o),a=t(i,e,r+o);return{lo:n.lo,hi:a.hi}}}}return{lo:0,hi:i.length-1}}function wa(t,e,r,n,o){const i=t.getSortedVisibleDatasetMetas(),a=r[e];for(let t=0,r=i.length;t<r;++t){const{index:r,data:s}=i[t],{lo:l,hi:d}=ya(i[t],e,a,o);for(let t=l;t<=d;++t){const e=s[t];e.skip||n(e,r,t)}}}function ka(t,e,r,n,o){const i=[];return o||t.isPointInArea(e)?(wa(t,r,e,(function(r,a,s){(o||Bo(r,t.chartArea,0))&&r.inRange(e.x,e.y,n)&&i.push({element:r,datasetIndex:a,index:s})}),!0),i):i}function _a(t,e,r,n,o,i){return i||t.isPointInArea(e)?"r"!==r||n?function(t,e,r,n,o,i){let a=[];const s=function(t){const e=-1!==t.indexOf("x"),r=-1!==t.indexOf("y");return function(t,n){const o=e?Math.abs(t.x-n.x):0,i=r?Math.abs(t.y-n.y):0;return Math.sqrt(Math.pow(o,2)+Math.pow(i,2))}}(r);let l=Number.POSITIVE_INFINITY;return wa(t,r,e,(function(r,d,c){const u=r.inRange(e.x,e.y,o);if(n&&!u)return;const p=r.getCenterPoint(o);if(!i&&!t.isPointInArea(p)&&!u)return;const m=s(e,p);m<l?(a=[{element:r,datasetIndex:d,index:c}],l=m):m===l&&a.push({element:r,datasetIndex:d,index:c})})),a}(t,e,r,n,o,i):function(t,e,r,n){let o=[];return wa(t,r,e,(function(t,r,i){const{startAngle:a,endAngle:s}=t.getProps(["startAngle","endAngle"],n),{angle:l}=function(t,e){const r=e.x-t.x,n=e.y-t.y,o=Math.sqrt(r*r+n*n);let i=Math.atan2(n,r);return i<-.5*jn&&(i+=Fn),{angle:i,distance:o}}(t,{x:e.x,y:e.y});no(l,a,s)&&o.push({element:t,datasetIndex:r,index:i})})),o}(t,e,r,o):[]}function Sa(t,e,r,n,o){const i=[],a="x"===r?"inXRange":"inYRange";let s=!1;return wa(t,r,e,((t,n,l)=>{t[a](e[r],o)&&(i.push({element:t,datasetIndex:n,index:l}),s=s||t.inRange(e.x,e.y,o))})),n&&!s?[]:i}var Ea={evaluateInteractionItems:wa,modes:{index(t,e,r,n){const o=Oi(e,t),i=r.axis||"x",a=r.includeInvisible||!1,s=r.intersect?ka(t,o,i,n,a):_a(t,o,i,!1,n,a),l=[];return s.length?(t.getSortedVisibleDatasetMetas().forEach((t=>{const e=s[0].index,r=t.data[e];r&&!r.skip&&l.push({element:r,datasetIndex:t.index,index:e})})),l):[]},dataset(t,e,r,n){const o=Oi(e,t),i=r.axis||"xy",a=r.includeInvisible||!1;let s=r.intersect?ka(t,o,i,n,a):_a(t,o,i,!1,n,a);if(s.length>0){const e=s[0].datasetIndex,r=t.getDatasetMeta(e).data;s=[];for(let t=0;t<r.length;++t)s.push({element:r[t],datasetIndex:e,index:t})}return s},point:(t,e,r,n)=>ka(t,Oi(e,t),r.axis||"xy",n,r.includeInvisible||!1),nearest(t,e,r,n){const o=Oi(e,t),i=r.axis||"xy",a=r.includeInvisible||!1;return _a(t,o,i,r.intersect,n,a)},x:(t,e,r,n)=>Sa(t,Oi(e,t),"x",r.intersect,n),y:(t,e,r,n)=>Sa(t,Oi(e,t),"y",r.intersect,n)}};const Ca=["left","top","right","bottom"];function za(t,e){return t.filter((t=>t.pos===e))}function Ma(t,e){return t.filter((t=>-1===Ca.indexOf(t.pos)&&t.box.axis===e))}function Pa(t,e){return t.sort(((t,r)=>{const n=e?r:t,o=e?t:r;return n.weight===o.weight?n.index-o.index:n.weight-o.weight}))}function Oa(t,e,r,n){return Math.max(t[r],e[r])+Math.max(t[n],e[n])}function Ta(t,e){t.top=Math.max(t.top,e.top),t.left=Math.max(t.left,e.left),t.bottom=Math.max(t.bottom,e.bottom),t.right=Math.max(t.right,e.right)}function La(t,e,r,n){const{pos:o,box:i}=r,a=t.maxPadding;if(!xn(o)){r.size&&(t[o]-=r.size);const e=n[r.stack]||{size:0,count:1};e.size=Math.max(e.size,r.horizontal?i.height:i.width),r.size=e.size/e.count,t[o]+=r.size}i.getPadding&&Ta(a,i.getPadding());const s=Math.max(0,e.outerWidth-Oa(a,t,"left","right")),l=Math.max(0,e.outerHeight-Oa(a,t,"top","bottom")),d=s!==t.w,c=l!==t.h;return t.w=s,t.h=l,r.horizontal?{same:d,other:c}:{same:c,other:d}}function Ra(t,e){const r=e.maxPadding;return function(t){const n={left:0,top:0,right:0,bottom:0};return t.forEach((t=>{n[t]=Math.max(e[t],r[t])})),n}(t?["left","right"]:["top","bottom"])}function Na(t,e,r,n){const o=[];let i,a,s,l,d,c;for(i=0,a=t.length,d=0;i<a;++i){s=t[i],l=s.box,l.update(s.width||e.w,s.height||e.h,Ra(s.horizontal,e));const{same:a,other:u}=La(e,r,s,n);d|=a&&o.length,c=c||u,l.fullSize||o.push(s)}return d&&Na(o,e,r,n)||c}function Da(t,e,r,n,o){t.top=r,t.left=e,t.right=e+n,t.bottom=r+o,t.width=n,t.height=o}function Ia(t,e,r,n){const o=r.padding;let{x:i,y:a}=e;for(const s of t){const t=s.box,l=n[s.stack]||{count:1,placed:0,weight:1},d=s.stackWeight/l.weight||1;if(s.horizontal){const n=e.w*d,i=l.size||t.height;Dn(l.start)&&(a=l.start),t.fullSize?Da(t,o.left,a,r.outerWidth-o.right-o.left,i):Da(t,e.left+l.placed,a,n,i),l.start=a,l.placed+=n,a=t.bottom}else{const n=e.h*d,a=l.size||t.width;Dn(l.start)&&(i=l.start),t.fullSize?Da(t,i,o.top,a,r.outerHeight-o.bottom-o.top):Da(t,i,e.top+l.placed,a,n),l.start=i,l.placed+=n,i=t.right}}e.x=i,e.y=a}var Aa={addBox(t,e){t.boxes||(t.boxes=[]),e.fullSize=e.fullSize||!1,e.position=e.position||"top",e.weight=e.weight||0,e._layers=e._layers||function(){return[{z:0,draw(t){e.draw(t)}}]},t.boxes.push(e)},removeBox(t,e){const r=t.boxes?t.boxes.indexOf(e):-1;-1!==r&&t.boxes.splice(r,1)},configure(t,e,r){e.fullSize=r.fullSize,e.position=r.position,e.weight=r.weight},update(t,e,r,n){if(!t)return;const o=ei(t.options.layout.padding),i=Math.max(e-o.width,0),a=Math.max(r-o.height,0),s=function(t){const e=function(t){const e=[];let r,n,o,i,a,s;for(r=0,n=(t||[]).length;r<n;++r)o=t[r],({position:i,options:{stack:a,stackWeight:s=1}}=o),e.push({index:r,box:o,pos:i,horizontal:o.isHorizontal(),weight:o.weight,stack:a&&i+a,stackWeight:s});return e}(t),r=Pa(e.filter((t=>t.box.fullSize)),!0),n=Pa(za(e,"left"),!0),o=Pa(za(e,"right")),i=Pa(za(e,"top"),!0),a=Pa(za(e,"bottom")),s=Ma(e,"x"),l=Ma(e,"y");return{fullSize:r,leftAndTop:n.concat(i),rightAndBottom:o.concat(l).concat(a).concat(s),chartArea:za(e,"chartArea"),vertical:n.concat(o).concat(l),horizontal:i.concat(a).concat(s)}}(t.boxes),l=s.vertical,d=s.horizontal;Sn(t.boxes,(t=>{"function"==typeof t.beforeLayout&&t.beforeLayout()}));const c=l.reduce(((t,e)=>e.box.options&&!1===e.box.options.display?t:t+1),0)||1,u=Object.freeze({outerWidth:e,outerHeight:r,padding:o,availableWidth:i,availableHeight:a,vBoxMaxWidth:i/2/c,hBoxMaxHeight:a/2}),p=Object.assign({},o);Ta(p,ei(n));const m=Object.assign({maxPadding:p,w:i,h:a,x:o.left,y:o.top},o),f=function(t,e){const r=function(t){const e={};for(const r of t){const{stack:t,pos:n,stackWeight:o}=r;if(!t||!Ca.includes(n))continue;const i=e[t]||(e[t]={count:0,placed:0,weight:0,size:0});i.count++,i.weight+=o}return e}(t),{vBoxMaxWidth:n,hBoxMaxHeight:o}=e;let i,a,s;for(i=0,a=t.length;i<a;++i){s=t[i];const{fullSize:a}=s.box,l=r[s.stack],d=l&&s.stackWeight/l.weight;s.horizontal?(s.width=d?d*n:a&&e.availableWidth,s.height=o):(s.width=n,s.height=d?d*o:a&&e.availableHeight)}return r}(l.concat(d),u);Na(s.fullSize,m,u,f),Na(l,m,u,f),Na(d,m,u,f)&&Na(l,m,u,f),function(t){const e=t.maxPadding;function r(r){const n=Math.max(e[r]-t[r],0);return t[r]+=n,n}t.y+=r("top"),t.x+=r("left"),r("right"),r("bottom")}(m),Ia(s.leftAndTop,m,u,f),m.x+=m.w,m.y+=m.h,Ia(s.rightAndBottom,m,u,f),t.chartArea={left:m.left,top:m.top,right:m.left+m.w,bottom:m.top+m.h,height:m.h,width:m.w},Sn(s.chartArea,(e=>{const r=e.box;Object.assign(r,t.chartArea),r.update(m.w,m.h,{left:0,top:0,right:0,bottom:0})}))}};class ja{acquireContext(t,e){}releaseContext(t){return!1}addEventListener(t,e,r){}removeEventListener(t,e,r){}getDevicePixelRatio(){return 1}getMaximumSize(t,e,r,n){return e=Math.max(0,e||t.width),r=r||t.height,{width:e,height:Math.max(0,n?Math.floor(e/n):r)}}isAttached(t){return!0}updateConfig(t){}}class Fa extends ja{acquireContext(t){return t&&t.getContext&&t.getContext("2d")||null}updateConfig(t){t.options.animation=!1}}const Ba={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"},Ua=t=>null===t||""===t,Ha=!!Ri&&{passive:!0};function Va(t,e,r){t.canvas.removeEventListener(e,r,Ha)}function $a(t,e){for(const r of t)if(r===e||r.contains(e))return!0}function Wa(t,e,r){const n=t.canvas,o=new MutationObserver((t=>{let e=!1;for(const r of t)e=e||$a(r.addedNodes,n),e=e&&!$a(r.removedNodes,n);e&&r()}));return o.observe(document,{childList:!0,subtree:!0}),o}function Ya(t,e,r){const n=t.canvas,o=new MutationObserver((t=>{let e=!1;for(const r of t)e=e||$a(r.removedNodes,n),e=e&&!$a(r.addedNodes,n);e&&r()}));return o.observe(document,{childList:!0,subtree:!0}),o}const Ka=new Map;let Qa=0;function Xa(){const t=window.devicePixelRatio;t!==Qa&&(Qa=t,Ka.forEach(((e,r)=>{r.currentDevicePixelRatio!==t&&e()})))}function qa(t,e,r){const n=t.canvas,o=n&&Ei(n);if(!o)return;const i=mo(((t,e)=>{const n=o.clientWidth;r(t,e),n<o.clientWidth&&r()}),window),a=new ResizeObserver((t=>{const e=t[0],r=e.contentRect.width,n=e.contentRect.height;0===r&&0===n||i(r,n)}));return a.observe(o),function(t,e){Ka.size||window.addEventListener("resize",Xa),Ka.set(t,e)}(t,i),a}function Ga(t,e,r){r&&r.disconnect(),"resize"===e&&function(t){Ka.delete(t),Ka.size||window.removeEventListener("resize",Xa)}(t)}function Za(t,e,r){const n=t.canvas,o=mo((e=>{null!==t.ctx&&r(function(t,e){const r=Ba[t.type]||t.type,{x:n,y:o}=Oi(t,e);return{type:r,chart:e,native:t,x:void 0!==n?n:null,y:void 0!==o?o:null}}(e,t))}),t);return function(t,e,r){t.addEventListener(e,r,Ha)}(n,e,o),o}class Ja extends ja{acquireContext(t,e){const r=t&&t.getContext&&t.getContext("2d");return r&&r.canvas===t?(function(t,e){const r=t.style,n=t.getAttribute("height"),o=t.getAttribute("width");if(t.$chartjs={initial:{height:n,width:o,style:{display:r.display,height:r.height,width:r.width}}},r.display=r.display||"block",r.boxSizing=r.boxSizing||"border-box",Ua(o)){const e=Ni(t,"width");void 0!==e&&(t.width=e)}if(Ua(n))if(""===t.style.height)t.height=t.width/(e||2);else{const e=Ni(t,"height");void 0!==e&&(t.height=e)}}(t,e),r):null}releaseContext(t){const e=t.canvas;if(!e.$chartjs)return!1;const r=e.$chartjs.initial;["height","width"].forEach((t=>{const n=r[t];gn(n)?e.removeAttribute(t):e.setAttribute(t,n)}));const n=r.style||{};return Object.keys(n).forEach((t=>{e.style[t]=n[t]})),e.width=e.width,delete e.$chartjs,!0}addEventListener(t,e,r){this.removeEventListener(t,e);const n=t.$proxies||(t.$proxies={}),o={attach:Wa,detach:Ya,resize:qa}[e]||Za;n[e]=o(t,e,r)}removeEventListener(t,e){const r=t.$proxies||(t.$proxies={}),n=r[e];n&&(({attach:Ga,detach:Ga,resize:Ga}[e]||Va)(t,e,n),r[e]=void 0)}getDevicePixelRatio(){return window.devicePixelRatio}getMaximumSize(t,e,r,n){return function(t,e,r,n){const o=zi(t),i=Pi(o,"margin"),a=Ci(o.maxWidth,t,"clientWidth")||Un,s=Ci(o.maxHeight,t,"clientHeight")||Un,l=function(t,e,r){let n,o;if(void 0===e||void 0===r){const i=Ei(t);if(i){const t=i.getBoundingClientRect(),a=zi(i),s=Pi(a,"border","width"),l=Pi(a,"padding");e=t.width-l.width-s.width,r=t.height-l.height-s.height,n=Ci(a.maxWidth,i,"clientWidth"),o=Ci(a.maxHeight,i,"clientHeight")}else e=t.clientWidth,r=t.clientHeight}return{width:e,height:r,maxWidth:n||Un,maxHeight:o||Un}}(t,e,r);let{width:d,height:c}=l;if("content-box"===o.boxSizing){const t=Pi(o,"border","width"),e=Pi(o,"padding");d-=e.width+t.width,c-=e.height+t.height}return d=Math.max(0,d-i.width),c=Math.max(0,n?d/n:c-i.height),d=Ti(Math.min(d,a,l.maxWidth)),c=Ti(Math.min(c,s,l.maxHeight)),d&&!c&&(c=Ti(d/2)),(void 0!==e||void 0!==r)&&n&&l.height&&c>l.height&&(c=l.height,d=Ti(Math.floor(c*n))),{width:d,height:c}}(t,e,r,n)}isAttached(t){const e=Ei(t);return!(!e||!e.isConnected)}}class ts{static defaults={};static defaultRoutes=void 0;active=!1;tooltipPosition(t){const{x:e,y:r}=this.getProps(["x","y"],t);return{x:e,y:r}}hasValue(){return qn(this.x)&&qn(this.y)}getProps(t,e){const r=this.$animations;if(!e||!r)return this;const n={};return t.forEach((t=>{n[t]=r[t]&&r[t].active()?r[t]._to:this[t]})),n}}function es(t,e,r,n,o){const i=kn(n,0),a=Math.min(kn(o,t.length),t.length);let s,l,d,c=0;for(r=Math.ceil(r),o&&(s=o-n,r=s/Math.floor(s/r)),d=i;d<0;)c++,d=Math.round(i+c*r);for(l=Math.max(i,0);l<a;l++)l===d&&(e.push(t[l]),c++,d=Math.round(i+c*r))}const rs=(t,e,r)=>"top"===e||"left"===e?t[e]+r:t[e]-r,ns=(t,e)=>Math.min(e||t,t);function os(t,e){const r=[],n=t.length/e,o=t.length;let i=0;for(;i<o;i+=n)r.push(t[Math.floor(i)]);return r}function is(t,e,r){const n=t.ticks.length,o=Math.min(e,n-1),i=t._startPixel,a=t._endPixel,s=1e-6;let l,d=t.getPixelForTick(o);if(!(r&&(l=1===n?Math.max(d-i,a-d):0===e?(t.getPixelForTick(1)-d)/2:(d-t.getPixelForTick(o-1))/2,d+=o<e?l:-l,d<i-s||d>a+s)))return d}function as(t){return t.drawTicks?t.tickLength:0}function ss(t,e){if(!t.display)return 0;const r=ri(t.font,e),n=ei(t.padding);return(vn(t.text)?t.text.length:1)*r.lineHeight+n.height}function ls(t,e,r){let n=fo(t);return(r&&"right"!==e||!r&&"right"===e)&&(n=(t=>"left"===t?"right":"right"===t?"left":t)(n)),n}class ds extends ts{constructor(t){super(),this.id=t.id,this.type=t.type,this.options=void 0,this.ctx=t.ctx,this.chart=t.chart,this.top=void 0,this.bottom=void 0,this.left=void 0,this.right=void 0,this.width=void 0,this.height=void 0,this._margins={left:0,right:0,top:0,bottom:0},this.maxWidth=void 0,this.maxHeight=void 0,this.paddingTop=void 0,this.paddingBottom=void 0,this.paddingLeft=void 0,this.paddingRight=void 0,this.axis=void 0,this.labelRotation=void 0,this.min=void 0,this.max=void 0,this._range=void 0,this.ticks=[],this._gridLineItems=null,this._labelItems=null,this._labelSizes=null,this._length=0,this._maxLength=0,this._longestTextCache={},this._startPixel=void 0,this._endPixel=void 0,this._reversePixels=!1,this._userMax=void 0,this._userMin=void 0,this._suggestedMax=void 0,this._suggestedMin=void 0,this._ticksLength=0,this._borderValue=0,this._cache={},this._dataLimitsCached=!1,this.$context=void 0}init(t){this.options=t.setContext(this.getContext()),this.axis=t.axis,this._userMin=this.parse(t.min),this._userMax=this.parse(t.max),this._suggestedMin=this.parse(t.suggestedMin),this._suggestedMax=this.parse(t.suggestedMax)}parse(t,e){return t}getUserBounds(){let{_userMin:t,_userMax:e,_suggestedMin:r,_suggestedMax:n}=this;return t=wn(t,Number.POSITIVE_INFINITY),e=wn(e,Number.NEGATIVE_INFINITY),r=wn(r,Number.POSITIVE_INFINITY),n=wn(n,Number.NEGATIVE_INFINITY),{min:wn(t,r),max:wn(e,n),minDefined:yn(t),maxDefined:yn(e)}}getMinMax(t){let e,{min:r,max:n,minDefined:o,maxDefined:i}=this.getUserBounds();if(o&&i)return{min:r,max:n};const a=this.getMatchingVisibleMetas();for(let s=0,l=a.length;s<l;++s)e=a[s].controller.getMinMax(this,t),o||(r=Math.min(r,e.min)),i||(n=Math.max(n,e.max));return r=i&&r>n?n:r,n=o&&r>n?r:n,{min:wn(r,wn(n,r)),max:wn(n,wn(r,n))}}getPadding(){return{left:this.paddingLeft||0,top:this.paddingTop||0,right:this.paddingRight||0,bottom:this.paddingBottom||0}}getTicks(){return this.ticks}getLabels(){const t=this.chart.data;return this.options.labels||(this.isHorizontal()?t.xLabels:t.yLabels)||t.labels||[]}getLabelItems(t=this.chart.chartArea){return this._labelItems||(this._labelItems=this._computeLabelItems(t))}beforeLayout(){this._cache={},this._dataLimitsCached=!1}beforeUpdate(){_n(this.options.beforeUpdate,[this])}update(t,e,r){const{beginAtZero:n,grace:o,ticks:i}=this.options,a=i.sampleSize;this.beforeUpdate(),this.maxWidth=t,this.maxHeight=e,this._margins=r=Object.assign({left:0,right:0,top:0,bottom:0},r),this.ticks=null,this._labelSizes=null,this._gridLineItems=null,this._labelItems=null,this.beforeSetDimensions(),this.setDimensions(),this.afterSetDimensions(),this._maxLength=this.isHorizontal()?this.width+r.left+r.right:this.height+r.top+r.bottom,this._dataLimitsCached||(this.beforeDataLimits(),this.determineDataLimits(),this.afterDataLimits(),this._range=function(t,e,r){const{min:n,max:o}=t,i=(l=(o-n)/2,"string"==typeof(s=e)&&s.endsWith("%")?parseFloat(s)/100*l:+s),a=(t,e)=>r&&0===t?0:t+e;var s,l;return{min:a(n,-Math.abs(i)),max:a(o,i)}}(this,o,n),this._dataLimitsCached=!0),this.beforeBuildTicks(),this.ticks=this.buildTicks()||[],this.afterBuildTicks();const s=a<this.ticks.length;this._convertTicksToLabels(s?os(this.ticks,a):this.ticks),this.configure(),this.beforeCalculateLabelRotation(),this.calculateLabelRotation(),this.afterCalculateLabelRotation(),i.display&&(i.autoSkip||"auto"===i.source)&&(this.ticks=function(t,e){const r=t.options.ticks,n=function(t){const e=t.options.offset,r=t._tickSize(),n=t._length/r+(e?0:1),o=t._maxLength/r;return Math.floor(Math.min(n,o))}(t),o=Math.min(r.maxTicksLimit||n,n),i=r.major.enabled?function(t){const e=[];let r,n;for(r=0,n=t.length;r<n;r++)t[r].major&&e.push(r);return e}(e):[],a=i.length,s=i[0],l=i[a-1],d=[];if(a>o)return function(t,e,r,n){let o,i=0,a=r[0];for(n=Math.ceil(n),o=0;o<t.length;o++)o===a&&(e.push(t[o]),i++,a=r[i*n])}(e,d,i,a/o),d;const c=function(t,e,r){const n=function(t){const e=t.length;let r,n;if(e<2)return!1;for(n=t[0],r=1;r<e;++r)if(t[r]-t[r-1]!==n)return!1;return n}(t),o=e.length/r;if(!n)return Math.max(o,1);const i=function(t){const e=[],r=Math.sqrt(t);let n;for(n=1;n<r;n++)t%n==0&&(e.push(n),e.push(t/n));return r===(0|r)&&e.push(r),e.sort(((t,e)=>t-e)).pop(),e}(n);for(let t=0,e=i.length-1;t<e;t++){const e=i[t];if(e>o)return e}return Math.max(o,1)}(i,e,o);if(a>0){let t,r;const n=a>1?Math.round((l-s)/(a-1)):null;for(es(e,d,c,gn(n)?0:s-n,s),t=0,r=a-1;t<r;t++)es(e,d,c,i[t],i[t+1]);return es(e,d,c,l,gn(n)?e.length:l+n),d}return es(e,d,c),d}(this,this.ticks),this._labelSizes=null,this.afterAutoSkip()),s&&this._convertTicksToLabels(this.ticks),this.beforeFit(),this.fit(),this.afterFit(),this.afterUpdate()}configure(){let t,e,r=this.options.reverse;this.isHorizontal()?(t=this.left,e=this.right):(t=this.top,e=this.bottom,r=!r),this._startPixel=t,this._endPixel=e,this._reversePixels=r,this._length=e-t,this._alignToPixels=this.options.alignToPixels}afterUpdate(){_n(this.options.afterUpdate,[this])}beforeSetDimensions(){_n(this.options.beforeSetDimensions,[this])}setDimensions(){this.isHorizontal()?(this.width=this.maxWidth,this.left=0,this.right=this.width):(this.height=this.maxHeight,this.top=0,this.bottom=this.height),this.paddingLeft=0,this.paddingTop=0,this.paddingRight=0,this.paddingBottom=0}afterSetDimensions(){_n(this.options.afterSetDimensions,[this])}_callHooks(t){this.chart.notifyPlugins(t,this.getContext()),_n(this.options[t],[this])}beforeDataLimits(){this._callHooks("beforeDataLimits")}determineDataLimits(){}afterDataLimits(){this._callHooks("afterDataLimits")}beforeBuildTicks(){this._callHooks("beforeBuildTicks")}buildTicks(){return[]}afterBuildTicks(){this._callHooks("afterBuildTicks")}beforeTickToLabelConversion(){_n(this.options.beforeTickToLabelConversion,[this])}generateTickLabels(t){const e=this.options.ticks;let r,n,o;for(r=0,n=t.length;r<n;r++)o=t[r],o.label=_n(e.callback,[o.value,r,t],this)}afterTickToLabelConversion(){_n(this.options.afterTickToLabelConversion,[this])}beforeCalculateLabelRotation(){_n(this.options.beforeCalculateLabelRotation,[this])}calculateLabelRotation(){const t=this.options,e=t.ticks,r=ns(this.ticks.length,t.ticks.maxTicksLimit),n=e.minRotation||0,o=e.maxRotation;let i,a,s,l=n;if(!this._isVisible()||!e.display||n>=o||r<=1||!this.isHorizontal())return void(this.labelRotation=n);const d=this._getLabelSizes(),c=d.widest.width,u=d.highest.height,p=oo(this.chart.width-c,0,this.maxWidth);i=t.offset?this.maxWidth/r:p/(r-1),c+6>i&&(i=p/(r-(t.offset?.5:1)),a=this.maxHeight-as(t.grid)-e.padding-ss(t.title,this.chart.options.font),s=Math.sqrt(c*c+u*u),l=Math.min(Math.asin(oo((d.highest.height+6)/i,-1,1)),Math.asin(oo(a/s,-1,1))-Math.asin(oo(u/s,-1,1)))*(180/jn),l=Math.max(n,Math.min(o,l))),this.labelRotation=l}afterCalculateLabelRotation(){_n(this.options.afterCalculateLabelRotation,[this])}afterAutoSkip(){}beforeFit(){_n(this.options.beforeFit,[this])}fit(){const t={width:0,height:0},{chart:e,options:{ticks:r,title:n,grid:o}}=this,i=this._isVisible(),a=this.isHorizontal();if(i){const i=ss(n,e.options.font);if(a?(t.width=this.maxWidth,t.height=as(o)+i):(t.height=this.maxHeight,t.width=as(o)+i),r.display&&this.ticks.length){const{first:e,last:n,widest:o,highest:i}=this._getLabelSizes(),s=2*r.padding,l=Zn(this.labelRotation),d=Math.cos(l),c=Math.sin(l);if(a){const e=r.mirror?0:c*o.width+d*i.height;t.height=Math.min(this.maxHeight,t.height+e+s)}else{const e=r.mirror?0:d*o.width+c*i.height;t.width=Math.min(this.maxWidth,t.width+e+s)}this._calculatePadding(e,n,c,d)}}this._handleMargins(),a?(this.width=this._length=e.width-this._margins.left-this._margins.right,this.height=t.height):(this.width=t.width,this.height=this._length=e.height-this._margins.top-this._margins.bottom)}_calculatePadding(t,e,r,n){const{ticks:{align:o,padding:i},position:a}=this.options,s=0!==this.labelRotation,l="top"!==a&&"x"===this.axis;if(this.isHorizontal()){const a=this.getPixelForTick(0)-this.left,d=this.right-this.getPixelForTick(this.ticks.length-1);let c=0,u=0;s?l?(c=n*t.width,u=r*e.height):(c=r*t.height,u=n*e.width):"start"===o?u=e.width:"end"===o?c=t.width:"inner"!==o&&(c=t.width/2,u=e.width/2),this.paddingLeft=Math.max((c-a+i)*this.width/(this.width-a),0),this.paddingRight=Math.max((u-d+i)*this.width/(this.width-d),0)}else{let r=e.height/2,n=t.height/2;"start"===o?(r=0,n=t.height):"end"===o&&(r=e.height,n=0),this.paddingTop=r+i,this.paddingBottom=n+i}}_handleMargins(){this._margins&&(this._margins.left=Math.max(this.paddingLeft,this._margins.left),this._margins.top=Math.max(this.paddingTop,this._margins.top),this._margins.right=Math.max(this.paddingRight,this._margins.right),this._margins.bottom=Math.max(this.paddingBottom,this._margins.bottom))}afterFit(){_n(this.options.afterFit,[this])}isHorizontal(){const{axis:t,position:e}=this.options;return"top"===e||"bottom"===e||"x"===t}isFullSize(){return this.options.fullSize}_convertTicksToLabels(t){let e,r;for(this.beforeTickToLabelConversion(),this.generateTickLabels(t),e=0,r=t.length;e<r;e++)gn(t[e].label)&&(t.splice(e,1),r--,e--);this.afterTickToLabelConversion()}_getLabelSizes(){let t=this._labelSizes;if(!t){const e=this.options.ticks.sampleSize;let r=this.ticks;e<r.length&&(r=os(r,e)),this._labelSizes=t=this._computeLabelSizes(r,r.length,this.options.ticks.maxTicksLimit)}return t}_computeLabelSizes(t,e,r){const{ctx:n,_longestTextCache:o}=this,i=[],a=[],s=Math.floor(e/ns(e,r));let l,d,c,u,p,m,f,h,b,g,v,x=0,y=0;for(l=0;l<e;l+=s){if(u=t[l].label,p=this._resolveTickFontOptions(l),n.font=m=p.string,f=o[m]=o[m]||{data:{},gc:[]},h=p.lineHeight,b=g=0,gn(u)||vn(u)){if(vn(u))for(d=0,c=u.length;d<c;++d)v=u[d],gn(v)||vn(v)||(b=Do(n,f.data,f.gc,b,v),g+=h)}else b=Do(n,f.data,f.gc,b,u),g=h;i.push(b),a.push(g),x=Math.max(b,x),y=Math.max(g,y)}!function(t,e){Sn(t,(t=>{const r=t.gc,n=r.length/2;let o;if(n>e){for(o=0;o<n;++o)delete t.data[r[o]];r.splice(0,n)}}))}(o,e);const w=i.indexOf(x),k=a.indexOf(y),_=t=>({width:i[t]||0,height:a[t]||0});return{first:_(0),last:_(e-1),widest:_(w),highest:_(k),widths:i,heights:a}}getLabelForValue(t){return t}getPixelForValue(t,e){return NaN}getValueForPixel(t){}getPixelForTick(t){const e=this.ticks;return t<0||t>e.length-1?null:this.getPixelForValue(e[t].value)}getPixelForDecimal(t){this._reversePixels&&(t=1-t);const e=this._startPixel+t*this._length;return oo(this._alignToPixels?Io(this.chart,e,0):e,-32768,32767)}getDecimalForPixel(t){const e=(t-this._startPixel)/this._length;return this._reversePixels?1-e:e}getBasePixel(){return this.getPixelForValue(this.getBaseValue())}getBaseValue(){const{min:t,max:e}=this;return t<0&&e<0?e:t>0&&e>0?t:0}getContext(t){const e=this.ticks||[];if(t>=0&&t<e.length){const r=e[t];return r.$context||(r.$context=function(t,e,r){return oi(t,{tick:r,index:e,type:"tick"})}(this.getContext(),t,r))}return this.$context||(this.$context=oi(this.chart.getContext(),{scale:this,type:"scale"}))}_tickSize(){const t=this.options.ticks,e=Zn(this.labelRotation),r=Math.abs(Math.cos(e)),n=Math.abs(Math.sin(e)),o=this._getLabelSizes(),i=t.autoSkipPadding||0,a=o?o.widest.width+i:0,s=o?o.highest.height+i:0;return this.isHorizontal()?s*r>a*n?a/r:s/n:s*n<a*r?s/r:a/n}_isVisible(){const t=this.options.display;return"auto"!==t?!!t:this.getMatchingVisibleMetas().length>0}_computeGridLineItems(t){const e=this.axis,r=this.chart,n=this.options,{grid:o,position:i,border:a}=n,s=o.offset,l=this.isHorizontal(),d=this.ticks.length+(s?1:0),c=as(o),u=[],p=a.setContext(this.getContext()),m=p.display?p.width:0,f=m/2,h=function(t){return Io(r,t,m)};let b,g,v,x,y,w,k,_,S,E,C,z;if("top"===i)b=h(this.bottom),w=this.bottom-c,_=b-f,E=h(t.top)+f,z=t.bottom;else if("bottom"===i)b=h(this.top),E=t.top,z=h(t.bottom)-f,w=b+f,_=this.top+c;else if("left"===i)b=h(this.right),y=this.right-c,k=b-f,S=h(t.left)+f,C=t.right;else if("right"===i)b=h(this.left),S=t.left,C=h(t.right)-f,y=b+f,k=this.left+c;else if("x"===e){if("center"===i)b=h((t.top+t.bottom)/2+.5);else if(xn(i)){const t=Object.keys(i)[0],e=i[t];b=h(this.chart.scales[t].getPixelForValue(e))}E=t.top,z=t.bottom,w=b+f,_=w+c}else if("y"===e){if("center"===i)b=h((t.left+t.right)/2);else if(xn(i)){const t=Object.keys(i)[0],e=i[t];b=h(this.chart.scales[t].getPixelForValue(e))}y=b-f,k=y-c,S=t.left,C=t.right}const M=kn(n.ticks.maxTicksLimit,d),P=Math.max(1,Math.ceil(d/M));for(g=0;g<d;g+=P){const t=this.getContext(g),e=o.setContext(t),n=a.setContext(t),i=e.lineWidth,d=e.color,c=n.dash||[],p=n.dashOffset,m=e.tickWidth,f=e.tickColor,h=e.tickBorderDash||[],b=e.tickBorderDashOffset;v=is(this,g,s),void 0!==v&&(x=Io(r,v,i),l?y=k=S=C=x:w=_=E=z=x,u.push({tx1:y,ty1:w,tx2:k,ty2:_,x1:S,y1:E,x2:C,y2:z,width:i,color:d,borderDash:c,borderDashOffset:p,tickWidth:m,tickColor:f,tickBorderDash:h,tickBorderDashOffset:b}))}return this._ticksLength=d,this._borderValue=b,u}_computeLabelItems(t){const e=this.axis,r=this.options,{position:n,ticks:o}=r,i=this.isHorizontal(),a=this.ticks,{align:s,crossAlign:l,padding:d,mirror:c}=o,u=as(r.grid),p=u+d,m=c?-d:p,f=-Zn(this.labelRotation),h=[];let b,g,v,x,y,w,k,_,S,E,C,z,M="middle";if("top"===n)w=this.bottom-m,k=this._getXAxisLabelAlignment();else if("bottom"===n)w=this.top+m,k=this._getXAxisLabelAlignment();else if("left"===n){const t=this._getYAxisLabelAlignment(u);k=t.textAlign,y=t.x}else if("right"===n){const t=this._getYAxisLabelAlignment(u);k=t.textAlign,y=t.x}else if("x"===e){if("center"===n)w=(t.top+t.bottom)/2+p;else if(xn(n)){const t=Object.keys(n)[0],e=n[t];w=this.chart.scales[t].getPixelForValue(e)+p}k=this._getXAxisLabelAlignment()}else if("y"===e){if("center"===n)y=(t.left+t.right)/2-p;else if(xn(n)){const t=Object.keys(n)[0],e=n[t];y=this.chart.scales[t].getPixelForValue(e)}k=this._getYAxisLabelAlignment(u).textAlign}"y"===e&&("start"===s?M="top":"end"===s&&(M="bottom"));const P=this._getLabelSizes();for(b=0,g=a.length;b<g;++b){v=a[b],x=v.label;const t=o.setContext(this.getContext(b));_=this.getPixelForTick(b)+o.labelOffset,S=this._resolveTickFontOptions(b),E=S.lineHeight,C=vn(x)?x.length:1;const e=C/2,r=t.color,s=t.textStrokeColor,d=t.textStrokeWidth;let u,p=k;if(i?(y=_,"inner"===k&&(p=b===g-1?this.options.reverse?"left":"right":0===b?this.options.reverse?"right":"left":"center"),z="top"===n?"near"===l||0!==f?-C*E+E/2:"center"===l?-P.highest.height/2-e*E+E:-P.highest.height+E/2:"near"===l||0!==f?E/2:"center"===l?P.highest.height/2-e*E:P.highest.height-C*E,c&&(z*=-1),0===f||t.showLabelBackdrop||(y+=E/2*Math.sin(f))):(w=_,z=(1-C)*E/2),t.showLabelBackdrop){const e=ei(t.backdropPadding),r=P.heights[b],n=P.widths[b];let o=z-e.top,i=0-e.left;switch(M){case"middle":o-=r/2;break;case"bottom":o-=r}switch(k){case"center":i-=n/2;break;case"right":i-=n}u={left:i,top:o,width:n+e.width,height:r+e.height,color:t.backdropColor}}h.push({label:x,font:S,textOffset:z,options:{rotation:f,color:r,strokeColor:s,strokeWidth:d,textAlign:p,textBaseline:M,translation:[y,w],backdrop:u}})}return h}_getXAxisLabelAlignment(){const{position:t,ticks:e}=this.options;if(-Zn(this.labelRotation))return"top"===t?"left":"right";let r="center";return"start"===e.align?r="left":"end"===e.align?r="right":"inner"===e.align&&(r="inner"),r}_getYAxisLabelAlignment(t){const{position:e,ticks:{crossAlign:r,mirror:n,padding:o}}=this.options,i=t+o,a=this._getLabelSizes().widest.width;let s,l;return"left"===e?n?(l=this.right+o,"near"===r?s="left":"center"===r?(s="center",l+=a/2):(s="right",l+=a)):(l=this.right-i,"near"===r?s="right":"center"===r?(s="center",l-=a/2):(s="left",l=this.left)):"right"===e?n?(l=this.left+o,"near"===r?s="right":"center"===r?(s="center",l-=a/2):(s="left",l-=a)):(l=this.left+i,"near"===r?s="left":"center"===r?(s="center",l+=a/2):(s="right",l=this.right)):s="right",{textAlign:s,x:l}}_computeLabelArea(){if(this.options.ticks.mirror)return;const t=this.chart,e=this.options.position;return"left"===e||"right"===e?{top:0,left:this.left,bottom:t.height,right:this.right}:"top"===e||"bottom"===e?{top:this.top,left:0,bottom:this.bottom,right:t.width}:void 0}drawBackground(){const{ctx:t,options:{backgroundColor:e},left:r,top:n,width:o,height:i}=this;e&&(t.save(),t.fillStyle=e,t.fillRect(r,n,o,i),t.restore())}getLineWidthForValue(t){const e=this.options.grid;if(!this._isVisible()||!e.display)return 0;const r=this.ticks.findIndex((e=>e.value===t));return r>=0?e.setContext(this.getContext(r)).lineWidth:0}drawGrid(t){const e=this.options.grid,r=this.ctx,n=this._gridLineItems||(this._gridLineItems=this._computeGridLineItems(t));let o,i;const a=(t,e,n)=>{n.width&&n.color&&(r.save(),r.lineWidth=n.width,r.strokeStyle=n.color,r.setLineDash(n.borderDash||[]),r.lineDashOffset=n.borderDashOffset,r.beginPath(),r.moveTo(t.x,t.y),r.lineTo(e.x,e.y),r.stroke(),r.restore())};if(e.display)for(o=0,i=n.length;o<i;++o){const t=n[o];e.drawOnChartArea&&a({x:t.x1,y:t.y1},{x:t.x2,y:t.y2},t),e.drawTicks&&a({x:t.tx1,y:t.ty1},{x:t.tx2,y:t.ty2},{color:t.tickColor,width:t.tickWidth,borderDash:t.tickBorderDash,borderDashOffset:t.tickBorderDashOffset})}}drawBorder(){const{chart:t,ctx:e,options:{border:r,grid:n}}=this,o=r.setContext(this.getContext()),i=r.display?o.width:0;if(!i)return;const a=n.setContext(this.getContext(0)).lineWidth,s=this._borderValue;let l,d,c,u;this.isHorizontal()?(l=Io(t,this.left,i)-i/2,d=Io(t,this.right,a)+a/2,c=u=s):(c=Io(t,this.top,i)-i/2,u=Io(t,this.bottom,a)+a/2,l=d=s),e.save(),e.lineWidth=o.width,e.strokeStyle=o.color,e.beginPath(),e.moveTo(l,c),e.lineTo(d,u),e.stroke(),e.restore()}drawLabels(t){if(!this.options.ticks.display)return;const e=this.ctx,r=this._computeLabelArea();r&&Uo(e,r);const n=this.getLabelItems(t);for(const t of n){const r=t.options,n=t.font;Wo(e,t.label,0,t.textOffset,n,r)}r&&Ho(e)}drawTitle(){const{ctx:t,options:{position:e,title:r,reverse:n}}=this;if(!r.display)return;const o=ri(r.font),i=ei(r.padding),a=r.align;let s=o.lineHeight/2;"bottom"===e||"center"===e||xn(e)?(s+=i.bottom,vn(r.text)&&(s+=o.lineHeight*(r.text.length-1))):s+=i.top;const{titleX:l,titleY:d,maxWidth:c,rotation:u}=function(t,e,r,n){const{top:o,left:i,bottom:a,right:s,chart:l}=t,{chartArea:d,scales:c}=l;let u,p,m,f=0;const h=a-o,b=s-i;if(t.isHorizontal()){if(p=ho(n,i,s),xn(r)){const t=Object.keys(r)[0],n=r[t];m=c[t].getPixelForValue(n)+h-e}else m="center"===r?(d.bottom+d.top)/2+h-e:rs(t,r,e);u=s-i}else{if(xn(r)){const t=Object.keys(r)[0],n=r[t];p=c[t].getPixelForValue(n)-b+e}else p="center"===r?(d.left+d.right)/2-b+e:rs(t,r,e);m=ho(n,a,o),f="left"===r?-Vn:Vn}return{titleX:p,titleY:m,maxWidth:u,rotation:f}}(this,s,e,a);Wo(t,r.text,0,0,o,{color:r.color,maxWidth:c,rotation:u,textAlign:ls(a,e,n),textBaseline:"middle",translation:[l,d]})}draw(t){this._isVisible()&&(this.drawBackground(),this.drawGrid(t),this.drawBorder(),this.drawTitle(),this.drawLabels(t))}_layers(){const t=this.options,e=t.ticks&&t.ticks.z||0,r=kn(t.grid&&t.grid.z,-1),n=kn(t.border&&t.border.z,0);return this._isVisible()&&this.draw===ds.prototype.draw?[{z:r,draw:t=>{this.drawBackground(),this.drawGrid(t),this.drawTitle()}},{z:n,draw:()=>{this.drawBorder()}},{z:e,draw:t=>{this.drawLabels(t)}}]:[{z:e,draw:t=>{this.draw(t)}}]}getMatchingVisibleMetas(t){const e=this.chart.getSortedVisibleDatasetMetas(),r=this.axis+"AxisID",n=[];let o,i;for(o=0,i=e.length;o<i;++o){const i=e[o];i[r]!==this.id||t&&i.type!==t||n.push(i)}return n}_resolveTickFontOptions(t){return ri(this.options.ticks.setContext(this.getContext(t)).font)}_maxDigits(){const t=this._resolveTickFontOptions(0).lineHeight;return(this.isHorizontal()?this.width:this.height)/t}}class cs{constructor(t,e,r){this.type=t,this.scope=e,this.override=r,this.items=Object.create(null)}isForType(t){return Object.prototype.isPrototypeOf.call(this.type.prototype,t.prototype)}register(t){const e=Object.getPrototypeOf(t);let r;(function(t){return"id"in t&&"defaults"in t})(e)&&(r=this.register(e));const n=this.items,o=t.id,i=this.scope+"."+o;if(!o)throw new Error("class does not have id: "+t);return o in n||(n[o]=t,function(t,e,r){const n=Pn(Object.create(null),[r?No.get(r):{},No.get(e),t.defaults]);No.set(e,n),t.defaultRoutes&&function(t,e){Object.keys(e).forEach((r=>{const n=r.split("."),o=n.pop(),i=[t].concat(n).join("."),a=e[r].split("."),s=a.pop(),l=a.join(".");No.route(i,o,l,s)}))}(e,t.defaultRoutes),t.descriptors&&No.describe(e,t.descriptors)}(t,i,r),this.override&&No.override(t.id,t.overrides)),i}get(t){return this.items[t]}unregister(t){const e=this.items,r=t.id,n=this.scope;r in e&&delete e[r],n&&r in No[n]&&(delete No[n][r],this.override&&delete Po[r])}}class us{constructor(){this.controllers=new cs(da,"datasets",!0),this.elements=new cs(ts,"elements"),this.plugins=new cs(Object,"plugins"),this.scales=new cs(ds,"scales"),this._typedRegistries=[this.controllers,this.scales,this.elements]}add(...t){this._each("register",t)}remove(...t){this._each("unregister",t)}addControllers(...t){this._each("register",t,this.controllers)}addElements(...t){this._each("register",t,this.elements)}addPlugins(...t){this._each("register",t,this.plugins)}addScales(...t){this._each("register",t,this.scales)}getController(t){return this._get(t,this.controllers,"controller")}getElement(t){return this._get(t,this.elements,"element")}getPlugin(t){return this._get(t,this.plugins,"plugin")}getScale(t){return this._get(t,this.scales,"scale")}removeControllers(...t){this._each("unregister",t,this.controllers)}removeElements(...t){this._each("unregister",t,this.elements)}removePlugins(...t){this._each("unregister",t,this.plugins)}removeScales(...t){this._each("unregister",t,this.scales)}_each(t,e,r){[...e].forEach((e=>{const n=r||this._getRegistryForType(e);r||n.isForType(e)||n===this.plugins&&e.id?this._exec(t,n,e):Sn(e,(e=>{const n=r||this._getRegistryForType(e);this._exec(t,n,e)}))}))}_exec(t,e,r){const n=Nn(t);_n(r["before"+n],[],r),e[t](r),_n(r["after"+n],[],r)}_getRegistryForType(t){for(let e=0;e<this._typedRegistries.length;e++){const r=this._typedRegistries[e];if(r.isForType(t))return r}return this.plugins}_get(t,e,r){const n=e.get(t);if(void 0===n)throw new Error('"'+t+'" is not a registered '+r+".");return n}}var ps=new us;class ms{constructor(){this._init=[]}notify(t,e,r,n){"beforeInit"===e&&(this._init=this._createDescriptors(t,!0),this._notify(this._init,t,"install"));const o=n?this._descriptors(t).filter(n):this._descriptors(t),i=this._notify(o,t,e,r);return"afterDestroy"===e&&(this._notify(o,t,"stop"),this._notify(this._init,t,"uninstall")),i}_notify(t,e,r,n){n=n||{};for(const o of t){const t=o.plugin;if(!1===_n(t[r],[e,n,o.options],t)&&n.cancelable)return!1}return!0}invalidate(){gn(this._cache)||(this._oldCache=this._cache,this._cache=void 0)}_descriptors(t){if(this._cache)return this._cache;const e=this._cache=this._createDescriptors(t);return this._notifyStateChanges(t),e}_createDescriptors(t,e){const r=t&&t.config,n=kn(r.options&&r.options.plugins,{}),o=function(t){const e={},r=[],n=Object.keys(ps.plugins.items);for(let t=0;t<n.length;t++)r.push(ps.getPlugin(n[t]));const o=t.plugins||[];for(let t=0;t<o.length;t++){const n=o[t];-1===r.indexOf(n)&&(r.push(n),e[n.id]=!0)}return{plugins:r,localIds:e}}(r);return!1!==n||e?function(t,{plugins:e,localIds:r},n,o){const i=[],a=t.getContext();for(const s of e){const e=s.id,l=fs(n[e],o);null!==l&&i.push({plugin:s,options:hs(t.config,{plugin:s,local:r[e]},l,a)})}return i}(t,o,n,e):[]}_notifyStateChanges(t){const e=this._oldCache||[],r=this._cache,n=(t,e)=>t.filter((t=>!e.some((e=>t.plugin.id===e.plugin.id))));this._notify(n(e,r),t,"stop"),this._notify(n(r,e),t,"start")}}function fs(t,e){return e||!1!==t?!0===t?{}:t:null}function hs(t,{plugin:e,local:r},n,o){const i=t.pluginScopeKeys(e),a=t.getOptionScopes(n,i);return r&&e.defaults&&a.push(e.defaults),t.createResolver(a,o,[""],{scriptable:!1,indexable:!1,allKeys:!0})}function bs(t,e){const r=No.datasets[t]||{};return((e.datasets||{})[t]||{}).indexAxis||e.indexAxis||r.indexAxis||"x"}function gs(t,e){if("x"===t||"y"===t||"r"===t)return t;var r;if(t=e.axis||("top"===(r=e.position)||"bottom"===r?"x":"left"===r||"right"===r?"y":void 0)||t.length>1&&gs(t[0].toLowerCase(),e))return t;throw new Error(`Cannot determine type of '${name}' axis. Please provide 'axis' or 'position' option.`)}function vs(t){const e=t.options||(t.options={});e.plugins=kn(e.plugins,{}),e.scales=function(t,e){const r=Po[t.type]||{scales:{}},n=e.scales||{},o=bs(t.type,e),i=Object.create(null);return Object.keys(n).forEach((t=>{const e=n[t];if(!xn(e))return console.error(`Invalid scale configuration for scale: ${t}`);if(e._proxy)return console.warn(`Ignoring resolver passed as options for scale: ${t}`);const a=gs(t,e),s=function(t,e){return t===e?"_index_":"_value_"}(a,o),l=r.scales||{};i[t]=On(Object.create(null),[{axis:a},e,l[a],l[s]])})),t.data.datasets.forEach((r=>{const o=r.type||t.type,a=r.indexAxis||bs(o,e),s=(Po[o]||{}).scales||{};Object.keys(s).forEach((t=>{const e=function(t,e){let r=t;return"_index_"===t?r=e:"_value_"===t&&(r="x"===e?"y":"x"),r}(t,a),o=r[e+"AxisID"]||e;i[o]=i[o]||Object.create(null),On(i[o],[{axis:e},n[o],s[t]])}))})),Object.keys(i).forEach((t=>{const e=i[t];On(e,[No.scales[e.type],No.scale])})),i}(t,e)}function xs(t){return(t=t||{}).datasets=t.datasets||[],t.labels=t.labels||[],t}const ys=new Map,ws=new Set;function ks(t,e){let r=ys.get(t);return r||(r=e(),ys.set(t,r),ws.add(r)),r}const _s=(t,e,r)=>{const n=Rn(e,r);void 0!==n&&t.add(n)};class Ss{constructor(t){this._config=function(t){return(t=t||{}).data=xs(t.data),vs(t),t}(t),this._scopeCache=new Map,this._resolverCache=new Map}get platform(){return this._config.platform}get type(){return this._config.type}set type(t){this._config.type=t}get data(){return this._config.data}set data(t){this._config.data=xs(t)}get options(){return this._config.options}set options(t){this._config.options=t}get plugins(){return this._config.plugins}update(){const t=this._config;this.clearCache(),vs(t)}clearCache(){this._scopeCache.clear(),this._resolverCache.clear()}datasetScopeKeys(t){return ks(t,(()=>[[`datasets.${t}`,""]]))}datasetAnimationScopeKeys(t,e){return ks(`${t}.transition.${e}`,(()=>[[`datasets.${t}.transitions.${e}`,`transitions.${e}`],[`datasets.${t}`,""]]))}datasetElementScopeKeys(t,e){return ks(`${t}-${e}`,(()=>[[`datasets.${t}.elements.${e}`,`datasets.${t}`,`elements.${e}`,""]]))}pluginScopeKeys(t){const e=t.id;return ks(`${this.type}-plugin-${e}`,(()=>[[`plugins.${e}`,...t.additionalOptionScopes||[]]]))}_cachedScopes(t,e){const r=this._scopeCache;let n=r.get(t);return n&&!e||(n=new Map,r.set(t,n)),n}getOptionScopes(t,e,r){const{options:n,type:o}=this,i=this._cachedScopes(t,r),a=i.get(e);if(a)return a;const s=new Set;e.forEach((e=>{t&&(s.add(t),e.forEach((e=>_s(s,t,e)))),e.forEach((t=>_s(s,n,t))),e.forEach((t=>_s(s,Po[o]||{},t))),e.forEach((t=>_s(s,No,t))),e.forEach((t=>_s(s,Oo,t)))}));const l=Array.from(s);return 0===l.length&&l.push(Object.create(null)),ws.has(e)&&i.set(e,l),l}chartOptionScopes(){const{options:t,type:e}=this;return[t,Po[e]||{},No.datasets[e]||{},{type:e},No,Oo]}resolveNamedOptions(t,e,r,n=[""]){const o={$shared:!0},{resolver:i,subPrefixes:a}=Es(this._resolverCache,t,n);let s=i;(function(t,e){const{isScriptable:r,isIndexable:n}=si(t);for(const o of e){const e=r(o),i=n(o),a=(i||e)&&t[o];if(e&&(In(a)||Cs(a))||i&&vn(a))return!0}return!1})(i,e)&&(o.$shared=!1,s=ai(i,r=In(r)?r():r,this.createResolver(t,r,a)));for(const t of e)o[t]=s[t];return o}createResolver(t,e,r=[""],n){const{resolver:o}=Es(this._resolverCache,t,r);return xn(e)?ai(o,e,void 0,n):o}}function Es(t,e,r){let n=t.get(e);n||(n=new Map,t.set(e,n));const o=r.join();let i=n.get(o);return i||(i={resolver:ii(e,r),subPrefixes:r.filter((t=>!t.toLowerCase().includes("hover")))},n.set(o,i)),i}const Cs=t=>xn(t)&&Object.getOwnPropertyNames(t).reduce(((e,r)=>e||In(t[r])),!1),zs=["top","bottom","left","right","chartArea"];function Ms(t,e){return"top"===t||"bottom"===t||-1===zs.indexOf(t)&&"x"===e}function Ps(t,e){return function(r,n){return r[t]===n[t]?r[e]-n[e]:r[t]-n[t]}}function Os(t){const e=t.chart,r=e.options.animation;e.notifyPlugins("afterRender"),_n(r&&r.onComplete,[t],e)}function Ts(t){const e=t.chart,r=e.options.animation;_n(r&&r.onProgress,[t],e)}function Ls(t){return Si()&&"string"==typeof t?t=document.getElementById(t):t&&t.length&&(t=t[0]),t&&t.canvas&&(t=t.canvas),t}const Rs={},Ns=t=>{const e=Ls(t);return Object.values(Rs).filter((t=>t.canvas===e)).pop()};function Ds(t,e,r){const n=Object.keys(t);for(const o of n){const n=+o;if(n>=e){const i=t[o];delete t[o],(r>0||n>e)&&(t[n+r]=i)}}}class Is{static defaults=No;static instances=Rs;static overrides=Po;static registry=ps;static version="4.2.1";static getChart=Ns;static register(...t){ps.add(...t),As()}static unregister(...t){ps.remove(...t),As()}constructor(t,e){const r=this.config=new Ss(e),n=Ls(t),o=Ns(n);if(o)throw new Error("Canvas is already in use. Chart with ID '"+o.id+"' must be destroyed before the canvas with ID '"+o.canvas.id+"' can be reused.");const i=r.createResolver(r.chartOptionScopes(),this.getContext());this.platform=new(r.platform||function(t){return!Si()||"undefined"!=typeof OffscreenCanvas&&t instanceof OffscreenCanvas?Fa:Ja}(n)),this.platform.updateConfig(r);const a=this.platform.acquireContext(n,i.aspectRatio),s=a&&a.canvas,l=s&&s.height,d=s&&s.width;this.id=bn(),this.ctx=a,this.canvas=s,this.width=d,this.height=l,this._options=i,this._aspectRatio=this.aspectRatio,this._layers=[],this._metasets=[],this._stacks=void 0,this.boxes=[],this.currentDevicePixelRatio=void 0,this.chartArea=void 0,this._active=[],this._lastEvent=void 0,this._listeners={},this._responsiveListeners=void 0,this._sortedMetasets=[],this.scales={},this._plugins=new ms,this.$proxies={},this._hiddenIndices={},this.attached=!1,this._animationsDisabled=void 0,this.$context=void 0,this._doResize=function(t,e){let r;return function(...n){return e?(clearTimeout(r),r=setTimeout(t,e,n)):t.apply(this,n),e}}((t=>this.update(t)),i.resizeDelay||0),this._dataChanges=[],Rs[this.id]=this,a&&s?(Ki.listen(this,"complete",Os),Ki.listen(this,"progress",Ts),this._initialize(),this.attached&&this.update()):console.error("Failed to create chart: can't acquire context from the given item")}get aspectRatio(){const{options:{aspectRatio:t,maintainAspectRatio:e},width:r,height:n,_aspectRatio:o}=this;return gn(t)?e&&o?o:n?r/n:null:t}get data(){return this.config.data}set data(t){this.config.data=t}get options(){return this._options}set options(t){this.config.options=t}get registry(){return ps}_initialize(){return this.notifyPlugins("beforeInit"),this.options.responsive?this.resize():Li(this,this.options.devicePixelRatio),this.bindEvents(),this.notifyPlugins("afterInit"),this}clear(){return Ao(this.canvas,this.ctx),this}stop(){return Ki.stop(this),this}resize(t,e){Ki.running(this)?this._resizeBeforeDraw={width:t,height:e}:this._resize(t,e)}_resize(t,e){const r=this.options,n=this.canvas,o=r.maintainAspectRatio&&this.aspectRatio,i=this.platform.getMaximumSize(n,t,e,o),a=r.devicePixelRatio||this.platform.getDevicePixelRatio(),s=this.width?"resize":"attach";this.width=i.width,this.height=i.height,this._aspectRatio=this.aspectRatio,Li(this,a,!0)&&(this.notifyPlugins("resize",{size:i}),_n(r.onResize,[this,i],this),this.attached&&this._doResize(s)&&this.render())}ensureScalesHaveIDs(){Sn(this.options.scales||{},((t,e)=>{t.id=e}))}buildOrUpdateScales(){const t=this.options,e=t.scales,r=this.scales,n=Object.keys(r).reduce(((t,e)=>(t[e]=!1,t)),{});let o=[];e&&(o=o.concat(Object.keys(e).map((t=>{const r=e[t],n=gs(t,r),o="r"===n,i="x"===n;return{options:r,dposition:o?"chartArea":i?"bottom":"left",dtype:o?"radialLinear":i?"category":"linear"}})))),Sn(o,(e=>{const o=e.options,i=o.id,a=gs(i,o),s=kn(o.type,e.dtype);void 0!==o.position&&Ms(o.position,a)===Ms(e.dposition)||(o.position=e.dposition),n[i]=!0;let l=null;i in r&&r[i].type===s?l=r[i]:(l=new(ps.getScale(s))({id:i,type:s,ctx:this.ctx,chart:this}),r[l.id]=l),l.init(o,t)})),Sn(n,((t,e)=>{t||delete r[e]})),Sn(r,(t=>{Aa.configure(this,t,t.options),Aa.addBox(this,t)}))}_updateMetasets(){const t=this._metasets,e=this.data.datasets.length,r=t.length;if(t.sort(((t,e)=>t.index-e.index)),r>e){for(let t=e;t<r;++t)this._destroyDatasetMeta(t);t.splice(e,r-e)}this._sortedMetasets=t.slice(0).sort(Ps("order","index"))}_removeUnreferencedMetasets(){const{_metasets:t,data:{datasets:e}}=this;t.length>e.length&&delete this._stacks,t.forEach(((t,r)=>{0===e.filter((e=>e===t._dataset)).length&&this._destroyDatasetMeta(r)}))}buildOrUpdateControllers(){const t=[],e=this.data.datasets;let r,n;for(this._removeUnreferencedMetasets(),r=0,n=e.length;r<n;r++){const n=e[r];let o=this.getDatasetMeta(r);const i=n.type||this.config.type;if(o.type&&o.type!==i&&(this._destroyDatasetMeta(r),o=this.getDatasetMeta(r)),o.type=i,o.indexAxis=n.indexAxis||bs(i,this.options),o.order=n.order||0,o.index=r,o.label=""+n.label,o.visible=this.isDatasetVisible(r),o.controller)o.controller.updateIndex(r),o.controller.linkScales();else{const e=ps.getController(i),{datasetElementType:n,dataElementType:a}=No.datasets[i];Object.assign(e,{dataElementType:ps.getElement(a),datasetElementType:n&&ps.getElement(n)}),o.controller=new e(this,r),t.push(o.controller)}}return this._updateMetasets(),t}_resetElements(){Sn(this.data.datasets,((t,e)=>{this.getDatasetMeta(e).controller.reset()}),this)}reset(){this._resetElements(),this.notifyPlugins("reset")}update(t){const e=this.config;e.update();const r=this._options=e.createResolver(e.chartOptionScopes(),this.getContext()),n=this._animationsDisabled=!r.animation;if(this._updateScales(),this._checkEventBindings(),this._updateHiddenIndices(),this._plugins.invalidate(),!1===this.notifyPlugins("beforeUpdate",{mode:t,cancelable:!0}))return;const o=this.buildOrUpdateControllers();this.notifyPlugins("beforeElementsUpdate");let i=0;for(let t=0,e=this.data.datasets.length;t<e;t++){const{controller:e}=this.getDatasetMeta(t),r=!n&&-1===o.indexOf(e);e.buildOrUpdateElements(r),i=Math.max(+e.getMaxOverflow(),i)}i=this._minPadding=r.layout.autoPadding?i:0,this._updateLayout(i),n||Sn(o,(t=>{t.reset()})),this._updateDatasets(t),this.notifyPlugins("afterUpdate",{mode:t}),this._layers.sort(Ps("z","_idx"));const{_active:a,_lastEvent:s}=this;s?this._eventHandler(s,!0):a.length&&this._updateHoverStyles(a,a,!0),this.render()}_updateScales(){Sn(this.scales,(t=>{Aa.removeBox(this,t)})),this.ensureScalesHaveIDs(),this.buildOrUpdateScales()}_checkEventBindings(){const t=this.options,e=new Set(Object.keys(this._listeners)),r=new Set(t.events);An(e,r)&&!!this._responsiveListeners===t.responsive||(this.unbindEvents(),this.bindEvents())}_updateHiddenIndices(){const{_hiddenIndices:t}=this,e=this._getUniformDataChanges()||[];for(const{method:r,start:n,count:o}of e)Ds(t,n,"_removeElements"===r?-o:o)}_getUniformDataChanges(){const t=this._dataChanges;if(!t||!t.length)return;this._dataChanges=[];const e=this.data.datasets.length,r=e=>new Set(t.filter((t=>t[0]===e)).map(((t,e)=>e+","+t.splice(1).join(",")))),n=r(0);for(let t=1;t<e;t++)if(!An(n,r(t)))return;return Array.from(n).map((t=>t.split(","))).map((t=>({method:t[1],start:+t[2],count:+t[3]})))}_updateLayout(t){if(!1===this.notifyPlugins("beforeLayout",{cancelable:!0}))return;Aa.update(this,this.width,this.height,t);const e=this.chartArea,r=e.width<=0||e.height<=0;this._layers=[],Sn(this.boxes,(t=>{r&&"chartArea"===t.position||(t.configure&&t.configure(),this._layers.push(...t._layers()))}),this),this._layers.forEach(((t,e)=>{t._idx=e})),this.notifyPlugins("afterLayout")}_updateDatasets(t){if(!1!==this.notifyPlugins("beforeDatasetsUpdate",{mode:t,cancelable:!0})){for(let t=0,e=this.data.datasets.length;t<e;++t)this.getDatasetMeta(t).controller.configure();for(let e=0,r=this.data.datasets.length;e<r;++e)this._updateDataset(e,In(t)?t({datasetIndex:e}):t);this.notifyPlugins("afterDatasetsUpdate",{mode:t})}}_updateDataset(t,e){const r=this.getDatasetMeta(t),n={meta:r,index:t,mode:e,cancelable:!0};!1!==this.notifyPlugins("beforeDatasetUpdate",n)&&(r.controller._update(e),n.cancelable=!1,this.notifyPlugins("afterDatasetUpdate",n))}render(){!1!==this.notifyPlugins("beforeRender",{cancelable:!0})&&(Ki.has(this)?this.attached&&!Ki.running(this)&&Ki.start(this):(this.draw(),Os({chart:this})))}draw(){let t;if(this._resizeBeforeDraw){const{width:t,height:e}=this._resizeBeforeDraw;this._resize(t,e),this._resizeBeforeDraw=null}if(this.clear(),this.width<=0||this.height<=0)return;if(!1===this.notifyPlugins("beforeDraw",{cancelable:!0}))return;const e=this._layers;for(t=0;t<e.length&&e[t].z<=0;++t)e[t].draw(this.chartArea);for(this._drawDatasets();t<e.length;++t)e[t].draw(this.chartArea);this.notifyPlugins("afterDraw")}_getSortedDatasetMetas(t){const e=this._sortedMetasets,r=[];let n,o;for(n=0,o=e.length;n<o;++n){const o=e[n];t&&!o.visible||r.push(o)}return r}getSortedVisibleDatasetMetas(){return this._getSortedDatasetMetas(!0)}_drawDatasets(){if(!1===this.notifyPlugins("beforeDatasetsDraw",{cancelable:!0}))return;const t=this.getSortedVisibleDatasetMetas();for(let e=t.length-1;e>=0;--e)this._drawDataset(t[e]);this.notifyPlugins("afterDatasetsDraw")}_drawDataset(t){const e=this.ctx,r=t._clip,n=!r.disabled,o=function(t){const{xScale:e,yScale:r}=t;if(e&&r)return{left:e.left,right:e.right,top:r.top,bottom:r.bottom}}(t)||this.chartArea,i={meta:t,index:t.index,cancelable:!0};!1!==this.notifyPlugins("beforeDatasetDraw",i)&&(n&&Uo(e,{left:!1===r.left?0:o.left-r.left,right:!1===r.right?this.width:o.right+r.right,top:!1===r.top?0:o.top-r.top,bottom:!1===r.bottom?this.height:o.bottom+r.bottom}),t.controller.draw(),n&&Ho(e),i.cancelable=!1,this.notifyPlugins("afterDatasetDraw",i))}isPointInArea(t){return Bo(t,this.chartArea,this._minPadding)}getElementsAtEventForMode(t,e,r,n){const o=Ea.modes[e];return"function"==typeof o?o(this,t,r,n):[]}getDatasetMeta(t){const e=this.data.datasets[t],r=this._metasets;let n=r.filter((t=>t&&t._dataset===e)).pop();return n||(n={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null,order:e&&e.order||0,index:t,_dataset:e,_parsed:[],_sorted:!1},r.push(n)),n}getContext(){return this.$context||(this.$context=oi(null,{chart:this,type:"chart"}))}getVisibleDatasetCount(){return this.getSortedVisibleDatasetMetas().length}isDatasetVisible(t){const e=this.data.datasets[t];if(!e)return!1;const r=this.getDatasetMeta(t);return"boolean"==typeof r.hidden?!r.hidden:!e.hidden}setDatasetVisibility(t,e){this.getDatasetMeta(t).hidden=!e}toggleDataVisibility(t){this._hiddenIndices[t]=!this._hiddenIndices[t]}getDataVisibility(t){return!this._hiddenIndices[t]}_updateVisibility(t,e,r){const n=r?"show":"hide",o=this.getDatasetMeta(t),i=o.controller._resolveAnimations(void 0,n);Dn(e)?(o.data[e].hidden=!r,this.update()):(this.setDatasetVisibility(t,r),i.update(o,{visible:r}),this.update((e=>e.datasetIndex===t?n:void 0)))}hide(t,e){this._updateVisibility(t,e,!1)}show(t,e){this._updateVisibility(t,e,!0)}_destroyDatasetMeta(t){const e=this._metasets[t];e&&e.controller&&e.controller._destroy(),delete this._metasets[t]}_stop(){let t,e;for(this.stop(),Ki.remove(this),t=0,e=this.data.datasets.length;t<e;++t)this._destroyDatasetMeta(t)}destroy(){this.notifyPlugins("beforeDestroy");const{canvas:t,ctx:e}=this;this._stop(),this.config.clearCache(),t&&(this.unbindEvents(),Ao(t,e),this.platform.releaseContext(e),this.canvas=null,this.ctx=null),delete Rs[this.id],this.notifyPlugins("afterDestroy")}toBase64Image(...t){return this.canvas.toDataURL(...t)}bindEvents(){this.bindUserEvents(),this.options.responsive?this.bindResponsiveEvents():this.attached=!0}bindUserEvents(){const t=this._listeners,e=this.platform,r=(r,n)=>{e.addEventListener(this,r,n),t[r]=n},n=(t,e,r)=>{t.offsetX=e,t.offsetY=r,this._eventHandler(t)};Sn(this.options.events,(t=>r(t,n)))}bindResponsiveEvents(){this._responsiveListeners||(this._responsiveListeners={});const t=this._responsiveListeners,e=this.platform,r=(r,n)=>{e.addEventListener(this,r,n),t[r]=n},n=(r,n)=>{t[r]&&(e.removeEventListener(this,r,n),delete t[r])},o=(t,e)=>{this.canvas&&this.resize(t,e)};let i;const a=()=>{n("attach",a),this.attached=!0,this.resize(),r("resize",o),r("detach",i)};i=()=>{this.attached=!1,n("resize",o),this._stop(),this._resize(0,0),r("attach",a)},e.isAttached(this.canvas)?a():i()}unbindEvents(){Sn(this._listeners,((t,e)=>{this.platform.removeEventListener(this,e,t)})),this._listeners={},Sn(this._responsiveListeners,((t,e)=>{this.platform.removeEventListener(this,e,t)})),this._responsiveListeners=void 0}updateHoverStyle(t,e,r){const n=r?"set":"remove";let o,i,a,s;for("dataset"===e&&(o=this.getDatasetMeta(t[0].datasetIndex),o.controller["_"+n+"DatasetHoverStyle"]()),a=0,s=t.length;a<s;++a){i=t[a];const e=i&&this.getDatasetMeta(i.datasetIndex).controller;e&&e[n+"HoverStyle"](i.element,i.datasetIndex,i.index)}}getActiveElements(){return this._active||[]}setActiveElements(t){const e=this._active||[],r=t.map((({datasetIndex:t,index:e})=>{const r=this.getDatasetMeta(t);if(!r)throw new Error("No dataset found at index "+t);return{datasetIndex:t,element:r.data[e],index:e}}));!En(r,e)&&(this._active=r,this._lastEvent=null,this._updateHoverStyles(r,e))}notifyPlugins(t,e,r){return this._plugins.notify(this,t,e,r)}isPluginEnabled(t){return 1===this._plugins._cache.filter((e=>e.plugin.id===t)).length}_updateHoverStyles(t,e,r){const n=this.options.hover,o=(t,e)=>t.filter((t=>!e.some((e=>t.datasetIndex===e.datasetIndex&&t.index===e.index)))),i=o(e,t),a=r?t:o(t,e);i.length&&this.updateHoverStyle(i,n.mode,!1),a.length&&n.mode&&this.updateHoverStyle(a,n.mode,!0)}_eventHandler(t,e){const r={event:t,replay:e,cancelable:!0,inChartArea:this.isPointInArea(t)},n=e=>(e.options.events||this.options.events).includes(t.native.type);if(!1===this.notifyPlugins("beforeEvent",r,n))return;const o=this._handleEvent(t,e,r.inChartArea);return r.cancelable=!1,this.notifyPlugins("afterEvent",r,n),(o||r.changed)&&this.render(),this}_handleEvent(t,e,r){const{_active:n=[],options:o}=this,i=e,a=this._getActiveElements(t,n,r,i),s=function(t){return"mouseup"===t.type||"click"===t.type||"contextmenu"===t.type}(t),l=function(t,e,r,n){return r&&"mouseout"!==t.type?n?e:t:null}(t,this._lastEvent,r,s);r&&(this._lastEvent=null,_n(o.onHover,[t,a,this],this),s&&_n(o.onClick,[t,a,this],this));const d=!En(a,n);return(d||e)&&(this._active=a,this._updateHoverStyles(a,n,e)),this._lastEvent=l,d}_getActiveElements(t,e,r,n){if("mouseout"===t.type)return[];if(!r)return e;const o=this.options.hover;return this.getElementsAtEventForMode(t,o.mode,o,n)}}function As(){return Sn(Is.instances,(t=>t._plugins.invalidate()))}function js(t,e,r=e){t.lineCap=kn(r.borderCapStyle,e.borderCapStyle),t.setLineDash(kn(r.borderDash,e.borderDash)),t.lineDashOffset=kn(r.borderDashOffset,e.borderDashOffset),t.lineJoin=kn(r.borderJoinStyle,e.borderJoinStyle),t.lineWidth=kn(r.borderWidth,e.borderWidth),t.strokeStyle=kn(r.borderColor,e.borderColor)}function Fs(t,e,r){t.lineTo(r.x,r.y)}function Bs(t,e,r={}){const n=t.length,{start:o=0,end:i=n-1}=r,{start:a,end:s}=e,l=Math.max(o,a),d=Math.min(i,s),c=o<a&&i<a||o>s&&i>s;return{count:n,start:l,loop:e.loop,ilen:d<l&&!c?n+d-l:d-l}}function Us(t,e,r,n){const{points:o,options:i}=e,{count:a,start:s,loop:l,ilen:d}=Bs(o,r,n),c=function(t){return t.stepped?Vo:t.tension||"monotone"===t.cubicInterpolationMode?$o:Fs}(i);let u,p,m,{move:f=!0,reverse:h}=n||{};for(u=0;u<=d;++u)p=o[(s+(h?d-u:u))%a],p.skip||(f?(t.moveTo(p.x,p.y),f=!1):c(t,m,p,h,i.stepped),m=p);return l&&(p=o[(s+(h?d:0))%a],c(t,m,p,h,i.stepped)),!!l}function Hs(t,e,r,n){const o=e.points,{count:i,start:a,ilen:s}=Bs(o,r,n),{move:l=!0,reverse:d}=n||{};let c,u,p,m,f,h,b=0,g=0;const v=t=>(a+(d?s-t:t))%i,x=()=>{m!==f&&(t.lineTo(b,f),t.lineTo(b,m),t.lineTo(b,h))};for(l&&(u=o[v(0)],t.moveTo(u.x,u.y)),c=0;c<=s;++c){if(u=o[v(c)],u.skip)continue;const e=u.x,r=u.y,n=0|e;n===p?(r<m?m=r:r>f&&(f=r),b=(g*b+e)/++g):(x(),t.lineTo(e,r),p=n,g=0,m=f=r),h=r}x()}function Vs(t){const e=t.options,r=e.borderDash&&e.borderDash.length;return t._decimated||t._loop||e.tension||"monotone"===e.cubicInterpolationMode||e.stepped||r?Us:Hs}const $s="function"==typeof Path2D;function Ws(t,e,r,n){const o=t.options,{[r]:i}=t.getProps([r],n);return Math.abs(e-i)<o.radius+o.hitRadius}function Ys(t,e){const{x:r,y:n,base:o,width:i,height:a}=t.getProps(["x","y","base","width","height"],e);let s,l,d,c,u;return t.horizontal?(u=a/2,s=Math.min(r,o),l=Math.max(r,o),d=n-u,c=n+u):(u=i/2,s=r-u,l=r+u,d=Math.min(n,o),c=Math.max(n,o)),{left:s,top:d,right:l,bottom:c}}function Ks(t,e,r,n){return t?0:oo(e,r,n)}function Qs(t,e,r,n){const o=null===e,i=null===r,a=t&&!(o&&i)&&Ys(t,n);return a&&(o||io(e,a.left,a.right))&&(i||io(r,a.top,a.bottom))}function Xs(t,e){t.rect(e.x,e.y,e.w,e.h)}function qs(t,e,r={}){const n=t.x!==r.x?-e:0,o=t.y!==r.y?-e:0,i=(t.x+t.w!==r.x+r.w?e:0)-n,a=(t.y+t.h!==r.y+r.h?e:0)-o;return{x:t.x+n,y:t.y+o,w:t.w+i,h:t.h+a,radius:t.radius}}const Gs=(t,e)=>{let{boxHeight:r=e,boxWidth:n=e}=t;return t.usePointStyle&&(r=Math.min(r,e),n=t.pointStyleWidth||Math.min(n,e)),{boxWidth:n,boxHeight:r,itemHeight:Math.max(e,r)}};class Zs extends ts{constructor(t){super(),this._added=!1,this.legendHitBoxes=[],this._hoveredItem=null,this.doughnutMode=!1,this.chart=t.chart,this.options=t.options,this.ctx=t.ctx,this.legendItems=void 0,this.columnSizes=void 0,this.lineWidths=void 0,this.maxHeight=void 0,this.maxWidth=void 0,this.top=void 0,this.bottom=void 0,this.left=void 0,this.right=void 0,this.height=void 0,this.width=void 0,this._margins=void 0,this.position=void 0,this.weight=void 0,this.fullSize=void 0}update(t,e,r){this.maxWidth=t,this.maxHeight=e,this._margins=r,this.setDimensions(),this.buildLabels(),this.fit()}setDimensions(){this.isHorizontal()?(this.width=this.maxWidth,this.left=this._margins.left,this.right=this.width):(this.height=this.maxHeight,this.top=this._margins.top,this.bottom=this.height)}buildLabels(){const t=this.options.labels||{};let e=_n(t.generateLabels,[this.chart],this)||[];t.filter&&(e=e.filter((e=>t.filter(e,this.chart.data)))),t.sort&&(e=e.sort(((e,r)=>t.sort(e,r,this.chart.data)))),this.options.reverse&&e.reverse(),this.legendItems=e}fit(){const{options:t,ctx:e}=this;if(!t.display)return void(this.width=this.height=0);const r=t.labels,n=ri(r.font),o=n.size,i=this._computeTitleHeight(),{boxWidth:a,itemHeight:s}=Gs(r,o);let l,d;e.font=n.string,this.isHorizontal()?(l=this.maxWidth,d=this._fitRows(i,o,a,s)+10):(d=this.maxHeight,l=this._fitCols(i,n,a,s)+10),this.width=Math.min(l,t.maxWidth||this.maxWidth),this.height=Math.min(d,t.maxHeight||this.maxHeight)}_fitRows(t,e,r,n){const{ctx:o,maxWidth:i,options:{labels:{padding:a}}}=this,s=this.legendHitBoxes=[],l=this.lineWidths=[0],d=n+a;let c=t;o.textAlign="left",o.textBaseline="middle";let u=-1,p=-d;return this.legendItems.forEach(((t,m)=>{const f=r+e/2+o.measureText(t.text).width;(0===m||l[l.length-1]+f+2*a>i)&&(c+=d,l[l.length-(m>0?0:1)]=0,p+=d,u++),s[m]={left:0,top:p,row:u,width:f,height:n},l[l.length-1]+=f+a})),c}_fitCols(t,e,r,n){const{ctx:o,maxHeight:i,options:{labels:{padding:a}}}=this,s=this.legendHitBoxes=[],l=this.columnSizes=[],d=i-t;let c=a,u=0,p=0,m=0,f=0;return this.legendItems.forEach(((t,i)=>{const{itemWidth:h,itemHeight:b}=function(t,e,r,n,o){const i=function(t,e,r,n){let o=t.text;return o&&"string"!=typeof o&&(o=o.reduce(((t,e)=>t.length>e.length?t:e))),e+r.size/2+n.measureText(o).width}(n,t,e,r),a=function(t,e,r){let n=t;return"string"!=typeof e.text&&(n=Js(e,r)),n}(o,n,e.lineHeight);return{itemWidth:i,itemHeight:a}}(r,e,o,t,n);i>0&&p+b+2*a>d&&(c+=u+a,l.push({width:u,height:p}),m+=u+a,f++,u=p=0),s[i]={left:m,top:p,col:f,width:h,height:b},u=Math.max(u,h),p+=b+a})),c+=u,l.push({width:u,height:p}),c}adjustHitBoxes(){if(!this.options.display)return;const t=this._computeTitleHeight(),{legendHitBoxes:e,options:{align:r,labels:{padding:n},rtl:o}}=this,i=ji(o,this.left,this.width);if(this.isHorizontal()){let o=0,a=ho(r,this.left+n,this.right-this.lineWidths[o]);for(const s of e)o!==s.row&&(o=s.row,a=ho(r,this.left+n,this.right-this.lineWidths[o])),s.top+=this.top+t+n,s.left=i.leftForLtr(i.x(a),s.width),a+=s.width+n}else{let o=0,a=ho(r,this.top+t+n,this.bottom-this.columnSizes[o].height);for(const s of e)s.col!==o&&(o=s.col,a=ho(r,this.top+t+n,this.bottom-this.columnSizes[o].height)),s.top=a,s.left+=this.left+n,s.left=i.leftForLtr(i.x(s.left),s.width),a+=s.height+n}}isHorizontal(){return"top"===this.options.position||"bottom"===this.options.position}draw(){if(this.options.display){const t=this.ctx;Uo(t,this),this._draw(),Ho(t)}}_draw(){const{options:t,columnSizes:e,lineWidths:r,ctx:n}=this,{align:o,labels:i}=t,a=No.color,s=ji(t.rtl,this.left,this.width),l=ri(i.font),{padding:d}=i,c=l.size,u=c/2;let p;this.drawTitle(),n.textAlign=s.textAlign("left"),n.textBaseline="middle",n.lineWidth=.5,n.font=l.string;const{boxWidth:m,boxHeight:f,itemHeight:h}=Gs(i,c),b=this.isHorizontal(),g=this._computeTitleHeight();p=b?{x:ho(o,this.left+d,this.right-r[0]),y:this.top+d+g,line:0}:{x:this.left+d,y:ho(o,this.top+g+d,this.bottom-e[0].height),line:0},Fi(this.ctx,t.textDirection);const v=h+d;this.legendItems.forEach(((x,y)=>{n.strokeStyle=x.fontColor,n.fillStyle=x.fontColor;const w=n.measureText(x.text).width,k=s.textAlign(x.textAlign||(x.textAlign=i.textAlign)),_=m+u+w;let S=p.x,E=p.y;if(s.setWidth(this.width),b?y>0&&S+_+d>this.right&&(E=p.y+=v,p.line++,S=p.x=ho(o,this.left+d,this.right-r[p.line])):y>0&&E+v>this.bottom&&(S=p.x=S+e[p.line].width+d,p.line++,E=p.y=ho(o,this.top+g+d,this.bottom-e[p.line].height)),function(t,e,r){if(isNaN(m)||m<=0||isNaN(f)||f<0)return;n.save();const o=kn(r.lineWidth,1);if(n.fillStyle=kn(r.fillStyle,a),n.lineCap=kn(r.lineCap,"butt"),n.lineDashOffset=kn(r.lineDashOffset,0),n.lineJoin=kn(r.lineJoin,"miter"),n.lineWidth=o,n.strokeStyle=kn(r.strokeStyle,a),n.setLineDash(kn(r.lineDash,[])),i.usePointStyle){const a={radius:f*Math.SQRT2/2,pointStyle:r.pointStyle,rotation:r.rotation,borderWidth:o},l=s.xPlus(t,m/2);Fo(n,a,l,e+u,i.pointStyleWidth&&m)}else{const i=e+Math.max((c-f)/2,0),a=s.leftForLtr(t,m),l=ti(r.borderRadius);n.beginPath(),Object.values(l).some((t=>0!==t))?Qo(n,{x:a,y:i,w:m,h:f,radius:l}):n.rect(a,i,m,f),n.fill(),0!==o&&n.stroke()}n.restore()}(s.x(S),E,x),S=((t,e,r,n)=>t===(n?"left":"right")?r:"center"===t?(e+r)/2:e)(k,S+m+u,b?S+_:this.right,t.rtl),function(t,e,r){Wo(n,r.text,t,e+h/2,l,{strikethrough:r.hidden,textAlign:s.textAlign(r.textAlign)})}(s.x(S),E,x),b)p.x+=_+d;else if("string"!=typeof x.text){const t=l.lineHeight;p.y+=Js(x,t)}else p.y+=v})),Bi(this.ctx,t.textDirection)}drawTitle(){const t=this.options,e=t.title,r=ri(e.font),n=ei(e.padding);if(!e.display)return;const o=ji(t.rtl,this.left,this.width),i=this.ctx,a=e.position,s=r.size/2,l=n.top+s;let d,c=this.left,u=this.width;if(this.isHorizontal())u=Math.max(...this.lineWidths),d=this.top+l,c=ho(t.align,c,this.right-u);else{const e=this.columnSizes.reduce(((t,e)=>Math.max(t,e.height)),0);d=l+ho(t.align,this.top,this.bottom-e-t.labels.padding-this._computeTitleHeight())}const p=ho(a,c,c+u);i.textAlign=o.textAlign(fo(a)),i.textBaseline="middle",i.strokeStyle=e.color,i.fillStyle=e.color,i.font=r.string,Wo(i,e.text,p,d,r)}_computeTitleHeight(){const t=this.options.title,e=ri(t.font),r=ei(t.padding);return t.display?e.lineHeight+r.height:0}_getLegendItemAt(t,e){let r,n,o;if(io(t,this.left,this.right)&&io(e,this.top,this.bottom))for(o=this.legendHitBoxes,r=0;r<o.length;++r)if(n=o[r],io(t,n.left,n.left+n.width)&&io(e,n.top,n.top+n.height))return this.legendItems[r];return null}handleEvent(t){const e=this.options;if(!function(t,e){return!("mousemove"!==t&&"mouseout"!==t||!e.onHover&&!e.onLeave)||!(!e.onClick||"click"!==t&&"mouseup"!==t)}(t.type,e))return;const r=this._getLegendItemAt(t.x,t.y);if("mousemove"===t.type||"mouseout"===t.type){const i=this._hoveredItem,a=(o=r,null!==(n=i)&&null!==o&&n.datasetIndex===o.datasetIndex&&n.index===o.index);i&&!a&&_n(e.onLeave,[t,i,this],this),this._hoveredItem=r,r&&!a&&_n(e.onHover,[t,r,this],this)}else r&&_n(e.onClick,[t,r,this],this);var n,o}}function Js(t,e){return e*(t.text?t.text.length+.5:0)}var tl={id:"legend",_element:Zs,start(t,e,r){const n=t.legend=new Zs({ctx:t.ctx,options:r,chart:t});Aa.configure(t,n,r),Aa.addBox(t,n)},stop(t){Aa.removeBox(t,t.legend),delete t.legend},beforeUpdate(t,e,r){const n=t.legend;Aa.configure(t,n,r),n.options=r},afterUpdate(t){const e=t.legend;e.buildLabels(),e.adjustHitBoxes()},afterEvent(t,e){e.replay||t.legend.handleEvent(e.event)},defaults:{display:!0,position:"top",align:"center",fullSize:!0,reverse:!1,weight:1e3,onClick(t,e,r){const n=e.datasetIndex,o=r.chart;o.isDatasetVisible(n)?(o.hide(n),e.hidden=!0):(o.show(n),e.hidden=!1)},onHover:null,onLeave:null,labels:{color:t=>t.chart.options.color,boxWidth:40,padding:10,generateLabels(t){const e=t.data.datasets,{labels:{usePointStyle:r,pointStyle:n,textAlign:o,color:i,useBorderRadius:a,borderRadius:s}}=t.legend.options;return t._getSortedDatasetMetas().map((t=>{const l=t.controller.getStyle(r?0:void 0),d=ei(l.borderWidth);return{text:e[t.index].label,fillStyle:l.backgroundColor,fontColor:i,hidden:!t.visible,lineCap:l.borderCapStyle,lineDash:l.borderDash,lineDashOffset:l.borderDashOffset,lineJoin:l.borderJoinStyle,lineWidth:(d.width+d.height)/4,strokeStyle:l.borderColor,pointStyle:n||l.pointStyle,rotation:l.rotation,textAlign:o||l.textAlign,borderRadius:a&&(s||l.borderRadius),datasetIndex:t.index}}),this)}},title:{color:t=>t.chart.options.color,display:!1,position:"center",text:""}},descriptors:{_scriptable:t=>!t.startsWith("on"),labels:{_scriptable:t=>!["generateLabels","filter","sort"].includes(t)}}};class el extends ts{constructor(t){super(),this.chart=t.chart,this.options=t.options,this.ctx=t.ctx,this._padding=void 0,this.top=void 0,this.bottom=void 0,this.left=void 0,this.right=void 0,this.width=void 0,this.height=void 0,this.position=void 0,this.weight=void 0,this.fullSize=void 0}update(t,e){const r=this.options;if(this.left=0,this.top=0,!r.display)return void(this.width=this.height=this.right=this.bottom=0);this.width=this.right=t,this.height=this.bottom=e;const n=vn(r.text)?r.text.length:1;this._padding=ei(r.padding);const o=n*ri(r.font).lineHeight+this._padding.height;this.isHorizontal()?this.height=o:this.width=o}isHorizontal(){const t=this.options.position;return"top"===t||"bottom"===t}_drawArgs(t){const{top:e,left:r,bottom:n,right:o,options:i}=this,a=i.align;let s,l,d,c=0;return this.isHorizontal()?(l=ho(a,r,o),d=e+t,s=o-r):("left"===i.position?(l=r+t,d=ho(a,n,e),c=-.5*jn):(l=o-t,d=ho(a,e,n),c=.5*jn),s=n-e),{titleX:l,titleY:d,maxWidth:s,rotation:c}}draw(){const t=this.ctx,e=this.options;if(!e.display)return;const r=ri(e.font),n=r.lineHeight/2+this._padding.top,{titleX:o,titleY:i,maxWidth:a,rotation:s}=this._drawArgs(n);Wo(t,e.text,0,0,r,{color:e.color,maxWidth:a,rotation:s,textAlign:fo(e.align),textBaseline:"middle",translation:[o,i]})}}var rl={id:"title",_element:el,start(t,e,r){!function(t,e){const r=new el({ctx:t.ctx,options:e,chart:t});Aa.configure(t,r,e),Aa.addBox(t,r),t.titleBlock=r}(t,r)},stop(t){const e=t.titleBlock;Aa.removeBox(t,e),delete t.titleBlock},beforeUpdate(t,e,r){const n=t.titleBlock;Aa.configure(t,n,r),n.options=r},defaults:{align:"center",display:!1,font:{weight:"bold"},fullSize:!0,padding:10,position:"top",text:"",weight:2e3},defaultRoutes:{color:"color"},descriptors:{_scriptable:!0,_indexable:!1}};new WeakMap;const nl={average(t){if(!t.length)return!1;let e,r,n=0,o=0,i=0;for(e=0,r=t.length;e<r;++e){const r=t[e].element;if(r&&r.hasValue()){const t=r.tooltipPosition();n+=t.x,o+=t.y,++i}}return{x:n/i,y:o/i}},nearest(t,e){if(!t.length)return!1;let r,n,o,i=e.x,a=e.y,s=Number.POSITIVE_INFINITY;for(r=0,n=t.length;r<n;++r){const n=t[r].element;if(n&&n.hasValue()){const t=to(e,n.getCenterPoint());t<s&&(s=t,o=n)}}if(o){const t=o.tooltipPosition();i=t.x,a=t.y}return{x:i,y:a}}};function ol(t,e){return e&&(vn(e)?Array.prototype.push.apply(t,e):t.push(e)),t}function il(t){return("string"==typeof t||t instanceof String)&&t.indexOf("\n")>-1?t.split("\n"):t}function al(t,e){const{element:r,datasetIndex:n,index:o}=e,i=t.getDatasetMeta(n).controller,{label:a,value:s}=i.getLabelAndValue(o);return{chart:t,label:a,parsed:i.getParsed(o),raw:t.data.datasets[n].data[o],formattedValue:s,dataset:i.getDataset(),dataIndex:o,datasetIndex:n,element:r}}function sl(t,e){const r=t.chart.ctx,{body:n,footer:o,title:i}=t,{boxWidth:a,boxHeight:s}=e,l=ri(e.bodyFont),d=ri(e.titleFont),c=ri(e.footerFont),u=i.length,p=o.length,m=n.length,f=ei(e.padding);let h=f.height,b=0,g=n.reduce(((t,e)=>t+e.before.length+e.lines.length+e.after.length),0);g+=t.beforeBody.length+t.afterBody.length,u&&(h+=u*d.lineHeight+(u-1)*e.titleSpacing+e.titleMarginBottom),g&&(h+=m*(e.displayColors?Math.max(s,l.lineHeight):l.lineHeight)+(g-m)*l.lineHeight+(g-1)*e.bodySpacing),p&&(h+=e.footerMarginTop+p*c.lineHeight+(p-1)*e.footerSpacing);let v=0;const x=function(t){b=Math.max(b,r.measureText(t).width+v)};return r.save(),r.font=d.string,Sn(t.title,x),r.font=l.string,Sn(t.beforeBody.concat(t.afterBody),x),v=e.displayColors?a+2+e.boxPadding:0,Sn(n,(t=>{Sn(t.before,x),Sn(t.lines,x),Sn(t.after,x)})),v=0,r.font=c.string,Sn(t.footer,x),r.restore(),b+=f.width,{width:b,height:h}}function ll(t,e,r,n){const{x:o,width:i}=r,{width:a,chartArea:{left:s,right:l}}=t;let d="center";return"center"===n?d=o<=(s+l)/2?"left":"right":o<=i/2?d="left":o>=a-i/2&&(d="right"),function(t,e,r,n){const{x:o,width:i}=n,a=r.caretSize+r.caretPadding;return"left"===t&&o+i+a>e.width||"right"===t&&o-i-a<0||void 0}(d,t,e,r)&&(d="center"),d}function dl(t,e,r){const n=r.yAlign||e.yAlign||function(t,e){const{y:r,height:n}=e;return r<n/2?"top":r>t.height-n/2?"bottom":"center"}(t,r);return{xAlign:r.xAlign||e.xAlign||ll(t,e,r,n),yAlign:n}}function cl(t,e,r,n){const{caretSize:o,caretPadding:i,cornerRadius:a}=t,{xAlign:s,yAlign:l}=r,d=o+i,{topLeft:c,topRight:u,bottomLeft:p,bottomRight:m}=ti(a);let f=function(t,e){let{x:r,width:n}=t;return"right"===e?r-=n:"center"===e&&(r-=n/2),r}(e,s);const h=function(t,e,r){let{y:n,height:o}=t;return"top"===e?n+=r:n-="bottom"===e?o+r:o/2,n}(e,l,d);return"center"===l?"left"===s?f+=d:"right"===s&&(f-=d):"left"===s?f-=Math.max(c,p)+o:"right"===s&&(f+=Math.max(u,m)+o),{x:oo(f,0,n.width-e.width),y:oo(h,0,n.height-e.height)}}function ul(t,e,r){const n=ei(r.padding);return"center"===e?t.x+t.width/2:"right"===e?t.x+t.width-n.right:t.x+n.left}function pl(t){return ol([],il(t))}function ml(t,e){const r=e&&e.dataset&&e.dataset.tooltip&&e.dataset.tooltip.callbacks;return r?t.override(r):t}const fl={beforeTitle:hn,title(t){if(t.length>0){const e=t[0],r=e.chart.data.labels,n=r?r.length:0;if(this&&this.options&&"dataset"===this.options.mode)return e.dataset.label||"";if(e.label)return e.label;if(n>0&&e.dataIndex<n)return r[e.dataIndex]}return""},afterTitle:hn,beforeBody:hn,beforeLabel:hn,label(t){if(this&&this.options&&"dataset"===this.options.mode)return t.label+": "+t.formattedValue||t.formattedValue;let e=t.dataset.label||"";e&&(e+=": ");const r=t.formattedValue;return gn(r)||(e+=r),e},labelColor(t){const e=t.chart.getDatasetMeta(t.datasetIndex).controller.getStyle(t.dataIndex);return{borderColor:e.borderColor,backgroundColor:e.backgroundColor,borderWidth:e.borderWidth,borderDash:e.borderDash,borderDashOffset:e.borderDashOffset,borderRadius:0}},labelTextColor(){return this.options.bodyColor},labelPointStyle(t){const e=t.chart.getDatasetMeta(t.datasetIndex).controller.getStyle(t.dataIndex);return{pointStyle:e.pointStyle,rotation:e.rotation}},afterLabel:hn,afterBody:hn,beforeFooter:hn,footer:hn,afterFooter:hn};function hl(t,e,r,n){const o=t[e].call(r,n);return void 0===o?fl[e].call(r,n):o}class bl extends ts{static positioners=nl;constructor(t){super(),this.opacity=0,this._active=[],this._eventPosition=void 0,this._size=void 0,this._cachedAnimations=void 0,this._tooltipItems=[],this.$animations=void 0,this.$context=void 0,this.chart=t.chart,this.options=t.options,this.dataPoints=void 0,this.title=void 0,this.beforeBody=void 0,this.body=void 0,this.afterBody=void 0,this.footer=void 0,this.xAlign=void 0,this.yAlign=void 0,this.x=void 0,this.y=void 0,this.height=void 0,this.width=void 0,this.caretX=void 0,this.caretY=void 0,this.labelColors=void 0,this.labelPointStyles=void 0,this.labelTextColors=void 0}initialize(t){this.options=t,this._cachedAnimations=void 0,this.$context=void 0}_resolveAnimations(){const t=this._cachedAnimations;if(t)return t;const e=this.chart,r=this.options.setContext(this.getContext()),n=r.enabled&&e.options.animation&&r.animations,o=new Gi(this.chart,n);return n._cacheable&&(this._cachedAnimations=Object.freeze(o)),o}getContext(){return this.$context||(this.$context=(this,oi(this.chart.getContext(),{tooltip:this,tooltipItems:this._tooltipItems,type:"tooltip"})))}getTitle(t,e){const{callbacks:r}=e,n=hl(r,"beforeTitle",this,t),o=hl(r,"title",this,t),i=hl(r,"afterTitle",this,t);let a=[];return a=ol(a,il(n)),a=ol(a,il(o)),a=ol(a,il(i)),a}getBeforeBody(t,e){return pl(hl(e.callbacks,"beforeBody",this,t))}getBody(t,e){const{callbacks:r}=e,n=[];return Sn(t,(t=>{const e={before:[],lines:[],after:[]},o=ml(r,t);ol(e.before,il(hl(o,"beforeLabel",this,t))),ol(e.lines,hl(o,"label",this,t)),ol(e.after,il(hl(o,"afterLabel",this,t))),n.push(e)})),n}getAfterBody(t,e){return pl(hl(e.callbacks,"afterBody",this,t))}getFooter(t,e){const{callbacks:r}=e,n=hl(r,"beforeFooter",this,t),o=hl(r,"footer",this,t),i=hl(r,"afterFooter",this,t);let a=[];return a=ol(a,il(n)),a=ol(a,il(o)),a=ol(a,il(i)),a}_createItems(t){const e=this._active,r=this.chart.data,n=[],o=[],i=[];let a,s,l=[];for(a=0,s=e.length;a<s;++a)l.push(al(this.chart,e[a]));return t.filter&&(l=l.filter(((e,n,o)=>t.filter(e,n,o,r)))),t.itemSort&&(l=l.sort(((e,n)=>t.itemSort(e,n,r)))),Sn(l,(e=>{const r=ml(t.callbacks,e);n.push(hl(r,"labelColor",this,e)),o.push(hl(r,"labelPointStyle",this,e)),i.push(hl(r,"labelTextColor",this,e))})),this.labelColors=n,this.labelPointStyles=o,this.labelTextColors=i,this.dataPoints=l,l}update(t,e){const r=this.options.setContext(this.getContext()),n=this._active;let o,i=[];if(n.length){const t=nl[r.position].call(this,n,this._eventPosition);i=this._createItems(r),this.title=this.getTitle(i,r),this.beforeBody=this.getBeforeBody(i,r),this.body=this.getBody(i,r),this.afterBody=this.getAfterBody(i,r),this.footer=this.getFooter(i,r);const e=this._size=sl(this,r),a=Object.assign({},t,e),s=dl(this.chart,r,a),l=cl(r,a,s,this.chart);this.xAlign=s.xAlign,this.yAlign=s.yAlign,o={opacity:1,x:l.x,y:l.y,width:e.width,height:e.height,caretX:t.x,caretY:t.y}}else 0!==this.opacity&&(o={opacity:0});this._tooltipItems=i,this.$context=void 0,o&&this._resolveAnimations().update(this,o),t&&r.external&&r.external.call(this,{chart:this.chart,tooltip:this,replay:e})}drawCaret(t,e,r,n){const o=this.getCaretPosition(t,r,n);e.lineTo(o.x1,o.y1),e.lineTo(o.x2,o.y2),e.lineTo(o.x3,o.y3)}getCaretPosition(t,e,r){const{xAlign:n,yAlign:o}=this,{caretSize:i,cornerRadius:a}=r,{topLeft:s,topRight:l,bottomLeft:d,bottomRight:c}=ti(a),{x:u,y:p}=t,{width:m,height:f}=e;let h,b,g,v,x,y;return"center"===o?(x=p+f/2,"left"===n?(h=u,b=h-i,v=x+i,y=x-i):(h=u+m,b=h+i,v=x-i,y=x+i),g=h):(b="left"===n?u+Math.max(s,d)+i:"right"===n?u+m-Math.max(l,c)-i:this.caretX,"top"===o?(v=p,x=v-i,h=b-i,g=b+i):(v=p+f,x=v+i,h=b+i,g=b-i),y=v),{x1:h,x2:b,x3:g,y1:v,y2:x,y3:y}}drawTitle(t,e,r){const n=this.title,o=n.length;let i,a,s;if(o){const l=ji(r.rtl,this.x,this.width);for(t.x=ul(this,r.titleAlign,r),e.textAlign=l.textAlign(r.titleAlign),e.textBaseline="middle",i=ri(r.titleFont),a=r.titleSpacing,e.fillStyle=r.titleColor,e.font=i.string,s=0;s<o;++s)e.fillText(n[s],l.x(t.x),t.y+i.lineHeight/2),t.y+=i.lineHeight+a,s+1===o&&(t.y+=r.titleMarginBottom-a)}}_drawColorBox(t,e,r,n,o){const i=this.labelColors[r],a=this.labelPointStyles[r],{boxHeight:s,boxWidth:l,boxPadding:d}=o,c=ri(o.bodyFont),u=ul(this,"left",o),p=n.x(u),m=s<c.lineHeight?(c.lineHeight-s)/2:0,f=e.y+m;if(o.usePointStyle){const e={radius:Math.min(l,s)/2,pointStyle:a.pointStyle,rotation:a.rotation,borderWidth:1},r=n.leftForLtr(p,l)+l/2,d=f+s/2;t.strokeStyle=o.multiKeyBackground,t.fillStyle=o.multiKeyBackground,jo(t,e,r,d),t.strokeStyle=i.borderColor,t.fillStyle=i.backgroundColor,jo(t,e,r,d)}else{t.lineWidth=xn(i.borderWidth)?Math.max(...Object.values(i.borderWidth)):i.borderWidth||1,t.strokeStyle=i.borderColor,t.setLineDash(i.borderDash||[]),t.lineDashOffset=i.borderDashOffset||0;const e=n.leftForLtr(p,l-d),r=n.leftForLtr(n.xPlus(p,1),l-d-2),a=ti(i.borderRadius);Object.values(a).some((t=>0!==t))?(t.beginPath(),t.fillStyle=o.multiKeyBackground,Qo(t,{x:e,y:f,w:l,h:s,radius:a}),t.fill(),t.stroke(),t.fillStyle=i.backgroundColor,t.beginPath(),Qo(t,{x:r,y:f+1,w:l-2,h:s-2,radius:a}),t.fill()):(t.fillStyle=o.multiKeyBackground,t.fillRect(e,f,l,s),t.strokeRect(e,f,l,s),t.fillStyle=i.backgroundColor,t.fillRect(r,f+1,l-2,s-2))}t.fillStyle=this.labelTextColors[r]}drawBody(t,e,r){const{body:n}=this,{bodySpacing:o,bodyAlign:i,displayColors:a,boxHeight:s,boxWidth:l,boxPadding:d}=r,c=ri(r.bodyFont);let u=c.lineHeight,p=0;const m=ji(r.rtl,this.x,this.width),f=function(r){e.fillText(r,m.x(t.x+p),t.y+u/2),t.y+=u+o},h=m.textAlign(i);let b,g,v,x,y,w,k;for(e.textAlign=i,e.textBaseline="middle",e.font=c.string,t.x=ul(this,h,r),e.fillStyle=r.bodyColor,Sn(this.beforeBody,f),p=a&&"right"!==h?"center"===i?l/2+d:l+2+d:0,x=0,w=n.length;x<w;++x){for(b=n[x],g=this.labelTextColors[x],e.fillStyle=g,Sn(b.before,f),v=b.lines,a&&v.length&&(this._drawColorBox(e,t,x,m,r),u=Math.max(c.lineHeight,s)),y=0,k=v.length;y<k;++y)f(v[y]),u=c.lineHeight;Sn(b.after,f)}p=0,u=c.lineHeight,Sn(this.afterBody,f),t.y-=o}drawFooter(t,e,r){const n=this.footer,o=n.length;let i,a;if(o){const s=ji(r.rtl,this.x,this.width);for(t.x=ul(this,r.footerAlign,r),t.y+=r.footerMarginTop,e.textAlign=s.textAlign(r.footerAlign),e.textBaseline="middle",i=ri(r.footerFont),e.fillStyle=r.footerColor,e.font=i.string,a=0;a<o;++a)e.fillText(n[a],s.x(t.x),t.y+i.lineHeight/2),t.y+=i.lineHeight+r.footerSpacing}}drawBackground(t,e,r,n){const{xAlign:o,yAlign:i}=this,{x:a,y:s}=t,{width:l,height:d}=r,{topLeft:c,topRight:u,bottomLeft:p,bottomRight:m}=ti(n.cornerRadius);e.fillStyle=n.backgroundColor,e.strokeStyle=n.borderColor,e.lineWidth=n.borderWidth,e.beginPath(),e.moveTo(a+c,s),"top"===i&&this.drawCaret(t,e,r,n),e.lineTo(a+l-u,s),e.quadraticCurveTo(a+l,s,a+l,s+u),"center"===i&&"right"===o&&this.drawCaret(t,e,r,n),e.lineTo(a+l,s+d-m),e.quadraticCurveTo(a+l,s+d,a+l-m,s+d),"bottom"===i&&this.drawCaret(t,e,r,n),e.lineTo(a+p,s+d),e.quadraticCurveTo(a,s+d,a,s+d-p),"center"===i&&"left"===o&&this.drawCaret(t,e,r,n),e.lineTo(a,s+c),e.quadraticCurveTo(a,s,a+c,s),e.closePath(),e.fill(),n.borderWidth>0&&e.stroke()}_updateAnimationTarget(t){const e=this.chart,r=this.$animations,n=r&&r.x,o=r&&r.y;if(n||o){const r=nl[t.position].call(this,this._active,this._eventPosition);if(!r)return;const i=this._size=sl(this,t),a=Object.assign({},r,this._size),s=dl(e,t,a),l=cl(t,a,s,e);n._to===l.x&&o._to===l.y||(this.xAlign=s.xAlign,this.yAlign=s.yAlign,this.width=i.width,this.height=i.height,this.caretX=r.x,this.caretY=r.y,this._resolveAnimations().update(this,l))}}_willRender(){return!!this.opacity}draw(t){const e=this.options.setContext(this.getContext());let r=this.opacity;if(!r)return;this._updateAnimationTarget(e);const n={width:this.width,height:this.height},o={x:this.x,y:this.y};r=Math.abs(r)<.001?0:r;const i=ei(e.padding),a=this.title.length||this.beforeBody.length||this.body.length||this.afterBody.length||this.footer.length;e.enabled&&a&&(t.save(),t.globalAlpha=r,this.drawBackground(o,t,n,e),Fi(t,e.textDirection),o.y+=i.top,this.drawTitle(o,t,e),this.drawBody(o,t,e),this.drawFooter(o,t,e),Bi(t,e.textDirection),t.restore())}getActiveElements(){return this._active||[]}setActiveElements(t,e){const r=this._active,n=t.map((({datasetIndex:t,index:e})=>{const r=this.chart.getDatasetMeta(t);if(!r)throw new Error("Cannot find a dataset at index "+t);return{datasetIndex:t,element:r.data[e],index:e}})),o=!En(r,n),i=this._positionChanged(n,e);(o||i)&&(this._active=n,this._eventPosition=e,this._ignoreReplayEvents=!0,this.update(!0))}handleEvent(t,e,r=!0){if(e&&this._ignoreReplayEvents)return!1;this._ignoreReplayEvents=!1;const n=this.options,o=this._active||[],i=this._getActiveElements(t,o,e,r),a=this._positionChanged(i,t),s=e||!En(i,o)||a;return s&&(this._active=i,(n.enabled||n.external)&&(this._eventPosition={x:t.x,y:t.y},this.update(!0,e))),s}_getActiveElements(t,e,r,n){const o=this.options;if("mouseout"===t.type)return[];if(!n)return e;const i=this.chart.getElementsAtEventForMode(t,o.mode,o,r);return o.reverse&&i.reverse(),i}_positionChanged(t,e){const{caretX:r,caretY:n,options:o}=this,i=nl[o.position].call(this,t,e);return!1!==i&&(r!==i.x||n!==i.y)}}var gl={id:"tooltip",_element:bl,positioners:nl,afterInit(t,e,r){r&&(t.tooltip=new bl({chart:t,options:r}))},beforeUpdate(t,e,r){t.tooltip&&t.tooltip.initialize(r)},reset(t,e,r){t.tooltip&&t.tooltip.initialize(r)},afterDraw(t){const e=t.tooltip;if(e&&e._willRender()){const r={tooltip:e};if(!1===t.notifyPlugins("beforeTooltipDraw",{...r,cancelable:!0}))return;e.draw(t.ctx),t.notifyPlugins("afterTooltipDraw",r)}},afterEvent(t,e){if(t.tooltip){const r=e.replay;t.tooltip.handleEvent(e.event,r,e.inChartArea)&&(e.changed=!0)}},defaults:{enabled:!0,external:null,position:"average",backgroundColor:"rgba(0,0,0,0.8)",titleColor:"#fff",titleFont:{weight:"bold"},titleSpacing:2,titleMarginBottom:6,titleAlign:"left",bodyColor:"#fff",bodySpacing:2,bodyFont:{},bodyAlign:"left",footerColor:"#fff",footerSpacing:2,footerMarginTop:6,footerFont:{weight:"bold"},footerAlign:"left",padding:6,caretPadding:2,caretSize:5,cornerRadius:6,boxHeight:(t,e)=>e.bodyFont.size,boxWidth:(t,e)=>e.bodyFont.size,multiKeyBackground:"#fff",displayColors:!0,boxPadding:0,borderColor:"rgba(0,0,0,0)",borderWidth:0,animation:{duration:400,easing:"easeOutQuart"},animations:{numbers:{type:"number",properties:["x","y","width","height","caretX","caretY"]},opacity:{easing:"linear",duration:200}},callbacks:fl},defaultRoutes:{bodyFont:"font",footerFont:"font",titleFont:"font"},descriptors:{_scriptable:t=>"filter"!==t&&"itemSort"!==t&&"external"!==t,_indexable:!1,callbacks:{_scriptable:!1,_indexable:!1},animation:{_fallback:!1},animations:{_fallback:"animation"}},additionalOptionScopes:["interaction"]};function vl(t){const e=this.getLabels();return t>=0&&t<e.length?e[t]:t}class xl extends ds{static id="category";static defaults={ticks:{callback:vl}};constructor(t){super(t),this._startValue=void 0,this._valueRange=0,this._addedLabels=[]}init(t){const e=this._addedLabels;if(e.length){const t=this.getLabels();for(const{index:r,label:n}of e)t[r]===n&&t.splice(r,1);this._addedLabels=[]}super.init(t)}parse(t,e){if(gn(t))return null;const r=this.getLabels();return((t,e)=>null===t?null:oo(Math.round(t),0,e))(e=isFinite(e)&&r[e]===t?e:function(t,e,r,n){const o=t.indexOf(e);return-1===o?((t,e,r,n)=>("string"==typeof e?(r=t.push(e)-1,n.unshift({index:r,label:e})):isNaN(e)&&(r=null),r))(t,e,r,n):o!==t.lastIndexOf(e)?r:o}(r,t,kn(e,t),this._addedLabels),r.length-1)}determineDataLimits(){const{minDefined:t,maxDefined:e}=this.getUserBounds();let{min:r,max:n}=this.getMinMax(!0);"ticks"===this.options.bounds&&(t||(r=0),e||(n=this.getLabels().length-1)),this.min=r,this.max=n}buildTicks(){const t=this.min,e=this.max,r=this.options.offset,n=[];let o=this.getLabels();o=0===t&&e===o.length-1?o:o.slice(t,e+1),this._valueRange=Math.max(o.length-(r?0:1),1),this._startValue=this.min-(r?.5:0);for(let r=t;r<=e;r++)n.push({value:r});return n}getLabelForValue(t){return vl.call(this,t)}configure(){super.configure(),this.isHorizontal()||(this._reversePixels=!this._reversePixels)}getPixelForValue(t){return"number"!=typeof t&&(t=this.parse(t)),null===t?NaN:this.getPixelForDecimal((t-this._startValue)/this._valueRange)}getPixelForTick(t){const e=this.ticks;return t<0||t>e.length-1?null:this.getPixelForValue(e[t].value)}getValueForPixel(t){return Math.round(this._startValue+this.getDecimalForPixel(t)*this._valueRange)}getBasePixel(){return this.bottom}}function yl(t,e,{horizontal:r,minRotation:n}){const o=Zn(n),i=(r?Math.sin(o):Math.cos(o))||.001,a=.75*e*(""+t).length;return Math.min(e/i,a)}class wl extends ds{constructor(t){super(t),this.start=void 0,this.end=void 0,this._startValue=void 0,this._endValue=void 0,this._valueRange=0}parse(t,e){return gn(t)||("number"==typeof t||t instanceof Number)&&!isFinite(+t)?null:+t}handleTickRangeOptions(){const{beginAtZero:t}=this.options,{minDefined:e,maxDefined:r}=this.getUserBounds();let{min:n,max:o}=this;const i=t=>n=e?n:t,a=t=>o=r?o:t;if(t){const t=Kn(n),e=Kn(o);t<0&&e<0?a(0):t>0&&e>0&&i(0)}if(n===o){let e=0===o?1:Math.abs(.05*o);a(o+e),t||i(n-e)}this.min=n,this.max=o}getTickLimit(){const t=this.options.ticks;let e,{maxTicksLimit:r,stepSize:n}=t;return n?(e=Math.ceil(this.max/n)-Math.floor(this.min/n)+1,e>1e3&&(console.warn(`scales.${this.id}.ticks.stepSize: ${n} would result generating up to ${e} ticks. Limiting to 1000.`),e=1e3)):(e=this.computeTickLimit(),r=r||11),r&&(e=Math.min(r,e)),e}computeTickLimit(){return Number.POSITIVE_INFINITY}buildTicks(){const t=this.options,e=t.ticks;let r=this.getTickLimit();r=Math.max(2,r);const n=function(t,e){const r=[],{bounds:n,step:o,min:i,max:a,precision:s,count:l,maxTicks:d,maxDigits:c,includeBounds:u}=t,p=o||1,m=d-1,{min:f,max:h}=e,b=!gn(i),g=!gn(a),v=!gn(l),x=(h-f)/(c+1);let y,w,k,_,S=Xn((h-f)/m/p)*p;if(S<1e-14&&!b&&!g)return[{value:f},{value:h}];_=Math.ceil(h/S)-Math.floor(f/S),_>m&&(S=Xn(_*S/m/p)*p),gn(s)||(y=Math.pow(10,s),S=Math.ceil(S*y)/y),"ticks"===n?(w=Math.floor(f/S)*S,k=Math.ceil(h/S)*S):(w=f,k=h),b&&g&&o&&function(t,e){const r=Math.round(t);return r-e<=t&&r+e>=t}((a-i)/o,S/1e3)?(_=Math.round(Math.min((a-i)/S,d)),S=(a-i)/_,w=i,k=a):v?(w=b?i:w,k=g?a:k,_=l-1,S=(k-w)/_):(_=(k-w)/S,_=Qn(_,Math.round(_),S/1e3)?Math.round(_):Math.ceil(_));const E=Math.max(Jn(S),Jn(w));y=Math.pow(10,gn(s)?E:s),w=Math.round(w*y)/y,k=Math.round(k*y)/y;let C=0;for(b&&(u&&w!==i?(r.push({value:i}),w<i&&C++,Qn(Math.round((w+C*S)*y)/y,i,yl(i,x,t))&&C++):w<i&&C++);C<_;++C)r.push({value:Math.round((w+C*S)*y)/y});return g&&u&&k!==a?r.length&&Qn(r[r.length-1].value,a,yl(a,x,t))?r[r.length-1].value=a:r.push({value:a}):g&&k!==a||r.push({value:k}),r}({maxTicks:r,bounds:t.bounds,min:t.min,max:t.max,precision:e.precision,step:e.stepSize,count:e.count,maxDigits:this._maxDigits(),horizontal:this.isHorizontal(),minRotation:e.minRotation||0,includeBounds:!1!==e.includeBounds},this._range||this);return"ticks"===t.bounds&&Gn(n,this,"value"),t.reverse?(n.reverse(),this.start=this.max,this.end=this.min):(this.start=this.min,this.end=this.max),n}configure(){const t=this.ticks;let e=this.min,r=this.max;if(super.configure(),this.options.offset&&t.length){const n=(r-e)/Math.max(t.length-1,1)/2;e-=n,r+=n}this._startValue=e,this._endValue=r,this._valueRange=r-e}getLabelForValue(t){return Co(t,this.chart.options.locale,this.options.ticks.format)}}class kl extends wl{static id="linear";static defaults={ticks:{callback:Mo.formatters.numeric}};determineDataLimits(){const{min:t,max:e}=this.getMinMax(!0);this.min=yn(t)?t:0,this.max=yn(e)?e:1,this.handleTickRangeOptions()}computeTickLimit(){const t=this.isHorizontal(),e=t?this.width:this.height,r=Zn(this.options.ticks.minRotation),n=(t?Math.sin(r):Math.cos(r))||.001,o=this._resolveTickFontOptions(0);return Math.ceil(e/Math.min(40,o.lineHeight/n))}getPixelForValue(t){return null===t?NaN:this.getPixelForDecimal((t-this._startValue)/this._valueRange)}getValueForPixel(t){return this._startValue+this.getDecimalForPixel(t)*this._valueRange}}class _l extends ds{static id="logarithmic";static defaults={ticks:{callback:Mo.formatters.logarithmic,major:{enabled:!0}}};constructor(t){super(t),this.start=void 0,this.end=void 0,this._startValue=void 0,this._valueRange=0}parse(t,e){const r=wl.prototype.parse.apply(this,[t,e]);if(0!==r)return yn(r)&&r>0?r:null;this._zero=!0}determineDataLimits(){const{min:t,max:e}=this.getMinMax(!0);this.min=yn(t)?Math.max(0,t):null,this.max=yn(e)?Math.max(0,e):null,this.options.beginAtZero&&(this._zero=!0),this._zero&&this.min!==this._suggestedMin&&!yn(this._userMin)&&(this.min=t===changeExponent(this.min,0)?changeExponent(this.min,-1):changeExponent(this.min,0)),this.handleTickRangeOptions()}handleTickRangeOptions(){const{minDefined:t,maxDefined:e}=this.getUserBounds();let r=this.min,n=this.max;const o=e=>t?r:e,i=t=>e?n:t;r===n&&(r<=0?(o(1),i(10)):(o(changeExponent(r,-1)),i(changeExponent(n,1)))),r<=0&&o(changeExponent(n,-1)),n<=0&&i(changeExponent(r,1)),this.min=r,this.max=n}buildTicks(){const t=this.options,e=generateTicks({min:this._userMin,max:this._userMax},this);return"ticks"===t.bounds&&Gn(e,this,"value"),t.reverse?(e.reverse(),this.start=this.max,this.end=this.min):(this.start=this.min,this.end=this.max),e}getLabelForValue(t){return void 0===t?"0":Co(t,this.chart.options.locale,this.options.ticks.format)}configure(){const t=this.min;super.configure(),this._startValue=Yn(t),this._valueRange=Yn(this.max)-Yn(t)}getPixelForValue(t){return void 0!==t&&0!==t||this.min,null===t||isNaN(t)?NaN:this.getPixelForDecimal(t===this.min?0:(Yn(t)-this._startValue)/this._valueRange)}getValueForPixel(t){const e=this.getDecimalForPixel(t);return Math.pow(10,this._startValue+e*this._valueRange)}}class Sl extends wl{static id="radialLinear";static defaults={display:!0,animate:!0,position:"chartArea",angleLines:{display:!0,lineWidth:1,borderDash:[],borderDashOffset:0},grid:{circular:!1},startAngle:0,ticks:{showLabelBackdrop:!0,callback:Mo.formatters.numeric},pointLabels:{backdropColor:void 0,backdropPadding:2,display:!0,font:{size:10},callback:t=>t,padding:5,centerPointLabels:!1}};static defaultRoutes={"angleLines.color":"borderColor","pointLabels.color":"color","ticks.color":"color"};static descriptors={angleLines:{_fallback:"grid"}};constructor(t){super(t),this.xCenter=void 0,this.yCenter=void 0,this.drawingArea=void 0,this._pointLabels=[],this._pointLabelItems=[]}setDimensions(){const t=this._padding=ei(getTickBackdropHeight(this.options)/2),e=this.width=this.maxWidth-t.width,r=this.height=this.maxHeight-t.height;this.xCenter=Math.floor(this.left+e/2+t.left),this.yCenter=Math.floor(this.top+r/2+t.top),this.drawingArea=Math.floor(Math.min(e,r)/2)}determineDataLimits(){const{min:t,max:e}=this.getMinMax(!1);this.min=yn(t)&&!isNaN(t)?t:0,this.max=yn(e)&&!isNaN(e)?e:0,this.handleTickRangeOptions()}computeTickLimit(){return Math.ceil(this.drawingArea/getTickBackdropHeight(this.options))}generateTickLabels(t){wl.prototype.generateTickLabels.call(this,t),this._pointLabels=this.getLabels().map(((t,e)=>{const r=_n(this.options.pointLabels.callback,[t,e],this);return r||0===r?r:""})).filter(((t,e)=>this.chart.getDataVisibility(e)))}fit(){const t=this.options;t.display&&t.pointLabels.display?fitWithPointLabels(this):this.setCenterPoint(0,0,0,0)}setCenterPoint(t,e,r,n){this.xCenter+=Math.floor((t-e)/2),this.yCenter+=Math.floor((r-n)/2),this.drawingArea-=Math.min(this.drawingArea/2,Math.max(t,e,r,n))}getIndexAngle(t){return ro(t*(Fn/(this._pointLabels.length||1))+Zn(this.options.startAngle||0))}getDistanceFromCenterForValue(t){if(gn(t))return NaN;const e=this.drawingArea/(this.max-this.min);return this.options.reverse?(this.max-t)*e:(t-this.min)*e}getValueForDistanceFromCenter(t){if(gn(t))return NaN;const e=t/(this.drawingArea/(this.max-this.min));return this.options.reverse?this.max-e:this.min+e}getPointLabelContext(t){const e=this._pointLabels||[];if(t>=0&&t<e.length){const r=e[t];return function(t,e,r){return oi(t,{label:r,index:e,type:"pointLabel"})}(this.getContext(),t,r)}}getPointPosition(t,e,r=0){const n=this.getIndexAngle(t)-Vn+r;return{x:Math.cos(n)*e+this.xCenter,y:Math.sin(n)*e+this.yCenter,angle:n}}getPointPositionForValue(t,e){return this.getPointPosition(t,this.getDistanceFromCenterForValue(e))}getBasePosition(t){return this.getPointPositionForValue(t||0,this.getBaseValue())}getPointLabelPosition(t){const{left:e,top:r,right:n,bottom:o}=this._pointLabelItems[t];return{left:e,top:r,right:n,bottom:o}}drawBackground(){const{backgroundColor:t,grid:{circular:e}}=this.options;if(t){const r=this.ctx;r.save(),r.beginPath(),pathRadiusLine(this,this.getDistanceFromCenterForValue(this._endValue),e,this._pointLabels.length),r.closePath(),r.fillStyle=t,r.fill(),r.restore()}}drawGrid(){const t=this.ctx,e=this.options,{angleLines:r,grid:n,border:o}=e,i=this._pointLabels.length;let a,s,l;if(e.pointLabels.display&&function(t,e){const{ctx:r,options:{pointLabels:n}}=t;for(let o=e-1;o>=0;o--){const e=n.setContext(t.getPointLabelContext(o)),i=ri(e.font),{x:a,y:s,textAlign:l,left:d,top:c,right:u,bottom:p}=t._pointLabelItems[o],{backdropColor:m}=e;if(!gn(m)){const t=ti(e.borderRadius),n=ei(e.backdropPadding);r.fillStyle=m;const o=d-n.left,i=c-n.top,a=u-d+n.width,s=p-c+n.height;Object.values(t).some((t=>0!==t))?(r.beginPath(),Qo(r,{x:o,y:i,w:a,h:s,radius:t}),r.fill()):r.fillRect(o,i,a,s)}Wo(r,t._pointLabels[o],a,s+i.lineHeight/2,i,{color:e.color,textAlign:l,textBaseline:"middle"})}}(this,i),n.display&&this.ticks.forEach(((t,e)=>{if(0!==e){this.getDistanceFromCenterForValue(t.value);const r=this.getContext(e),a=n.setContext(r),l=o.setContext(r);!function(t,e,r,n,o){const i=t.ctx,a=e.circular,{color:s,lineWidth:l}=e;!a&&!n||!s||!l||(i.save(),i.strokeStyle=s,i.lineWidth=l,i.setLineDash(o.dash),i.lineDashOffset=o.dashOffset,i.beginPath(),pathRadiusLine(t,r,a,n),i.closePath(),i.stroke(),i.restore())}(this,a,s,i,l)}})),r.display){for(t.save();a>=0;a--){const n=r.setContext(this.getPointLabelContext(a)),{color:o,lineWidth:i}=n;i&&o&&(t.lineWidth=i,t.strokeStyle=o,t.setLineDash(n.borderDash),t.lineDashOffset=n.borderDashOffset,this.getDistanceFromCenterForValue(e.ticks.reverse?this.min:this.max),this.getPointPosition(a,s),t.beginPath(),t.moveTo(this.xCenter,this.yCenter),t.lineTo(l.x,l.y),t.stroke())}t.restore()}}drawBorder(){}drawLabels(){const t=this.ctx,e=this.options,r=e.ticks;if(!r.display)return;const n=this.getIndexAngle(0);let o;t.save(),t.translate(this.xCenter,this.yCenter),t.rotate(n),t.textAlign="center",t.textBaseline="middle",this.ticks.forEach(((n,i)=>{if(0===i&&!e.reverse)return;const a=r.setContext(this.getContext(i)),s=ri(a.font);if(this.getDistanceFromCenterForValue(this.ticks[i].value),a.showLabelBackdrop){t.font=s.string,t.measureText(n.label).width,t.fillStyle=a.backdropColor;const e=ei(a.backdropPadding);t.fillRect(NaN-e.left,NaN-s.size/2-e.top,o+e.width,s.size+e.height)}Wo(t,n.label,0,NaN,s,{color:a.color})})),t.restore()}drawTitle(){}}const El="label";function Cl(t,e){"function"==typeof t?t(e):t&&(t.current=e)}function zl(t,e){t.labels=e}function Ml(t,e){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:El;const n=[];t.datasets=e.map((e=>{const o=t.datasets.find((t=>t[r]===e[r]));return o&&e.data&&!n.includes(o)?(n.push(o),Object.assign(o,e),o):{...e}}))}function Pl(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:El;const r={labels:[],datasets:[]};return zl(r,t.labels),Ml(r,t.datasets,e),r}function Ol(t,r){const{height:n=150,width:o=300,redraw:i=!1,datasetIdKey:a,type:s,data:l,options:d,plugins:c=[],fallbackContent:u,updateMode:p,...m}=t,f=(0,e.useRef)(null),h=(0,e.useRef)(),b=()=>{f.current&&(h.current=new Is(f.current,{type:s,data:Pl(l,a),options:d&&{...d},plugins:c}),Cl(r,h.current))},g=()=>{Cl(r,null),h.current&&(h.current.destroy(),h.current=null)};return(0,e.useEffect)((()=>{!i&&h.current&&d&&function(t,e){const r=t.options;r&&e&&Object.assign(r,e)}(h.current,d)}),[i,d]),(0,e.useEffect)((()=>{!i&&h.current&&zl(h.current.config.data,l.labels)}),[i,l.labels]),(0,e.useEffect)((()=>{!i&&h.current&&l.datasets&&Ml(h.current.config.data,l.datasets,a)}),[i,l.datasets]),(0,e.useEffect)((()=>{h.current&&(i?(g(),setTimeout(b)):h.current.update(p))}),[i,d,l.labels,l.datasets,p]),(0,e.useEffect)((()=>{h.current&&(g(),setTimeout(b))}),[s]),(0,e.useEffect)((()=>(b(),()=>g())),[]),e.createElement("canvas",Object.assign({ref:f,role:"img",height:n,width:o},m),u)}const Tl=(0,e.forwardRef)(Ol);function Ll(t,r){return Is.register(r),(0,e.forwardRef)(((r,n)=>e.createElement(Tl,Object.assign({},r,{ref:n,type:t}))))}const Rl=Ll("line",xa),Nl=Ll("bar",va);Is.register(xl,kl,class extends ts{static id="point";static defaults={borderWidth:1,hitRadius:1,hoverBorderWidth:1,hoverRadius:4,pointStyle:"circle",radius:3,rotation:0};static defaultRoutes={backgroundColor:"backgroundColor",borderColor:"borderColor"};constructor(t){super(),this.options=void 0,this.parsed=void 0,this.skip=void 0,this.stop=void 0,t&&Object.assign(this,t)}inRange(t,e,r){const n=this.options,{x:o,y:i}=this.getProps(["x","y"],r);return Math.pow(t-o,2)+Math.pow(e-i,2)<Math.pow(n.hitRadius+n.radius,2)}inXRange(t,e){return Ws(this,t,"x",e)}inYRange(t,e){return Ws(this,t,"y",e)}getCenterPoint(t){const{x:e,y:r}=this.getProps(["x","y"],t);return{x:e,y:r}}size(t){let e=(t=t||this.options||{}).radius||0;return e=Math.max(e,e&&t.hoverRadius||0),2*(e+(e&&t.borderWidth||0))}draw(t,e){const r=this.options;this.skip||r.radius<.1||!Bo(this,e,this.size(r)/2)||(t.strokeStyle=r.borderColor,t.lineWidth=r.borderWidth,t.fillStyle=r.backgroundColor,jo(t,r,this.x,this.y))}getRange(){const t=this.options||{};return t.radius+t.hitRadius}},class extends ts{static id="line";static defaults={borderCapStyle:"butt",borderDash:[],borderDashOffset:0,borderJoinStyle:"miter",borderWidth:3,capBezierPoints:!0,cubicInterpolationMode:"default",fill:!1,spanGaps:!1,stepped:!1,tension:0};static defaultRoutes={backgroundColor:"backgroundColor",borderColor:"borderColor"};static descriptors={_scriptable:!0,_indexable:t=>"borderDash"!==t&&"fill"!==t};constructor(t){super(),this.animated=!0,this.options=void 0,this._chart=void 0,this._loop=void 0,this._fullLoop=void 0,this._path=void 0,this._points=void 0,this._segments=void 0,this._decimated=!1,this._pointsUpdated=!1,this._datasetIndex=void 0,t&&Object.assign(this,t)}updateControlPoints(t,e){const r=this.options;if((r.tension||"monotone"===r.cubicInterpolationMode)&&!r.stepped&&!this._pointsUpdated){const n=r.spanGaps?this._loop:this._fullLoop;_i(this._points,r,t,n,e),this._pointsUpdated=!0}}set points(t){this._points=t,delete this._segments,delete this._path,this._pointsUpdated=!1}get points(){return this._points}get segments(){return this._segments||(this._segments=function(t,e){const r=t.points,n=t.options.spanGaps,o=r.length;if(!o)return[];const i=!!t._loop,{start:a,end:s}=function(t,e,r,n){let o=0,i=e-1;if(r&&!n)for(;o<e&&!t[o].skip;)o++;for(;o<e&&t[o].skip;)o++;for(o%=e,r&&(i+=o);i>o&&t[i%e].skip;)i--;return i%=e,{start:o,end:i}}(r,o,i,n);return function(t,e,r,n){return n&&n.setContext&&r?function(t,e,r,n){const o=t._chart.getContext(),i=$i(t.options),{_datasetIndex:a,options:{spanGaps:s}}=t,l=r.length,d=[];let c=i,u=e[0].start,p=u;function m(t,e,n,o){const i=s?-1:1;if(t!==e){for(t+=l;r[t%l].skip;)t-=i;for(;r[e%l].skip;)e+=i;t%l!=e%l&&(d.push({start:t%l,end:e%l,loop:n,style:o}),c=o,u=e%l)}}for(const t of e){u=s?u:t.start;let e,i=r[u%l];for(p=u+1;p<=t.end;p++){const s=r[p%l];e=$i(n.setContext(oi(o,{type:"segment",p0:i,p1:s,p0DataIndex:(p-1)%l,p1DataIndex:p%l,datasetIndex:a}))),Wi(e,c)&&m(u,p-1,t.loop,c),i=s,c=e}u<p-1&&m(u,p-1,t.loop,c)}return d}(t,e,r,n):e}(t,!0===n?[{start:a,end:s,loop:i}]:function(t,e,r,n){const o=t.length,i=[];let a,s=e,l=t[e];for(a=e+1;a<=r;++a){const r=t[a%o];r.skip||r.stop?l.skip||(n=!1,i.push({start:e%o,end:(a-1)%o,loop:n}),e=s=r.stop?a:null):(s=a,l.skip&&(e=a)),l=r}return null!==s&&i.push({start:e%o,end:s%o,loop:n}),i}(r,a,s<a?s+o:s,!!t._fullLoop&&0===a&&s===o-1),r,e)}(this,this.options.segment))}first(){const t=this.segments,e=this.points;return t.length&&e[t[0].start]}last(){const t=this.segments,e=this.points,r=t.length;return r&&e[t[r-1].end]}interpolate(t,e){const r=this.options,n=t[e],o=this.points,i=function(t,e){const r=[],n=t.segments;for(let o=0;o<n.length;o++){const i=Vi(n[o],t.points,e);i.length&&r.push(...i)}return r}(this,{property:e,start:n,end:n});if(!i.length)return;const a=[],s=function(t){return t.stepped?Ii:t.tension||"monotone"===t.cubicInterpolationMode?Ai:Di}(r);let l,d;for(l=0,d=i.length;l<d;++l){const{start:d,end:c}=i[l],u=o[d],p=o[c];if(u===p){a.push(u);continue}const m=s(u,p,Math.abs((n-u[e])/(p[e]-u[e])),r.stepped);m[e]=t[e],a.push(m)}return 1===a.length?a[0]:a}pathSegment(t,e,r){return Vs(this)(t,this,e,r)}path(t,e,r){const n=this.segments,o=Vs(this);let i=this._loop;e=e||0,r=r||this.points.length-e;for(const a of n)i&=o(t,this,a,{start:e,end:e+r-1});return!!i}draw(t,e,r,n){const o=this.options||{};(this.points||[]).length&&o.borderWidth&&(t.save(),function(t,e,r,n){$s&&!e.options.segment?function(t,e,r,n){let o=e._path;o||(o=e._path=new Path2D,e.path(o,r,n)&&o.closePath()),js(t,e.options),t.stroke(o)}(t,e,r,n):function(t,e,r,n){const{segments:o,options:i}=e,a=Vs(e);for(const s of o)js(t,i,s.style),t.beginPath(),a(t,e,s,{start:r,end:r+n-1})&&t.closePath(),t.stroke()}(t,e,r,n)}(t,this,r,n),t.restore()),this.animated&&(this._pointsUpdated=!1,this._path=void 0)}},rl,gl,tl);var Dl={responsive:!0,plugins:{legend:{position:"top"},title:{display:!0,text:""}}};const Il=function(t){return e.createElement(Rl,{data:t.data,options:Dl})};var Al={responsive:!0,plugins:{legend:{position:"top"},title:{display:!0,text:"Loading..."}}};const jl=function(){function t(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0;return fetch(t,e).then((function(t){return t.ok?t.json():t.text().then((function(e){throw console.error("Failed to load datax: ".concat(e),t.status),new Error("The data could not be loaded, check the logs for details.")}))}))}var r=le((0,e.useState)(),2),n=r[0],o=r[1],i=le((0,e.useState)(),2),a=i[0],s=i[1],l=le((0,e.useState)(),2),d=l[0],c=l[1],u=le((0,e.useState)(0),2),p=u[0],m=u[1];(0,e.useEffect)((function(){var t={description:"Org",items:[{id:0,title:"NREN Budgets per year, in Millions EUR",url:"/api/data-entries/item/2"}],name:"Organisation"};c(t),m(t.items[0].id)}),[]),(0,e.useEffect)((function(){var e=function(){var e=se(ce().mark((function e(){return ce().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:console.log("budgetResponse "+a),null==a?t("/api/budget/",{}).then((function(t){console.log("budget.data :",t),console.log("budget :",t);var e=null==d?void 0:d.items.find((function(t){return t.id==p}));console.log(p,d,e),e&&(Al.plugins.title.text=e.title),s(t),console.log("budgetResponse after api "+a),h(t)})).catch((function(t){console.log("Error fetching from API: ".concat(t))})):h(a);case 2:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}();e()}),[d,p]);var f=[{BUDGET:"",BUDGET_YEAR:0,NREN:"",id:0}],h=function(t){var e=null!=t?t:f;console.log("barResponse "+e),console.log(e.map((function(t){return t.BUDGET_YEAR})));var r=ie(new Set(e.map((function(t){return t.BUDGET_YEAR})))),n=ie(new Set(e.map((function(t){return t.NREN}))));function i(){var t=Math.floor(256*Math.random()).toString(16).padStart(2,"0"),e=Math.floor(256*Math.random()).toString(16).padStart(2,"0"),r=Math.floor(256*Math.random()).toString(16).padStart(2,"0");return"#".concat(t).concat(e).concat(r)}function a(t,r){var n=e.find((function(e,n){if(e.BUDGET_YEAR==t&&e.NREN==r)return Number(e.BUDGET)}));return void 0!==n?Number(n.BUDGET):null}var s=r.map((function(t){var e=i();return{backgroundColor:e,borderColor:e,data:n.map((function(e){return a(t,e)})),label:t.toString()}})),l=n.map((function(t){var e=i();return{backgroundColor:e,borderColor:e,data:r.map((function(e){return a(e,t)})),label:t}}));if(0==p){var d={data:{datasets:l,labels:r.map((function(t){return t.toString()}))},description:"The numbers are based on 30 NRENs that reported their budgets continuously throughout this period. This means that some larger NRENs are not included and therefore the actual total budgets will have been higher. (For comparison, the total budget according to the 2021 survey results based on the data for all responding NRENs that year is €555 M). The percentage change is based on the previous year's budget.",id:"3",settings:{},title:"NREN Budgets per NREN, in Millions EUR"};o(d)}else{var c={data:{datasets:s,labels:n.map((function(t){return t.toString()}))},description:"The numbers are based on 30 NRENs that reported their budgets continuously throughout this period. This means that some larger NRENs are not included and therefore the actual total budgets will have been higher. (For comparison, the total budget according to the 2021 survey results based on the data for all responding NRENs that year is €555 M). The percentage change is based on the previous year’s budget.",id:"2",settings:{},title:"NREN Budgets per year, in Millions EUR"};o(c)}},b=void 0!==n?n:{data:{datasets:[{backgroundColor:"",data:[],label:""}],labels:[]},description:"",id:"",settings:{},title:""};return e.createElement("div",null,e.createElement("h1",null,"Data Analysis"),e.createElement(Et,null,e.createElement(zt,null,e.createElement(Pt,null,e.createElement(zt,null,e.createElement(Il,{data:b.data})),e.createElement(zt,null,null==n?void 0:n.description)),e.createElement(Pt,{xs:3},e.createElement(mr,{defaultActiveKey:"0"},e.createElement(mr.Item,{eventKey:"0"},e.createElement(mr.Header,null,"Items"),e.createElement(mr.Body,null,e.createElement(Ar,null,null==d?void 0:d.items.map((function(t){return e.createElement(Ar.Item,{key:t.id,action:!0,active:t.id==p,onClick:function(){return m(t.id)}},t.title)}))))))))))},Fl=function(){return e.createElement("div",null,e.createElement("h1",null,"Annual Report"))},Bl=function(t){var r=t.title,n=t.children,o=le((0,e.useState)(!1),2),i=o[0],a=o[1];return e.createElement("div",{className:"collapsible-box"},e.createElement(zt,null,e.createElement(Pt,null,e.createElement("h1",{className:"bold-caps-16pt dark-teal"},r)),e.createElement(Pt,{align:"right"},e.createElement("button",{onClick:function(){return a(!i)}},i?"Expand":"Collapse"))),!i&&e.createElement("div",{className:"collapsible-content"},n))},Ul=function(t){var r=t.type,n=t.header,o=t.children,i="";return"data"==r?i+=" compendium-data-header":"reports"==r&&(i=" compendium-reports-header"),e.createElement("div",{className:i},e.createElement(Et,null,e.createElement(zt,null,e.createElement(Pt,{sm:8},e.createElement("h1",{className:"bold-caps-30pt "},n)),e.createElement(Pt,{sm:4},o))))},Hl=function(t){var r=t.section;return e.createElement("div",{style:{float:"right"},className:"bold-caps-20pt"},e.createElement("span",null,"Compendium"),e.createElement("br",null),e.createElement("span",{style:{float:"right"}},r))},Vl=function(t){var r=t.children,n=t.type,o="";return"data"==n?o+=" compendium-data-banner":"reports"==n&&(o=" compendium-reports-banner"),e.createElement("div",{className:o},e.createElement(Et,null,e.createElement(zt,null,e.createElement(Pt,{sm:8},e.createElement(zt,null,e.createElement(Pt,{sm:2},e.createElement("img",{src:Gt,style:{maxWidth:"80%"}})),e.createElement(Pt,{sm:8},e.createElement("div",{className:"center-text max-width-100vw"},r)))))))},$l=function(){return e.createElement("main",{style:{backgroundColor:"white"}},e.createElement(Ul,{type:"data",header:"Compendium Data"},e.createElement(Hl,{section:"Reports"})),e.createElement(Vl,{type:"data"},e.createElement("p",null,"What the Compendium is, the history of it, the aim, what you can find in it etc etc etc etc Lorem ipsum dolor sit amet, consec tetur adi piscing elit, sed do eiusmod tempor inc dolor sit amet, consec tetur adi piscing elit, sed do eiusmod tempor inc")),e.createElement(Et,{className:"geant-container"},e.createElement(zt,null,e.createElement("div",{className:"center"},e.createElement(Bl,{title:"ORGANISATION"},e.createElement("div",{className:"collapsible-column"},e.createElement(zt,null,e.createElement(pt,{to:"/analysis",state:{graph:"budget"}},e.createElement("span",null,"Length of NREN dark fibres leased by NRENs"))),e.createElement(zt,null,e.createElement(pt,{to:"/funding",state:{graph:"fundingsources"}},e.createElement("span",null,"Length of dark fibres operated by NRENs outside their own countries"))),e.createElement(zt,null,e.createElement("span",null,"Average duration of NREN's Indefensible Rights of use of dark fibre cables")),e.createElement(zt,null,e.createElement("span",null,"Length of of dark fibre cables laid by the NREN in their network"))),e.createElement("div",{className:"collapsible-column"},e.createElement(zt,null,e.createElement("span",null,"Length of NREN dark fibres leased by NRENs")),e.createElement(zt,null,e.createElement("span",null,"Length of dark fibres operated by NRENs outside their own countries")),e.createElement(zt,null,e.createElement("span",null,"Average duration of NREN's Indefensible Rights of use of dark fibre cables")),e.createElement(zt,null,e.createElement("span",null,"Length of of dark fibre cables laid by the NREN in their network")))),e.createElement(zt,null,e.createElement(Bl,{title:"STANDARDS AND POLICES"})),e.createElement(zt,null,e.createElement(Bl,{title:"CONNECTED USERS"})),e.createElement(zt,null,e.createElement(Bl,{title:"NETWORK"})),e.createElement(zt,null,e.createElement(Bl,{title:"SERVICES"}))))))};var Wl=o(844);Is.register(xl,kl,class extends ts{static id="bar";static defaults={borderSkipped:"start",borderWidth:0,borderRadius:0,inflateAmount:"auto",pointStyle:void 0};static defaultRoutes={backgroundColor:"backgroundColor",borderColor:"borderColor"};constructor(t){super(),this.options=void 0,this.horizontal=void 0,this.base=void 0,this.width=void 0,this.height=void 0,this.inflateAmount=void 0,t&&Object.assign(this,t)}draw(t){const{inflateAmount:e,options:{borderColor:r,backgroundColor:n}}=this,{inner:o,outer:i}=function(t){const e=Ys(t),r=e.right-e.left,n=e.bottom-e.top,o=function(t,e,r){const n=t.options.borderWidth,o=t.borderSkipped,i=Jo(n);return{t:Ks(o.top,i.top,0,r),r:Ks(o.right,i.right,0,e),b:Ks(o.bottom,i.bottom,0,r),l:Ks(o.left,i.left,0,e)}}(t,r/2,n/2),i=function(t,e,r){const{enableBorderRadius:n}=t.getProps(["enableBorderRadius"]),o=t.options.borderRadius,i=ti(o),a=Math.min(e,r),s=t.borderSkipped,l=n||xn(o);return{topLeft:Ks(!l||s.top||s.left,i.topLeft,0,a),topRight:Ks(!l||s.top||s.right,i.topRight,0,a),bottomLeft:Ks(!l||s.bottom||s.left,i.bottomLeft,0,a),bottomRight:Ks(!l||s.bottom||s.right,i.bottomRight,0,a)}}(t,r/2,n/2);return{outer:{x:e.left,y:e.top,w:r,h:n,radius:i},inner:{x:e.left+o.l,y:e.top+o.t,w:r-o.l-o.r,h:n-o.t-o.b,radius:{topLeft:Math.max(0,i.topLeft-Math.max(o.t,o.l)),topRight:Math.max(0,i.topRight-Math.max(o.t,o.r)),bottomLeft:Math.max(0,i.bottomLeft-Math.max(o.b,o.l)),bottomRight:Math.max(0,i.bottomRight-Math.max(o.b,o.r))}}}}(this),a=(s=i.radius).topLeft||s.topRight||s.bottomLeft||s.bottomRight?Qo:Xs;var s;t.save(),i.w===o.w&&i.h===o.h||(t.beginPath(),a(t,qs(i,e,o)),t.clip(),a(t,qs(o,-e,i)),t.fillStyle=r,t.fill("evenodd")),t.beginPath(),a(t,qs(o,e)),t.fillStyle=n,t.fill(),t.restore()}inRange(t,e,r){return Qs(this,t,e,r)}inXRange(t,e){return Qs(this,t,null,e)}inYRange(t,e){return Qs(this,null,t,e)}getCenterPoint(t){const{x:e,y:r,base:n,horizontal:o}=this.getProps(["x","y","base","horizontal"],t);return{x:o?(e+n)/2:e,y:o?r:(r+n)/2}}getRange(t){return"x"===t?this.width/2:this.height/2}},rl,gl,tl);const Yl=function(){function t(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0;return fetch(t,e).then((function(t){return t.ok?t.json():t.text().then((function(e){throw console.error("Failed to load datax: ".concat(e),t.status),new Error("The data could not be loaded, check the logs for details.")}))}))}var r=le((0,e.useState)(),2),n=r[0],o=r[1],i=le((0,e.useState)(),2),a=i[0],s=i[1],l=le((0,e.useState)(),2),d=l[0],c=(l[1],le((0,e.useState)(0),2)),u=c[0];c[1],(0,e.useEffect)((function(){var e=function(){var e=se(ce().mark((function e(){return ce().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:null==a?t("/api/funding/",{}).then((function(t){console.log("fundingSource:",t);var e=null==d?void 0:d.items.find((function(t){return t.id==u}));console.log(u,d,e),e&&console.log("hello"),s(t.data),m(t.data)})).catch((function(t){console.log("Error fetching from API: ".concat(t))})):m(a);case 1:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}();e()}),[]);var p=[{CLIENT_INSTITUTIONS:"0.0",COMMERCIAL:"0.0",EUROPEAN_FUNDING:"0.0",GOV_PUBLIC_BODIES:"0.0",NREN:"",OTHER:"0.0",YEAR:0,id:0}],m=function(t){var e=null!=t?t:p,r=ie(new Set(e.map((function(t){return t.YEAR})))),n=ie(new Set(e.map((function(t){return t.NREN})))),i=(0,Wl.gr)(["CLIENT INSTITUTIONS","COMMERCIAL","EUROPEAN FUNDING","GOV/PUBLIC_BODIES","OTHER"],r);console.log("Nrens : ",n),console.log("Years : ",r),console.log(i);var a=function(t,e,r){return"#"+[t,e,r].map((function(t){var e=t.toString(16);return 1===e.length?"0"+e:e})).join("")},s=new Map;s.set("CLIENT INSTITUTIONS",a(157,40,114)),s.set("COMMERCIAL",a(241,224,79)),s.set("EUROPEAN FUNDING",a(219,42,76)),s.set("GOV/PUBLIC_BODIES",a(237,141,24)),s.set("OTHER",a(137,166,121));var l=i.map((function(t){var r=s.get(t[0]);return console.log(r),{backgroundColor:r,label:t[0]+"("+t[1]+")",data:n.map((function(r){return function(t,r,n){var o="";return e.find((function(e,i){e.YEAR==t&&e.NREN==r&&("CLIENT INSTITUTIONS"===n&&(o=String(e.CLIENT_INSTITUTIONS)),"COMMERCIAL"===n&&(o=e.COMMERCIAL),"EUROPEAN FUNDING"===n&&(o=e.EUROPEAN_FUNDING),"GOV/PUBLIC_BODIES"===n&&(o=e.GOV_PUBLIC_BODIES),"OTHER"===n&&(o=e.OTHER))})),console.log(o),o}(t[1],r,t[0])})),stack:t[1],borderRadius:10,borderSkipped:!1,barPercentage:.5,borderWidth:.5,categoryPercentage:.8}}));console.log(l);var d={datasets:l,labels:n.map((function(t){return t.toString()}))};o(d)},f=void 0!==n?n:{datasets:[{backgroundColor:"",data:[],label:"",borderRadius:0,borderSkipped:!1,barPercentage:0,borderWidth:0,stack:"0",categoryPercentage:.5}],labels:[]};return e.createElement("div",{className:"center"},e.createElement("div",{className:"chart-container",style:{position:"relative",height:"300vh",width:"80vw"}},e.createElement("h1",null,"Income Source"),e.createElement(Nl,{data:f,options:{maintainAspectRatio:!1,plugins:{legend:{display:!1,labels:{boxWidth:20,boxHeight:30,pointStyle:"rectRounded",borderRadius:6,useBorderRadius:!0}}},scales:{x:{stacked:!0,ticks:{callback:function(t){return"number"==typeof t?t.toFixed(2):t}}},y:{stacked:!0}},indexAxis:"y"}})))},Kl=function(){return e.createElement("div",null,e.createElement(ut,null,e.createElement(ee,null),e.createElement(at,null,e.createElement(ot,{path:"/data",element:e.createElement($l,null)}),e.createElement(ot,{path:"/about",element:e.createElement(re,null)}),e.createElement(ot,{path:"/analysis",element:e.createElement(jl,null)}),e.createElement(ot,{path:"/report",element:e.createElement(Fl,null)}),e.createElement(ot,{path:"/funding",element:e.createElement(Yl,null)}),e.createElement(ot,{path:"*",element:e.createElement(Jt,null)}))))};var Ql=o(379),Xl=o.n(Ql),ql=o(795),Gl=o.n(ql),Zl=o(569),Jl=o.n(Zl),td=o(565),ed=o.n(td),rd=o(216),nd=o.n(rd),od=o(589),id=o.n(od),ad=o(666),sd={};sd.styleTagTransform=id(),sd.setAttributes=ed(),sd.insert=Jl().bind(null,"head"),sd.domAPI=Gl(),sd.insertStyleElement=nd(),Xl()(ad.Z,sd),ad.Z&&ad.Z.locals&&ad.Z.locals;var ld=o(169),dd={};dd.styleTagTransform=id(),dd.setAttributes=ed(),dd.insert=Jl().bind(null,"head"),dd.domAPI=Gl(),dd.insertStyleElement=nd(),Xl()(ld.Z,dd),ld.Z&&ld.Z.locals&&ld.Z.locals;var cd=document.getElementById("root");(0,n.s)(cd).render(e.createElement(e.StrictMode,null,e.createElement(Kl,null)))})()})(); \ No newline at end of file +(()=>{var t,e,r={844:(t,e)=>{"use strict";e.gr=void 0,e.gr=function t(...e){if(!Array.isArray(e))throw new TypeError("Please, send an array.");const[r,n,...o]=e,i=function(t,e){const r=[];for(let n=0;n<t.length;n++)if(e)for(let o=0;o<e.length;o++)Array.isArray(t[n])?r.push([...t[n],e[o]]):r.push([t[n],e[o]]);else r.push([t[n]]);return r}(r,n);return o.length?t(i,...o):i}},184:(t,e)=>{var r;!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var t=[],e=0;e<arguments.length;e++){var r=arguments[e];if(r){var i=typeof r;if("string"===i||"number"===i)t.push(r);else if(Array.isArray(r)){if(r.length){var a=o.apply(null,r);a&&t.push(a)}}else if("object"===i){if(r.toString!==Object.prototype.toString&&!r.toString.toString().includes("[native code]")){t.push(r.toString());continue}for(var s in r)n.call(r,s)&&r[s]&&t.push(s)}}}return t.join(" ")}t.exports?(o.default=o,t.exports=o):void 0===(r=function(){return o}.apply(e,[]))||(t.exports=r)}()},666:(t,e,r)=>{"use strict";r.d(e,{Z:()=>H});var n=r(81),o=r.n(n),i=r(645),a=r.n(i),s=r(667),l=r.n(s),d=new URL(r(770),r.b),c=new URL(r(199),r.b),u=new URL(r(204),r.b),p=new URL(r(931),r.b),m=new URL(r(486),r.b),f=new URL(r(609),r.b),h=new URL(r(469),r.b),b=new URL(r(122),r.b),g=new URL(r(144),r.b),v=new URL(r(217),r.b),x=new URL(r(956),r.b),y=new URL(r(460),r.b),w=new URL(r(740),r.b),k=new URL(r(254),r.b),_=new URL(r(647),r.b),S=new URL(r(692),r.b),E=a()(o()),C=l()(d),z=l()(c),M=l()(u),P=l()(p),O=l()(m),T=l()(f),L=l()(h),N=l()(b),R=l()(g),D=l()(v),I=l()(x),A=l()(y),j=l()(w),F=l()(k),B=l()(_),U=l()(S);E.push([t.id,'@charset "UTF-8";/*!\n * Bootstrap v5.2.3 (https://getbootstrap.com/)\n * Copyright 2011-2022 The Bootstrap Authors\n * Copyright 2011-2022 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:33,37,41;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-2xl:2rem;--bs-border-radius-pill:50rem;--bs-link-color:#0d6efd;--bs-link-hover-color:#0a58ca;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:1px solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:var(--bs-link-color);text-decoration:underline}a:hover{color:var(--bs-link-hover-color)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid var(--bs-border-color);border-radius:.375rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color:var(--bs-body-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-body-color);--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:var(--bs-body-color);--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:var(--bs-body-color);--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:var(--bs-table-color);vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:2px solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#bacbe6;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#cbccce;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#bcd0c7;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#badce3;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#e6dbb9;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#dfc2c4;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#dfe0e1;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#373b3e;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled{background-color:#e9ecef;opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:calc(1.5em + .75rem + 2px);padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:.375rem}.form-control-color::-webkit-color-swatch{border-radius:.375rem}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + 2px)}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + 2px)}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url('+C+');background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:.25rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:.5rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url('+z+")}.form-check-input:checked[type=radio]{background-image:url("+M+")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("+P+")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("+O+");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("+T+")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("+L+")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;width:100%;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:1px 0}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.375rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.375rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("+N+');background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url('+C+"),url("+N+");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.375rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("+R+');background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url('+C+"),url("+R+');background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:#212529;--bs-btn-bg:transparent;--bs-btn-border-width:1px;--bs-btn-border-color:transparent;--bs-btn-border-radius:0.375rem;--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:none;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:0.5rem}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:0.25rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:#212529;--bs-dropdown-bg:#fff;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:0.375rem;--bs-dropdown-border-width:1px;--bs-dropdown-inner-border-radius:calc(0.375rem - 1px);--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color:#212529;--bs-dropdown-link-hover-color:#1e2125;--bs-dropdown-link-hover-bg:#e9ecef;--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:.375rem}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:#6c757d;display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link.disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:1px;--bs-nav-tabs-border-color:#dee2e6;--bs-nav-tabs-border-radius:0.375rem;--bs-nav-tabs-link-hover-border-color:#e9ecef #e9ecef #dee2e6;--bs-nav-tabs-link-active-color:#495057;--bs-nav-tabs-link-active-bg:#fff;--bs-nav-tabs-link-active-border-color:#dee2e6 #dee2e6 #fff;border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));background:0 0;border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:0.375rem;--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{background:0 0;border:0;border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(0, 0, 0, 0.55);--bs-navbar-hover-color:rgba(0, 0, 0, 0.7);--bs-navbar-disabled-color:rgba(0, 0, 0, 0.3);--bs-navbar-active-color:rgba(0, 0, 0, 0.9);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(0, 0, 0, 0.9);--bs-navbar-brand-hover-color:rgba(0, 0, 0, 0.9);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url('+D+");--bs-navbar-toggler-border-color:rgba(0, 0, 0, 0.1);--bs-navbar-toggler-border-radius:0.375rem;--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .show>.nav-link{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("+I+")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-border-width:1px;--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:0.375rem;--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(0.375rem - 1px);--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(0, 0, 0, 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:#fff;--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:#212529;--bs-accordion-bg:#fff;--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:1px;--bs-accordion-border-radius:0.375rem;--bs-accordion-inner-border-radius:calc(0.375rem - 1px);--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:#212529;--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("+A+");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("+j+');--bs-accordion-btn-focus-border-color:#86b7fe;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:#0c63e4;--bs-accordion-active-bg:#e7f1ff}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:#6c757d;--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:#6c757d;display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:#fff;--bs-pagination-border-width:1px;--bs-pagination-border-color:#dee2e6;--bs-pagination-border-radius:0.375rem;--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:#e9ecef;--bs-pagination-hover-border-color:#dee2e6;--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:#e9ecef;--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:#6c757d;--bs-pagination-disabled-bg:#fff;--bs-pagination-disabled-border-color:#dee2e6;display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:0.5rem}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:0.25rem}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:0.375rem;display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:1px solid var(--bs-alert-border-color);--bs-alert-border-radius:0.375rem;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:#084298;--bs-alert-bg:#cfe2ff;--bs-alert-border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{--bs-alert-color:#41464b;--bs-alert-bg:#e2e3e5;--bs-alert-border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{--bs-alert-color:#0f5132;--bs-alert-bg:#d1e7dd;--bs-alert-border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{--bs-alert-color:#055160;--bs-alert-bg:#cff4fc;--bs-alert-border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{--bs-alert-color:#664d03;--bs-alert-bg:#fff3cd;--bs-alert-border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{--bs-alert-color:#842029;--bs-alert-bg:#f8d7da;--bs-alert-border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{--bs-alert-color:#636464;--bs-alert-bg:#fefefe;--bs-alert-border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{--bs-alert-color:#141619;--bs-alert-bg:#d3d3d4;--bs-alert-border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:#e9ecef;--bs-progress-border-radius:0.375rem;--bs-progress-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color:#212529;--bs-list-group-bg:#fff;--bs-list-group-border-color:rgba(0, 0, 0, 0.125);--bs-list-group-border-width:1px;--bs-list-group-border-radius:0.375rem;--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:#495057;--bs-list-group-action-hover-color:#495057;--bs-list-group-action-hover-bg:#f8f9fa;--bs-list-group-action-active-color:#212529;--bs-list-group-action-active-bg:#e9ecef;--bs-list-group-disabled-color:#6c757d;--bs-list-group-disabled-bg:#fff;--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url('+F+') center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(255, 255, 255, 0.85);--bs-toast-border-width:1px;--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:0.375rem;--bs-toast-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-toast-header-color:#6c757d;--bs-toast-header-bg:rgba(255, 255, 255, 0.85);--bs-toast-header-border-color:rgba(0, 0, 0, 0.05);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex:1090;position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:#fff;--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:1px;--bs-modal-border-radius:0.5rem;--bs-modal-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius:calc(0.5rem - 1px);--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:1px;--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:1px;position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:#fff;--bs-tooltip-bg:#000;--bs-tooltip-border-radius:0.375rem;--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;padding:var(--bs-tooltip-arrow-height);margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:#fff;--bs-popover-border-width:1px;--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:0.5rem;--bs-popover-inner-border-radius:calc(0.5rem - 1px);--bs-popover-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: ;--bs-popover-header-bg:#f0f0f0;--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:#212529;--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url('+B+")}.carousel-control-next-icon{background-image:url("+U+')}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color: ;--bs-offcanvas-bg:#fff;--bs-offcanvas-border-width:1px;--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075)}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:575.98px){.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}}@media (max-width:575.98px){.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:767.98px){.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}}@media (max-width:767.98px){.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:991.98px){.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}}@media (max-width:991.98px){.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1199.98px){.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}}@media (max-width:1199.98px){.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}}@media (max-width:1399.98px){.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity,1))!important}.link-primary{color:#0d6efd!important}.link-primary:focus,.link-primary:hover{color:#0a58ca!important}.link-secondary{color:#6c757d!important}.link-secondary:focus,.link-secondary:hover{color:#565e64!important}.link-success{color:#198754!important}.link-success:focus,.link-success:hover{color:#146c43!important}.link-info{color:#0dcaf0!important}.link-info:focus,.link-info:hover{color:#3dd5f3!important}.link-warning{color:#ffc107!important}.link-warning:focus,.link-warning:hover{color:#ffcd39!important}.link-danger{color:#dc3545!important}.link-danger:focus,.link-danger:hover{color:#b02a37!important}.link-light{color:#f8f9fa!important}.link-light:focus,.link-light:hover{color:#f9fafb!important}.link-dark{color:#212529!important}.link-dark:focus,.link-dark:hover{color:#1a1e21!important}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-1{--bs-border-width:1px}.border-2{--bs-border-width:2px}.border-3{--bs-border-width:3px}.border-4{--bs-border-width:4px}.border-5{--bs-border-width:5px}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-semibold{font-weight:600!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-2xl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}',""]);const H=E},169:(t,e,r)=>{"use strict";r.d(e,{Z:()=>p});var n=r(81),o=r.n(n),i=r(645),a=r.n(i),s=r(667),l=r.n(s),d=new URL(r(116),r.b),c=a()(o()),u=l()(d);c.push([t.id,'.regular-17pt{font-family:"Open Sans",sans-serif;font-size:17pt;font-weight:normal}.bold-20pt{font-family:"Open Sans",sans-serif;font-size:20pt;font-weight:bold}.bold-caps-16pt{font-family:"Open Sans",sans-serif;font-size:16pt;font-weight:bold;text-transform:uppercase}.bold-caps-17pt{font-family:"Open Sans",sans-serif;font-size:17pt;font-weight:bold;text-transform:uppercase}.bold-caps-20pt,.geant-header{font-family:"Open Sans",sans-serif;font-size:20pt;font-weight:bold;text-transform:uppercase}.bold-caps-30pt{font-family:"Open Sans",sans-serif;font-size:30pt;font-weight:bold;text-transform:uppercase}.dark-teal{color:#003f5f}.geant-header{color:#003f5f}.rounded-border{border-radius:25px;border:1px solid #b9bec5}.geant-container,.grey-container{max-width:100vw;height:100vh;padding:2% 0}.grey-container{background-color:#eaedf3}.wordwrap{max-width:30vw;word-wrap:break-word}.center{display:flex;align-items:center;justify-content:center;flex-direction:column}.center-text{display:flex;align-items:center;justify-content:center;padding-bottom:2%;flex-direction:column}.max-width-100vw{max-width:100vw}.compendium-data-header{background-color:#fabe66;color:#fff;padding:10px}.compendium-data-banner{background-color:#fce7c9;color:#003f5f;padding:5px;padding-top:25px}.collapsible-box{margin:1rem;border:2px solid #fabe66;padding:10px;width:80rem;max-width:50vw}.collapsible-content{display:flex}.collapsible-column{flex-basis:100%;padding:1rem}table{min-width:650px}thead{background-color:#d3d3d3}.state_true{background-color:#90ee90}.state_false{background-color:red}.title-background{background-image:url('+u+');background-color:#064c6e;vertical-align:center;padding-bottom:15px;padding-bottom:15px}.footer-img{width:55px;height:38px}.footer{margin-top:8px;background-color:#064c6e;font-size:8px;height:75px;color:#000;width:100%;padding:15px;clear:both}.footer-text{color:#fff;margin-left:30px}.px{padding-left:55px}.header-naviagtion{display:flex;justify-content:space-around;align-items:center;min-width:10vh;background:#064c6e;color:#fff}.nav-links{width:50%;display:flex;justify-content:space-around;align-items:center;list-style:none}.external-page-nav-bar{background-color:#003753;color:#b0cde1;padding-top:10px}.external-page-nav-bar img{float:left}.external-page-nav-bar ul{list-style:none;float:left;margin-bottom:0}.external-page-nav-bar ul li{float:left;padding:10px}.external-page-nav-bar ul li a{font-family:"Open Sans";font-size:14px;font-weight:400;text-decoration:none;color:#b0cde1}',""]);const p=c},645:t=>{"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var r="",n=void 0!==e[5];return e[4]&&(r+="@supports (".concat(e[4],") {")),e[2]&&(r+="@media ".concat(e[2]," {")),n&&(r+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),r+=t(e),n&&(r+="}"),e[2]&&(r+="}"),e[4]&&(r+="}"),r})).join("")},e.i=function(t,r,n,o,i){"string"==typeof t&&(t=[[null,t,void 0]]);var a={};if(n)for(var s=0;s<this.length;s++){var l=this[s][0];null!=l&&(a[l]=!0)}for(var d=0;d<t.length;d++){var c=[].concat(t[d]);n&&a[c[0]]||(void 0!==i&&(void 0===c[5]||(c[1]="@layer".concat(c[5].length>0?" ".concat(c[5]):""," {").concat(c[1],"}")),c[5]=i),r&&(c[2]?(c[1]="@media ".concat(c[2]," {").concat(c[1],"}"),c[2]=r):c[2]=r),o&&(c[4]?(c[1]="@supports (".concat(c[4],") {").concat(c[1],"}"),c[4]=o):c[4]="".concat(o)),e.push(c))}},e}},667:t=>{"use strict";t.exports=function(t,e){return e||(e={}),t?(t=String(t.__esModule?t.default:t),/^['"].*['"]$/.test(t)&&(t=t.slice(1,-1)),e.hash&&(t+=e.hash),/["'() \t\n]|(%20)/.test(t)||e.needQuotes?'"'.concat(t.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):t):t}},81:t=>{"use strict";t.exports=function(t){return t[1]}},143:t=>{"use strict";t.exports=function(t,e,r,n,o,i,a,s){if(!t){var l;if(void 0===e)l=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var d=[r,n,o,i,a,s],c=0;(l=new Error(e.replace(/%s/g,(function(){return d[c++]})))).name="Invariant Violation"}throw l.framesToPop=1,l}}},448:(t,e,r)=>{"use strict";var n=r(294),o=r(840);function i(t){for(var e="https://reactjs.org/docs/error-decoder.html?invariant="+t,r=1;r<arguments.length;r++)e+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+t+"; visit "+e+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var a=new Set,s={};function l(t,e){d(t,e),d(t+"Capture",e)}function d(t,e){for(s[t]=e,t=0;t<e.length;t++)a.add(e[t])}var c=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),u=Object.prototype.hasOwnProperty,p=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,m={},f={};function h(t,e,r,n,o,i,a){this.acceptsBooleans=2===e||3===e||4===e,this.attributeName=n,this.attributeNamespace=o,this.mustUseProperty=r,this.propertyName=t,this.type=e,this.sanitizeURL=i,this.removeEmptyString=a}var b={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(t){b[t]=new h(t,0,!1,t,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(t){var e=t[0];b[e]=new h(e,1,!1,t[1],null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(t){b[t]=new h(t,2,!1,t.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(t){b[t]=new h(t,2,!1,t,null,!1,!1)})),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach((function(t){b[t]=new h(t,3,!1,t.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(t){b[t]=new h(t,3,!0,t,null,!1,!1)})),["capture","download"].forEach((function(t){b[t]=new h(t,4,!1,t,null,!1,!1)})),["cols","rows","size","span"].forEach((function(t){b[t]=new h(t,6,!1,t,null,!1,!1)})),["rowSpan","start"].forEach((function(t){b[t]=new h(t,5,!1,t.toLowerCase(),null,!1,!1)}));var g=/[\-:]([a-z])/g;function v(t){return t[1].toUpperCase()}function x(t,e,r,n){var o=b.hasOwnProperty(e)?b[e]:null;(null!==o?0!==o.type:n||!(2<e.length)||"o"!==e[0]&&"O"!==e[0]||"n"!==e[1]&&"N"!==e[1])&&(function(t,e,r,n){if(null==e||function(t,e,r,n){if(null!==r&&0===r.type)return!1;switch(typeof e){case"function":case"symbol":return!0;case"boolean":return!n&&(null!==r?!r.acceptsBooleans:"data-"!==(t=t.toLowerCase().slice(0,5))&&"aria-"!==t);default:return!1}}(t,e,r,n))return!0;if(n)return!1;if(null!==r)switch(r.type){case 3:return!e;case 4:return!1===e;case 5:return isNaN(e);case 6:return isNaN(e)||1>e}return!1}(e,r,o,n)&&(r=null),n||null===o?function(t){return!!u.call(f,t)||!u.call(m,t)&&(p.test(t)?f[t]=!0:(m[t]=!0,!1))}(e)&&(null===r?t.removeAttribute(e):t.setAttribute(e,""+r)):o.mustUseProperty?t[o.propertyName]=null===r?3!==o.type&&"":r:(e=o.attributeName,n=o.attributeNamespace,null===r?t.removeAttribute(e):(r=3===(o=o.type)||4===o&&!0===r?"":""+r,n?t.setAttributeNS(n,e,r):t.setAttribute(e,r))))}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach((function(t){var e=t.replace(g,v);b[e]=new h(e,1,!1,t,null,!1,!1)})),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach((function(t){var e=t.replace(g,v);b[e]=new h(e,1,!1,t,"http://www.w3.org/1999/xlink",!1,!1)})),["xml:base","xml:lang","xml:space"].forEach((function(t){var e=t.replace(g,v);b[e]=new h(e,1,!1,t,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((function(t){b[t]=new h(t,1,!1,t.toLowerCase(),null,!1,!1)})),b.xlinkHref=new h("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((function(t){b[t]=new h(t,1,!1,t.toLowerCase(),null,!0,!0)}));var y=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,w=Symbol.for("react.element"),k=Symbol.for("react.portal"),_=Symbol.for("react.fragment"),S=Symbol.for("react.strict_mode"),E=Symbol.for("react.profiler"),C=Symbol.for("react.provider"),z=Symbol.for("react.context"),M=Symbol.for("react.forward_ref"),P=Symbol.for("react.suspense"),O=Symbol.for("react.suspense_list"),T=Symbol.for("react.memo"),L=Symbol.for("react.lazy");Symbol.for("react.scope"),Symbol.for("react.debug_trace_mode");var N=Symbol.for("react.offscreen");Symbol.for("react.legacy_hidden"),Symbol.for("react.cache"),Symbol.for("react.tracing_marker");var R=Symbol.iterator;function D(t){return null===t||"object"!=typeof t?null:"function"==typeof(t=R&&t[R]||t["@@iterator"])?t:null}var I,A=Object.assign;function j(t){if(void 0===I)try{throw Error()}catch(t){var e=t.stack.trim().match(/\n( *(at )?)/);I=e&&e[1]||""}return"\n"+I+t}var F=!1;function B(t,e){if(!t||F)return"";F=!0;var r=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(e)if(e=function(){throw Error()},Object.defineProperty(e.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(e,[])}catch(t){var n=t}Reflect.construct(t,[],e)}else{try{e.call()}catch(t){n=t}t.call(e.prototype)}else{try{throw Error()}catch(t){n=t}t()}}catch(e){if(e&&n&&"string"==typeof e.stack){for(var o=e.stack.split("\n"),i=n.stack.split("\n"),a=o.length-1,s=i.length-1;1<=a&&0<=s&&o[a]!==i[s];)s--;for(;1<=a&&0<=s;a--,s--)if(o[a]!==i[s]){if(1!==a||1!==s)do{if(a--,0>--s||o[a]!==i[s]){var l="\n"+o[a].replace(" at new "," at ");return t.displayName&&l.includes("<anonymous>")&&(l=l.replace("<anonymous>",t.displayName)),l}}while(1<=a&&0<=s);break}}}finally{F=!1,Error.prepareStackTrace=r}return(t=t?t.displayName||t.name:"")?j(t):""}function U(t){switch(t.tag){case 5:return j(t.type);case 16:return j("Lazy");case 13:return j("Suspense");case 19:return j("SuspenseList");case 0:case 2:case 15:return B(t.type,!1);case 11:return B(t.type.render,!1);case 1:return B(t.type,!0);default:return""}}function H(t){if(null==t)return null;if("function"==typeof t)return t.displayName||t.name||null;if("string"==typeof t)return t;switch(t){case _:return"Fragment";case k:return"Portal";case E:return"Profiler";case S:return"StrictMode";case P:return"Suspense";case O:return"SuspenseList"}if("object"==typeof t)switch(t.$$typeof){case z:return(t.displayName||"Context")+".Consumer";case C:return(t._context.displayName||"Context")+".Provider";case M:var e=t.render;return(t=t.displayName)||(t=""!==(t=e.displayName||e.name||"")?"ForwardRef("+t+")":"ForwardRef"),t;case T:return null!==(e=t.displayName||null)?e:H(t.type)||"Memo";case L:e=t._payload,t=t._init;try{return H(t(e))}catch(t){}}return null}function V(t){var e=t.type;switch(t.tag){case 24:return"Cache";case 9:return(e.displayName||"Context")+".Consumer";case 10:return(e._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return t=(t=e.render).displayName||t.name||"",e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case 7:return"Fragment";case 5:return e;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return H(e);case 8:return e===S?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e}return null}function $(t){switch(typeof t){case"boolean":case"number":case"string":case"undefined":case"object":return t;default:return""}}function W(t){var e=t.type;return(t=t.nodeName)&&"input"===t.toLowerCase()&&("checkbox"===e||"radio"===e)}function Y(t){t._valueTracker||(t._valueTracker=function(t){var e=W(t)?"checked":"value",r=Object.getOwnPropertyDescriptor(t.constructor.prototype,e),n=""+t[e];if(!t.hasOwnProperty(e)&&void 0!==r&&"function"==typeof r.get&&"function"==typeof r.set){var o=r.get,i=r.set;return Object.defineProperty(t,e,{configurable:!0,get:function(){return o.call(this)},set:function(t){n=""+t,i.call(this,t)}}),Object.defineProperty(t,e,{enumerable:r.enumerable}),{getValue:function(){return n},setValue:function(t){n=""+t},stopTracking:function(){t._valueTracker=null,delete t[e]}}}}(t))}function K(t){if(!t)return!1;var e=t._valueTracker;if(!e)return!0;var r=e.getValue(),n="";return t&&(n=W(t)?t.checked?"true":"false":t.value),(t=n)!==r&&(e.setValue(t),!0)}function Q(t){if(void 0===(t=t||("undefined"!=typeof document?document:void 0)))return null;try{return t.activeElement||t.body}catch(e){return t.body}}function X(t,e){var r=e.checked;return A({},e,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=r?r:t._wrapperState.initialChecked})}function q(t,e){var r=null==e.defaultValue?"":e.defaultValue,n=null!=e.checked?e.checked:e.defaultChecked;r=$(null!=e.value?e.value:r),t._wrapperState={initialChecked:n,initialValue:r,controlled:"checkbox"===e.type||"radio"===e.type?null!=e.checked:null!=e.value}}function G(t,e){null!=(e=e.checked)&&x(t,"checked",e,!1)}function Z(t,e){G(t,e);var r=$(e.value),n=e.type;if(null!=r)"number"===n?(0===r&&""===t.value||t.value!=r)&&(t.value=""+r):t.value!==""+r&&(t.value=""+r);else if("submit"===n||"reset"===n)return void t.removeAttribute("value");e.hasOwnProperty("value")?tt(t,e.type,r):e.hasOwnProperty("defaultValue")&&tt(t,e.type,$(e.defaultValue)),null==e.checked&&null!=e.defaultChecked&&(t.defaultChecked=!!e.defaultChecked)}function J(t,e,r){if(e.hasOwnProperty("value")||e.hasOwnProperty("defaultValue")){var n=e.type;if(!("submit"!==n&&"reset"!==n||void 0!==e.value&&null!==e.value))return;e=""+t._wrapperState.initialValue,r||e===t.value||(t.value=e),t.defaultValue=e}""!==(r=t.name)&&(t.name=""),t.defaultChecked=!!t._wrapperState.initialChecked,""!==r&&(t.name=r)}function tt(t,e,r){"number"===e&&Q(t.ownerDocument)===t||(null==r?t.defaultValue=""+t._wrapperState.initialValue:t.defaultValue!==""+r&&(t.defaultValue=""+r))}var et=Array.isArray;function rt(t,e,r,n){if(t=t.options,e){e={};for(var o=0;o<r.length;o++)e["$"+r[o]]=!0;for(r=0;r<t.length;r++)o=e.hasOwnProperty("$"+t[r].value),t[r].selected!==o&&(t[r].selected=o),o&&n&&(t[r].defaultSelected=!0)}else{for(r=""+$(r),e=null,o=0;o<t.length;o++){if(t[o].value===r)return t[o].selected=!0,void(n&&(t[o].defaultSelected=!0));null!==e||t[o].disabled||(e=t[o])}null!==e&&(e.selected=!0)}}function nt(t,e){if(null!=e.dangerouslySetInnerHTML)throw Error(i(91));return A({},e,{value:void 0,defaultValue:void 0,children:""+t._wrapperState.initialValue})}function ot(t,e){var r=e.value;if(null==r){if(r=e.children,e=e.defaultValue,null!=r){if(null!=e)throw Error(i(92));if(et(r)){if(1<r.length)throw Error(i(93));r=r[0]}e=r}null==e&&(e=""),r=e}t._wrapperState={initialValue:$(r)}}function it(t,e){var r=$(e.value),n=$(e.defaultValue);null!=r&&((r=""+r)!==t.value&&(t.value=r),null==e.defaultValue&&t.defaultValue!==r&&(t.defaultValue=r)),null!=n&&(t.defaultValue=""+n)}function at(t){var e=t.textContent;e===t._wrapperState.initialValue&&""!==e&&null!==e&&(t.value=e)}function st(t){switch(t){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function lt(t,e){return null==t||"http://www.w3.org/1999/xhtml"===t?st(e):"http://www.w3.org/2000/svg"===t&&"foreignObject"===e?"http://www.w3.org/1999/xhtml":t}var dt,ct,ut=(ct=function(t,e){if("http://www.w3.org/2000/svg"!==t.namespaceURI||"innerHTML"in t)t.innerHTML=e;else{for((dt=dt||document.createElement("div")).innerHTML="<svg>"+e.valueOf().toString()+"</svg>",e=dt.firstChild;t.firstChild;)t.removeChild(t.firstChild);for(;e.firstChild;)t.appendChild(e.firstChild)}},"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(t,e,r,n){MSApp.execUnsafeLocalFunction((function(){return ct(t,e)}))}:ct);function pt(t,e){if(e){var r=t.firstChild;if(r&&r===t.lastChild&&3===r.nodeType)return void(r.nodeValue=e)}t.textContent=e}var mt={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},ft=["Webkit","ms","Moz","O"];function ht(t,e,r){return null==e||"boolean"==typeof e||""===e?"":r||"number"!=typeof e||0===e||mt.hasOwnProperty(t)&&mt[t]?(""+e).trim():e+"px"}function bt(t,e){for(var r in t=t.style,e)if(e.hasOwnProperty(r)){var n=0===r.indexOf("--"),o=ht(r,e[r],n);"float"===r&&(r="cssFloat"),n?t.setProperty(r,o):t[r]=o}}Object.keys(mt).forEach((function(t){ft.forEach((function(e){e=e+t.charAt(0).toUpperCase()+t.substring(1),mt[e]=mt[t]}))}));var gt=A({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function vt(t,e){if(e){if(gt[t]&&(null!=e.children||null!=e.dangerouslySetInnerHTML))throw Error(i(137,t));if(null!=e.dangerouslySetInnerHTML){if(null!=e.children)throw Error(i(60));if("object"!=typeof e.dangerouslySetInnerHTML||!("__html"in e.dangerouslySetInnerHTML))throw Error(i(61))}if(null!=e.style&&"object"!=typeof e.style)throw Error(i(62))}}function xt(t,e){if(-1===t.indexOf("-"))return"string"==typeof e.is;switch(t){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var yt=null;function wt(t){return(t=t.target||t.srcElement||window).correspondingUseElement&&(t=t.correspondingUseElement),3===t.nodeType?t.parentNode:t}var kt=null,_t=null,St=null;function Et(t){if(t=yo(t)){if("function"!=typeof kt)throw Error(i(280));var e=t.stateNode;e&&(e=ko(e),kt(t.stateNode,t.type,e))}}function Ct(t){_t?St?St.push(t):St=[t]:_t=t}function zt(){if(_t){var t=_t,e=St;if(St=_t=null,Et(t),e)for(t=0;t<e.length;t++)Et(e[t])}}function Mt(t,e){return t(e)}function Pt(){}var Ot=!1;function Tt(t,e,r){if(Ot)return t(e,r);Ot=!0;try{return Mt(t,e,r)}finally{Ot=!1,(null!==_t||null!==St)&&(Pt(),zt())}}function Lt(t,e){var r=t.stateNode;if(null===r)return null;var n=ko(r);if(null===n)return null;r=n[e];t:switch(e){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(n=!n.disabled)||(n=!("button"===(t=t.type)||"input"===t||"select"===t||"textarea"===t)),t=!n;break t;default:t=!1}if(t)return null;if(r&&"function"!=typeof r)throw Error(i(231,e,typeof r));return r}var Nt=!1;if(c)try{var Rt={};Object.defineProperty(Rt,"passive",{get:function(){Nt=!0}}),window.addEventListener("test",Rt,Rt),window.removeEventListener("test",Rt,Rt)}catch(ct){Nt=!1}function Dt(t,e,r,n,o,i,a,s,l){var d=Array.prototype.slice.call(arguments,3);try{e.apply(r,d)}catch(t){this.onError(t)}}var It=!1,At=null,jt=!1,Ft=null,Bt={onError:function(t){It=!0,At=t}};function Ut(t,e,r,n,o,i,a,s,l){It=!1,At=null,Dt.apply(Bt,arguments)}function Ht(t){var e=t,r=t;if(t.alternate)for(;e.return;)e=e.return;else{t=e;do{0!=(4098&(e=t).flags)&&(r=e.return),t=e.return}while(t)}return 3===e.tag?r:null}function Vt(t){if(13===t.tag){var e=t.memoizedState;if(null===e&&null!==(t=t.alternate)&&(e=t.memoizedState),null!==e)return e.dehydrated}return null}function $t(t){if(Ht(t)!==t)throw Error(i(188))}function Wt(t){return null!==(t=function(t){var e=t.alternate;if(!e){if(null===(e=Ht(t)))throw Error(i(188));return e!==t?null:t}for(var r=t,n=e;;){var o=r.return;if(null===o)break;var a=o.alternate;if(null===a){if(null!==(n=o.return)){r=n;continue}break}if(o.child===a.child){for(a=o.child;a;){if(a===r)return $t(o),t;if(a===n)return $t(o),e;a=a.sibling}throw Error(i(188))}if(r.return!==n.return)r=o,n=a;else{for(var s=!1,l=o.child;l;){if(l===r){s=!0,r=o,n=a;break}if(l===n){s=!0,n=o,r=a;break}l=l.sibling}if(!s){for(l=a.child;l;){if(l===r){s=!0,r=a,n=o;break}if(l===n){s=!0,n=a,r=o;break}l=l.sibling}if(!s)throw Error(i(189))}}if(r.alternate!==n)throw Error(i(190))}if(3!==r.tag)throw Error(i(188));return r.stateNode.current===r?t:e}(t))?Yt(t):null}function Yt(t){if(5===t.tag||6===t.tag)return t;for(t=t.child;null!==t;){var e=Yt(t);if(null!==e)return e;t=t.sibling}return null}var Kt=o.unstable_scheduleCallback,Qt=o.unstable_cancelCallback,Xt=o.unstable_shouldYield,qt=o.unstable_requestPaint,Gt=o.unstable_now,Zt=o.unstable_getCurrentPriorityLevel,Jt=o.unstable_ImmediatePriority,te=o.unstable_UserBlockingPriority,ee=o.unstable_NormalPriority,re=o.unstable_LowPriority,ne=o.unstable_IdlePriority,oe=null,ie=null,ae=Math.clz32?Math.clz32:function(t){return 0==(t>>>=0)?32:31-(se(t)/le|0)|0},se=Math.log,le=Math.LN2,de=64,ce=4194304;function ue(t){switch(t&-t){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return 4194240&t;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return 130023424&t;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return t}}function pe(t,e){var r=t.pendingLanes;if(0===r)return 0;var n=0,o=t.suspendedLanes,i=t.pingedLanes,a=268435455&r;if(0!==a){var s=a&~o;0!==s?n=ue(s):0!=(i&=a)&&(n=ue(i))}else 0!=(a=r&~o)?n=ue(a):0!==i&&(n=ue(i));if(0===n)return 0;if(0!==e&&e!==n&&0==(e&o)&&((o=n&-n)>=(i=e&-e)||16===o&&0!=(4194240&i)))return e;if(0!=(4&n)&&(n|=16&r),0!==(e=t.entangledLanes))for(t=t.entanglements,e&=n;0<e;)o=1<<(r=31-ae(e)),n|=t[r],e&=~o;return n}function me(t,e){switch(t){case 1:case 2:case 4:return e+250;case 8:case 16:case 32:case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e+5e3;default:return-1}}function fe(t){return 0!=(t=-1073741825&t.pendingLanes)?t:1073741824&t?1073741824:0}function he(){var t=de;return 0==(4194240&(de<<=1))&&(de=64),t}function be(t){for(var e=[],r=0;31>r;r++)e.push(t);return e}function ge(t,e,r){t.pendingLanes|=e,536870912!==e&&(t.suspendedLanes=0,t.pingedLanes=0),(t=t.eventTimes)[e=31-ae(e)]=r}function ve(t,e){var r=t.entangledLanes|=e;for(t=t.entanglements;r;){var n=31-ae(r),o=1<<n;o&e|t[n]&e&&(t[n]|=e),r&=~o}}var xe=0;function ye(t){return 1<(t&=-t)?4<t?0!=(268435455&t)?16:536870912:4:1}var we,ke,_e,Se,Ee,Ce=!1,ze=[],Me=null,Pe=null,Oe=null,Te=new Map,Le=new Map,Ne=[],Re="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function De(t,e){switch(t){case"focusin":case"focusout":Me=null;break;case"dragenter":case"dragleave":Pe=null;break;case"mouseover":case"mouseout":Oe=null;break;case"pointerover":case"pointerout":Te.delete(e.pointerId);break;case"gotpointercapture":case"lostpointercapture":Le.delete(e.pointerId)}}function Ie(t,e,r,n,o,i){return null===t||t.nativeEvent!==i?(t={blockedOn:e,domEventName:r,eventSystemFlags:n,nativeEvent:i,targetContainers:[o]},null!==e&&null!==(e=yo(e))&&ke(e),t):(t.eventSystemFlags|=n,e=t.targetContainers,null!==o&&-1===e.indexOf(o)&&e.push(o),t)}function Ae(t){var e=xo(t.target);if(null!==e){var r=Ht(e);if(null!==r)if(13===(e=r.tag)){if(null!==(e=Vt(r)))return t.blockedOn=e,void Ee(t.priority,(function(){_e(r)}))}else if(3===e&&r.stateNode.current.memoizedState.isDehydrated)return void(t.blockedOn=3===r.tag?r.stateNode.containerInfo:null)}t.blockedOn=null}function je(t){if(null!==t.blockedOn)return!1;for(var e=t.targetContainers;0<e.length;){var r=Xe(t.domEventName,t.eventSystemFlags,e[0],t.nativeEvent);if(null!==r)return null!==(e=yo(r))&&ke(e),t.blockedOn=r,!1;var n=new(r=t.nativeEvent).constructor(r.type,r);yt=n,r.target.dispatchEvent(n),yt=null,e.shift()}return!0}function Fe(t,e,r){je(t)&&r.delete(e)}function Be(){Ce=!1,null!==Me&&je(Me)&&(Me=null),null!==Pe&&je(Pe)&&(Pe=null),null!==Oe&&je(Oe)&&(Oe=null),Te.forEach(Fe),Le.forEach(Fe)}function Ue(t,e){t.blockedOn===e&&(t.blockedOn=null,Ce||(Ce=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,Be)))}function He(t){function e(e){return Ue(e,t)}if(0<ze.length){Ue(ze[0],t);for(var r=1;r<ze.length;r++){var n=ze[r];n.blockedOn===t&&(n.blockedOn=null)}}for(null!==Me&&Ue(Me,t),null!==Pe&&Ue(Pe,t),null!==Oe&&Ue(Oe,t),Te.forEach(e),Le.forEach(e),r=0;r<Ne.length;r++)(n=Ne[r]).blockedOn===t&&(n.blockedOn=null);for(;0<Ne.length&&null===(r=Ne[0]).blockedOn;)Ae(r),null===r.blockedOn&&Ne.shift()}var Ve=y.ReactCurrentBatchConfig,$e=!0;function We(t,e,r,n){var o=xe,i=Ve.transition;Ve.transition=null;try{xe=1,Ke(t,e,r,n)}finally{xe=o,Ve.transition=i}}function Ye(t,e,r,n){var o=xe,i=Ve.transition;Ve.transition=null;try{xe=4,Ke(t,e,r,n)}finally{xe=o,Ve.transition=i}}function Ke(t,e,r,n){if($e){var o=Xe(t,e,r,n);if(null===o)$n(t,e,n,Qe,r),De(t,n);else if(function(t,e,r,n,o){switch(e){case"focusin":return Me=Ie(Me,t,e,r,n,o),!0;case"dragenter":return Pe=Ie(Pe,t,e,r,n,o),!0;case"mouseover":return Oe=Ie(Oe,t,e,r,n,o),!0;case"pointerover":var i=o.pointerId;return Te.set(i,Ie(Te.get(i)||null,t,e,r,n,o)),!0;case"gotpointercapture":return i=o.pointerId,Le.set(i,Ie(Le.get(i)||null,t,e,r,n,o)),!0}return!1}(o,t,e,r,n))n.stopPropagation();else if(De(t,n),4&e&&-1<Re.indexOf(t)){for(;null!==o;){var i=yo(o);if(null!==i&&we(i),null===(i=Xe(t,e,r,n))&&$n(t,e,n,Qe,r),i===o)break;o=i}null!==o&&n.stopPropagation()}else $n(t,e,n,null,r)}}var Qe=null;function Xe(t,e,r,n){if(Qe=null,null!==(t=xo(t=wt(n))))if(null===(e=Ht(t)))t=null;else if(13===(r=e.tag)){if(null!==(t=Vt(e)))return t;t=null}else if(3===r){if(e.stateNode.current.memoizedState.isDehydrated)return 3===e.tag?e.stateNode.containerInfo:null;t=null}else e!==t&&(t=null);return Qe=t,null}function qe(t){switch(t){case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 1;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"toggle":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 4;case"message":switch(Zt()){case Jt:return 1;case te:return 4;case ee:case re:return 16;case ne:return 536870912;default:return 16}default:return 16}}var Ge=null,Ze=null,Je=null;function tr(){if(Je)return Je;var t,e,r=Ze,n=r.length,o="value"in Ge?Ge.value:Ge.textContent,i=o.length;for(t=0;t<n&&r[t]===o[t];t++);var a=n-t;for(e=1;e<=a&&r[n-e]===o[i-e];e++);return Je=o.slice(t,1<e?1-e:void 0)}function er(t){var e=t.keyCode;return"charCode"in t?0===(t=t.charCode)&&13===e&&(t=13):t=e,10===t&&(t=13),32<=t||13===t?t:0}function rr(){return!0}function nr(){return!1}function or(t){function e(e,r,n,o,i){for(var a in this._reactName=e,this._targetInst=n,this.type=r,this.nativeEvent=o,this.target=i,this.currentTarget=null,t)t.hasOwnProperty(a)&&(e=t[a],this[a]=e?e(o):o[a]);return this.isDefaultPrevented=(null!=o.defaultPrevented?o.defaultPrevented:!1===o.returnValue)?rr:nr,this.isPropagationStopped=nr,this}return A(e.prototype,{preventDefault:function(){this.defaultPrevented=!0;var t=this.nativeEvent;t&&(t.preventDefault?t.preventDefault():"unknown"!=typeof t.returnValue&&(t.returnValue=!1),this.isDefaultPrevented=rr)},stopPropagation:function(){var t=this.nativeEvent;t&&(t.stopPropagation?t.stopPropagation():"unknown"!=typeof t.cancelBubble&&(t.cancelBubble=!0),this.isPropagationStopped=rr)},persist:function(){},isPersistent:rr}),e}var ir,ar,sr,lr={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(t){return t.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},dr=or(lr),cr=A({},lr,{view:0,detail:0}),ur=or(cr),pr=A({},cr,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Sr,button:0,buttons:0,relatedTarget:function(t){return void 0===t.relatedTarget?t.fromElement===t.srcElement?t.toElement:t.fromElement:t.relatedTarget},movementX:function(t){return"movementX"in t?t.movementX:(t!==sr&&(sr&&"mousemove"===t.type?(ir=t.screenX-sr.screenX,ar=t.screenY-sr.screenY):ar=ir=0,sr=t),ir)},movementY:function(t){return"movementY"in t?t.movementY:ar}}),mr=or(pr),fr=or(A({},pr,{dataTransfer:0})),hr=or(A({},cr,{relatedTarget:0})),br=or(A({},lr,{animationName:0,elapsedTime:0,pseudoElement:0})),gr=A({},lr,{clipboardData:function(t){return"clipboardData"in t?t.clipboardData:window.clipboardData}}),vr=or(gr),xr=or(A({},lr,{data:0})),yr={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},wr={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},kr={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function _r(t){var e=this.nativeEvent;return e.getModifierState?e.getModifierState(t):!!(t=kr[t])&&!!e[t]}function Sr(){return _r}var Er=A({},cr,{key:function(t){if(t.key){var e=yr[t.key]||t.key;if("Unidentified"!==e)return e}return"keypress"===t.type?13===(t=er(t))?"Enter":String.fromCharCode(t):"keydown"===t.type||"keyup"===t.type?wr[t.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Sr,charCode:function(t){return"keypress"===t.type?er(t):0},keyCode:function(t){return"keydown"===t.type||"keyup"===t.type?t.keyCode:0},which:function(t){return"keypress"===t.type?er(t):"keydown"===t.type||"keyup"===t.type?t.keyCode:0}}),Cr=or(Er),zr=or(A({},pr,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),Mr=or(A({},cr,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Sr})),Pr=or(A({},lr,{propertyName:0,elapsedTime:0,pseudoElement:0})),Or=A({},pr,{deltaX:function(t){return"deltaX"in t?t.deltaX:"wheelDeltaX"in t?-t.wheelDeltaX:0},deltaY:function(t){return"deltaY"in t?t.deltaY:"wheelDeltaY"in t?-t.wheelDeltaY:"wheelDelta"in t?-t.wheelDelta:0},deltaZ:0,deltaMode:0}),Tr=or(Or),Lr=[9,13,27,32],Nr=c&&"CompositionEvent"in window,Rr=null;c&&"documentMode"in document&&(Rr=document.documentMode);var Dr=c&&"TextEvent"in window&&!Rr,Ir=c&&(!Nr||Rr&&8<Rr&&11>=Rr),Ar=String.fromCharCode(32),jr=!1;function Fr(t,e){switch(t){case"keyup":return-1!==Lr.indexOf(e.keyCode);case"keydown":return 229!==e.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Br(t){return"object"==typeof(t=t.detail)&&"data"in t?t.data:null}var Ur=!1,Hr={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Vr(t){var e=t&&t.nodeName&&t.nodeName.toLowerCase();return"input"===e?!!Hr[t.type]:"textarea"===e}function $r(t,e,r,n){Ct(n),0<(e=Yn(e,"onChange")).length&&(r=new dr("onChange","change",null,r,n),t.push({event:r,listeners:e}))}var Wr=null,Yr=null;function Kr(t){jn(t,0)}function Qr(t){if(K(wo(t)))return t}function Xr(t,e){if("change"===t)return e}var qr=!1;if(c){var Gr;if(c){var Zr="oninput"in document;if(!Zr){var Jr=document.createElement("div");Jr.setAttribute("oninput","return;"),Zr="function"==typeof Jr.oninput}Gr=Zr}else Gr=!1;qr=Gr&&(!document.documentMode||9<document.documentMode)}function tn(){Wr&&(Wr.detachEvent("onpropertychange",en),Yr=Wr=null)}function en(t){if("value"===t.propertyName&&Qr(Yr)){var e=[];$r(e,Yr,t,wt(t)),Tt(Kr,e)}}function rn(t,e,r){"focusin"===t?(tn(),Yr=r,(Wr=e).attachEvent("onpropertychange",en)):"focusout"===t&&tn()}function nn(t){if("selectionchange"===t||"keyup"===t||"keydown"===t)return Qr(Yr)}function on(t,e){if("click"===t)return Qr(e)}function an(t,e){if("input"===t||"change"===t)return Qr(e)}var sn="function"==typeof Object.is?Object.is:function(t,e){return t===e&&(0!==t||1/t==1/e)||t!=t&&e!=e};function ln(t,e){if(sn(t,e))return!0;if("object"!=typeof t||null===t||"object"!=typeof e||null===e)return!1;var r=Object.keys(t),n=Object.keys(e);if(r.length!==n.length)return!1;for(n=0;n<r.length;n++){var o=r[n];if(!u.call(e,o)||!sn(t[o],e[o]))return!1}return!0}function dn(t){for(;t&&t.firstChild;)t=t.firstChild;return t}function cn(t,e){var r,n=dn(t);for(t=0;n;){if(3===n.nodeType){if(r=t+n.textContent.length,t<=e&&r>=e)return{node:n,offset:e-t};t=r}t:{for(;n;){if(n.nextSibling){n=n.nextSibling;break t}n=n.parentNode}n=void 0}n=dn(n)}}function un(t,e){return!(!t||!e)&&(t===e||(!t||3!==t.nodeType)&&(e&&3===e.nodeType?un(t,e.parentNode):"contains"in t?t.contains(e):!!t.compareDocumentPosition&&!!(16&t.compareDocumentPosition(e))))}function pn(){for(var t=window,e=Q();e instanceof t.HTMLIFrameElement;){try{var r="string"==typeof e.contentWindow.location.href}catch(t){r=!1}if(!r)break;e=Q((t=e.contentWindow).document)}return e}function mn(t){var e=t&&t.nodeName&&t.nodeName.toLowerCase();return e&&("input"===e&&("text"===t.type||"search"===t.type||"tel"===t.type||"url"===t.type||"password"===t.type)||"textarea"===e||"true"===t.contentEditable)}function fn(t){var e=pn(),r=t.focusedElem,n=t.selectionRange;if(e!==r&&r&&r.ownerDocument&&un(r.ownerDocument.documentElement,r)){if(null!==n&&mn(r))if(e=n.start,void 0===(t=n.end)&&(t=e),"selectionStart"in r)r.selectionStart=e,r.selectionEnd=Math.min(t,r.value.length);else if((t=(e=r.ownerDocument||document)&&e.defaultView||window).getSelection){t=t.getSelection();var o=r.textContent.length,i=Math.min(n.start,o);n=void 0===n.end?i:Math.min(n.end,o),!t.extend&&i>n&&(o=n,n=i,i=o),o=cn(r,i);var a=cn(r,n);o&&a&&(1!==t.rangeCount||t.anchorNode!==o.node||t.anchorOffset!==o.offset||t.focusNode!==a.node||t.focusOffset!==a.offset)&&((e=e.createRange()).setStart(o.node,o.offset),t.removeAllRanges(),i>n?(t.addRange(e),t.extend(a.node,a.offset)):(e.setEnd(a.node,a.offset),t.addRange(e)))}for(e=[],t=r;t=t.parentNode;)1===t.nodeType&&e.push({element:t,left:t.scrollLeft,top:t.scrollTop});for("function"==typeof r.focus&&r.focus(),r=0;r<e.length;r++)(t=e[r]).element.scrollLeft=t.left,t.element.scrollTop=t.top}}var hn=c&&"documentMode"in document&&11>=document.documentMode,bn=null,gn=null,vn=null,xn=!1;function yn(t,e,r){var n=r.window===r?r.document:9===r.nodeType?r:r.ownerDocument;xn||null==bn||bn!==Q(n)||(n="selectionStart"in(n=bn)&&mn(n)?{start:n.selectionStart,end:n.selectionEnd}:{anchorNode:(n=(n.ownerDocument&&n.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:n.anchorOffset,focusNode:n.focusNode,focusOffset:n.focusOffset},vn&&ln(vn,n)||(vn=n,0<(n=Yn(gn,"onSelect")).length&&(e=new dr("onSelect","select",null,e,r),t.push({event:e,listeners:n}),e.target=bn)))}function wn(t,e){var r={};return r[t.toLowerCase()]=e.toLowerCase(),r["Webkit"+t]="webkit"+e,r["Moz"+t]="moz"+e,r}var kn={animationend:wn("Animation","AnimationEnd"),animationiteration:wn("Animation","AnimationIteration"),animationstart:wn("Animation","AnimationStart"),transitionend:wn("Transition","TransitionEnd")},_n={},Sn={};function En(t){if(_n[t])return _n[t];if(!kn[t])return t;var e,r=kn[t];for(e in r)if(r.hasOwnProperty(e)&&e in Sn)return _n[t]=r[e];return t}c&&(Sn=document.createElement("div").style,"AnimationEvent"in window||(delete kn.animationend.animation,delete kn.animationiteration.animation,delete kn.animationstart.animation),"TransitionEvent"in window||delete kn.transitionend.transition);var Cn=En("animationend"),zn=En("animationiteration"),Mn=En("animationstart"),Pn=En("transitionend"),On=new Map,Tn="abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");function Ln(t,e){On.set(t,e),l(e,[t])}for(var Nn=0;Nn<Tn.length;Nn++){var Rn=Tn[Nn];Ln(Rn.toLowerCase(),"on"+(Rn[0].toUpperCase()+Rn.slice(1)))}Ln(Cn,"onAnimationEnd"),Ln(zn,"onAnimationIteration"),Ln(Mn,"onAnimationStart"),Ln("dblclick","onDoubleClick"),Ln("focusin","onFocus"),Ln("focusout","onBlur"),Ln(Pn,"onTransitionEnd"),d("onMouseEnter",["mouseout","mouseover"]),d("onMouseLeave",["mouseout","mouseover"]),d("onPointerEnter",["pointerout","pointerover"]),d("onPointerLeave",["pointerout","pointerover"]),l("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),l("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),l("onBeforeInput",["compositionend","keypress","textInput","paste"]),l("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),l("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),l("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Dn="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),In=new Set("cancel close invalid load scroll toggle".split(" ").concat(Dn));function An(t,e,r){var n=t.type||"unknown-event";t.currentTarget=r,function(t,e,r,n,o,a,s,l,d){if(Ut.apply(this,arguments),It){if(!It)throw Error(i(198));var c=At;It=!1,At=null,jt||(jt=!0,Ft=c)}}(n,e,void 0,t),t.currentTarget=null}function jn(t,e){e=0!=(4&e);for(var r=0;r<t.length;r++){var n=t[r],o=n.event;n=n.listeners;t:{var i=void 0;if(e)for(var a=n.length-1;0<=a;a--){var s=n[a],l=s.instance,d=s.currentTarget;if(s=s.listener,l!==i&&o.isPropagationStopped())break t;An(o,s,d),i=l}else for(a=0;a<n.length;a++){if(l=(s=n[a]).instance,d=s.currentTarget,s=s.listener,l!==i&&o.isPropagationStopped())break t;An(o,s,d),i=l}}}if(jt)throw t=Ft,jt=!1,Ft=null,t}function Fn(t,e){var r=e[bo];void 0===r&&(r=e[bo]=new Set);var n=t+"__bubble";r.has(n)||(Vn(e,t,2,!1),r.add(n))}function Bn(t,e,r){var n=0;e&&(n|=4),Vn(r,t,n,e)}var Un="_reactListening"+Math.random().toString(36).slice(2);function Hn(t){if(!t[Un]){t[Un]=!0,a.forEach((function(e){"selectionchange"!==e&&(In.has(e)||Bn(e,!1,t),Bn(e,!0,t))}));var e=9===t.nodeType?t:t.ownerDocument;null===e||e[Un]||(e[Un]=!0,Bn("selectionchange",!1,e))}}function Vn(t,e,r,n){switch(qe(e)){case 1:var o=We;break;case 4:o=Ye;break;default:o=Ke}r=o.bind(null,e,r,t),o=void 0,!Nt||"touchstart"!==e&&"touchmove"!==e&&"wheel"!==e||(o=!0),n?void 0!==o?t.addEventListener(e,r,{capture:!0,passive:o}):t.addEventListener(e,r,!0):void 0!==o?t.addEventListener(e,r,{passive:o}):t.addEventListener(e,r,!1)}function $n(t,e,r,n,o){var i=n;if(0==(1&e)&&0==(2&e)&&null!==n)t:for(;;){if(null===n)return;var a=n.tag;if(3===a||4===a){var s=n.stateNode.containerInfo;if(s===o||8===s.nodeType&&s.parentNode===o)break;if(4===a)for(a=n.return;null!==a;){var l=a.tag;if((3===l||4===l)&&((l=a.stateNode.containerInfo)===o||8===l.nodeType&&l.parentNode===o))return;a=a.return}for(;null!==s;){if(null===(a=xo(s)))return;if(5===(l=a.tag)||6===l){n=i=a;continue t}s=s.parentNode}}n=n.return}Tt((function(){var n=i,o=wt(r),a=[];t:{var s=On.get(t);if(void 0!==s){var l=dr,d=t;switch(t){case"keypress":if(0===er(r))break t;case"keydown":case"keyup":l=Cr;break;case"focusin":d="focus",l=hr;break;case"focusout":d="blur",l=hr;break;case"beforeblur":case"afterblur":l=hr;break;case"click":if(2===r.button)break t;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":l=mr;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":l=fr;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":l=Mr;break;case Cn:case zn:case Mn:l=br;break;case Pn:l=Pr;break;case"scroll":l=ur;break;case"wheel":l=Tr;break;case"copy":case"cut":case"paste":l=vr;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":l=zr}var c=0!=(4&e),u=!c&&"scroll"===t,p=c?null!==s?s+"Capture":null:s;c=[];for(var m,f=n;null!==f;){var h=(m=f).stateNode;if(5===m.tag&&null!==h&&(m=h,null!==p&&null!=(h=Lt(f,p))&&c.push(Wn(f,h,m))),u)break;f=f.return}0<c.length&&(s=new l(s,d,null,r,o),a.push({event:s,listeners:c}))}}if(0==(7&e)){if(l="mouseout"===t||"pointerout"===t,(!(s="mouseover"===t||"pointerover"===t)||r===yt||!(d=r.relatedTarget||r.fromElement)||!xo(d)&&!d[ho])&&(l||s)&&(s=o.window===o?o:(s=o.ownerDocument)?s.defaultView||s.parentWindow:window,l?(l=n,null!==(d=(d=r.relatedTarget||r.toElement)?xo(d):null)&&(d!==(u=Ht(d))||5!==d.tag&&6!==d.tag)&&(d=null)):(l=null,d=n),l!==d)){if(c=mr,h="onMouseLeave",p="onMouseEnter",f="mouse","pointerout"!==t&&"pointerover"!==t||(c=zr,h="onPointerLeave",p="onPointerEnter",f="pointer"),u=null==l?s:wo(l),m=null==d?s:wo(d),(s=new c(h,f+"leave",l,r,o)).target=u,s.relatedTarget=m,h=null,xo(o)===n&&((c=new c(p,f+"enter",d,r,o)).target=m,c.relatedTarget=u,h=c),u=h,l&&d)t:{for(p=d,f=0,m=c=l;m;m=Kn(m))f++;for(m=0,h=p;h;h=Kn(h))m++;for(;0<f-m;)c=Kn(c),f--;for(;0<m-f;)p=Kn(p),m--;for(;f--;){if(c===p||null!==p&&c===p.alternate)break t;c=Kn(c),p=Kn(p)}c=null}else c=null;null!==l&&Qn(a,s,l,c,!1),null!==d&&null!==u&&Qn(a,u,d,c,!0)}if("select"===(l=(s=n?wo(n):window).nodeName&&s.nodeName.toLowerCase())||"input"===l&&"file"===s.type)var b=Xr;else if(Vr(s))if(qr)b=an;else{b=nn;var g=rn}else(l=s.nodeName)&&"input"===l.toLowerCase()&&("checkbox"===s.type||"radio"===s.type)&&(b=on);switch(b&&(b=b(t,n))?$r(a,b,r,o):(g&&g(t,s,n),"focusout"===t&&(g=s._wrapperState)&&g.controlled&&"number"===s.type&&tt(s,"number",s.value)),g=n?wo(n):window,t){case"focusin":(Vr(g)||"true"===g.contentEditable)&&(bn=g,gn=n,vn=null);break;case"focusout":vn=gn=bn=null;break;case"mousedown":xn=!0;break;case"contextmenu":case"mouseup":case"dragend":xn=!1,yn(a,r,o);break;case"selectionchange":if(hn)break;case"keydown":case"keyup":yn(a,r,o)}var v;if(Nr)t:{switch(t){case"compositionstart":var x="onCompositionStart";break t;case"compositionend":x="onCompositionEnd";break t;case"compositionupdate":x="onCompositionUpdate";break t}x=void 0}else Ur?Fr(t,r)&&(x="onCompositionEnd"):"keydown"===t&&229===r.keyCode&&(x="onCompositionStart");x&&(Ir&&"ko"!==r.locale&&(Ur||"onCompositionStart"!==x?"onCompositionEnd"===x&&Ur&&(v=tr()):(Ze="value"in(Ge=o)?Ge.value:Ge.textContent,Ur=!0)),0<(g=Yn(n,x)).length&&(x=new xr(x,t,null,r,o),a.push({event:x,listeners:g}),(v||null!==(v=Br(r)))&&(x.data=v))),(v=Dr?function(t,e){switch(t){case"compositionend":return Br(e);case"keypress":return 32!==e.which?null:(jr=!0,Ar);case"textInput":return(t=e.data)===Ar&&jr?null:t;default:return null}}(t,r):function(t,e){if(Ur)return"compositionend"===t||!Nr&&Fr(t,e)?(t=tr(),Je=Ze=Ge=null,Ur=!1,t):null;switch(t){case"paste":default:return null;case"keypress":if(!(e.ctrlKey||e.altKey||e.metaKey)||e.ctrlKey&&e.altKey){if(e.char&&1<e.char.length)return e.char;if(e.which)return String.fromCharCode(e.which)}return null;case"compositionend":return Ir&&"ko"!==e.locale?null:e.data}}(t,r))&&0<(n=Yn(n,"onBeforeInput")).length&&(o=new xr("onBeforeInput","beforeinput",null,r,o),a.push({event:o,listeners:n}),o.data=v)}jn(a,e)}))}function Wn(t,e,r){return{instance:t,listener:e,currentTarget:r}}function Yn(t,e){for(var r=e+"Capture",n=[];null!==t;){var o=t,i=o.stateNode;5===o.tag&&null!==i&&(o=i,null!=(i=Lt(t,r))&&n.unshift(Wn(t,i,o)),null!=(i=Lt(t,e))&&n.push(Wn(t,i,o))),t=t.return}return n}function Kn(t){if(null===t)return null;do{t=t.return}while(t&&5!==t.tag);return t||null}function Qn(t,e,r,n,o){for(var i=e._reactName,a=[];null!==r&&r!==n;){var s=r,l=s.alternate,d=s.stateNode;if(null!==l&&l===n)break;5===s.tag&&null!==d&&(s=d,o?null!=(l=Lt(r,i))&&a.unshift(Wn(r,l,s)):o||null!=(l=Lt(r,i))&&a.push(Wn(r,l,s))),r=r.return}0!==a.length&&t.push({event:e,listeners:a})}var Xn=/\r\n?/g,qn=/\u0000|\uFFFD/g;function Gn(t){return("string"==typeof t?t:""+t).replace(Xn,"\n").replace(qn,"")}function Zn(t,e,r){if(e=Gn(e),Gn(t)!==e&&r)throw Error(i(425))}function Jn(){}var to=null,eo=null;function ro(t,e){return"textarea"===t||"noscript"===t||"string"==typeof e.children||"number"==typeof e.children||"object"==typeof e.dangerouslySetInnerHTML&&null!==e.dangerouslySetInnerHTML&&null!=e.dangerouslySetInnerHTML.__html}var no="function"==typeof setTimeout?setTimeout:void 0,oo="function"==typeof clearTimeout?clearTimeout:void 0,io="function"==typeof Promise?Promise:void 0,ao="function"==typeof queueMicrotask?queueMicrotask:void 0!==io?function(t){return io.resolve(null).then(t).catch(so)}:no;function so(t){setTimeout((function(){throw t}))}function lo(t,e){var r=e,n=0;do{var o=r.nextSibling;if(t.removeChild(r),o&&8===o.nodeType)if("/$"===(r=o.data)){if(0===n)return t.removeChild(o),void He(e);n--}else"$"!==r&&"$?"!==r&&"$!"!==r||n++;r=o}while(r);He(e)}function co(t){for(;null!=t;t=t.nextSibling){var e=t.nodeType;if(1===e||3===e)break;if(8===e){if("$"===(e=t.data)||"$!"===e||"$?"===e)break;if("/$"===e)return null}}return t}function uo(t){t=t.previousSibling;for(var e=0;t;){if(8===t.nodeType){var r=t.data;if("$"===r||"$!"===r||"$?"===r){if(0===e)return t;e--}else"/$"===r&&e++}t=t.previousSibling}return null}var po=Math.random().toString(36).slice(2),mo="__reactFiber$"+po,fo="__reactProps$"+po,ho="__reactContainer$"+po,bo="__reactEvents$"+po,go="__reactListeners$"+po,vo="__reactHandles$"+po;function xo(t){var e=t[mo];if(e)return e;for(var r=t.parentNode;r;){if(e=r[ho]||r[mo]){if(r=e.alternate,null!==e.child||null!==r&&null!==r.child)for(t=uo(t);null!==t;){if(r=t[mo])return r;t=uo(t)}return e}r=(t=r).parentNode}return null}function yo(t){return!(t=t[mo]||t[ho])||5!==t.tag&&6!==t.tag&&13!==t.tag&&3!==t.tag?null:t}function wo(t){if(5===t.tag||6===t.tag)return t.stateNode;throw Error(i(33))}function ko(t){return t[fo]||null}var _o=[],So=-1;function Eo(t){return{current:t}}function Co(t){0>So||(t.current=_o[So],_o[So]=null,So--)}function zo(t,e){So++,_o[So]=t.current,t.current=e}var Mo={},Po=Eo(Mo),Oo=Eo(!1),To=Mo;function Lo(t,e){var r=t.type.contextTypes;if(!r)return Mo;var n=t.stateNode;if(n&&n.__reactInternalMemoizedUnmaskedChildContext===e)return n.__reactInternalMemoizedMaskedChildContext;var o,i={};for(o in r)i[o]=e[o];return n&&((t=t.stateNode).__reactInternalMemoizedUnmaskedChildContext=e,t.__reactInternalMemoizedMaskedChildContext=i),i}function No(t){return null!=t.childContextTypes}function Ro(){Co(Oo),Co(Po)}function Do(t,e,r){if(Po.current!==Mo)throw Error(i(168));zo(Po,e),zo(Oo,r)}function Io(t,e,r){var n=t.stateNode;if(e=e.childContextTypes,"function"!=typeof n.getChildContext)return r;for(var o in n=n.getChildContext())if(!(o in e))throw Error(i(108,V(t)||"Unknown",o));return A({},r,n)}function Ao(t){return t=(t=t.stateNode)&&t.__reactInternalMemoizedMergedChildContext||Mo,To=Po.current,zo(Po,t),zo(Oo,Oo.current),!0}function jo(t,e,r){var n=t.stateNode;if(!n)throw Error(i(169));r?(t=Io(t,e,To),n.__reactInternalMemoizedMergedChildContext=t,Co(Oo),Co(Po),zo(Po,t)):Co(Oo),zo(Oo,r)}var Fo=null,Bo=!1,Uo=!1;function Ho(t){null===Fo?Fo=[t]:Fo.push(t)}function Vo(){if(!Uo&&null!==Fo){Uo=!0;var t=0,e=xe;try{var r=Fo;for(xe=1;t<r.length;t++){var n=r[t];do{n=n(!0)}while(null!==n)}Fo=null,Bo=!1}catch(e){throw null!==Fo&&(Fo=Fo.slice(t+1)),Kt(Jt,Vo),e}finally{xe=e,Uo=!1}}return null}var $o=[],Wo=0,Yo=null,Ko=0,Qo=[],Xo=0,qo=null,Go=1,Zo="";function Jo(t,e){$o[Wo++]=Ko,$o[Wo++]=Yo,Yo=t,Ko=e}function ti(t,e,r){Qo[Xo++]=Go,Qo[Xo++]=Zo,Qo[Xo++]=qo,qo=t;var n=Go;t=Zo;var o=32-ae(n)-1;n&=~(1<<o),r+=1;var i=32-ae(e)+o;if(30<i){var a=o-o%5;i=(n&(1<<a)-1).toString(32),n>>=a,o-=a,Go=1<<32-ae(e)+o|r<<o|n,Zo=i+t}else Go=1<<i|r<<o|n,Zo=t}function ei(t){null!==t.return&&(Jo(t,1),ti(t,1,0))}function ri(t){for(;t===Yo;)Yo=$o[--Wo],$o[Wo]=null,Ko=$o[--Wo],$o[Wo]=null;for(;t===qo;)qo=Qo[--Xo],Qo[Xo]=null,Zo=Qo[--Xo],Qo[Xo]=null,Go=Qo[--Xo],Qo[Xo]=null}var ni=null,oi=null,ii=!1,ai=null;function si(t,e){var r=Td(5,null,null,0);r.elementType="DELETED",r.stateNode=e,r.return=t,null===(e=t.deletions)?(t.deletions=[r],t.flags|=16):e.push(r)}function li(t,e){switch(t.tag){case 5:var r=t.type;return null!==(e=1!==e.nodeType||r.toLowerCase()!==e.nodeName.toLowerCase()?null:e)&&(t.stateNode=e,ni=t,oi=co(e.firstChild),!0);case 6:return null!==(e=""===t.pendingProps||3!==e.nodeType?null:e)&&(t.stateNode=e,ni=t,oi=null,!0);case 13:return null!==(e=8!==e.nodeType?null:e)&&(r=null!==qo?{id:Go,overflow:Zo}:null,t.memoizedState={dehydrated:e,treeContext:r,retryLane:1073741824},(r=Td(18,null,null,0)).stateNode=e,r.return=t,t.child=r,ni=t,oi=null,!0);default:return!1}}function di(t){return 0!=(1&t.mode)&&0==(128&t.flags)}function ci(t){if(ii){var e=oi;if(e){var r=e;if(!li(t,e)){if(di(t))throw Error(i(418));e=co(r.nextSibling);var n=ni;e&&li(t,e)?si(n,r):(t.flags=-4097&t.flags|2,ii=!1,ni=t)}}else{if(di(t))throw Error(i(418));t.flags=-4097&t.flags|2,ii=!1,ni=t}}}function ui(t){for(t=t.return;null!==t&&5!==t.tag&&3!==t.tag&&13!==t.tag;)t=t.return;ni=t}function pi(t){if(t!==ni)return!1;if(!ii)return ui(t),ii=!0,!1;var e;if((e=3!==t.tag)&&!(e=5!==t.tag)&&(e="head"!==(e=t.type)&&"body"!==e&&!ro(t.type,t.memoizedProps)),e&&(e=oi)){if(di(t))throw mi(),Error(i(418));for(;e;)si(t,e),e=co(e.nextSibling)}if(ui(t),13===t.tag){if(!(t=null!==(t=t.memoizedState)?t.dehydrated:null))throw Error(i(317));t:{for(t=t.nextSibling,e=0;t;){if(8===t.nodeType){var r=t.data;if("/$"===r){if(0===e){oi=co(t.nextSibling);break t}e--}else"$"!==r&&"$!"!==r&&"$?"!==r||e++}t=t.nextSibling}oi=null}}else oi=ni?co(t.stateNode.nextSibling):null;return!0}function mi(){for(var t=oi;t;)t=co(t.nextSibling)}function fi(){oi=ni=null,ii=!1}function hi(t){null===ai?ai=[t]:ai.push(t)}var bi=y.ReactCurrentBatchConfig;function gi(t,e){if(t&&t.defaultProps){for(var r in e=A({},e),t=t.defaultProps)void 0===e[r]&&(e[r]=t[r]);return e}return e}var vi=Eo(null),xi=null,yi=null,wi=null;function ki(){wi=yi=xi=null}function _i(t){var e=vi.current;Co(vi),t._currentValue=e}function Si(t,e,r){for(;null!==t;){var n=t.alternate;if((t.childLanes&e)!==e?(t.childLanes|=e,null!==n&&(n.childLanes|=e)):null!==n&&(n.childLanes&e)!==e&&(n.childLanes|=e),t===r)break;t=t.return}}function Ei(t,e){xi=t,wi=yi=null,null!==(t=t.dependencies)&&null!==t.firstContext&&(0!=(t.lanes&e)&&(ys=!0),t.firstContext=null)}function Ci(t){var e=t._currentValue;if(wi!==t)if(t={context:t,memoizedValue:e,next:null},null===yi){if(null===xi)throw Error(i(308));yi=t,xi.dependencies={lanes:0,firstContext:t}}else yi=yi.next=t;return e}var zi=null;function Mi(t){null===zi?zi=[t]:zi.push(t)}function Pi(t,e,r,n){var o=e.interleaved;return null===o?(r.next=r,Mi(e)):(r.next=o.next,o.next=r),e.interleaved=r,Oi(t,n)}function Oi(t,e){t.lanes|=e;var r=t.alternate;for(null!==r&&(r.lanes|=e),r=t,t=t.return;null!==t;)t.childLanes|=e,null!==(r=t.alternate)&&(r.childLanes|=e),r=t,t=t.return;return 3===r.tag?r.stateNode:null}var Ti=!1;function Li(t){t.updateQueue={baseState:t.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function Ni(t,e){t=t.updateQueue,e.updateQueue===t&&(e.updateQueue={baseState:t.baseState,firstBaseUpdate:t.firstBaseUpdate,lastBaseUpdate:t.lastBaseUpdate,shared:t.shared,effects:t.effects})}function Ri(t,e){return{eventTime:t,lane:e,tag:0,payload:null,callback:null,next:null}}function Di(t,e,r){var n=t.updateQueue;if(null===n)return null;if(n=n.shared,0!=(2&Ml)){var o=n.pending;return null===o?e.next=e:(e.next=o.next,o.next=e),n.pending=e,Oi(t,r)}return null===(o=n.interleaved)?(e.next=e,Mi(n)):(e.next=o.next,o.next=e),n.interleaved=e,Oi(t,r)}function Ii(t,e,r){if(null!==(e=e.updateQueue)&&(e=e.shared,0!=(4194240&r))){var n=e.lanes;r|=n&=t.pendingLanes,e.lanes=r,ve(t,r)}}function Ai(t,e){var r=t.updateQueue,n=t.alternate;if(null!==n&&r===(n=n.updateQueue)){var o=null,i=null;if(null!==(r=r.firstBaseUpdate)){do{var a={eventTime:r.eventTime,lane:r.lane,tag:r.tag,payload:r.payload,callback:r.callback,next:null};null===i?o=i=a:i=i.next=a,r=r.next}while(null!==r);null===i?o=i=e:i=i.next=e}else o=i=e;return r={baseState:n.baseState,firstBaseUpdate:o,lastBaseUpdate:i,shared:n.shared,effects:n.effects},void(t.updateQueue=r)}null===(t=r.lastBaseUpdate)?r.firstBaseUpdate=e:t.next=e,r.lastBaseUpdate=e}function ji(t,e,r,n){var o=t.updateQueue;Ti=!1;var i=o.firstBaseUpdate,a=o.lastBaseUpdate,s=o.shared.pending;if(null!==s){o.shared.pending=null;var l=s,d=l.next;l.next=null,null===a?i=d:a.next=d,a=l;var c=t.alternate;null!==c&&(s=(c=c.updateQueue).lastBaseUpdate)!==a&&(null===s?c.firstBaseUpdate=d:s.next=d,c.lastBaseUpdate=l)}if(null!==i){var u=o.baseState;for(a=0,c=d=l=null,s=i;;){var p=s.lane,m=s.eventTime;if((n&p)===p){null!==c&&(c=c.next={eventTime:m,lane:0,tag:s.tag,payload:s.payload,callback:s.callback,next:null});t:{var f=t,h=s;switch(p=e,m=r,h.tag){case 1:if("function"==typeof(f=h.payload)){u=f.call(m,u,p);break t}u=f;break t;case 3:f.flags=-65537&f.flags|128;case 0:if(null==(p="function"==typeof(f=h.payload)?f.call(m,u,p):f))break t;u=A({},u,p);break t;case 2:Ti=!0}}null!==s.callback&&0!==s.lane&&(t.flags|=64,null===(p=o.effects)?o.effects=[s]:p.push(s))}else m={eventTime:m,lane:p,tag:s.tag,payload:s.payload,callback:s.callback,next:null},null===c?(d=c=m,l=u):c=c.next=m,a|=p;if(null===(s=s.next)){if(null===(s=o.shared.pending))break;s=(p=s).next,p.next=null,o.lastBaseUpdate=p,o.shared.pending=null}}if(null===c&&(l=u),o.baseState=l,o.firstBaseUpdate=d,o.lastBaseUpdate=c,null!==(e=o.shared.interleaved)){o=e;do{a|=o.lane,o=o.next}while(o!==e)}else null===i&&(o.shared.lanes=0);Il|=a,t.lanes=a,t.memoizedState=u}}function Fi(t,e,r){if(t=e.effects,e.effects=null,null!==t)for(e=0;e<t.length;e++){var n=t[e],o=n.callback;if(null!==o){if(n.callback=null,n=r,"function"!=typeof o)throw Error(i(191,o));o.call(n)}}}var Bi=(new n.Component).refs;function Ui(t,e,r,n){r=null==(r=r(n,e=t.memoizedState))?e:A({},e,r),t.memoizedState=r,0===t.lanes&&(t.updateQueue.baseState=r)}var Hi={isMounted:function(t){return!!(t=t._reactInternals)&&Ht(t)===t},enqueueSetState:function(t,e,r){t=t._reactInternals;var n=td(),o=ed(t),i=Ri(n,o);i.payload=e,null!=r&&(i.callback=r),null!==(e=Di(t,i,o))&&(rd(e,t,o,n),Ii(e,t,o))},enqueueReplaceState:function(t,e,r){t=t._reactInternals;var n=td(),o=ed(t),i=Ri(n,o);i.tag=1,i.payload=e,null!=r&&(i.callback=r),null!==(e=Di(t,i,o))&&(rd(e,t,o,n),Ii(e,t,o))},enqueueForceUpdate:function(t,e){t=t._reactInternals;var r=td(),n=ed(t),o=Ri(r,n);o.tag=2,null!=e&&(o.callback=e),null!==(e=Di(t,o,n))&&(rd(e,t,n,r),Ii(e,t,n))}};function Vi(t,e,r,n,o,i,a){return"function"==typeof(t=t.stateNode).shouldComponentUpdate?t.shouldComponentUpdate(n,i,a):!(e.prototype&&e.prototype.isPureReactComponent&&ln(r,n)&&ln(o,i))}function $i(t,e,r){var n=!1,o=Mo,i=e.contextType;return"object"==typeof i&&null!==i?i=Ci(i):(o=No(e)?To:Po.current,i=(n=null!=(n=e.contextTypes))?Lo(t,o):Mo),e=new e(r,i),t.memoizedState=null!==e.state&&void 0!==e.state?e.state:null,e.updater=Hi,t.stateNode=e,e._reactInternals=t,n&&((t=t.stateNode).__reactInternalMemoizedUnmaskedChildContext=o,t.__reactInternalMemoizedMaskedChildContext=i),e}function Wi(t,e,r,n){t=e.state,"function"==typeof e.componentWillReceiveProps&&e.componentWillReceiveProps(r,n),"function"==typeof e.UNSAFE_componentWillReceiveProps&&e.UNSAFE_componentWillReceiveProps(r,n),e.state!==t&&Hi.enqueueReplaceState(e,e.state,null)}function Yi(t,e,r,n){var o=t.stateNode;o.props=r,o.state=t.memoizedState,o.refs=Bi,Li(t);var i=e.contextType;"object"==typeof i&&null!==i?o.context=Ci(i):(i=No(e)?To:Po.current,o.context=Lo(t,i)),o.state=t.memoizedState,"function"==typeof(i=e.getDerivedStateFromProps)&&(Ui(t,e,i,r),o.state=t.memoizedState),"function"==typeof e.getDerivedStateFromProps||"function"==typeof o.getSnapshotBeforeUpdate||"function"!=typeof o.UNSAFE_componentWillMount&&"function"!=typeof o.componentWillMount||(e=o.state,"function"==typeof o.componentWillMount&&o.componentWillMount(),"function"==typeof o.UNSAFE_componentWillMount&&o.UNSAFE_componentWillMount(),e!==o.state&&Hi.enqueueReplaceState(o,o.state,null),ji(t,r,o,n),o.state=t.memoizedState),"function"==typeof o.componentDidMount&&(t.flags|=4194308)}function Ki(t,e,r){if(null!==(t=r.ref)&&"function"!=typeof t&&"object"!=typeof t){if(r._owner){if(r=r._owner){if(1!==r.tag)throw Error(i(309));var n=r.stateNode}if(!n)throw Error(i(147,t));var o=n,a=""+t;return null!==e&&null!==e.ref&&"function"==typeof e.ref&&e.ref._stringRef===a?e.ref:(e=function(t){var e=o.refs;e===Bi&&(e=o.refs={}),null===t?delete e[a]:e[a]=t},e._stringRef=a,e)}if("string"!=typeof t)throw Error(i(284));if(!r._owner)throw Error(i(290,t))}return t}function Qi(t,e){throw t=Object.prototype.toString.call(e),Error(i(31,"[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t))}function Xi(t){return(0,t._init)(t._payload)}function qi(t){function e(e,r){if(t){var n=e.deletions;null===n?(e.deletions=[r],e.flags|=16):n.push(r)}}function r(r,n){if(!t)return null;for(;null!==n;)e(r,n),n=n.sibling;return null}function n(t,e){for(t=new Map;null!==e;)null!==e.key?t.set(e.key,e):t.set(e.index,e),e=e.sibling;return t}function o(t,e){return(t=Nd(t,e)).index=0,t.sibling=null,t}function a(e,r,n){return e.index=n,t?null!==(n=e.alternate)?(n=n.index)<r?(e.flags|=2,r):n:(e.flags|=2,r):(e.flags|=1048576,r)}function s(e){return t&&null===e.alternate&&(e.flags|=2),e}function l(t,e,r,n){return null===e||6!==e.tag?((e=Ad(r,t.mode,n)).return=t,e):((e=o(e,r)).return=t,e)}function d(t,e,r,n){var i=r.type;return i===_?u(t,e,r.props.children,n,r.key):null!==e&&(e.elementType===i||"object"==typeof i&&null!==i&&i.$$typeof===L&&Xi(i)===e.type)?((n=o(e,r.props)).ref=Ki(t,e,r),n.return=t,n):((n=Rd(r.type,r.key,r.props,null,t.mode,n)).ref=Ki(t,e,r),n.return=t,n)}function c(t,e,r,n){return null===e||4!==e.tag||e.stateNode.containerInfo!==r.containerInfo||e.stateNode.implementation!==r.implementation?((e=jd(r,t.mode,n)).return=t,e):((e=o(e,r.children||[])).return=t,e)}function u(t,e,r,n,i){return null===e||7!==e.tag?((e=Dd(r,t.mode,n,i)).return=t,e):((e=o(e,r)).return=t,e)}function p(t,e,r){if("string"==typeof e&&""!==e||"number"==typeof e)return(e=Ad(""+e,t.mode,r)).return=t,e;if("object"==typeof e&&null!==e){switch(e.$$typeof){case w:return(r=Rd(e.type,e.key,e.props,null,t.mode,r)).ref=Ki(t,null,e),r.return=t,r;case k:return(e=jd(e,t.mode,r)).return=t,e;case L:return p(t,(0,e._init)(e._payload),r)}if(et(e)||D(e))return(e=Dd(e,t.mode,r,null)).return=t,e;Qi(t,e)}return null}function m(t,e,r,n){var o=null!==e?e.key:null;if("string"==typeof r&&""!==r||"number"==typeof r)return null!==o?null:l(t,e,""+r,n);if("object"==typeof r&&null!==r){switch(r.$$typeof){case w:return r.key===o?d(t,e,r,n):null;case k:return r.key===o?c(t,e,r,n):null;case L:return m(t,e,(o=r._init)(r._payload),n)}if(et(r)||D(r))return null!==o?null:u(t,e,r,n,null);Qi(t,r)}return null}function f(t,e,r,n,o){if("string"==typeof n&&""!==n||"number"==typeof n)return l(e,t=t.get(r)||null,""+n,o);if("object"==typeof n&&null!==n){switch(n.$$typeof){case w:return d(e,t=t.get(null===n.key?r:n.key)||null,n,o);case k:return c(e,t=t.get(null===n.key?r:n.key)||null,n,o);case L:return f(t,e,r,(0,n._init)(n._payload),o)}if(et(n)||D(n))return u(e,t=t.get(r)||null,n,o,null);Qi(e,n)}return null}function h(o,i,s,l){for(var d=null,c=null,u=i,h=i=0,b=null;null!==u&&h<s.length;h++){u.index>h?(b=u,u=null):b=u.sibling;var g=m(o,u,s[h],l);if(null===g){null===u&&(u=b);break}t&&u&&null===g.alternate&&e(o,u),i=a(g,i,h),null===c?d=g:c.sibling=g,c=g,u=b}if(h===s.length)return r(o,u),ii&&Jo(o,h),d;if(null===u){for(;h<s.length;h++)null!==(u=p(o,s[h],l))&&(i=a(u,i,h),null===c?d=u:c.sibling=u,c=u);return ii&&Jo(o,h),d}for(u=n(o,u);h<s.length;h++)null!==(b=f(u,o,h,s[h],l))&&(t&&null!==b.alternate&&u.delete(null===b.key?h:b.key),i=a(b,i,h),null===c?d=b:c.sibling=b,c=b);return t&&u.forEach((function(t){return e(o,t)})),ii&&Jo(o,h),d}function b(o,s,l,d){var c=D(l);if("function"!=typeof c)throw Error(i(150));if(null==(l=c.call(l)))throw Error(i(151));for(var u=c=null,h=s,b=s=0,g=null,v=l.next();null!==h&&!v.done;b++,v=l.next()){h.index>b?(g=h,h=null):g=h.sibling;var x=m(o,h,v.value,d);if(null===x){null===h&&(h=g);break}t&&h&&null===x.alternate&&e(o,h),s=a(x,s,b),null===u?c=x:u.sibling=x,u=x,h=g}if(v.done)return r(o,h),ii&&Jo(o,b),c;if(null===h){for(;!v.done;b++,v=l.next())null!==(v=p(o,v.value,d))&&(s=a(v,s,b),null===u?c=v:u.sibling=v,u=v);return ii&&Jo(o,b),c}for(h=n(o,h);!v.done;b++,v=l.next())null!==(v=f(h,o,b,v.value,d))&&(t&&null!==v.alternate&&h.delete(null===v.key?b:v.key),s=a(v,s,b),null===u?c=v:u.sibling=v,u=v);return t&&h.forEach((function(t){return e(o,t)})),ii&&Jo(o,b),c}return function t(n,i,a,l){if("object"==typeof a&&null!==a&&a.type===_&&null===a.key&&(a=a.props.children),"object"==typeof a&&null!==a){switch(a.$$typeof){case w:t:{for(var d=a.key,c=i;null!==c;){if(c.key===d){if((d=a.type)===_){if(7===c.tag){r(n,c.sibling),(i=o(c,a.props.children)).return=n,n=i;break t}}else if(c.elementType===d||"object"==typeof d&&null!==d&&d.$$typeof===L&&Xi(d)===c.type){r(n,c.sibling),(i=o(c,a.props)).ref=Ki(n,c,a),i.return=n,n=i;break t}r(n,c);break}e(n,c),c=c.sibling}a.type===_?((i=Dd(a.props.children,n.mode,l,a.key)).return=n,n=i):((l=Rd(a.type,a.key,a.props,null,n.mode,l)).ref=Ki(n,i,a),l.return=n,n=l)}return s(n);case k:t:{for(c=a.key;null!==i;){if(i.key===c){if(4===i.tag&&i.stateNode.containerInfo===a.containerInfo&&i.stateNode.implementation===a.implementation){r(n,i.sibling),(i=o(i,a.children||[])).return=n,n=i;break t}r(n,i);break}e(n,i),i=i.sibling}(i=jd(a,n.mode,l)).return=n,n=i}return s(n);case L:return t(n,i,(c=a._init)(a._payload),l)}if(et(a))return h(n,i,a,l);if(D(a))return b(n,i,a,l);Qi(n,a)}return"string"==typeof a&&""!==a||"number"==typeof a?(a=""+a,null!==i&&6===i.tag?(r(n,i.sibling),(i=o(i,a)).return=n,n=i):(r(n,i),(i=Ad(a,n.mode,l)).return=n,n=i),s(n)):r(n,i)}}var Gi=qi(!0),Zi=qi(!1),Ji={},ta=Eo(Ji),ea=Eo(Ji),ra=Eo(Ji);function na(t){if(t===Ji)throw Error(i(174));return t}function oa(t,e){switch(zo(ra,e),zo(ea,t),zo(ta,Ji),t=e.nodeType){case 9:case 11:e=(e=e.documentElement)?e.namespaceURI:lt(null,"");break;default:e=lt(e=(t=8===t?e.parentNode:e).namespaceURI||null,t=t.tagName)}Co(ta),zo(ta,e)}function ia(){Co(ta),Co(ea),Co(ra)}function aa(t){na(ra.current);var e=na(ta.current),r=lt(e,t.type);e!==r&&(zo(ea,t),zo(ta,r))}function sa(t){ea.current===t&&(Co(ta),Co(ea))}var la=Eo(0);function da(t){for(var e=t;null!==e;){if(13===e.tag){var r=e.memoizedState;if(null!==r&&(null===(r=r.dehydrated)||"$?"===r.data||"$!"===r.data))return e}else if(19===e.tag&&void 0!==e.memoizedProps.revealOrder){if(0!=(128&e.flags))return e}else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break;for(;null===e.sibling;){if(null===e.return||e.return===t)return null;e=e.return}e.sibling.return=e.return,e=e.sibling}return null}var ca=[];function ua(){for(var t=0;t<ca.length;t++)ca[t]._workInProgressVersionPrimary=null;ca.length=0}var pa=y.ReactCurrentDispatcher,ma=y.ReactCurrentBatchConfig,fa=0,ha=null,ba=null,ga=null,va=!1,xa=!1,ya=0,wa=0;function ka(){throw Error(i(321))}function _a(t,e){if(null===e)return!1;for(var r=0;r<e.length&&r<t.length;r++)if(!sn(t[r],e[r]))return!1;return!0}function Sa(t,e,r,n,o,a){if(fa=a,ha=e,e.memoizedState=null,e.updateQueue=null,e.lanes=0,pa.current=null===t||null===t.memoizedState?ss:ls,t=r(n,o),xa){a=0;do{if(xa=!1,ya=0,25<=a)throw Error(i(301));a+=1,ga=ba=null,e.updateQueue=null,pa.current=ds,t=r(n,o)}while(xa)}if(pa.current=as,e=null!==ba&&null!==ba.next,fa=0,ga=ba=ha=null,va=!1,e)throw Error(i(300));return t}function Ea(){var t=0!==ya;return ya=0,t}function Ca(){var t={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===ga?ha.memoizedState=ga=t:ga=ga.next=t,ga}function za(){if(null===ba){var t=ha.alternate;t=null!==t?t.memoizedState:null}else t=ba.next;var e=null===ga?ha.memoizedState:ga.next;if(null!==e)ga=e,ba=t;else{if(null===t)throw Error(i(310));t={memoizedState:(ba=t).memoizedState,baseState:ba.baseState,baseQueue:ba.baseQueue,queue:ba.queue,next:null},null===ga?ha.memoizedState=ga=t:ga=ga.next=t}return ga}function Ma(t,e){return"function"==typeof e?e(t):e}function Pa(t){var e=za(),r=e.queue;if(null===r)throw Error(i(311));r.lastRenderedReducer=t;var n=ba,o=n.baseQueue,a=r.pending;if(null!==a){if(null!==o){var s=o.next;o.next=a.next,a.next=s}n.baseQueue=o=a,r.pending=null}if(null!==o){a=o.next,n=n.baseState;var l=s=null,d=null,c=a;do{var u=c.lane;if((fa&u)===u)null!==d&&(d=d.next={lane:0,action:c.action,hasEagerState:c.hasEagerState,eagerState:c.eagerState,next:null}),n=c.hasEagerState?c.eagerState:t(n,c.action);else{var p={lane:u,action:c.action,hasEagerState:c.hasEagerState,eagerState:c.eagerState,next:null};null===d?(l=d=p,s=n):d=d.next=p,ha.lanes|=u,Il|=u}c=c.next}while(null!==c&&c!==a);null===d?s=n:d.next=l,sn(n,e.memoizedState)||(ys=!0),e.memoizedState=n,e.baseState=s,e.baseQueue=d,r.lastRenderedState=n}if(null!==(t=r.interleaved)){o=t;do{a=o.lane,ha.lanes|=a,Il|=a,o=o.next}while(o!==t)}else null===o&&(r.lanes=0);return[e.memoizedState,r.dispatch]}function Oa(t){var e=za(),r=e.queue;if(null===r)throw Error(i(311));r.lastRenderedReducer=t;var n=r.dispatch,o=r.pending,a=e.memoizedState;if(null!==o){r.pending=null;var s=o=o.next;do{a=t(a,s.action),s=s.next}while(s!==o);sn(a,e.memoizedState)||(ys=!0),e.memoizedState=a,null===e.baseQueue&&(e.baseState=a),r.lastRenderedState=a}return[a,n]}function Ta(){}function La(t,e){var r=ha,n=za(),o=e(),a=!sn(n.memoizedState,o);if(a&&(n.memoizedState=o,ys=!0),n=n.queue,$a(Da.bind(null,r,n,t),[t]),n.getSnapshot!==e||a||null!==ga&&1&ga.memoizedState.tag){if(r.flags|=2048,Fa(9,Ra.bind(null,r,n,o,e),void 0,null),null===Pl)throw Error(i(349));0!=(30&fa)||Na(r,e,o)}return o}function Na(t,e,r){t.flags|=16384,t={getSnapshot:e,value:r},null===(e=ha.updateQueue)?(e={lastEffect:null,stores:null},ha.updateQueue=e,e.stores=[t]):null===(r=e.stores)?e.stores=[t]:r.push(t)}function Ra(t,e,r,n){e.value=r,e.getSnapshot=n,Ia(e)&&Aa(t)}function Da(t,e,r){return r((function(){Ia(e)&&Aa(t)}))}function Ia(t){var e=t.getSnapshot;t=t.value;try{var r=e();return!sn(t,r)}catch(t){return!0}}function Aa(t){var e=Oi(t,1);null!==e&&rd(e,t,1,-1)}function ja(t){var e=Ca();return"function"==typeof t&&(t=t()),e.memoizedState=e.baseState=t,t={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:Ma,lastRenderedState:t},e.queue=t,t=t.dispatch=rs.bind(null,ha,t),[e.memoizedState,t]}function Fa(t,e,r,n){return t={tag:t,create:e,destroy:r,deps:n,next:null},null===(e=ha.updateQueue)?(e={lastEffect:null,stores:null},ha.updateQueue=e,e.lastEffect=t.next=t):null===(r=e.lastEffect)?e.lastEffect=t.next=t:(n=r.next,r.next=t,t.next=n,e.lastEffect=t),t}function Ba(){return za().memoizedState}function Ua(t,e,r,n){var o=Ca();ha.flags|=t,o.memoizedState=Fa(1|e,r,void 0,void 0===n?null:n)}function Ha(t,e,r,n){var o=za();n=void 0===n?null:n;var i=void 0;if(null!==ba){var a=ba.memoizedState;if(i=a.destroy,null!==n&&_a(n,a.deps))return void(o.memoizedState=Fa(e,r,i,n))}ha.flags|=t,o.memoizedState=Fa(1|e,r,i,n)}function Va(t,e){return Ua(8390656,8,t,e)}function $a(t,e){return Ha(2048,8,t,e)}function Wa(t,e){return Ha(4,2,t,e)}function Ya(t,e){return Ha(4,4,t,e)}function Ka(t,e){return"function"==typeof e?(t=t(),e(t),function(){e(null)}):null!=e?(t=t(),e.current=t,function(){e.current=null}):void 0}function Qa(t,e,r){return r=null!=r?r.concat([t]):null,Ha(4,4,Ka.bind(null,e,t),r)}function Xa(){}function qa(t,e){var r=za();e=void 0===e?null:e;var n=r.memoizedState;return null!==n&&null!==e&&_a(e,n[1])?n[0]:(r.memoizedState=[t,e],t)}function Ga(t,e){var r=za();e=void 0===e?null:e;var n=r.memoizedState;return null!==n&&null!==e&&_a(e,n[1])?n[0]:(t=t(),r.memoizedState=[t,e],t)}function Za(t,e,r){return 0==(21&fa)?(t.baseState&&(t.baseState=!1,ys=!0),t.memoizedState=r):(sn(r,e)||(r=he(),ha.lanes|=r,Il|=r,t.baseState=!0),e)}function Ja(t,e){var r=xe;xe=0!==r&&4>r?r:4,t(!0);var n=ma.transition;ma.transition={};try{t(!1),e()}finally{xe=r,ma.transition=n}}function ts(){return za().memoizedState}function es(t,e,r){var n=ed(t);r={lane:n,action:r,hasEagerState:!1,eagerState:null,next:null},ns(t)?os(e,r):null!==(r=Pi(t,e,r,n))&&(rd(r,t,n,td()),is(r,e,n))}function rs(t,e,r){var n=ed(t),o={lane:n,action:r,hasEagerState:!1,eagerState:null,next:null};if(ns(t))os(e,o);else{var i=t.alternate;if(0===t.lanes&&(null===i||0===i.lanes)&&null!==(i=e.lastRenderedReducer))try{var a=e.lastRenderedState,s=i(a,r);if(o.hasEagerState=!0,o.eagerState=s,sn(s,a)){var l=e.interleaved;return null===l?(o.next=o,Mi(e)):(o.next=l.next,l.next=o),void(e.interleaved=o)}}catch(t){}null!==(r=Pi(t,e,o,n))&&(rd(r,t,n,o=td()),is(r,e,n))}}function ns(t){var e=t.alternate;return t===ha||null!==e&&e===ha}function os(t,e){xa=va=!0;var r=t.pending;null===r?e.next=e:(e.next=r.next,r.next=e),t.pending=e}function is(t,e,r){if(0!=(4194240&r)){var n=e.lanes;r|=n&=t.pendingLanes,e.lanes=r,ve(t,r)}}var as={readContext:Ci,useCallback:ka,useContext:ka,useEffect:ka,useImperativeHandle:ka,useInsertionEffect:ka,useLayoutEffect:ka,useMemo:ka,useReducer:ka,useRef:ka,useState:ka,useDebugValue:ka,useDeferredValue:ka,useTransition:ka,useMutableSource:ka,useSyncExternalStore:ka,useId:ka,unstable_isNewReconciler:!1},ss={readContext:Ci,useCallback:function(t,e){return Ca().memoizedState=[t,void 0===e?null:e],t},useContext:Ci,useEffect:Va,useImperativeHandle:function(t,e,r){return r=null!=r?r.concat([t]):null,Ua(4194308,4,Ka.bind(null,e,t),r)},useLayoutEffect:function(t,e){return Ua(4194308,4,t,e)},useInsertionEffect:function(t,e){return Ua(4,2,t,e)},useMemo:function(t,e){var r=Ca();return e=void 0===e?null:e,t=t(),r.memoizedState=[t,e],t},useReducer:function(t,e,r){var n=Ca();return e=void 0!==r?r(e):e,n.memoizedState=n.baseState=e,t={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:t,lastRenderedState:e},n.queue=t,t=t.dispatch=es.bind(null,ha,t),[n.memoizedState,t]},useRef:function(t){return t={current:t},Ca().memoizedState=t},useState:ja,useDebugValue:Xa,useDeferredValue:function(t){return Ca().memoizedState=t},useTransition:function(){var t=ja(!1),e=t[0];return t=Ja.bind(null,t[1]),Ca().memoizedState=t,[e,t]},useMutableSource:function(){},useSyncExternalStore:function(t,e,r){var n=ha,o=Ca();if(ii){if(void 0===r)throw Error(i(407));r=r()}else{if(r=e(),null===Pl)throw Error(i(349));0!=(30&fa)||Na(n,e,r)}o.memoizedState=r;var a={value:r,getSnapshot:e};return o.queue=a,Va(Da.bind(null,n,a,t),[t]),n.flags|=2048,Fa(9,Ra.bind(null,n,a,r,e),void 0,null),r},useId:function(){var t=Ca(),e=Pl.identifierPrefix;if(ii){var r=Zo;e=":"+e+"R"+(r=(Go&~(1<<32-ae(Go)-1)).toString(32)+r),0<(r=ya++)&&(e+="H"+r.toString(32)),e+=":"}else e=":"+e+"r"+(r=wa++).toString(32)+":";return t.memoizedState=e},unstable_isNewReconciler:!1},ls={readContext:Ci,useCallback:qa,useContext:Ci,useEffect:$a,useImperativeHandle:Qa,useInsertionEffect:Wa,useLayoutEffect:Ya,useMemo:Ga,useReducer:Pa,useRef:Ba,useState:function(){return Pa(Ma)},useDebugValue:Xa,useDeferredValue:function(t){return Za(za(),ba.memoizedState,t)},useTransition:function(){return[Pa(Ma)[0],za().memoizedState]},useMutableSource:Ta,useSyncExternalStore:La,useId:ts,unstable_isNewReconciler:!1},ds={readContext:Ci,useCallback:qa,useContext:Ci,useEffect:$a,useImperativeHandle:Qa,useInsertionEffect:Wa,useLayoutEffect:Ya,useMemo:Ga,useReducer:Oa,useRef:Ba,useState:function(){return Oa(Ma)},useDebugValue:Xa,useDeferredValue:function(t){var e=za();return null===ba?e.memoizedState=t:Za(e,ba.memoizedState,t)},useTransition:function(){return[Oa(Ma)[0],za().memoizedState]},useMutableSource:Ta,useSyncExternalStore:La,useId:ts,unstable_isNewReconciler:!1};function cs(t,e){try{var r="",n=e;do{r+=U(n),n=n.return}while(n);var o=r}catch(t){o="\nError generating stack: "+t.message+"\n"+t.stack}return{value:t,source:e,stack:o,digest:null}}function us(t,e,r){return{value:t,source:null,stack:null!=r?r:null,digest:null!=e?e:null}}function ps(t,e){try{console.error(e.value)}catch(t){setTimeout((function(){throw t}))}}var ms="function"==typeof WeakMap?WeakMap:Map;function fs(t,e,r){(r=Ri(-1,r)).tag=3,r.payload={element:null};var n=e.value;return r.callback=function(){$l||($l=!0,Wl=n),ps(0,e)},r}function hs(t,e,r){(r=Ri(-1,r)).tag=3;var n=t.type.getDerivedStateFromError;if("function"==typeof n){var o=e.value;r.payload=function(){return n(o)},r.callback=function(){ps(0,e)}}var i=t.stateNode;return null!==i&&"function"==typeof i.componentDidCatch&&(r.callback=function(){ps(0,e),"function"!=typeof n&&(null===Yl?Yl=new Set([this]):Yl.add(this));var t=e.stack;this.componentDidCatch(e.value,{componentStack:null!==t?t:""})}),r}function bs(t,e,r){var n=t.pingCache;if(null===n){n=t.pingCache=new ms;var o=new Set;n.set(e,o)}else void 0===(o=n.get(e))&&(o=new Set,n.set(e,o));o.has(r)||(o.add(r),t=Ed.bind(null,t,e,r),e.then(t,t))}function gs(t){do{var e;if((e=13===t.tag)&&(e=null===(e=t.memoizedState)||null!==e.dehydrated),e)return t;t=t.return}while(null!==t);return null}function vs(t,e,r,n,o){return 0==(1&t.mode)?(t===e?t.flags|=65536:(t.flags|=128,r.flags|=131072,r.flags&=-52805,1===r.tag&&(null===r.alternate?r.tag=17:((e=Ri(-1,1)).tag=2,Di(r,e,1))),r.lanes|=1),t):(t.flags|=65536,t.lanes=o,t)}var xs=y.ReactCurrentOwner,ys=!1;function ws(t,e,r,n){e.child=null===t?Zi(e,null,r,n):Gi(e,t.child,r,n)}function ks(t,e,r,n,o){r=r.render;var i=e.ref;return Ei(e,o),n=Sa(t,e,r,n,i,o),r=Ea(),null===t||ys?(ii&&r&&ei(e),e.flags|=1,ws(t,e,n,o),e.child):(e.updateQueue=t.updateQueue,e.flags&=-2053,t.lanes&=~o,$s(t,e,o))}function _s(t,e,r,n,o){if(null===t){var i=r.type;return"function"!=typeof i||Ld(i)||void 0!==i.defaultProps||null!==r.compare||void 0!==r.defaultProps?((t=Rd(r.type,null,n,e,e.mode,o)).ref=e.ref,t.return=e,e.child=t):(e.tag=15,e.type=i,Ss(t,e,i,n,o))}if(i=t.child,0==(t.lanes&o)){var a=i.memoizedProps;if((r=null!==(r=r.compare)?r:ln)(a,n)&&t.ref===e.ref)return $s(t,e,o)}return e.flags|=1,(t=Nd(i,n)).ref=e.ref,t.return=e,e.child=t}function Ss(t,e,r,n,o){if(null!==t){var i=t.memoizedProps;if(ln(i,n)&&t.ref===e.ref){if(ys=!1,e.pendingProps=n=i,0==(t.lanes&o))return e.lanes=t.lanes,$s(t,e,o);0!=(131072&t.flags)&&(ys=!0)}}return zs(t,e,r,n,o)}function Es(t,e,r){var n=e.pendingProps,o=n.children,i=null!==t?t.memoizedState:null;if("hidden"===n.mode)if(0==(1&e.mode))e.memoizedState={baseLanes:0,cachePool:null,transitions:null},zo(Nl,Ll),Ll|=r;else{if(0==(1073741824&r))return t=null!==i?i.baseLanes|r:r,e.lanes=e.childLanes=1073741824,e.memoizedState={baseLanes:t,cachePool:null,transitions:null},e.updateQueue=null,zo(Nl,Ll),Ll|=t,null;e.memoizedState={baseLanes:0,cachePool:null,transitions:null},n=null!==i?i.baseLanes:r,zo(Nl,Ll),Ll|=n}else null!==i?(n=i.baseLanes|r,e.memoizedState=null):n=r,zo(Nl,Ll),Ll|=n;return ws(t,e,o,r),e.child}function Cs(t,e){var r=e.ref;(null===t&&null!==r||null!==t&&t.ref!==r)&&(e.flags|=512,e.flags|=2097152)}function zs(t,e,r,n,o){var i=No(r)?To:Po.current;return i=Lo(e,i),Ei(e,o),r=Sa(t,e,r,n,i,o),n=Ea(),null===t||ys?(ii&&n&&ei(e),e.flags|=1,ws(t,e,r,o),e.child):(e.updateQueue=t.updateQueue,e.flags&=-2053,t.lanes&=~o,$s(t,e,o))}function Ms(t,e,r,n,o){if(No(r)){var i=!0;Ao(e)}else i=!1;if(Ei(e,o),null===e.stateNode)Vs(t,e),$i(e,r,n),Yi(e,r,n,o),n=!0;else if(null===t){var a=e.stateNode,s=e.memoizedProps;a.props=s;var l=a.context,d=r.contextType;d="object"==typeof d&&null!==d?Ci(d):Lo(e,d=No(r)?To:Po.current);var c=r.getDerivedStateFromProps,u="function"==typeof c||"function"==typeof a.getSnapshotBeforeUpdate;u||"function"!=typeof a.UNSAFE_componentWillReceiveProps&&"function"!=typeof a.componentWillReceiveProps||(s!==n||l!==d)&&Wi(e,a,n,d),Ti=!1;var p=e.memoizedState;a.state=p,ji(e,n,a,o),l=e.memoizedState,s!==n||p!==l||Oo.current||Ti?("function"==typeof c&&(Ui(e,r,c,n),l=e.memoizedState),(s=Ti||Vi(e,r,s,n,p,l,d))?(u||"function"!=typeof a.UNSAFE_componentWillMount&&"function"!=typeof a.componentWillMount||("function"==typeof a.componentWillMount&&a.componentWillMount(),"function"==typeof a.UNSAFE_componentWillMount&&a.UNSAFE_componentWillMount()),"function"==typeof a.componentDidMount&&(e.flags|=4194308)):("function"==typeof a.componentDidMount&&(e.flags|=4194308),e.memoizedProps=n,e.memoizedState=l),a.props=n,a.state=l,a.context=d,n=s):("function"==typeof a.componentDidMount&&(e.flags|=4194308),n=!1)}else{a=e.stateNode,Ni(t,e),s=e.memoizedProps,d=e.type===e.elementType?s:gi(e.type,s),a.props=d,u=e.pendingProps,p=a.context,l="object"==typeof(l=r.contextType)&&null!==l?Ci(l):Lo(e,l=No(r)?To:Po.current);var m=r.getDerivedStateFromProps;(c="function"==typeof m||"function"==typeof a.getSnapshotBeforeUpdate)||"function"!=typeof a.UNSAFE_componentWillReceiveProps&&"function"!=typeof a.componentWillReceiveProps||(s!==u||p!==l)&&Wi(e,a,n,l),Ti=!1,p=e.memoizedState,a.state=p,ji(e,n,a,o);var f=e.memoizedState;s!==u||p!==f||Oo.current||Ti?("function"==typeof m&&(Ui(e,r,m,n),f=e.memoizedState),(d=Ti||Vi(e,r,d,n,p,f,l)||!1)?(c||"function"!=typeof a.UNSAFE_componentWillUpdate&&"function"!=typeof a.componentWillUpdate||("function"==typeof a.componentWillUpdate&&a.componentWillUpdate(n,f,l),"function"==typeof a.UNSAFE_componentWillUpdate&&a.UNSAFE_componentWillUpdate(n,f,l)),"function"==typeof a.componentDidUpdate&&(e.flags|=4),"function"==typeof a.getSnapshotBeforeUpdate&&(e.flags|=1024)):("function"!=typeof a.componentDidUpdate||s===t.memoizedProps&&p===t.memoizedState||(e.flags|=4),"function"!=typeof a.getSnapshotBeforeUpdate||s===t.memoizedProps&&p===t.memoizedState||(e.flags|=1024),e.memoizedProps=n,e.memoizedState=f),a.props=n,a.state=f,a.context=l,n=d):("function"!=typeof a.componentDidUpdate||s===t.memoizedProps&&p===t.memoizedState||(e.flags|=4),"function"!=typeof a.getSnapshotBeforeUpdate||s===t.memoizedProps&&p===t.memoizedState||(e.flags|=1024),n=!1)}return Ps(t,e,r,n,i,o)}function Ps(t,e,r,n,o,i){Cs(t,e);var a=0!=(128&e.flags);if(!n&&!a)return o&&jo(e,r,!1),$s(t,e,i);n=e.stateNode,xs.current=e;var s=a&&"function"!=typeof r.getDerivedStateFromError?null:n.render();return e.flags|=1,null!==t&&a?(e.child=Gi(e,t.child,null,i),e.child=Gi(e,null,s,i)):ws(t,e,s,i),e.memoizedState=n.state,o&&jo(e,r,!0),e.child}function Os(t){var e=t.stateNode;e.pendingContext?Do(0,e.pendingContext,e.pendingContext!==e.context):e.context&&Do(0,e.context,!1),oa(t,e.containerInfo)}function Ts(t,e,r,n,o){return fi(),hi(o),e.flags|=256,ws(t,e,r,n),e.child}var Ls,Ns,Rs,Ds={dehydrated:null,treeContext:null,retryLane:0};function Is(t){return{baseLanes:t,cachePool:null,transitions:null}}function As(t,e,r){var n,o=e.pendingProps,a=la.current,s=!1,l=0!=(128&e.flags);if((n=l)||(n=(null===t||null!==t.memoizedState)&&0!=(2&a)),n?(s=!0,e.flags&=-129):null!==t&&null===t.memoizedState||(a|=1),zo(la,1&a),null===t)return ci(e),null!==(t=e.memoizedState)&&null!==(t=t.dehydrated)?(0==(1&e.mode)?e.lanes=1:"$!"===t.data?e.lanes=8:e.lanes=1073741824,null):(l=o.children,t=o.fallback,s?(o=e.mode,s=e.child,l={mode:"hidden",children:l},0==(1&o)&&null!==s?(s.childLanes=0,s.pendingProps=l):s=Id(l,o,0,null),t=Dd(t,o,r,null),s.return=e,t.return=e,s.sibling=t,e.child=s,e.child.memoizedState=Is(r),e.memoizedState=Ds,t):js(e,l));if(null!==(a=t.memoizedState)&&null!==(n=a.dehydrated))return function(t,e,r,n,o,a,s){if(r)return 256&e.flags?(e.flags&=-257,Fs(t,e,s,n=us(Error(i(422))))):null!==e.memoizedState?(e.child=t.child,e.flags|=128,null):(a=n.fallback,o=e.mode,n=Id({mode:"visible",children:n.children},o,0,null),(a=Dd(a,o,s,null)).flags|=2,n.return=e,a.return=e,n.sibling=a,e.child=n,0!=(1&e.mode)&&Gi(e,t.child,null,s),e.child.memoizedState=Is(s),e.memoizedState=Ds,a);if(0==(1&e.mode))return Fs(t,e,s,null);if("$!"===o.data){if(n=o.nextSibling&&o.nextSibling.dataset)var l=n.dgst;return n=l,Fs(t,e,s,n=us(a=Error(i(419)),n,void 0))}if(l=0!=(s&t.childLanes),ys||l){if(null!==(n=Pl)){switch(s&-s){case 4:o=2;break;case 16:o=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:o=32;break;case 536870912:o=268435456;break;default:o=0}0!==(o=0!=(o&(n.suspendedLanes|s))?0:o)&&o!==a.retryLane&&(a.retryLane=o,Oi(t,o),rd(n,t,o,-1))}return hd(),Fs(t,e,s,n=us(Error(i(421))))}return"$?"===o.data?(e.flags|=128,e.child=t.child,e=zd.bind(null,t),o._reactRetry=e,null):(t=a.treeContext,oi=co(o.nextSibling),ni=e,ii=!0,ai=null,null!==t&&(Qo[Xo++]=Go,Qo[Xo++]=Zo,Qo[Xo++]=qo,Go=t.id,Zo=t.overflow,qo=e),(e=js(e,n.children)).flags|=4096,e)}(t,e,l,o,n,a,r);if(s){s=o.fallback,l=e.mode,n=(a=t.child).sibling;var d={mode:"hidden",children:o.children};return 0==(1&l)&&e.child!==a?((o=e.child).childLanes=0,o.pendingProps=d,e.deletions=null):(o=Nd(a,d)).subtreeFlags=14680064&a.subtreeFlags,null!==n?s=Nd(n,s):(s=Dd(s,l,r,null)).flags|=2,s.return=e,o.return=e,o.sibling=s,e.child=o,o=s,s=e.child,l=null===(l=t.child.memoizedState)?Is(r):{baseLanes:l.baseLanes|r,cachePool:null,transitions:l.transitions},s.memoizedState=l,s.childLanes=t.childLanes&~r,e.memoizedState=Ds,o}return t=(s=t.child).sibling,o=Nd(s,{mode:"visible",children:o.children}),0==(1&e.mode)&&(o.lanes=r),o.return=e,o.sibling=null,null!==t&&(null===(r=e.deletions)?(e.deletions=[t],e.flags|=16):r.push(t)),e.child=o,e.memoizedState=null,o}function js(t,e){return(e=Id({mode:"visible",children:e},t.mode,0,null)).return=t,t.child=e}function Fs(t,e,r,n){return null!==n&&hi(n),Gi(e,t.child,null,r),(t=js(e,e.pendingProps.children)).flags|=2,e.memoizedState=null,t}function Bs(t,e,r){t.lanes|=e;var n=t.alternate;null!==n&&(n.lanes|=e),Si(t.return,e,r)}function Us(t,e,r,n,o){var i=t.memoizedState;null===i?t.memoizedState={isBackwards:e,rendering:null,renderingStartTime:0,last:n,tail:r,tailMode:o}:(i.isBackwards=e,i.rendering=null,i.renderingStartTime=0,i.last=n,i.tail=r,i.tailMode=o)}function Hs(t,e,r){var n=e.pendingProps,o=n.revealOrder,i=n.tail;if(ws(t,e,n.children,r),0!=(2&(n=la.current)))n=1&n|2,e.flags|=128;else{if(null!==t&&0!=(128&t.flags))t:for(t=e.child;null!==t;){if(13===t.tag)null!==t.memoizedState&&Bs(t,r,e);else if(19===t.tag)Bs(t,r,e);else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break t;for(;null===t.sibling;){if(null===t.return||t.return===e)break t;t=t.return}t.sibling.return=t.return,t=t.sibling}n&=1}if(zo(la,n),0==(1&e.mode))e.memoizedState=null;else switch(o){case"forwards":for(r=e.child,o=null;null!==r;)null!==(t=r.alternate)&&null===da(t)&&(o=r),r=r.sibling;null===(r=o)?(o=e.child,e.child=null):(o=r.sibling,r.sibling=null),Us(e,!1,o,r,i);break;case"backwards":for(r=null,o=e.child,e.child=null;null!==o;){if(null!==(t=o.alternate)&&null===da(t)){e.child=o;break}t=o.sibling,o.sibling=r,r=o,o=t}Us(e,!0,r,null,i);break;case"together":Us(e,!1,null,null,void 0);break;default:e.memoizedState=null}return e.child}function Vs(t,e){0==(1&e.mode)&&null!==t&&(t.alternate=null,e.alternate=null,e.flags|=2)}function $s(t,e,r){if(null!==t&&(e.dependencies=t.dependencies),Il|=e.lanes,0==(r&e.childLanes))return null;if(null!==t&&e.child!==t.child)throw Error(i(153));if(null!==e.child){for(r=Nd(t=e.child,t.pendingProps),e.child=r,r.return=e;null!==t.sibling;)t=t.sibling,(r=r.sibling=Nd(t,t.pendingProps)).return=e;r.sibling=null}return e.child}function Ws(t,e){if(!ii)switch(t.tailMode){case"hidden":e=t.tail;for(var r=null;null!==e;)null!==e.alternate&&(r=e),e=e.sibling;null===r?t.tail=null:r.sibling=null;break;case"collapsed":r=t.tail;for(var n=null;null!==r;)null!==r.alternate&&(n=r),r=r.sibling;null===n?e||null===t.tail?t.tail=null:t.tail.sibling=null:n.sibling=null}}function Ys(t){var e=null!==t.alternate&&t.alternate.child===t.child,r=0,n=0;if(e)for(var o=t.child;null!==o;)r|=o.lanes|o.childLanes,n|=14680064&o.subtreeFlags,n|=14680064&o.flags,o.return=t,o=o.sibling;else for(o=t.child;null!==o;)r|=o.lanes|o.childLanes,n|=o.subtreeFlags,n|=o.flags,o.return=t,o=o.sibling;return t.subtreeFlags|=n,t.childLanes=r,e}function Ks(t,e,r){var n=e.pendingProps;switch(ri(e),e.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return Ys(e),null;case 1:case 17:return No(e.type)&&Ro(),Ys(e),null;case 3:return n=e.stateNode,ia(),Co(Oo),Co(Po),ua(),n.pendingContext&&(n.context=n.pendingContext,n.pendingContext=null),null!==t&&null!==t.child||(pi(e)?e.flags|=4:null===t||t.memoizedState.isDehydrated&&0==(256&e.flags)||(e.flags|=1024,null!==ai&&(ad(ai),ai=null))),Ys(e),null;case 5:sa(e);var o=na(ra.current);if(r=e.type,null!==t&&null!=e.stateNode)Ns(t,e,r,n),t.ref!==e.ref&&(e.flags|=512,e.flags|=2097152);else{if(!n){if(null===e.stateNode)throw Error(i(166));return Ys(e),null}if(t=na(ta.current),pi(e)){n=e.stateNode,r=e.type;var a=e.memoizedProps;switch(n[mo]=e,n[fo]=a,t=0!=(1&e.mode),r){case"dialog":Fn("cancel",n),Fn("close",n);break;case"iframe":case"object":case"embed":Fn("load",n);break;case"video":case"audio":for(o=0;o<Dn.length;o++)Fn(Dn[o],n);break;case"source":Fn("error",n);break;case"img":case"image":case"link":Fn("error",n),Fn("load",n);break;case"details":Fn("toggle",n);break;case"input":q(n,a),Fn("invalid",n);break;case"select":n._wrapperState={wasMultiple:!!a.multiple},Fn("invalid",n);break;case"textarea":ot(n,a),Fn("invalid",n)}for(var l in vt(r,a),o=null,a)if(a.hasOwnProperty(l)){var d=a[l];"children"===l?"string"==typeof d?n.textContent!==d&&(!0!==a.suppressHydrationWarning&&Zn(n.textContent,d,t),o=["children",d]):"number"==typeof d&&n.textContent!==""+d&&(!0!==a.suppressHydrationWarning&&Zn(n.textContent,d,t),o=["children",""+d]):s.hasOwnProperty(l)&&null!=d&&"onScroll"===l&&Fn("scroll",n)}switch(r){case"input":Y(n),J(n,a,!0);break;case"textarea":Y(n),at(n);break;case"select":case"option":break;default:"function"==typeof a.onClick&&(n.onclick=Jn)}n=o,e.updateQueue=n,null!==n&&(e.flags|=4)}else{l=9===o.nodeType?o:o.ownerDocument,"http://www.w3.org/1999/xhtml"===t&&(t=st(r)),"http://www.w3.org/1999/xhtml"===t?"script"===r?((t=l.createElement("div")).innerHTML="<script><\/script>",t=t.removeChild(t.firstChild)):"string"==typeof n.is?t=l.createElement(r,{is:n.is}):(t=l.createElement(r),"select"===r&&(l=t,n.multiple?l.multiple=!0:n.size&&(l.size=n.size))):t=l.createElementNS(t,r),t[mo]=e,t[fo]=n,Ls(t,e),e.stateNode=t;t:{switch(l=xt(r,n),r){case"dialog":Fn("cancel",t),Fn("close",t),o=n;break;case"iframe":case"object":case"embed":Fn("load",t),o=n;break;case"video":case"audio":for(o=0;o<Dn.length;o++)Fn(Dn[o],t);o=n;break;case"source":Fn("error",t),o=n;break;case"img":case"image":case"link":Fn("error",t),Fn("load",t),o=n;break;case"details":Fn("toggle",t),o=n;break;case"input":q(t,n),o=X(t,n),Fn("invalid",t);break;case"option":default:o=n;break;case"select":t._wrapperState={wasMultiple:!!n.multiple},o=A({},n,{value:void 0}),Fn("invalid",t);break;case"textarea":ot(t,n),o=nt(t,n),Fn("invalid",t)}for(a in vt(r,o),d=o)if(d.hasOwnProperty(a)){var c=d[a];"style"===a?bt(t,c):"dangerouslySetInnerHTML"===a?null!=(c=c?c.__html:void 0)&&ut(t,c):"children"===a?"string"==typeof c?("textarea"!==r||""!==c)&&pt(t,c):"number"==typeof c&&pt(t,""+c):"suppressContentEditableWarning"!==a&&"suppressHydrationWarning"!==a&&"autoFocus"!==a&&(s.hasOwnProperty(a)?null!=c&&"onScroll"===a&&Fn("scroll",t):null!=c&&x(t,a,c,l))}switch(r){case"input":Y(t),J(t,n,!1);break;case"textarea":Y(t),at(t);break;case"option":null!=n.value&&t.setAttribute("value",""+$(n.value));break;case"select":t.multiple=!!n.multiple,null!=(a=n.value)?rt(t,!!n.multiple,a,!1):null!=n.defaultValue&&rt(t,!!n.multiple,n.defaultValue,!0);break;default:"function"==typeof o.onClick&&(t.onclick=Jn)}switch(r){case"button":case"input":case"select":case"textarea":n=!!n.autoFocus;break t;case"img":n=!0;break t;default:n=!1}}n&&(e.flags|=4)}null!==e.ref&&(e.flags|=512,e.flags|=2097152)}return Ys(e),null;case 6:if(t&&null!=e.stateNode)Rs(0,e,t.memoizedProps,n);else{if("string"!=typeof n&&null===e.stateNode)throw Error(i(166));if(r=na(ra.current),na(ta.current),pi(e)){if(n=e.stateNode,r=e.memoizedProps,n[mo]=e,(a=n.nodeValue!==r)&&null!==(t=ni))switch(t.tag){case 3:Zn(n.nodeValue,r,0!=(1&t.mode));break;case 5:!0!==t.memoizedProps.suppressHydrationWarning&&Zn(n.nodeValue,r,0!=(1&t.mode))}a&&(e.flags|=4)}else(n=(9===r.nodeType?r:r.ownerDocument).createTextNode(n))[mo]=e,e.stateNode=n}return Ys(e),null;case 13:if(Co(la),n=e.memoizedState,null===t||null!==t.memoizedState&&null!==t.memoizedState.dehydrated){if(ii&&null!==oi&&0!=(1&e.mode)&&0==(128&e.flags))mi(),fi(),e.flags|=98560,a=!1;else if(a=pi(e),null!==n&&null!==n.dehydrated){if(null===t){if(!a)throw Error(i(318));if(!(a=null!==(a=e.memoizedState)?a.dehydrated:null))throw Error(i(317));a[mo]=e}else fi(),0==(128&e.flags)&&(e.memoizedState=null),e.flags|=4;Ys(e),a=!1}else null!==ai&&(ad(ai),ai=null),a=!0;if(!a)return 65536&e.flags?e:null}return 0!=(128&e.flags)?(e.lanes=r,e):((n=null!==n)!=(null!==t&&null!==t.memoizedState)&&n&&(e.child.flags|=8192,0!=(1&e.mode)&&(null===t||0!=(1&la.current)?0===Rl&&(Rl=3):hd())),null!==e.updateQueue&&(e.flags|=4),Ys(e),null);case 4:return ia(),null===t&&Hn(e.stateNode.containerInfo),Ys(e),null;case 10:return _i(e.type._context),Ys(e),null;case 19:if(Co(la),null===(a=e.memoizedState))return Ys(e),null;if(n=0!=(128&e.flags),null===(l=a.rendering))if(n)Ws(a,!1);else{if(0!==Rl||null!==t&&0!=(128&t.flags))for(t=e.child;null!==t;){if(null!==(l=da(t))){for(e.flags|=128,Ws(a,!1),null!==(n=l.updateQueue)&&(e.updateQueue=n,e.flags|=4),e.subtreeFlags=0,n=r,r=e.child;null!==r;)t=n,(a=r).flags&=14680066,null===(l=a.alternate)?(a.childLanes=0,a.lanes=t,a.child=null,a.subtreeFlags=0,a.memoizedProps=null,a.memoizedState=null,a.updateQueue=null,a.dependencies=null,a.stateNode=null):(a.childLanes=l.childLanes,a.lanes=l.lanes,a.child=l.child,a.subtreeFlags=0,a.deletions=null,a.memoizedProps=l.memoizedProps,a.memoizedState=l.memoizedState,a.updateQueue=l.updateQueue,a.type=l.type,t=l.dependencies,a.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext}),r=r.sibling;return zo(la,1&la.current|2),e.child}t=t.sibling}null!==a.tail&&Gt()>Hl&&(e.flags|=128,n=!0,Ws(a,!1),e.lanes=4194304)}else{if(!n)if(null!==(t=da(l))){if(e.flags|=128,n=!0,null!==(r=t.updateQueue)&&(e.updateQueue=r,e.flags|=4),Ws(a,!0),null===a.tail&&"hidden"===a.tailMode&&!l.alternate&&!ii)return Ys(e),null}else 2*Gt()-a.renderingStartTime>Hl&&1073741824!==r&&(e.flags|=128,n=!0,Ws(a,!1),e.lanes=4194304);a.isBackwards?(l.sibling=e.child,e.child=l):(null!==(r=a.last)?r.sibling=l:e.child=l,a.last=l)}return null!==a.tail?(e=a.tail,a.rendering=e,a.tail=e.sibling,a.renderingStartTime=Gt(),e.sibling=null,r=la.current,zo(la,n?1&r|2:1&r),e):(Ys(e),null);case 22:case 23:return ud(),n=null!==e.memoizedState,null!==t&&null!==t.memoizedState!==n&&(e.flags|=8192),n&&0!=(1&e.mode)?0!=(1073741824&Ll)&&(Ys(e),6&e.subtreeFlags&&(e.flags|=8192)):Ys(e),null;case 24:case 25:return null}throw Error(i(156,e.tag))}function Qs(t,e){switch(ri(e),e.tag){case 1:return No(e.type)&&Ro(),65536&(t=e.flags)?(e.flags=-65537&t|128,e):null;case 3:return ia(),Co(Oo),Co(Po),ua(),0!=(65536&(t=e.flags))&&0==(128&t)?(e.flags=-65537&t|128,e):null;case 5:return sa(e),null;case 13:if(Co(la),null!==(t=e.memoizedState)&&null!==t.dehydrated){if(null===e.alternate)throw Error(i(340));fi()}return 65536&(t=e.flags)?(e.flags=-65537&t|128,e):null;case 19:return Co(la),null;case 4:return ia(),null;case 10:return _i(e.type._context),null;case 22:case 23:return ud(),null;default:return null}}Ls=function(t,e){for(var r=e.child;null!==r;){if(5===r.tag||6===r.tag)t.appendChild(r.stateNode);else if(4!==r.tag&&null!==r.child){r.child.return=r,r=r.child;continue}if(r===e)break;for(;null===r.sibling;){if(null===r.return||r.return===e)return;r=r.return}r.sibling.return=r.return,r=r.sibling}},Ns=function(t,e,r,n){var o=t.memoizedProps;if(o!==n){t=e.stateNode,na(ta.current);var i,a=null;switch(r){case"input":o=X(t,o),n=X(t,n),a=[];break;case"select":o=A({},o,{value:void 0}),n=A({},n,{value:void 0}),a=[];break;case"textarea":o=nt(t,o),n=nt(t,n),a=[];break;default:"function"!=typeof o.onClick&&"function"==typeof n.onClick&&(t.onclick=Jn)}for(c in vt(r,n),r=null,o)if(!n.hasOwnProperty(c)&&o.hasOwnProperty(c)&&null!=o[c])if("style"===c){var l=o[c];for(i in l)l.hasOwnProperty(i)&&(r||(r={}),r[i]="")}else"dangerouslySetInnerHTML"!==c&&"children"!==c&&"suppressContentEditableWarning"!==c&&"suppressHydrationWarning"!==c&&"autoFocus"!==c&&(s.hasOwnProperty(c)?a||(a=[]):(a=a||[]).push(c,null));for(c in n){var d=n[c];if(l=null!=o?o[c]:void 0,n.hasOwnProperty(c)&&d!==l&&(null!=d||null!=l))if("style"===c)if(l){for(i in l)!l.hasOwnProperty(i)||d&&d.hasOwnProperty(i)||(r||(r={}),r[i]="");for(i in d)d.hasOwnProperty(i)&&l[i]!==d[i]&&(r||(r={}),r[i]=d[i])}else r||(a||(a=[]),a.push(c,r)),r=d;else"dangerouslySetInnerHTML"===c?(d=d?d.__html:void 0,l=l?l.__html:void 0,null!=d&&l!==d&&(a=a||[]).push(c,d)):"children"===c?"string"!=typeof d&&"number"!=typeof d||(a=a||[]).push(c,""+d):"suppressContentEditableWarning"!==c&&"suppressHydrationWarning"!==c&&(s.hasOwnProperty(c)?(null!=d&&"onScroll"===c&&Fn("scroll",t),a||l===d||(a=[])):(a=a||[]).push(c,d))}r&&(a=a||[]).push("style",r);var c=a;(e.updateQueue=c)&&(e.flags|=4)}},Rs=function(t,e,r,n){r!==n&&(e.flags|=4)};var Xs=!1,qs=!1,Gs="function"==typeof WeakSet?WeakSet:Set,Zs=null;function Js(t,e){var r=t.ref;if(null!==r)if("function"==typeof r)try{r(null)}catch(r){Sd(t,e,r)}else r.current=null}function tl(t,e,r){try{r()}catch(r){Sd(t,e,r)}}var el=!1;function rl(t,e,r){var n=e.updateQueue;if(null!==(n=null!==n?n.lastEffect:null)){var o=n=n.next;do{if((o.tag&t)===t){var i=o.destroy;o.destroy=void 0,void 0!==i&&tl(e,r,i)}o=o.next}while(o!==n)}}function nl(t,e){if(null!==(e=null!==(e=e.updateQueue)?e.lastEffect:null)){var r=e=e.next;do{if((r.tag&t)===t){var n=r.create;r.destroy=n()}r=r.next}while(r!==e)}}function ol(t){var e=t.ref;if(null!==e){var r=t.stateNode;t.tag,t=r,"function"==typeof e?e(t):e.current=t}}function il(t){var e=t.alternate;null!==e&&(t.alternate=null,il(e)),t.child=null,t.deletions=null,t.sibling=null,5===t.tag&&null!==(e=t.stateNode)&&(delete e[mo],delete e[fo],delete e[bo],delete e[go],delete e[vo]),t.stateNode=null,t.return=null,t.dependencies=null,t.memoizedProps=null,t.memoizedState=null,t.pendingProps=null,t.stateNode=null,t.updateQueue=null}function al(t){return 5===t.tag||3===t.tag||4===t.tag}function sl(t){t:for(;;){for(;null===t.sibling;){if(null===t.return||al(t.return))return null;t=t.return}for(t.sibling.return=t.return,t=t.sibling;5!==t.tag&&6!==t.tag&&18!==t.tag;){if(2&t.flags)continue t;if(null===t.child||4===t.tag)continue t;t.child.return=t,t=t.child}if(!(2&t.flags))return t.stateNode}}function ll(t,e,r){var n=t.tag;if(5===n||6===n)t=t.stateNode,e?8===r.nodeType?r.parentNode.insertBefore(t,e):r.insertBefore(t,e):(8===r.nodeType?(e=r.parentNode).insertBefore(t,r):(e=r).appendChild(t),null!=(r=r._reactRootContainer)||null!==e.onclick||(e.onclick=Jn));else if(4!==n&&null!==(t=t.child))for(ll(t,e,r),t=t.sibling;null!==t;)ll(t,e,r),t=t.sibling}function dl(t,e,r){var n=t.tag;if(5===n||6===n)t=t.stateNode,e?r.insertBefore(t,e):r.appendChild(t);else if(4!==n&&null!==(t=t.child))for(dl(t,e,r),t=t.sibling;null!==t;)dl(t,e,r),t=t.sibling}var cl=null,ul=!1;function pl(t,e,r){for(r=r.child;null!==r;)ml(t,e,r),r=r.sibling}function ml(t,e,r){if(ie&&"function"==typeof ie.onCommitFiberUnmount)try{ie.onCommitFiberUnmount(oe,r)}catch(t){}switch(r.tag){case 5:qs||Js(r,e);case 6:var n=cl,o=ul;cl=null,pl(t,e,r),ul=o,null!==(cl=n)&&(ul?(t=cl,r=r.stateNode,8===t.nodeType?t.parentNode.removeChild(r):t.removeChild(r)):cl.removeChild(r.stateNode));break;case 18:null!==cl&&(ul?(t=cl,r=r.stateNode,8===t.nodeType?lo(t.parentNode,r):1===t.nodeType&&lo(t,r),He(t)):lo(cl,r.stateNode));break;case 4:n=cl,o=ul,cl=r.stateNode.containerInfo,ul=!0,pl(t,e,r),cl=n,ul=o;break;case 0:case 11:case 14:case 15:if(!qs&&null!==(n=r.updateQueue)&&null!==(n=n.lastEffect)){o=n=n.next;do{var i=o,a=i.destroy;i=i.tag,void 0!==a&&(0!=(2&i)||0!=(4&i))&&tl(r,e,a),o=o.next}while(o!==n)}pl(t,e,r);break;case 1:if(!qs&&(Js(r,e),"function"==typeof(n=r.stateNode).componentWillUnmount))try{n.props=r.memoizedProps,n.state=r.memoizedState,n.componentWillUnmount()}catch(t){Sd(r,e,t)}pl(t,e,r);break;case 21:pl(t,e,r);break;case 22:1&r.mode?(qs=(n=qs)||null!==r.memoizedState,pl(t,e,r),qs=n):pl(t,e,r);break;default:pl(t,e,r)}}function fl(t){var e=t.updateQueue;if(null!==e){t.updateQueue=null;var r=t.stateNode;null===r&&(r=t.stateNode=new Gs),e.forEach((function(e){var n=Md.bind(null,t,e);r.has(e)||(r.add(e),e.then(n,n))}))}}function hl(t,e){var r=e.deletions;if(null!==r)for(var n=0;n<r.length;n++){var o=r[n];try{var a=t,s=e,l=s;t:for(;null!==l;){switch(l.tag){case 5:cl=l.stateNode,ul=!1;break t;case 3:case 4:cl=l.stateNode.containerInfo,ul=!0;break t}l=l.return}if(null===cl)throw Error(i(160));ml(a,s,o),cl=null,ul=!1;var d=o.alternate;null!==d&&(d.return=null),o.return=null}catch(t){Sd(o,e,t)}}if(12854&e.subtreeFlags)for(e=e.child;null!==e;)bl(e,t),e=e.sibling}function bl(t,e){var r=t.alternate,n=t.flags;switch(t.tag){case 0:case 11:case 14:case 15:if(hl(e,t),gl(t),4&n){try{rl(3,t,t.return),nl(3,t)}catch(e){Sd(t,t.return,e)}try{rl(5,t,t.return)}catch(e){Sd(t,t.return,e)}}break;case 1:hl(e,t),gl(t),512&n&&null!==r&&Js(r,r.return);break;case 5:if(hl(e,t),gl(t),512&n&&null!==r&&Js(r,r.return),32&t.flags){var o=t.stateNode;try{pt(o,"")}catch(e){Sd(t,t.return,e)}}if(4&n&&null!=(o=t.stateNode)){var a=t.memoizedProps,s=null!==r?r.memoizedProps:a,l=t.type,d=t.updateQueue;if(t.updateQueue=null,null!==d)try{"input"===l&&"radio"===a.type&&null!=a.name&&G(o,a),xt(l,s);var c=xt(l,a);for(s=0;s<d.length;s+=2){var u=d[s],p=d[s+1];"style"===u?bt(o,p):"dangerouslySetInnerHTML"===u?ut(o,p):"children"===u?pt(o,p):x(o,u,p,c)}switch(l){case"input":Z(o,a);break;case"textarea":it(o,a);break;case"select":var m=o._wrapperState.wasMultiple;o._wrapperState.wasMultiple=!!a.multiple;var f=a.value;null!=f?rt(o,!!a.multiple,f,!1):m!==!!a.multiple&&(null!=a.defaultValue?rt(o,!!a.multiple,a.defaultValue,!0):rt(o,!!a.multiple,a.multiple?[]:"",!1))}o[fo]=a}catch(e){Sd(t,t.return,e)}}break;case 6:if(hl(e,t),gl(t),4&n){if(null===t.stateNode)throw Error(i(162));o=t.stateNode,a=t.memoizedProps;try{o.nodeValue=a}catch(e){Sd(t,t.return,e)}}break;case 3:if(hl(e,t),gl(t),4&n&&null!==r&&r.memoizedState.isDehydrated)try{He(e.containerInfo)}catch(e){Sd(t,t.return,e)}break;case 4:default:hl(e,t),gl(t);break;case 13:hl(e,t),gl(t),8192&(o=t.child).flags&&(a=null!==o.memoizedState,o.stateNode.isHidden=a,!a||null!==o.alternate&&null!==o.alternate.memoizedState||(Ul=Gt())),4&n&&fl(t);break;case 22:if(u=null!==r&&null!==r.memoizedState,1&t.mode?(qs=(c=qs)||u,hl(e,t),qs=c):hl(e,t),gl(t),8192&n){if(c=null!==t.memoizedState,(t.stateNode.isHidden=c)&&!u&&0!=(1&t.mode))for(Zs=t,u=t.child;null!==u;){for(p=Zs=u;null!==Zs;){switch(f=(m=Zs).child,m.tag){case 0:case 11:case 14:case 15:rl(4,m,m.return);break;case 1:Js(m,m.return);var h=m.stateNode;if("function"==typeof h.componentWillUnmount){n=m,r=m.return;try{e=n,h.props=e.memoizedProps,h.state=e.memoizedState,h.componentWillUnmount()}catch(t){Sd(n,r,t)}}break;case 5:Js(m,m.return);break;case 22:if(null!==m.memoizedState){wl(p);continue}}null!==f?(f.return=m,Zs=f):wl(p)}u=u.sibling}t:for(u=null,p=t;;){if(5===p.tag){if(null===u){u=p;try{o=p.stateNode,c?"function"==typeof(a=o.style).setProperty?a.setProperty("display","none","important"):a.display="none":(l=p.stateNode,s=null!=(d=p.memoizedProps.style)&&d.hasOwnProperty("display")?d.display:null,l.style.display=ht("display",s))}catch(e){Sd(t,t.return,e)}}}else if(6===p.tag){if(null===u)try{p.stateNode.nodeValue=c?"":p.memoizedProps}catch(e){Sd(t,t.return,e)}}else if((22!==p.tag&&23!==p.tag||null===p.memoizedState||p===t)&&null!==p.child){p.child.return=p,p=p.child;continue}if(p===t)break t;for(;null===p.sibling;){if(null===p.return||p.return===t)break t;u===p&&(u=null),p=p.return}u===p&&(u=null),p.sibling.return=p.return,p=p.sibling}}break;case 19:hl(e,t),gl(t),4&n&&fl(t);case 21:}}function gl(t){var e=t.flags;if(2&e){try{t:{for(var r=t.return;null!==r;){if(al(r)){var n=r;break t}r=r.return}throw Error(i(160))}switch(n.tag){case 5:var o=n.stateNode;32&n.flags&&(pt(o,""),n.flags&=-33),dl(t,sl(t),o);break;case 3:case 4:var a=n.stateNode.containerInfo;ll(t,sl(t),a);break;default:throw Error(i(161))}}catch(e){Sd(t,t.return,e)}t.flags&=-3}4096&e&&(t.flags&=-4097)}function vl(t,e,r){Zs=t,xl(t,e,r)}function xl(t,e,r){for(var n=0!=(1&t.mode);null!==Zs;){var o=Zs,i=o.child;if(22===o.tag&&n){var a=null!==o.memoizedState||Xs;if(!a){var s=o.alternate,l=null!==s&&null!==s.memoizedState||qs;s=Xs;var d=qs;if(Xs=a,(qs=l)&&!d)for(Zs=o;null!==Zs;)l=(a=Zs).child,22===a.tag&&null!==a.memoizedState?kl(o):null!==l?(l.return=a,Zs=l):kl(o);for(;null!==i;)Zs=i,xl(i,e,r),i=i.sibling;Zs=o,Xs=s,qs=d}yl(t)}else 0!=(8772&o.subtreeFlags)&&null!==i?(i.return=o,Zs=i):yl(t)}}function yl(t){for(;null!==Zs;){var e=Zs;if(0!=(8772&e.flags)){var r=e.alternate;try{if(0!=(8772&e.flags))switch(e.tag){case 0:case 11:case 15:qs||nl(5,e);break;case 1:var n=e.stateNode;if(4&e.flags&&!qs)if(null===r)n.componentDidMount();else{var o=e.elementType===e.type?r.memoizedProps:gi(e.type,r.memoizedProps);n.componentDidUpdate(o,r.memoizedState,n.__reactInternalSnapshotBeforeUpdate)}var a=e.updateQueue;null!==a&&Fi(e,a,n);break;case 3:var s=e.updateQueue;if(null!==s){if(r=null,null!==e.child)switch(e.child.tag){case 5:case 1:r=e.child.stateNode}Fi(e,s,r)}break;case 5:var l=e.stateNode;if(null===r&&4&e.flags){r=l;var d=e.memoizedProps;switch(e.type){case"button":case"input":case"select":case"textarea":d.autoFocus&&r.focus();break;case"img":d.src&&(r.src=d.src)}}break;case 6:case 4:case 12:case 19:case 17:case 21:case 22:case 23:case 25:break;case 13:if(null===e.memoizedState){var c=e.alternate;if(null!==c){var u=c.memoizedState;if(null!==u){var p=u.dehydrated;null!==p&&He(p)}}}break;default:throw Error(i(163))}qs||512&e.flags&&ol(e)}catch(t){Sd(e,e.return,t)}}if(e===t){Zs=null;break}if(null!==(r=e.sibling)){r.return=e.return,Zs=r;break}Zs=e.return}}function wl(t){for(;null!==Zs;){var e=Zs;if(e===t){Zs=null;break}var r=e.sibling;if(null!==r){r.return=e.return,Zs=r;break}Zs=e.return}}function kl(t){for(;null!==Zs;){var e=Zs;try{switch(e.tag){case 0:case 11:case 15:var r=e.return;try{nl(4,e)}catch(t){Sd(e,r,t)}break;case 1:var n=e.stateNode;if("function"==typeof n.componentDidMount){var o=e.return;try{n.componentDidMount()}catch(t){Sd(e,o,t)}}var i=e.return;try{ol(e)}catch(t){Sd(e,i,t)}break;case 5:var a=e.return;try{ol(e)}catch(t){Sd(e,a,t)}}}catch(t){Sd(e,e.return,t)}if(e===t){Zs=null;break}var s=e.sibling;if(null!==s){s.return=e.return,Zs=s;break}Zs=e.return}}var _l,Sl=Math.ceil,El=y.ReactCurrentDispatcher,Cl=y.ReactCurrentOwner,zl=y.ReactCurrentBatchConfig,Ml=0,Pl=null,Ol=null,Tl=0,Ll=0,Nl=Eo(0),Rl=0,Dl=null,Il=0,Al=0,jl=0,Fl=null,Bl=null,Ul=0,Hl=1/0,Vl=null,$l=!1,Wl=null,Yl=null,Kl=!1,Ql=null,Xl=0,ql=0,Gl=null,Zl=-1,Jl=0;function td(){return 0!=(6&Ml)?Gt():-1!==Zl?Zl:Zl=Gt()}function ed(t){return 0==(1&t.mode)?1:0!=(2&Ml)&&0!==Tl?Tl&-Tl:null!==bi.transition?(0===Jl&&(Jl=he()),Jl):0!==(t=xe)?t:t=void 0===(t=window.event)?16:qe(t.type)}function rd(t,e,r,n){if(50<ql)throw ql=0,Gl=null,Error(i(185));ge(t,r,n),0!=(2&Ml)&&t===Pl||(t===Pl&&(0==(2&Ml)&&(Al|=r),4===Rl&&sd(t,Tl)),nd(t,n),1===r&&0===Ml&&0==(1&e.mode)&&(Hl=Gt()+500,Bo&&Vo()))}function nd(t,e){var r=t.callbackNode;!function(t,e){for(var r=t.suspendedLanes,n=t.pingedLanes,o=t.expirationTimes,i=t.pendingLanes;0<i;){var a=31-ae(i),s=1<<a,l=o[a];-1===l?0!=(s&r)&&0==(s&n)||(o[a]=me(s,e)):l<=e&&(t.expiredLanes|=s),i&=~s}}(t,e);var n=pe(t,t===Pl?Tl:0);if(0===n)null!==r&&Qt(r),t.callbackNode=null,t.callbackPriority=0;else if(e=n&-n,t.callbackPriority!==e){if(null!=r&&Qt(r),1===e)0===t.tag?function(t){Bo=!0,Ho(t)}(ld.bind(null,t)):Ho(ld.bind(null,t)),ao((function(){0==(6&Ml)&&Vo()})),r=null;else{switch(ye(n)){case 1:r=Jt;break;case 4:r=te;break;case 16:default:r=ee;break;case 536870912:r=ne}r=Pd(r,od.bind(null,t))}t.callbackPriority=e,t.callbackNode=r}}function od(t,e){if(Zl=-1,Jl=0,0!=(6&Ml))throw Error(i(327));var r=t.callbackNode;if(kd()&&t.callbackNode!==r)return null;var n=pe(t,t===Pl?Tl:0);if(0===n)return null;if(0!=(30&n)||0!=(n&t.expiredLanes)||e)e=bd(t,n);else{e=n;var o=Ml;Ml|=2;var a=fd();for(Pl===t&&Tl===e||(Vl=null,Hl=Gt()+500,pd(t,e));;)try{vd();break}catch(e){md(t,e)}ki(),El.current=a,Ml=o,null!==Ol?e=0:(Pl=null,Tl=0,e=Rl)}if(0!==e){if(2===e&&0!==(o=fe(t))&&(n=o,e=id(t,o)),1===e)throw r=Dl,pd(t,0),sd(t,n),nd(t,Gt()),r;if(6===e)sd(t,n);else{if(o=t.current.alternate,0==(30&n)&&!function(t){for(var e=t;;){if(16384&e.flags){var r=e.updateQueue;if(null!==r&&null!==(r=r.stores))for(var n=0;n<r.length;n++){var o=r[n],i=o.getSnapshot;o=o.value;try{if(!sn(i(),o))return!1}catch(t){return!1}}}if(r=e.child,16384&e.subtreeFlags&&null!==r)r.return=e,e=r;else{if(e===t)break;for(;null===e.sibling;){if(null===e.return||e.return===t)return!0;e=e.return}e.sibling.return=e.return,e=e.sibling}}return!0}(o)&&(2===(e=bd(t,n))&&0!==(a=fe(t))&&(n=a,e=id(t,a)),1===e))throw r=Dl,pd(t,0),sd(t,n),nd(t,Gt()),r;switch(t.finishedWork=o,t.finishedLanes=n,e){case 0:case 1:throw Error(i(345));case 2:case 5:wd(t,Bl,Vl);break;case 3:if(sd(t,n),(130023424&n)===n&&10<(e=Ul+500-Gt())){if(0!==pe(t,0))break;if(((o=t.suspendedLanes)&n)!==n){td(),t.pingedLanes|=t.suspendedLanes&o;break}t.timeoutHandle=no(wd.bind(null,t,Bl,Vl),e);break}wd(t,Bl,Vl);break;case 4:if(sd(t,n),(4194240&n)===n)break;for(e=t.eventTimes,o=-1;0<n;){var s=31-ae(n);a=1<<s,(s=e[s])>o&&(o=s),n&=~a}if(n=o,10<(n=(120>(n=Gt()-n)?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Sl(n/1960))-n)){t.timeoutHandle=no(wd.bind(null,t,Bl,Vl),n);break}wd(t,Bl,Vl);break;default:throw Error(i(329))}}}return nd(t,Gt()),t.callbackNode===r?od.bind(null,t):null}function id(t,e){var r=Fl;return t.current.memoizedState.isDehydrated&&(pd(t,e).flags|=256),2!==(t=bd(t,e))&&(e=Bl,Bl=r,null!==e&&ad(e)),t}function ad(t){null===Bl?Bl=t:Bl.push.apply(Bl,t)}function sd(t,e){for(e&=~jl,e&=~Al,t.suspendedLanes|=e,t.pingedLanes&=~e,t=t.expirationTimes;0<e;){var r=31-ae(e),n=1<<r;t[r]=-1,e&=~n}}function ld(t){if(0!=(6&Ml))throw Error(i(327));kd();var e=pe(t,0);if(0==(1&e))return nd(t,Gt()),null;var r=bd(t,e);if(0!==t.tag&&2===r){var n=fe(t);0!==n&&(e=n,r=id(t,n))}if(1===r)throw r=Dl,pd(t,0),sd(t,e),nd(t,Gt()),r;if(6===r)throw Error(i(345));return t.finishedWork=t.current.alternate,t.finishedLanes=e,wd(t,Bl,Vl),nd(t,Gt()),null}function dd(t,e){var r=Ml;Ml|=1;try{return t(e)}finally{0===(Ml=r)&&(Hl=Gt()+500,Bo&&Vo())}}function cd(t){null!==Ql&&0===Ql.tag&&0==(6&Ml)&&kd();var e=Ml;Ml|=1;var r=zl.transition,n=xe;try{if(zl.transition=null,xe=1,t)return t()}finally{xe=n,zl.transition=r,0==(6&(Ml=e))&&Vo()}}function ud(){Ll=Nl.current,Co(Nl)}function pd(t,e){t.finishedWork=null,t.finishedLanes=0;var r=t.timeoutHandle;if(-1!==r&&(t.timeoutHandle=-1,oo(r)),null!==Ol)for(r=Ol.return;null!==r;){var n=r;switch(ri(n),n.tag){case 1:null!=(n=n.type.childContextTypes)&&Ro();break;case 3:ia(),Co(Oo),Co(Po),ua();break;case 5:sa(n);break;case 4:ia();break;case 13:case 19:Co(la);break;case 10:_i(n.type._context);break;case 22:case 23:ud()}r=r.return}if(Pl=t,Ol=t=Nd(t.current,null),Tl=Ll=e,Rl=0,Dl=null,jl=Al=Il=0,Bl=Fl=null,null!==zi){for(e=0;e<zi.length;e++)if(null!==(n=(r=zi[e]).interleaved)){r.interleaved=null;var o=n.next,i=r.pending;if(null!==i){var a=i.next;i.next=o,n.next=a}r.pending=n}zi=null}return t}function md(t,e){for(;;){var r=Ol;try{if(ki(),pa.current=as,va){for(var n=ha.memoizedState;null!==n;){var o=n.queue;null!==o&&(o.pending=null),n=n.next}va=!1}if(fa=0,ga=ba=ha=null,xa=!1,ya=0,Cl.current=null,null===r||null===r.return){Rl=1,Dl=e,Ol=null;break}t:{var a=t,s=r.return,l=r,d=e;if(e=Tl,l.flags|=32768,null!==d&&"object"==typeof d&&"function"==typeof d.then){var c=d,u=l,p=u.tag;if(0==(1&u.mode)&&(0===p||11===p||15===p)){var m=u.alternate;m?(u.updateQueue=m.updateQueue,u.memoizedState=m.memoizedState,u.lanes=m.lanes):(u.updateQueue=null,u.memoizedState=null)}var f=gs(s);if(null!==f){f.flags&=-257,vs(f,s,l,0,e),1&f.mode&&bs(a,c,e),d=c;var h=(e=f).updateQueue;if(null===h){var b=new Set;b.add(d),e.updateQueue=b}else h.add(d);break t}if(0==(1&e)){bs(a,c,e),hd();break t}d=Error(i(426))}else if(ii&&1&l.mode){var g=gs(s);if(null!==g){0==(65536&g.flags)&&(g.flags|=256),vs(g,s,l,0,e),hi(cs(d,l));break t}}a=d=cs(d,l),4!==Rl&&(Rl=2),null===Fl?Fl=[a]:Fl.push(a),a=s;do{switch(a.tag){case 3:a.flags|=65536,e&=-e,a.lanes|=e,Ai(a,fs(0,d,e));break t;case 1:l=d;var v=a.type,x=a.stateNode;if(0==(128&a.flags)&&("function"==typeof v.getDerivedStateFromError||null!==x&&"function"==typeof x.componentDidCatch&&(null===Yl||!Yl.has(x)))){a.flags|=65536,e&=-e,a.lanes|=e,Ai(a,hs(a,l,e));break t}}a=a.return}while(null!==a)}yd(r)}catch(t){e=t,Ol===r&&null!==r&&(Ol=r=r.return);continue}break}}function fd(){var t=El.current;return El.current=as,null===t?as:t}function hd(){0!==Rl&&3!==Rl&&2!==Rl||(Rl=4),null===Pl||0==(268435455&Il)&&0==(268435455&Al)||sd(Pl,Tl)}function bd(t,e){var r=Ml;Ml|=2;var n=fd();for(Pl===t&&Tl===e||(Vl=null,pd(t,e));;)try{gd();break}catch(e){md(t,e)}if(ki(),Ml=r,El.current=n,null!==Ol)throw Error(i(261));return Pl=null,Tl=0,Rl}function gd(){for(;null!==Ol;)xd(Ol)}function vd(){for(;null!==Ol&&!Xt();)xd(Ol)}function xd(t){var e=_l(t.alternate,t,Ll);t.memoizedProps=t.pendingProps,null===e?yd(t):Ol=e,Cl.current=null}function yd(t){var e=t;do{var r=e.alternate;if(t=e.return,0==(32768&e.flags)){if(null!==(r=Ks(r,e,Ll)))return void(Ol=r)}else{if(null!==(r=Qs(r,e)))return r.flags&=32767,void(Ol=r);if(null===t)return Rl=6,void(Ol=null);t.flags|=32768,t.subtreeFlags=0,t.deletions=null}if(null!==(e=e.sibling))return void(Ol=e);Ol=e=t}while(null!==e);0===Rl&&(Rl=5)}function wd(t,e,r){var n=xe,o=zl.transition;try{zl.transition=null,xe=1,function(t,e,r,n){do{kd()}while(null!==Ql);if(0!=(6&Ml))throw Error(i(327));r=t.finishedWork;var o=t.finishedLanes;if(null===r)return null;if(t.finishedWork=null,t.finishedLanes=0,r===t.current)throw Error(i(177));t.callbackNode=null,t.callbackPriority=0;var a=r.lanes|r.childLanes;if(function(t,e){var r=t.pendingLanes&~e;t.pendingLanes=e,t.suspendedLanes=0,t.pingedLanes=0,t.expiredLanes&=e,t.mutableReadLanes&=e,t.entangledLanes&=e,e=t.entanglements;var n=t.eventTimes;for(t=t.expirationTimes;0<r;){var o=31-ae(r),i=1<<o;e[o]=0,n[o]=-1,t[o]=-1,r&=~i}}(t,a),t===Pl&&(Ol=Pl=null,Tl=0),0==(2064&r.subtreeFlags)&&0==(2064&r.flags)||Kl||(Kl=!0,Pd(ee,(function(){return kd(),null}))),a=0!=(15990&r.flags),0!=(15990&r.subtreeFlags)||a){a=zl.transition,zl.transition=null;var s=xe;xe=1;var l=Ml;Ml|=4,Cl.current=null,function(t,e){if(to=$e,mn(t=pn())){if("selectionStart"in t)var r={start:t.selectionStart,end:t.selectionEnd};else t:{var n=(r=(r=t.ownerDocument)&&r.defaultView||window).getSelection&&r.getSelection();if(n&&0!==n.rangeCount){r=n.anchorNode;var o=n.anchorOffset,a=n.focusNode;n=n.focusOffset;try{r.nodeType,a.nodeType}catch(t){r=null;break t}var s=0,l=-1,d=-1,c=0,u=0,p=t,m=null;e:for(;;){for(var f;p!==r||0!==o&&3!==p.nodeType||(l=s+o),p!==a||0!==n&&3!==p.nodeType||(d=s+n),3===p.nodeType&&(s+=p.nodeValue.length),null!==(f=p.firstChild);)m=p,p=f;for(;;){if(p===t)break e;if(m===r&&++c===o&&(l=s),m===a&&++u===n&&(d=s),null!==(f=p.nextSibling))break;m=(p=m).parentNode}p=f}r=-1===l||-1===d?null:{start:l,end:d}}else r=null}r=r||{start:0,end:0}}else r=null;for(eo={focusedElem:t,selectionRange:r},$e=!1,Zs=e;null!==Zs;)if(t=(e=Zs).child,0!=(1028&e.subtreeFlags)&&null!==t)t.return=e,Zs=t;else for(;null!==Zs;){e=Zs;try{var h=e.alternate;if(0!=(1024&e.flags))switch(e.tag){case 0:case 11:case 15:case 5:case 6:case 4:case 17:break;case 1:if(null!==h){var b=h.memoizedProps,g=h.memoizedState,v=e.stateNode,x=v.getSnapshotBeforeUpdate(e.elementType===e.type?b:gi(e.type,b),g);v.__reactInternalSnapshotBeforeUpdate=x}break;case 3:var y=e.stateNode.containerInfo;1===y.nodeType?y.textContent="":9===y.nodeType&&y.documentElement&&y.removeChild(y.documentElement);break;default:throw Error(i(163))}}catch(t){Sd(e,e.return,t)}if(null!==(t=e.sibling)){t.return=e.return,Zs=t;break}Zs=e.return}h=el,el=!1}(t,r),bl(r,t),fn(eo),$e=!!to,eo=to=null,t.current=r,vl(r,t,o),qt(),Ml=l,xe=s,zl.transition=a}else t.current=r;if(Kl&&(Kl=!1,Ql=t,Xl=o),0===(a=t.pendingLanes)&&(Yl=null),function(t){if(ie&&"function"==typeof ie.onCommitFiberRoot)try{ie.onCommitFiberRoot(oe,t,void 0,128==(128&t.current.flags))}catch(t){}}(r.stateNode),nd(t,Gt()),null!==e)for(n=t.onRecoverableError,r=0;r<e.length;r++)n((o=e[r]).value,{componentStack:o.stack,digest:o.digest});if($l)throw $l=!1,t=Wl,Wl=null,t;0!=(1&Xl)&&0!==t.tag&&kd(),0!=(1&(a=t.pendingLanes))?t===Gl?ql++:(ql=0,Gl=t):ql=0,Vo()}(t,e,r,n)}finally{zl.transition=o,xe=n}return null}function kd(){if(null!==Ql){var t=ye(Xl),e=zl.transition,r=xe;try{if(zl.transition=null,xe=16>t?16:t,null===Ql)var n=!1;else{if(t=Ql,Ql=null,Xl=0,0!=(6&Ml))throw Error(i(331));var o=Ml;for(Ml|=4,Zs=t.current;null!==Zs;){var a=Zs,s=a.child;if(0!=(16&Zs.flags)){var l=a.deletions;if(null!==l){for(var d=0;d<l.length;d++){var c=l[d];for(Zs=c;null!==Zs;){var u=Zs;switch(u.tag){case 0:case 11:case 15:rl(8,u,a)}var p=u.child;if(null!==p)p.return=u,Zs=p;else for(;null!==Zs;){var m=(u=Zs).sibling,f=u.return;if(il(u),u===c){Zs=null;break}if(null!==m){m.return=f,Zs=m;break}Zs=f}}}var h=a.alternate;if(null!==h){var b=h.child;if(null!==b){h.child=null;do{var g=b.sibling;b.sibling=null,b=g}while(null!==b)}}Zs=a}}if(0!=(2064&a.subtreeFlags)&&null!==s)s.return=a,Zs=s;else t:for(;null!==Zs;){if(0!=(2048&(a=Zs).flags))switch(a.tag){case 0:case 11:case 15:rl(9,a,a.return)}var v=a.sibling;if(null!==v){v.return=a.return,Zs=v;break t}Zs=a.return}}var x=t.current;for(Zs=x;null!==Zs;){var y=(s=Zs).child;if(0!=(2064&s.subtreeFlags)&&null!==y)y.return=s,Zs=y;else t:for(s=x;null!==Zs;){if(0!=(2048&(l=Zs).flags))try{switch(l.tag){case 0:case 11:case 15:nl(9,l)}}catch(t){Sd(l,l.return,t)}if(l===s){Zs=null;break t}var w=l.sibling;if(null!==w){w.return=l.return,Zs=w;break t}Zs=l.return}}if(Ml=o,Vo(),ie&&"function"==typeof ie.onPostCommitFiberRoot)try{ie.onPostCommitFiberRoot(oe,t)}catch(t){}n=!0}return n}finally{xe=r,zl.transition=e}}return!1}function _d(t,e,r){t=Di(t,e=fs(0,e=cs(r,e),1),1),e=td(),null!==t&&(ge(t,1,e),nd(t,e))}function Sd(t,e,r){if(3===t.tag)_d(t,t,r);else for(;null!==e;){if(3===e.tag){_d(e,t,r);break}if(1===e.tag){var n=e.stateNode;if("function"==typeof e.type.getDerivedStateFromError||"function"==typeof n.componentDidCatch&&(null===Yl||!Yl.has(n))){e=Di(e,t=hs(e,t=cs(r,t),1),1),t=td(),null!==e&&(ge(e,1,t),nd(e,t));break}}e=e.return}}function Ed(t,e,r){var n=t.pingCache;null!==n&&n.delete(e),e=td(),t.pingedLanes|=t.suspendedLanes&r,Pl===t&&(Tl&r)===r&&(4===Rl||3===Rl&&(130023424&Tl)===Tl&&500>Gt()-Ul?pd(t,0):jl|=r),nd(t,e)}function Cd(t,e){0===e&&(0==(1&t.mode)?e=1:(e=ce,0==(130023424&(ce<<=1))&&(ce=4194304)));var r=td();null!==(t=Oi(t,e))&&(ge(t,e,r),nd(t,r))}function zd(t){var e=t.memoizedState,r=0;null!==e&&(r=e.retryLane),Cd(t,r)}function Md(t,e){var r=0;switch(t.tag){case 13:var n=t.stateNode,o=t.memoizedState;null!==o&&(r=o.retryLane);break;case 19:n=t.stateNode;break;default:throw Error(i(314))}null!==n&&n.delete(e),Cd(t,r)}function Pd(t,e){return Kt(t,e)}function Od(t,e,r,n){this.tag=t,this.key=r,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=e,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=n,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Td(t,e,r,n){return new Od(t,e,r,n)}function Ld(t){return!(!(t=t.prototype)||!t.isReactComponent)}function Nd(t,e){var r=t.alternate;return null===r?((r=Td(t.tag,e,t.key,t.mode)).elementType=t.elementType,r.type=t.type,r.stateNode=t.stateNode,r.alternate=t,t.alternate=r):(r.pendingProps=e,r.type=t.type,r.flags=0,r.subtreeFlags=0,r.deletions=null),r.flags=14680064&t.flags,r.childLanes=t.childLanes,r.lanes=t.lanes,r.child=t.child,r.memoizedProps=t.memoizedProps,r.memoizedState=t.memoizedState,r.updateQueue=t.updateQueue,e=t.dependencies,r.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext},r.sibling=t.sibling,r.index=t.index,r.ref=t.ref,r}function Rd(t,e,r,n,o,a){var s=2;if(n=t,"function"==typeof t)Ld(t)&&(s=1);else if("string"==typeof t)s=5;else t:switch(t){case _:return Dd(r.children,o,a,e);case S:s=8,o|=8;break;case E:return(t=Td(12,r,e,2|o)).elementType=E,t.lanes=a,t;case P:return(t=Td(13,r,e,o)).elementType=P,t.lanes=a,t;case O:return(t=Td(19,r,e,o)).elementType=O,t.lanes=a,t;case N:return Id(r,o,a,e);default:if("object"==typeof t&&null!==t)switch(t.$$typeof){case C:s=10;break t;case z:s=9;break t;case M:s=11;break t;case T:s=14;break t;case L:s=16,n=null;break t}throw Error(i(130,null==t?t:typeof t,""))}return(e=Td(s,r,e,o)).elementType=t,e.type=n,e.lanes=a,e}function Dd(t,e,r,n){return(t=Td(7,t,n,e)).lanes=r,t}function Id(t,e,r,n){return(t=Td(22,t,n,e)).elementType=N,t.lanes=r,t.stateNode={isHidden:!1},t}function Ad(t,e,r){return(t=Td(6,t,null,e)).lanes=r,t}function jd(t,e,r){return(e=Td(4,null!==t.children?t.children:[],t.key,e)).lanes=r,e.stateNode={containerInfo:t.containerInfo,pendingChildren:null,implementation:t.implementation},e}function Fd(t,e,r,n,o){this.tag=e,this.containerInfo=t,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=be(0),this.expirationTimes=be(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=be(0),this.identifierPrefix=n,this.onRecoverableError=o,this.mutableSourceEagerHydrationData=null}function Bd(t,e,r,n,o,i,a,s,l){return t=new Fd(t,e,r,s,l),1===e?(e=1,!0===i&&(e|=8)):e=0,i=Td(3,null,null,e),t.current=i,i.stateNode=t,i.memoizedState={element:n,isDehydrated:r,cache:null,transitions:null,pendingSuspenseBoundaries:null},Li(i),t}function Ud(t,e,r){var n=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:k,key:null==n?null:""+n,children:t,containerInfo:e,implementation:r}}function Hd(t){if(!t)return Mo;t:{if(Ht(t=t._reactInternals)!==t||1!==t.tag)throw Error(i(170));var e=t;do{switch(e.tag){case 3:e=e.stateNode.context;break t;case 1:if(No(e.type)){e=e.stateNode.__reactInternalMemoizedMergedChildContext;break t}}e=e.return}while(null!==e);throw Error(i(171))}if(1===t.tag){var r=t.type;if(No(r))return Io(t,r,e)}return e}function Vd(t,e,r,n,o,i,a,s,l){return(t=Bd(r,n,!0,t,0,i,0,s,l)).context=Hd(null),r=t.current,(i=Ri(n=td(),o=ed(r))).callback=null!=e?e:null,Di(r,i,o),t.current.lanes=o,ge(t,o,n),nd(t,n),t}function $d(t,e,r,n){var o=e.current,i=td(),a=ed(o);return r=Hd(r),null===e.context?e.context=r:e.pendingContext=r,(e=Ri(i,a)).payload={element:t},null!==(n=void 0===n?null:n)&&(e.callback=n),null!==(t=Di(o,e,a))&&(rd(t,o,a,i),Ii(t,o,a)),a}function Wd(t){return(t=t.current).child?(t.child.tag,t.child.stateNode):null}function Yd(t,e){if(null!==(t=t.memoizedState)&&null!==t.dehydrated){var r=t.retryLane;t.retryLane=0!==r&&r<e?r:e}}function Kd(t,e){Yd(t,e),(t=t.alternate)&&Yd(t,e)}_l=function(t,e,r){if(null!==t)if(t.memoizedProps!==e.pendingProps||Oo.current)ys=!0;else{if(0==(t.lanes&r)&&0==(128&e.flags))return ys=!1,function(t,e,r){switch(e.tag){case 3:Os(e),fi();break;case 5:aa(e);break;case 1:No(e.type)&&Ao(e);break;case 4:oa(e,e.stateNode.containerInfo);break;case 10:var n=e.type._context,o=e.memoizedProps.value;zo(vi,n._currentValue),n._currentValue=o;break;case 13:if(null!==(n=e.memoizedState))return null!==n.dehydrated?(zo(la,1&la.current),e.flags|=128,null):0!=(r&e.child.childLanes)?As(t,e,r):(zo(la,1&la.current),null!==(t=$s(t,e,r))?t.sibling:null);zo(la,1&la.current);break;case 19:if(n=0!=(r&e.childLanes),0!=(128&t.flags)){if(n)return Hs(t,e,r);e.flags|=128}if(null!==(o=e.memoizedState)&&(o.rendering=null,o.tail=null,o.lastEffect=null),zo(la,la.current),n)break;return null;case 22:case 23:return e.lanes=0,Es(t,e,r)}return $s(t,e,r)}(t,e,r);ys=0!=(131072&t.flags)}else ys=!1,ii&&0!=(1048576&e.flags)&&ti(e,Ko,e.index);switch(e.lanes=0,e.tag){case 2:var n=e.type;Vs(t,e),t=e.pendingProps;var o=Lo(e,Po.current);Ei(e,r),o=Sa(null,e,n,t,o,r);var a=Ea();return e.flags|=1,"object"==typeof o&&null!==o&&"function"==typeof o.render&&void 0===o.$$typeof?(e.tag=1,e.memoizedState=null,e.updateQueue=null,No(n)?(a=!0,Ao(e)):a=!1,e.memoizedState=null!==o.state&&void 0!==o.state?o.state:null,Li(e),o.updater=Hi,e.stateNode=o,o._reactInternals=e,Yi(e,n,t,r),e=Ps(null,e,n,!0,a,r)):(e.tag=0,ii&&a&&ei(e),ws(null,e,o,r),e=e.child),e;case 16:n=e.elementType;t:{switch(Vs(t,e),t=e.pendingProps,n=(o=n._init)(n._payload),e.type=n,o=e.tag=function(t){if("function"==typeof t)return Ld(t)?1:0;if(null!=t){if((t=t.$$typeof)===M)return 11;if(t===T)return 14}return 2}(n),t=gi(n,t),o){case 0:e=zs(null,e,n,t,r);break t;case 1:e=Ms(null,e,n,t,r);break t;case 11:e=ks(null,e,n,t,r);break t;case 14:e=_s(null,e,n,gi(n.type,t),r);break t}throw Error(i(306,n,""))}return e;case 0:return n=e.type,o=e.pendingProps,zs(t,e,n,o=e.elementType===n?o:gi(n,o),r);case 1:return n=e.type,o=e.pendingProps,Ms(t,e,n,o=e.elementType===n?o:gi(n,o),r);case 3:t:{if(Os(e),null===t)throw Error(i(387));n=e.pendingProps,o=(a=e.memoizedState).element,Ni(t,e),ji(e,n,null,r);var s=e.memoizedState;if(n=s.element,a.isDehydrated){if(a={element:n,isDehydrated:!1,cache:s.cache,pendingSuspenseBoundaries:s.pendingSuspenseBoundaries,transitions:s.transitions},e.updateQueue.baseState=a,e.memoizedState=a,256&e.flags){e=Ts(t,e,n,r,o=cs(Error(i(423)),e));break t}if(n!==o){e=Ts(t,e,n,r,o=cs(Error(i(424)),e));break t}for(oi=co(e.stateNode.containerInfo.firstChild),ni=e,ii=!0,ai=null,r=Zi(e,null,n,r),e.child=r;r;)r.flags=-3&r.flags|4096,r=r.sibling}else{if(fi(),n===o){e=$s(t,e,r);break t}ws(t,e,n,r)}e=e.child}return e;case 5:return aa(e),null===t&&ci(e),n=e.type,o=e.pendingProps,a=null!==t?t.memoizedProps:null,s=o.children,ro(n,o)?s=null:null!==a&&ro(n,a)&&(e.flags|=32),Cs(t,e),ws(t,e,s,r),e.child;case 6:return null===t&&ci(e),null;case 13:return As(t,e,r);case 4:return oa(e,e.stateNode.containerInfo),n=e.pendingProps,null===t?e.child=Gi(e,null,n,r):ws(t,e,n,r),e.child;case 11:return n=e.type,o=e.pendingProps,ks(t,e,n,o=e.elementType===n?o:gi(n,o),r);case 7:return ws(t,e,e.pendingProps,r),e.child;case 8:case 12:return ws(t,e,e.pendingProps.children,r),e.child;case 10:t:{if(n=e.type._context,o=e.pendingProps,a=e.memoizedProps,s=o.value,zo(vi,n._currentValue),n._currentValue=s,null!==a)if(sn(a.value,s)){if(a.children===o.children&&!Oo.current){e=$s(t,e,r);break t}}else for(null!==(a=e.child)&&(a.return=e);null!==a;){var l=a.dependencies;if(null!==l){s=a.child;for(var d=l.firstContext;null!==d;){if(d.context===n){if(1===a.tag){(d=Ri(-1,r&-r)).tag=2;var c=a.updateQueue;if(null!==c){var u=(c=c.shared).pending;null===u?d.next=d:(d.next=u.next,u.next=d),c.pending=d}}a.lanes|=r,null!==(d=a.alternate)&&(d.lanes|=r),Si(a.return,r,e),l.lanes|=r;break}d=d.next}}else if(10===a.tag)s=a.type===e.type?null:a.child;else if(18===a.tag){if(null===(s=a.return))throw Error(i(341));s.lanes|=r,null!==(l=s.alternate)&&(l.lanes|=r),Si(s,r,e),s=a.sibling}else s=a.child;if(null!==s)s.return=a;else for(s=a;null!==s;){if(s===e){s=null;break}if(null!==(a=s.sibling)){a.return=s.return,s=a;break}s=s.return}a=s}ws(t,e,o.children,r),e=e.child}return e;case 9:return o=e.type,n=e.pendingProps.children,Ei(e,r),n=n(o=Ci(o)),e.flags|=1,ws(t,e,n,r),e.child;case 14:return o=gi(n=e.type,e.pendingProps),_s(t,e,n,o=gi(n.type,o),r);case 15:return Ss(t,e,e.type,e.pendingProps,r);case 17:return n=e.type,o=e.pendingProps,o=e.elementType===n?o:gi(n,o),Vs(t,e),e.tag=1,No(n)?(t=!0,Ao(e)):t=!1,Ei(e,r),$i(e,n,o),Yi(e,n,o,r),Ps(null,e,n,!0,t,r);case 19:return Hs(t,e,r);case 22:return Es(t,e,r)}throw Error(i(156,e.tag))};var Qd="function"==typeof reportError?reportError:function(t){console.error(t)};function Xd(t){this._internalRoot=t}function qd(t){this._internalRoot=t}function Gd(t){return!(!t||1!==t.nodeType&&9!==t.nodeType&&11!==t.nodeType)}function Zd(t){return!(!t||1!==t.nodeType&&9!==t.nodeType&&11!==t.nodeType&&(8!==t.nodeType||" react-mount-point-unstable "!==t.nodeValue))}function Jd(){}function tc(t,e,r,n,o){var i=r._reactRootContainer;if(i){var a=i;if("function"==typeof o){var s=o;o=function(){var t=Wd(a);s.call(t)}}$d(e,a,t,o)}else a=function(t,e,r,n,o){if(o){if("function"==typeof n){var i=n;n=function(){var t=Wd(a);i.call(t)}}var a=Vd(e,n,t,0,null,!1,0,"",Jd);return t._reactRootContainer=a,t[ho]=a.current,Hn(8===t.nodeType?t.parentNode:t),cd(),a}for(;o=t.lastChild;)t.removeChild(o);if("function"==typeof n){var s=n;n=function(){var t=Wd(l);s.call(t)}}var l=Bd(t,0,!1,null,0,!1,0,"",Jd);return t._reactRootContainer=l,t[ho]=l.current,Hn(8===t.nodeType?t.parentNode:t),cd((function(){$d(e,l,r,n)})),l}(r,e,t,o,n);return Wd(a)}qd.prototype.render=Xd.prototype.render=function(t){var e=this._internalRoot;if(null===e)throw Error(i(409));$d(t,e,null,null)},qd.prototype.unmount=Xd.prototype.unmount=function(){var t=this._internalRoot;if(null!==t){this._internalRoot=null;var e=t.containerInfo;cd((function(){$d(null,t,null,null)})),e[ho]=null}},qd.prototype.unstable_scheduleHydration=function(t){if(t){var e=Se();t={blockedOn:null,target:t,priority:e};for(var r=0;r<Ne.length&&0!==e&&e<Ne[r].priority;r++);Ne.splice(r,0,t),0===r&&Ae(t)}},we=function(t){switch(t.tag){case 3:var e=t.stateNode;if(e.current.memoizedState.isDehydrated){var r=ue(e.pendingLanes);0!==r&&(ve(e,1|r),nd(e,Gt()),0==(6&Ml)&&(Hl=Gt()+500,Vo()))}break;case 13:cd((function(){var e=Oi(t,1);if(null!==e){var r=td();rd(e,t,1,r)}})),Kd(t,1)}},ke=function(t){if(13===t.tag){var e=Oi(t,134217728);null!==e&&rd(e,t,134217728,td()),Kd(t,134217728)}},_e=function(t){if(13===t.tag){var e=ed(t),r=Oi(t,e);null!==r&&rd(r,t,e,td()),Kd(t,e)}},Se=function(){return xe},Ee=function(t,e){var r=xe;try{return xe=t,e()}finally{xe=r}},kt=function(t,e,r){switch(e){case"input":if(Z(t,r),e=r.name,"radio"===r.type&&null!=e){for(r=t;r.parentNode;)r=r.parentNode;for(r=r.querySelectorAll("input[name="+JSON.stringify(""+e)+'][type="radio"]'),e=0;e<r.length;e++){var n=r[e];if(n!==t&&n.form===t.form){var o=ko(n);if(!o)throw Error(i(90));K(n),Z(n,o)}}}break;case"textarea":it(t,r);break;case"select":null!=(e=r.value)&&rt(t,!!r.multiple,e,!1)}},Mt=dd,Pt=cd;var ec={usingClientEntryPoint:!1,Events:[yo,wo,ko,Ct,zt,dd]},rc={findFiberByHostInstance:xo,bundleType:0,version:"18.2.0",rendererPackageName:"react-dom"},nc={bundleType:rc.bundleType,version:rc.version,rendererPackageName:rc.rendererPackageName,rendererConfig:rc.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:y.ReactCurrentDispatcher,findHostInstanceByFiber:function(t){return null===(t=Wt(t))?null:t.stateNode},findFiberByHostInstance:rc.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:"18.2.0-next-9e3b772b8-20220608"};if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var oc=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!oc.isDisabled&&oc.supportsFiber)try{oe=oc.inject(nc),ie=oc}catch(ct){}}e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ec,e.createPortal=function(t,e){var r=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!Gd(e))throw Error(i(200));return Ud(t,e,null,r)},e.createRoot=function(t,e){if(!Gd(t))throw Error(i(299));var r=!1,n="",o=Qd;return null!=e&&(!0===e.unstable_strictMode&&(r=!0),void 0!==e.identifierPrefix&&(n=e.identifierPrefix),void 0!==e.onRecoverableError&&(o=e.onRecoverableError)),e=Bd(t,1,!1,null,0,r,0,n,o),t[ho]=e.current,Hn(8===t.nodeType?t.parentNode:t),new Xd(e)},e.findDOMNode=function(t){if(null==t)return null;if(1===t.nodeType)return t;var e=t._reactInternals;if(void 0===e){if("function"==typeof t.render)throw Error(i(188));throw t=Object.keys(t).join(","),Error(i(268,t))}return null===(t=Wt(e))?null:t.stateNode},e.flushSync=function(t){return cd(t)},e.hydrate=function(t,e,r){if(!Zd(e))throw Error(i(200));return tc(null,t,e,!0,r)},e.hydrateRoot=function(t,e,r){if(!Gd(t))throw Error(i(405));var n=null!=r&&r.hydratedSources||null,o=!1,a="",s=Qd;if(null!=r&&(!0===r.unstable_strictMode&&(o=!0),void 0!==r.identifierPrefix&&(a=r.identifierPrefix),void 0!==r.onRecoverableError&&(s=r.onRecoverableError)),e=Vd(e,null,t,1,null!=r?r:null,o,0,a,s),t[ho]=e.current,Hn(t),n)for(t=0;t<n.length;t++)o=(o=(r=n[t])._getVersion)(r._source),null==e.mutableSourceEagerHydrationData?e.mutableSourceEagerHydrationData=[r,o]:e.mutableSourceEagerHydrationData.push(r,o);return new qd(e)},e.render=function(t,e,r){if(!Zd(e))throw Error(i(200));return tc(null,t,e,!1,r)},e.unmountComponentAtNode=function(t){if(!Zd(t))throw Error(i(40));return!!t._reactRootContainer&&(cd((function(){tc(null,null,t,!1,(function(){t._reactRootContainer=null,t[ho]=null}))})),!0)},e.unstable_batchedUpdates=dd,e.unstable_renderSubtreeIntoContainer=function(t,e,r,n){if(!Zd(r))throw Error(i(200));if(null==t||void 0===t._reactInternals)throw Error(i(38));return tc(t,e,r,!1,n)},e.version="18.2.0-next-9e3b772b8-20220608"},745:(t,e,r)=>{"use strict";var n=r(935);e.s=n.createRoot,n.hydrateRoot},935:(t,e,r)=>{"use strict";!function t(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(t){console.error(t)}}(),t.exports=r(448)},251:(t,e,r)=>{"use strict";var n=r(294),o=Symbol.for("react.element"),i=(Symbol.for("react.fragment"),Object.prototype.hasOwnProperty),a=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,s={key:!0,ref:!0,__self:!0,__source:!0};e.jsx=function(t,e,r){var n,l={},d=null,c=null;for(n in void 0!==r&&(d=""+r),void 0!==e.key&&(d=""+e.key),void 0!==e.ref&&(c=e.ref),e)i.call(e,n)&&!s.hasOwnProperty(n)&&(l[n]=e[n]);if(t&&t.defaultProps)for(n in e=t.defaultProps)void 0===l[n]&&(l[n]=e[n]);return{$$typeof:o,type:t,key:d,ref:c,props:l,_owner:a.current}}},408:(t,e)=>{"use strict";var r=Symbol.for("react.element"),n=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),i=Symbol.for("react.strict_mode"),a=Symbol.for("react.profiler"),s=Symbol.for("react.provider"),l=Symbol.for("react.context"),d=Symbol.for("react.forward_ref"),c=Symbol.for("react.suspense"),u=Symbol.for("react.memo"),p=Symbol.for("react.lazy"),m=Symbol.iterator,f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h=Object.assign,b={};function g(t,e,r){this.props=t,this.context=e,this.refs=b,this.updater=r||f}function v(){}function x(t,e,r){this.props=t,this.context=e,this.refs=b,this.updater=r||f}g.prototype.isReactComponent={},g.prototype.setState=function(t,e){if("object"!=typeof t&&"function"!=typeof t&&null!=t)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,t,e,"setState")},g.prototype.forceUpdate=function(t){this.updater.enqueueForceUpdate(this,t,"forceUpdate")},v.prototype=g.prototype;var y=x.prototype=new v;y.constructor=x,h(y,g.prototype),y.isPureReactComponent=!0;var w=Array.isArray,k=Object.prototype.hasOwnProperty,_={current:null},S={key:!0,ref:!0,__self:!0,__source:!0};function E(t,e,n){var o,i={},a=null,s=null;if(null!=e)for(o in void 0!==e.ref&&(s=e.ref),void 0!==e.key&&(a=""+e.key),e)k.call(e,o)&&!S.hasOwnProperty(o)&&(i[o]=e[o]);var l=arguments.length-2;if(1===l)i.children=n;else if(1<l){for(var d=Array(l),c=0;c<l;c++)d[c]=arguments[c+2];i.children=d}if(t&&t.defaultProps)for(o in l=t.defaultProps)void 0===i[o]&&(i[o]=l[o]);return{$$typeof:r,type:t,key:a,ref:s,props:i,_owner:_.current}}function C(t){return"object"==typeof t&&null!==t&&t.$$typeof===r}var z=/\/+/g;function M(t,e){return"object"==typeof t&&null!==t&&null!=t.key?function(t){var e={"=":"=0",":":"=2"};return"$"+t.replace(/[=:]/g,(function(t){return e[t]}))}(""+t.key):e.toString(36)}function P(t,e,o,i,a){var s=typeof t;"undefined"!==s&&"boolean"!==s||(t=null);var l=!1;if(null===t)l=!0;else switch(s){case"string":case"number":l=!0;break;case"object":switch(t.$$typeof){case r:case n:l=!0}}if(l)return a=a(l=t),t=""===i?"."+M(l,0):i,w(a)?(o="",null!=t&&(o=t.replace(z,"$&/")+"/"),P(a,e,o,"",(function(t){return t}))):null!=a&&(C(a)&&(a=function(t,e){return{$$typeof:r,type:t.type,key:e,ref:t.ref,props:t.props,_owner:t._owner}}(a,o+(!a.key||l&&l.key===a.key?"":(""+a.key).replace(z,"$&/")+"/")+t)),e.push(a)),1;if(l=0,i=""===i?".":i+":",w(t))for(var d=0;d<t.length;d++){var c=i+M(s=t[d],d);l+=P(s,e,o,c,a)}else if(c=function(t){return null===t||"object"!=typeof t?null:"function"==typeof(t=m&&t[m]||t["@@iterator"])?t:null}(t),"function"==typeof c)for(t=c.call(t),d=0;!(s=t.next()).done;)l+=P(s=s.value,e,o,c=i+M(s,d++),a);else if("object"===s)throw e=String(t),Error("Objects are not valid as a React child (found: "+("[object Object]"===e?"object with keys {"+Object.keys(t).join(", ")+"}":e)+"). If you meant to render a collection of children, use an array instead.");return l}function O(t,e,r){if(null==t)return t;var n=[],o=0;return P(t,n,"","",(function(t){return e.call(r,t,o++)})),n}function T(t){if(-1===t._status){var e=t._result;(e=e()).then((function(e){0!==t._status&&-1!==t._status||(t._status=1,t._result=e)}),(function(e){0!==t._status&&-1!==t._status||(t._status=2,t._result=e)})),-1===t._status&&(t._status=0,t._result=e)}if(1===t._status)return t._result.default;throw t._result}var L={current:null},N={transition:null},R={ReactCurrentDispatcher:L,ReactCurrentBatchConfig:N,ReactCurrentOwner:_};e.Children={map:O,forEach:function(t,e,r){O(t,(function(){e.apply(this,arguments)}),r)},count:function(t){var e=0;return O(t,(function(){e++})),e},toArray:function(t){return O(t,(function(t){return t}))||[]},only:function(t){if(!C(t))throw Error("React.Children.only expected to receive a single React element child.");return t}},e.Component=g,e.Fragment=o,e.Profiler=a,e.PureComponent=x,e.StrictMode=i,e.Suspense=c,e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=R,e.cloneElement=function(t,e,n){if(null==t)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+t+".");var o=h({},t.props),i=t.key,a=t.ref,s=t._owner;if(null!=e){if(void 0!==e.ref&&(a=e.ref,s=_.current),void 0!==e.key&&(i=""+e.key),t.type&&t.type.defaultProps)var l=t.type.defaultProps;for(d in e)k.call(e,d)&&!S.hasOwnProperty(d)&&(o[d]=void 0===e[d]&&void 0!==l?l[d]:e[d])}var d=arguments.length-2;if(1===d)o.children=n;else if(1<d){l=Array(d);for(var c=0;c<d;c++)l[c]=arguments[c+2];o.children=l}return{$$typeof:r,type:t.type,key:i,ref:a,props:o,_owner:s}},e.createContext=function(t){return(t={$$typeof:l,_currentValue:t,_currentValue2:t,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null}).Provider={$$typeof:s,_context:t},t.Consumer=t},e.createElement=E,e.createFactory=function(t){var e=E.bind(null,t);return e.type=t,e},e.createRef=function(){return{current:null}},e.forwardRef=function(t){return{$$typeof:d,render:t}},e.isValidElement=C,e.lazy=function(t){return{$$typeof:p,_payload:{_status:-1,_result:t},_init:T}},e.memo=function(t,e){return{$$typeof:u,type:t,compare:void 0===e?null:e}},e.startTransition=function(t){var e=N.transition;N.transition={};try{t()}finally{N.transition=e}},e.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.")},e.useCallback=function(t,e){return L.current.useCallback(t,e)},e.useContext=function(t){return L.current.useContext(t)},e.useDebugValue=function(){},e.useDeferredValue=function(t){return L.current.useDeferredValue(t)},e.useEffect=function(t,e){return L.current.useEffect(t,e)},e.useId=function(){return L.current.useId()},e.useImperativeHandle=function(t,e,r){return L.current.useImperativeHandle(t,e,r)},e.useInsertionEffect=function(t,e){return L.current.useInsertionEffect(t,e)},e.useLayoutEffect=function(t,e){return L.current.useLayoutEffect(t,e)},e.useMemo=function(t,e){return L.current.useMemo(t,e)},e.useReducer=function(t,e,r){return L.current.useReducer(t,e,r)},e.useRef=function(t){return L.current.useRef(t)},e.useState=function(t){return L.current.useState(t)},e.useSyncExternalStore=function(t,e,r){return L.current.useSyncExternalStore(t,e,r)},e.useTransition=function(){return L.current.useTransition()},e.version="18.2.0"},294:(t,e,r)=>{"use strict";t.exports=r(408)},893:(t,e,r)=>{"use strict";t.exports=r(251)},53:(t,e)=>{"use strict";function r(t,e){var r=t.length;t.push(e);t:for(;0<r;){var n=r-1>>>1,o=t[n];if(!(0<i(o,e)))break t;t[n]=e,t[r]=o,r=n}}function n(t){return 0===t.length?null:t[0]}function o(t){if(0===t.length)return null;var e=t[0],r=t.pop();if(r!==e){t[0]=r;t:for(var n=0,o=t.length,a=o>>>1;n<a;){var s=2*(n+1)-1,l=t[s],d=s+1,c=t[d];if(0>i(l,r))d<o&&0>i(c,l)?(t[n]=c,t[d]=r,n=d):(t[n]=l,t[s]=r,n=s);else{if(!(d<o&&0>i(c,r)))break t;t[n]=c,t[d]=r,n=d}}}return e}function i(t,e){var r=t.sortIndex-e.sortIndex;return 0!==r?r:t.id-e.id}if("object"==typeof performance&&"function"==typeof performance.now){var a=performance;e.unstable_now=function(){return a.now()}}else{var s=Date,l=s.now();e.unstable_now=function(){return s.now()-l}}var d=[],c=[],u=1,p=null,m=3,f=!1,h=!1,b=!1,g="function"==typeof setTimeout?setTimeout:null,v="function"==typeof clearTimeout?clearTimeout:null,x="undefined"!=typeof setImmediate?setImmediate:null;function y(t){for(var e=n(c);null!==e;){if(null===e.callback)o(c);else{if(!(e.startTime<=t))break;o(c),e.sortIndex=e.expirationTime,r(d,e)}e=n(c)}}function w(t){if(b=!1,y(t),!h)if(null!==n(d))h=!0,N(k);else{var e=n(c);null!==e&&R(w,e.startTime-t)}}function k(t,r){h=!1,b&&(b=!1,v(C),C=-1),f=!0;var i=m;try{for(y(r),p=n(d);null!==p&&(!(p.expirationTime>r)||t&&!P());){var a=p.callback;if("function"==typeof a){p.callback=null,m=p.priorityLevel;var s=a(p.expirationTime<=r);r=e.unstable_now(),"function"==typeof s?p.callback=s:p===n(d)&&o(d),y(r)}else o(d);p=n(d)}if(null!==p)var l=!0;else{var u=n(c);null!==u&&R(w,u.startTime-r),l=!1}return l}finally{p=null,m=i,f=!1}}"undefined"!=typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var _,S=!1,E=null,C=-1,z=5,M=-1;function P(){return!(e.unstable_now()-M<z)}function O(){if(null!==E){var t=e.unstable_now();M=t;var r=!0;try{r=E(!0,t)}finally{r?_():(S=!1,E=null)}}else S=!1}if("function"==typeof x)_=function(){x(O)};else if("undefined"!=typeof MessageChannel){var T=new MessageChannel,L=T.port2;T.port1.onmessage=O,_=function(){L.postMessage(null)}}else _=function(){g(O,0)};function N(t){E=t,S||(S=!0,_())}function R(t,r){C=g((function(){t(e.unstable_now())}),r)}e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(t){t.callback=null},e.unstable_continueExecution=function(){h||f||(h=!0,N(k))},e.unstable_forceFrameRate=function(t){0>t||125<t?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):z=0<t?Math.floor(1e3/t):5},e.unstable_getCurrentPriorityLevel=function(){return m},e.unstable_getFirstCallbackNode=function(){return n(d)},e.unstable_next=function(t){switch(m){case 1:case 2:case 3:var e=3;break;default:e=m}var r=m;m=e;try{return t()}finally{m=r}},e.unstable_pauseExecution=function(){},e.unstable_requestPaint=function(){},e.unstable_runWithPriority=function(t,e){switch(t){case 1:case 2:case 3:case 4:case 5:break;default:t=3}var r=m;m=t;try{return e()}finally{m=r}},e.unstable_scheduleCallback=function(t,o,i){var a=e.unstable_now();switch(i="object"==typeof i&&null!==i&&"number"==typeof(i=i.delay)&&0<i?a+i:a,t){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return t={id:u++,callback:o,priorityLevel:t,startTime:i,expirationTime:s=i+s,sortIndex:-1},i>a?(t.sortIndex=i,r(c,t),null===n(d)&&t===n(c)&&(b?(v(C),C=-1):b=!0,R(w,i-a))):(t.sortIndex=s,r(d,t),h||f||(h=!0,N(k))),t},e.unstable_shouldYield=P,e.unstable_wrapCallback=function(t){var e=m;return function(){var r=m;m=e;try{return t.apply(this,arguments)}finally{m=r}}}},840:(t,e,r)=>{"use strict";t.exports=r(53)},379:t=>{"use strict";var e=[];function r(t){for(var r=-1,n=0;n<e.length;n++)if(e[n].identifier===t){r=n;break}return r}function n(t,n){for(var i={},a=[],s=0;s<t.length;s++){var l=t[s],d=n.base?l[0]+n.base:l[0],c=i[d]||0,u="".concat(d," ").concat(c);i[d]=c+1;var p=r(u),m={css:l[1],media:l[2],sourceMap:l[3],supports:l[4],layer:l[5]};if(-1!==p)e[p].references++,e[p].updater(m);else{var f=o(m,n);n.byIndex=s,e.splice(s,0,{identifier:u,updater:f,references:1})}a.push(u)}return a}function o(t,e){var r=e.domAPI(e);return r.update(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap&&e.supports===t.supports&&e.layer===t.layer)return;r.update(t=e)}else r.remove()}}t.exports=function(t,o){var i=n(t=t||[],o=o||{});return function(t){t=t||[];for(var a=0;a<i.length;a++){var s=r(i[a]);e[s].references--}for(var l=n(t,o),d=0;d<i.length;d++){var c=r(i[d]);0===e[c].references&&(e[c].updater(),e.splice(c,1))}i=l}}},569:t=>{"use strict";var e={};t.exports=function(t,r){var n=function(t){if(void 0===e[t]){var r=document.querySelector(t);if(window.HTMLIFrameElement&&r instanceof window.HTMLIFrameElement)try{r=r.contentDocument.head}catch(t){r=null}e[t]=r}return e[t]}(t);if(!n)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");n.appendChild(r)}},216:t=>{"use strict";t.exports=function(t){var e=document.createElement("style");return t.setAttributes(e,t.attributes),t.insert(e,t.options),e}},565:(t,e,r)=>{"use strict";t.exports=function(t){var e=r.nc;e&&t.setAttribute("nonce",e)}},795:t=>{"use strict";t.exports=function(t){var e=t.insertStyleElement(t);return{update:function(r){!function(t,e,r){var n="";r.supports&&(n+="@supports (".concat(r.supports,") {")),r.media&&(n+="@media ".concat(r.media," {"));var o=void 0!==r.layer;o&&(n+="@layer".concat(r.layer.length>0?" ".concat(r.layer):""," {")),n+=r.css,o&&(n+="}"),r.media&&(n+="}"),r.supports&&(n+="}");var i=r.sourceMap;i&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),e.styleTagTransform(n,t,e.options)}(e,t,r)},remove:function(){!function(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t)}(e)}}}},589:t=>{"use strict";t.exports=function(t,e){if(e.styleSheet)e.styleSheet.cssText=t;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(t))}}},473:t=>{"use strict";t.exports=function(){}},204:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%272%27 fill=%27%23fff%27/%3e%3c/svg%3e"},609:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27%2386b7fe%27/%3e%3c/svg%3e"},469:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27%23fff%27/%3e%3c/svg%3e"},486:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27rgba%280, 0, 0, 0.25%29%27/%3e%3c/svg%3e"},144:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 12 12%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3e%3c/svg%3e"},254:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23000%27%3e%3cpath d=%27M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z%27/%3e%3c/svg%3e"},740:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%230c63e4%27%3e%3cpath fill-rule=%27evenodd%27 d=%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z%27/%3e%3c/svg%3e"},460:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23212529%27%3e%3cpath fill-rule=%27evenodd%27 d=%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z%27/%3e%3c/svg%3e"},647:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23fff%27%3e%3cpath d=%27M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z%27/%3e%3c/svg%3e"},692:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23fff%27%3e%3cpath d=%27M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z%27/%3e%3c/svg%3e"},770:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3e%3cpath fill=%27none%27 stroke=%27%23343a40%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27m2 5 6 6 6-6%27/%3e%3c/svg%3e"},931:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 20 20%27%3e%3cpath fill=%27none%27 stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%273%27 d=%27M6 10h8%27/%3e%3c/svg%3e"},199:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 20 20%27%3e%3cpath fill=%27none%27 stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%273%27 d=%27m6 10 3 3 6-6%27/%3e%3c/svg%3e"},217:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%280, 0, 0, 0.55%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e"},956:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%28255, 255, 255, 0.55%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e"},122:t=>{"use strict";t.exports="data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%23198754%27 d=%27M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3e%3c/svg%3e"},116:(t,e,r)=>{"use strict";t.exports=r.p+"defcfd325de59a97ed78.png"},61:(t,e,r)=>{var n=r(698).default;function o(){"use strict";t.exports=o=function(){return e},t.exports.__esModule=!0,t.exports.default=t.exports;var e={},r=Object.prototype,i=r.hasOwnProperty,a=Object.defineProperty||function(t,e,r){t[e]=r.value},s="function"==typeof Symbol?Symbol:{},l=s.iterator||"@@iterator",d=s.asyncIterator||"@@asyncIterator",c=s.toStringTag||"@@toStringTag";function u(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{u({},"")}catch(t){u=function(t,e,r){return t[e]=r}}function p(t,e,r,n){var o=e&&e.prototype instanceof h?e:h,i=Object.create(o.prototype),s=new M(n||[]);return a(i,"_invoke",{value:S(t,r,s)}),i}function m(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}e.wrap=p;var f={};function h(){}function b(){}function g(){}var v={};u(v,l,(function(){return this}));var x=Object.getPrototypeOf,y=x&&x(x(P([])));y&&y!==r&&i.call(y,l)&&(v=y);var w=g.prototype=h.prototype=Object.create(v);function k(t){["next","throw","return"].forEach((function(e){u(t,e,(function(t){return this._invoke(e,t)}))}))}function _(t,e){function r(o,a,s,l){var d=m(t[o],t,a);if("throw"!==d.type){var c=d.arg,u=c.value;return u&&"object"==n(u)&&i.call(u,"__await")?e.resolve(u.__await).then((function(t){r("next",t,s,l)}),(function(t){r("throw",t,s,l)})):e.resolve(u).then((function(t){c.value=t,s(c)}),(function(t){return r("throw",t,s,l)}))}l(d.arg)}var o;a(this,"_invoke",{value:function(t,n){function i(){return new e((function(e,o){r(t,n,e,o)}))}return o=o?o.then(i,i):i()}})}function S(t,e,r){var n="suspendedStart";return function(o,i){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw i;return{value:void 0,done:!0}}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var s=E(a,r);if(s){if(s===f)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var l=m(t,e,r);if("normal"===l.type){if(n=r.done?"completed":"suspendedYield",l.arg===f)continue;return{value:l.arg,done:r.done}}"throw"===l.type&&(n="completed",r.method="throw",r.arg=l.arg)}}}function E(t,e){var r=e.method,n=t.iterator[r];if(void 0===n)return e.delegate=null,"throw"===r&&t.iterator.return&&(e.method="return",e.arg=void 0,E(t,e),"throw"===e.method)||"return"!==r&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+r+"' method")),f;var o=m(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,f;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,f):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,f)}function C(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function z(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function M(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(C,this),this.reset(!0)}function P(t){if(t){var e=t[l];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var r=-1,n=function e(){for(;++r<t.length;)if(i.call(t,r))return e.value=t[r],e.done=!1,e;return e.value=void 0,e.done=!0,e};return n.next=n}}return{next:O}}function O(){return{value:void 0,done:!0}}return b.prototype=g,a(w,"constructor",{value:g,configurable:!0}),a(g,"constructor",{value:b,configurable:!0}),b.displayName=u(g,c,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===b||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,g):(t.__proto__=g,u(t,c,"GeneratorFunction")),t.prototype=Object.create(w),t},e.awrap=function(t){return{__await:t}},k(_.prototype),u(_.prototype,d,(function(){return this})),e.AsyncIterator=_,e.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new _(p(t,r,n,o),i);return e.isGeneratorFunction(r)?a:a.next().then((function(t){return t.done?t.value:a.next()}))},k(w),u(w,c,"Generator"),u(w,l,(function(){return this})),u(w,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},e.values=P,M.prototype={constructor:M,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(z),!t)for(var e in this)"t"===e.charAt(0)&&i.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function r(r,n){return a.type="throw",a.arg=t,e.next=r,n&&(e.method="next",e.arg=void 0),!!n}for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n],a=o.completion;if("root"===o.tryLoc)return r("end");if(o.tryLoc<=this.prev){var s=i.call(o,"catchLoc"),l=i.call(o,"finallyLoc");if(s&&l){if(this.prev<o.catchLoc)return r(o.catchLoc,!0);if(this.prev<o.finallyLoc)return r(o.finallyLoc)}else if(s){if(this.prev<o.catchLoc)return r(o.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return r(o.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&i.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var o=n;break}}o&&("break"===t||"continue"===t)&&o.tryLoc<=e&&e<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=t,a.arg=e,o?(this.method="next",this.next=o.finallyLoc,f):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),f},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),z(r),f}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;z(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:P(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),f}},e}t.exports=o,t.exports.__esModule=!0,t.exports.default=t.exports},698:t=>{function e(r){return t.exports=e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},t.exports.__esModule=!0,t.exports.default=t.exports,e(r)}t.exports=e,t.exports.__esModule=!0,t.exports.default=t.exports},687:(t,e,r)=>{var n=r(61)();t.exports=n;try{regeneratorRuntime=n}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=n:Function("r","regeneratorRuntime = r")(n)}}},n={};function o(t){var e=n[t];if(void 0!==e)return e.exports;var i=n[t]={id:t,exports:{}};return r[t](i,i.exports,o),i.exports}o.m=r,o.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return o.d(e,{a:e}),e},e=Object.getPrototypeOf?t=>Object.getPrototypeOf(t):t=>t.__proto__,o.t=function(r,n){if(1&n&&(r=this(r)),8&n)return r;if("object"==typeof r&&r){if(4&n&&r.__esModule)return r;if(16&n&&"function"==typeof r.then)return r}var i=Object.create(null);o.r(i);var a={};t=t||[null,e({}),e([]),e(e)];for(var s=2&n&&r;"object"==typeof s&&!~t.indexOf(s);s=e(s))Object.getOwnPropertyNames(s).forEach((t=>a[t]=()=>r[t]));return a.default=()=>r,o.d(i,a),i},o.d=(t,e)=>{for(var r in e)o.o(e,r)&&!o.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:e[r]})},o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),o.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),o.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},(()=>{var t;o.g.importScripts&&(t=o.g.location+"");var e=o.g.document;if(!t&&e&&(e.currentScript&&(t=e.currentScript.src),!t)){var r=e.getElementsByTagName("script");r.length&&(t=r[r.length-1].src)}if(!t)throw new Error("Automatic publicPath is not supported in this browser");t=t.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),o.p=t})(),o.b=document.baseURI||self.location.href,o.nc=void 0,(()=>{"use strict";var t,e=o(294),r=o.t(e,2),n=o(745);function i(){return i=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t},i.apply(this,arguments)}!function(t){t.Pop="POP",t.Push="PUSH",t.Replace="REPLACE"}(t||(t={}));const a="popstate";function s(t,e){if(!1===t||null==t)throw new Error(e)}function l(t){return{usr:t.state,key:t.key}}function d(t,e,r,n){return void 0===r&&(r=null),i({pathname:"string"==typeof t?t:t.pathname,search:"",hash:""},"string"==typeof e?u(e):e,{state:r,key:e&&e.key||n||Math.random().toString(36).substr(2,8)})}function c(t){let{pathname:e="/",search:r="",hash:n=""}=t;return r&&"?"!==r&&(e+="?"===r.charAt(0)?r:"?"+r),n&&"#"!==n&&(e+="#"===n.charAt(0)?n:"#"+n),e}function u(t){let e={};if(t){let r=t.indexOf("#");r>=0&&(e.hash=t.substr(r),t=t.substr(0,r));let n=t.indexOf("?");n>=0&&(e.search=t.substr(n),t=t.substr(0,n)),t&&(e.pathname=t)}return e}function p(t){let e="undefined"!=typeof window&&void 0!==window.location&&"null"!==window.location.origin?window.location.origin:window.location.href,r="string"==typeof t?t:c(t);return s(e,"No window.location.(origin|href) available to create URL for href: "+r),new URL(r,e)}var m;function f(t,e,r){void 0===r&&(r="/");let n=_(("string"==typeof e?u(e):e).pathname||"/",r);if(null==n)return null;let o=h(t);!function(t){t.sort(((t,e)=>t.score!==e.score?e.score-t.score:function(t,e){return t.length===e.length&&t.slice(0,-1).every(((t,r)=>t===e[r]))?t[t.length-1]-e[e.length-1]:0}(t.routesMeta.map((t=>t.childrenIndex)),e.routesMeta.map((t=>t.childrenIndex)))))}(o);let i=null;for(let t=0;null==i&&t<o.length;++t)i=y(o[t],k(n));return i}function h(t,e,r,n){void 0===e&&(e=[]),void 0===r&&(r=[]),void 0===n&&(n="");let o=(t,o,i)=>{let a={relativePath:void 0===i?t.path||"":i,caseSensitive:!0===t.caseSensitive,childrenIndex:o,route:t};a.relativePath.startsWith("/")&&(s(a.relativePath.startsWith(n),'Absolute route path "'+a.relativePath+'" nested under path "'+n+'" is not valid. An absolute child route path must start with the combined path of all its parent routes.'),a.relativePath=a.relativePath.slice(n.length));let l=M([n,a.relativePath]),d=r.concat(a);t.children&&t.children.length>0&&(s(!0!==t.index,'Index routes must not have child routes. Please remove all child routes from route path "'+l+'".'),h(t.children,e,d,l)),(null!=t.path||t.index)&&e.push({path:l,score:x(l,t.index),routesMeta:d})};return t.forEach(((t,e)=>{var r;if(""!==t.path&&null!=(r=t.path)&&r.includes("?"))for(let r of b(t.path))o(t,e,r);else o(t,e)})),e}function b(t){let e=t.split("/");if(0===e.length)return[];let[r,...n]=e,o=r.endsWith("?"),i=r.replace(/\?$/,"");if(0===n.length)return o?[i,""]:[i];let a=b(n.join("/")),s=[];return s.push(...a.map((t=>""===t?i:[i,t].join("/")))),o&&s.push(...a),s.map((e=>t.startsWith("/")&&""===e?"/":e))}!function(t){t.data="data",t.deferred="deferred",t.redirect="redirect",t.error="error"}(m||(m={}));const g=/^:\w+$/,v=t=>"*"===t;function x(t,e){let r=t.split("/"),n=r.length;return r.some(v)&&(n+=-2),e&&(n+=2),r.filter((t=>!v(t))).reduce(((t,e)=>t+(g.test(e)?3:""===e?1:10)),n)}function y(t,e){let{routesMeta:r}=t,n={},o="/",i=[];for(let t=0;t<r.length;++t){let a=r[t],s=t===r.length-1,l="/"===o?e:e.slice(o.length)||"/",d=w({path:a.relativePath,caseSensitive:a.caseSensitive,end:s},l);if(!d)return null;Object.assign(n,d.params);let c=a.route;i.push({params:n,pathname:M([o,d.pathname]),pathnameBase:P(M([o,d.pathnameBase])),route:c}),"/"!==d.pathnameBase&&(o=M([o,d.pathnameBase]))}return i}function w(t,e){"string"==typeof t&&(t={path:t,caseSensitive:!1,end:!0});let[r,n]=function(t,e,r){void 0===e&&(e=!1),void 0===r&&(r=!0),S("*"===t||!t.endsWith("*")||t.endsWith("/*"),'Route path "'+t+'" will be treated as if it were "'+t.replace(/\*$/,"/*")+'" because the `*` character must always follow a `/` in the pattern. To get rid of this warning, please change the route path to "'+t.replace(/\*$/,"/*")+'".');let n=[],o="^"+t.replace(/\/*\*?$/,"").replace(/^\/*/,"/").replace(/[\\.*+^$?{}|()[\]]/g,"\\$&").replace(/\/:(\w+)/g,((t,e)=>(n.push(e),"/([^\\/]+)")));return t.endsWith("*")?(n.push("*"),o+="*"===t||"/*"===t?"(.*)$":"(?:\\/(.+)|\\/*)$"):r?o+="\\/*$":""!==t&&"/"!==t&&(o+="(?:(?=\\/|$))"),[new RegExp(o,e?void 0:"i"),n]}(t.path,t.caseSensitive,t.end),o=e.match(r);if(!o)return null;let i=o[0],a=i.replace(/(.)\/+$/,"$1"),s=o.slice(1);return{params:n.reduce(((t,e,r)=>{if("*"===e){let t=s[r]||"";a=i.slice(0,i.length-t.length).replace(/(.)\/+$/,"$1")}return t[e]=function(t,e){try{return decodeURIComponent(t)}catch(r){return S(!1,'The value for the URL param "'+e+'" will not be decoded because the string "'+t+'" is a malformed URL segment. This is probably due to a bad percent encoding ('+r+")."),t}}(s[r]||"",e),t}),{}),pathname:i,pathnameBase:a,pattern:t}}function k(t){try{return decodeURI(t)}catch(e){return S(!1,'The URL path "'+t+'" could not be decoded because it is is a malformed URL segment. This is probably due to a bad percent encoding ('+e+")."),t}}function _(t,e){if("/"===e)return t;if(!t.toLowerCase().startsWith(e.toLowerCase()))return null;let r=e.endsWith("/")?e.length-1:e.length,n=t.charAt(r);return n&&"/"!==n?null:t.slice(r)||"/"}function S(t,e){if(!t){"undefined"!=typeof console&&console.warn(e);try{throw new Error(e)}catch(t){}}}function E(t,e,r,n){return"Cannot include a '"+t+"' character in a manually specified `to."+e+"` field ["+JSON.stringify(n)+"]. Please separate it out to the `to."+r+'` field. Alternatively you may provide the full path as a string in <Link to="..."> and the router will parse it for you.'}function C(t){return t.filter(((t,e)=>0===e||t.route.path&&t.route.path.length>0))}function z(t,e,r,n){let o;void 0===n&&(n=!1),"string"==typeof t?o=u(t):(o=i({},t),s(!o.pathname||!o.pathname.includes("?"),E("?","pathname","search",o)),s(!o.pathname||!o.pathname.includes("#"),E("#","pathname","hash",o)),s(!o.search||!o.search.includes("#"),E("#","search","hash",o)));let a,l=""===t||""===o.pathname,d=l?"/":o.pathname;if(n||null==d)a=r;else{let t=e.length-1;if(d.startsWith("..")){let e=d.split("/");for(;".."===e[0];)e.shift(),t-=1;o.pathname=e.join("/")}a=t>=0?e[t]:"/"}let c=function(t,e){void 0===e&&(e="/");let{pathname:r,search:n="",hash:o=""}="string"==typeof t?u(t):t,i=r?r.startsWith("/")?r:function(t,e){let r=e.replace(/\/+$/,"").split("/");return t.split("/").forEach((t=>{".."===t?r.length>1&&r.pop():"."!==t&&r.push(t)})),r.length>1?r.join("/"):"/"}(r,e):e;return{pathname:i,search:O(n),hash:T(o)}}(o,a),p=d&&"/"!==d&&d.endsWith("/"),m=(l||"."===d)&&r.endsWith("/");return c.pathname.endsWith("/")||!p&&!m||(c.pathname+="/"),c}const M=t=>t.join("/").replace(/\/\/+/g,"/"),P=t=>t.replace(/\/+$/,"").replace(/^\/*/,"/"),O=t=>t&&"?"!==t?t.startsWith("?")?t:"?"+t:"",T=t=>t&&"#"!==t?t.startsWith("#")?t:"#"+t:"";class L extends Error{}class N{constructor(t,e,r,n){void 0===n&&(n=!1),this.status=t,this.statusText=e||"",this.internal=n,r instanceof Error?(this.data=r.toString(),this.error=r):this.data=r}}function R(t){return t instanceof N}const D=["post","put","patch","delete"],I=(new Set(D),["get",...D]);function A(){return A=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t},A.apply(this,arguments)}new Set(I),new Set([301,302,303,307,308]),new Set([307,308]),"undefined"!=typeof window&&void 0!==window.document&&window.document.createElement;"function"==typeof Object.is&&Object.is;const{useState:j,useEffect:F,useLayoutEffect:B,useDebugValue:U}=r;"undefined"==typeof window||void 0===window.document||window.document.createElement,r.useSyncExternalStore;const H=e.createContext(null),V=e.createContext(null),$=e.createContext(null),W=e.createContext(null),Y=e.createContext(null),K=e.createContext({outlet:null,matches:[]}),Q=e.createContext(null);function X(){return null!=e.useContext(Y)}function q(){return X()||s(!1),e.useContext(Y).location}function G(t,r){let{relative:n}=void 0===r?{}:r,{matches:o}=e.useContext(K),{pathname:i}=q(),a=JSON.stringify(C(o).map((t=>t.pathnameBase)));return e.useMemo((()=>z(t,JSON.parse(a),i,"path"===n)),[t,a,i,n])}function Z(){let t=function(){var t;let r=e.useContext(Q),n=function(t){let r=e.useContext($);return r||s(!1),r}(rt.UseRouteError),o=e.useContext(K),i=o.matches[o.matches.length-1];return r||(o||s(!1),!i.route.id&&s(!1),null==(t=n.errors)?void 0:t[i.route.id])}(),r=R(t)?t.status+" "+t.statusText:t instanceof Error?t.message:JSON.stringify(t),n=t instanceof Error?t.stack:null,o="rgba(200,200,200, 0.5)",i={padding:"0.5rem",backgroundColor:o},a={padding:"2px 4px",backgroundColor:o};return e.createElement(e.Fragment,null,e.createElement("h2",null,"Unhandled Thrown Error!"),e.createElement("h3",{style:{fontStyle:"italic"}},r),n?e.createElement("pre",{style:i},n):null,e.createElement("p",null,"💿 Hey developer 👋"),e.createElement("p",null,"You can provide a way better UX than this when your app throws errors by providing your own ",e.createElement("code",{style:a},"errorElement")," props on ",e.createElement("code",{style:a},"<Route>")))}class J extends e.Component{constructor(t){super(t),this.state={location:t.location,error:t.error}}static getDerivedStateFromError(t){return{error:t}}static getDerivedStateFromProps(t,e){return e.location!==t.location?{error:t.error,location:t.location}:{error:t.error||e.error,location:e.location}}componentDidCatch(t,e){console.error("React Router caught the following error during render",t,e)}render(){return this.state.error?e.createElement(Q.Provider,{value:this.state.error,children:this.props.component}):this.props.children}}function tt(t){let{routeContext:r,match:n,children:o}=t,i=e.useContext(H);return i&&n.route.errorElement&&(i._deepestRenderedBoundaryId=n.route.id),e.createElement(K.Provider,{value:r},o)}var et,rt,nt;function ot(t){s(!1)}function it(r){let{basename:n="/",children:o=null,location:i,navigationType:a=t.Pop,navigator:l,static:d=!1}=r;X()&&s(!1);let c=n.replace(/^\/*/,"/"),p=e.useMemo((()=>({basename:c,navigator:l,static:d})),[c,l,d]);"string"==typeof i&&(i=u(i));let{pathname:m="/",search:f="",hash:h="",state:b=null,key:g="default"}=i,v=e.useMemo((()=>{let t=_(m,c);return null==t?null:{pathname:t,search:f,hash:h,state:b,key:g}}),[c,m,f,h,b,g]);return null==v?null:e.createElement(W.Provider,{value:p},e.createElement(Y.Provider,{children:o,value:{location:v,navigationType:a}}))}function at(r){let{children:n,location:o}=r,i=e.useContext(V);return function(r,n){X()||s(!1);let{navigator:o}=e.useContext(W),i=e.useContext($),{matches:a}=e.useContext(K),l=a[a.length-1],d=l?l.params:{},c=(l&&l.pathname,l?l.pathnameBase:"/");l&&l.route;let p,m=q();if(n){var h;let t="string"==typeof n?u(n):n;"/"===c||(null==(h=t.pathname)?void 0:h.startsWith(c))||s(!1),p=t}else p=m;let b=p.pathname||"/",g=f(r,{pathname:"/"===c?b:b.slice(c.length)||"/"}),v=function(t,r,n){if(void 0===r&&(r=[]),null==t){if(null==n||!n.errors)return null;t=n.matches}let o=t,i=null==n?void 0:n.errors;if(null!=i){let t=o.findIndex((t=>t.route.id&&(null==i?void 0:i[t.route.id])));t>=0||s(!1),o=o.slice(0,Math.min(o.length,t+1))}return o.reduceRight(((t,a,s)=>{let l=a.route.id?null==i?void 0:i[a.route.id]:null,d=n?a.route.errorElement||e.createElement(Z,null):null,c=()=>e.createElement(tt,{match:a,routeContext:{outlet:t,matches:r.concat(o.slice(0,s+1))}},l?d:void 0!==a.route.element?a.route.element:t);return n&&(a.route.errorElement||0===s)?e.createElement(J,{location:n.location,component:d,error:l,children:c()}):c()}),null)}(g&&g.map((t=>Object.assign({},t,{params:Object.assign({},d,t.params),pathname:M([c,o.encodeLocation?o.encodeLocation(t.pathname).pathname:t.pathname]),pathnameBase:"/"===t.pathnameBase?c:M([c,o.encodeLocation?o.encodeLocation(t.pathnameBase).pathname:t.pathnameBase])}))),a,i||void 0);return n&&v?e.createElement(Y.Provider,{value:{location:A({pathname:"/",search:"",hash:"",state:null,key:"default"},p),navigationType:t.Pop}},v):v}(i&&!n?i.router.routes:lt(n),o)}!function(t){t.UseRevalidator="useRevalidator"}(et||(et={})),function(t){t.UseLoaderData="useLoaderData",t.UseActionData="useActionData",t.UseRouteError="useRouteError",t.UseNavigation="useNavigation",t.UseRouteLoaderData="useRouteLoaderData",t.UseMatches="useMatches",t.UseRevalidator="useRevalidator"}(rt||(rt={})),function(t){t[t.pending=0]="pending",t[t.success=1]="success",t[t.error=2]="error"}(nt||(nt={})),new Promise((()=>{}));class st extends e.Component{constructor(t){super(t),this.state={error:null}}static getDerivedStateFromError(t){return{error:t}}componentDidCatch(t,e){console.error("<Await> caught the following error during render",t,e)}render(){let{children:t,errorElement:e,resolve:r}=this.props,n=null,o=nt.pending;if(r instanceof Promise)if(this.state.error){nt.error;let t=this.state.error;Promise.reject().catch((()=>{})),Object.defineProperty(n,"_tracked",{get:()=>!0}),Object.defineProperty(n,"_error",{get:()=>t})}else r._tracked?void 0!==n._error?nt.error:void 0!==n._data?nt.success:nt.pending:(nt.pending,Object.defineProperty(r,"_tracked",{get:()=>!0}),r.then((t=>Object.defineProperty(r,"_data",{get:()=>t})),(t=>Object.defineProperty(r,"_error",{get:()=>t}))));else nt.success,Promise.resolve(),Object.defineProperty(n,"_tracked",{get:()=>!0}),Object.defineProperty(n,"_data",{get:()=>r});if(o===nt.error&&n._error instanceof AbortedDeferredError)throw neverSettledPromise;if(o===nt.error&&!e)throw n._error;if(o===nt.error)return React.createElement(AwaitContext.Provider,{value:n,children:e});if(o===nt.success)return React.createElement(AwaitContext.Provider,{value:n,children:t});throw n}}function lt(t,r){void 0===r&&(r=[]);let n=[];return e.Children.forEach(t,((t,o)=>{if(!e.isValidElement(t))return;if(t.type===e.Fragment)return void n.push.apply(n,lt(t.props.children,r));t.type!==ot&&s(!1),t.props.index&&t.props.children&&s(!1);let i=[...r,o],a={id:t.props.id||i.join("-"),caseSensitive:t.props.caseSensitive,element:t.props.element,index:t.props.index,path:t.props.path,loader:t.props.loader,action:t.props.action,errorElement:t.props.errorElement,hasErrorBoundary:null!=t.props.errorElement,shouldRevalidate:t.props.shouldRevalidate,handle:t.props.handle};t.props.children&&(a.children=lt(t.props.children,i)),n.push(a)})),n}function dt(){return dt=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t},dt.apply(this,arguments)}const ct=["onClick","relative","reloadDocument","replace","state","target","to","preventScrollReset"];function ut(r){let{basename:n,children:o,window:i}=r,s=e.useRef();null==s.current&&(s.current=function(e){return void 0===e&&(e={}),function(e,r,n,o){void 0===o&&(o={});let{window:i=document.defaultView,v5Compat:s=!1}=o,u=i.history,m=t.Pop,f=null;function h(){m=t.Pop,f&&f({action:m,location:b.location})}let b={get action(){return m},get location(){return e(i,u)},listen(t){if(f)throw new Error("A history only accepts one active listener");return i.addEventListener(a,h),f=t,()=>{i.removeEventListener(a,h),f=null}},createHref:t=>r(i,t),encodeLocation(t){let e=p("string"==typeof t?t:c(t));return{pathname:e.pathname,search:e.search,hash:e.hash}},push:function(e,r){m=t.Push;let o=d(b.location,e,r);n&&n(o,e);let a=l(o),c=b.createHref(o);try{u.pushState(a,"",c)}catch(t){i.location.assign(c)}s&&f&&f({action:m,location:b.location})},replace:function(e,r){m=t.Replace;let o=d(b.location,e,r);n&&n(o,e);let i=l(o),a=b.createHref(o);u.replaceState(i,"",a),s&&f&&f({action:m,location:b.location})},go:t=>u.go(t)};return b}((function(t,e){let{pathname:r,search:n,hash:o}=t.location;return d("",{pathname:r,search:n,hash:o},e.state&&e.state.usr||null,e.state&&e.state.key||"default")}),(function(t,e){return"string"==typeof e?e:c(e)}),null,e)}({window:i,v5Compat:!0}));let u=s.current,[m,f]=e.useState({action:u.action,location:u.location});return e.useLayoutEffect((()=>u.listen(f)),[u]),e.createElement(it,{basename:n,children:o,location:m.location,navigationType:m.action,navigator:u})}const pt=e.forwardRef((function(t,r){let{onClick:n,relative:o,reloadDocument:i,replace:a,state:l,target:d,to:u,preventScrollReset:p}=t,m=function(t,e){if(null==t)return{};var r,n,o={},i=Object.keys(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||(o[r]=t[r]);return o}(t,ct),f=function(t,r){let{relative:n}=void 0===r?{}:r;X()||s(!1);let{basename:o,navigator:i}=e.useContext(W),{hash:a,pathname:l,search:d}=G(t,{relative:n}),c=l;return"/"!==o&&(c="/"===l?o:M([o,l])),i.createHref({pathname:c,search:d,hash:a})}(u,{relative:o}),h=function(t,r){let{target:n,replace:o,state:i,preventScrollReset:a,relative:l}=void 0===r?{}:r,d=function(){X()||s(!1);let{basename:t,navigator:r}=e.useContext(W),{matches:n}=e.useContext(K),{pathname:o}=q(),i=JSON.stringify(C(n).map((t=>t.pathnameBase))),a=e.useRef(!1);e.useEffect((()=>{a.current=!0}));let l=e.useCallback((function(e,n){if(void 0===n&&(n={}),!a.current)return;if("number"==typeof e)return void r.go(e);let s=z(e,JSON.parse(i),o,"path"===n.relative);"/"!==t&&(s.pathname="/"===s.pathname?t:M([t,s.pathname])),(n.replace?r.replace:r.push)(s,n.state,n)}),[t,r,i,o]);return l}(),u=q(),p=G(t,{relative:l});return e.useCallback((e=>{if(function(t,e){return!(0!==t.button||e&&"_self"!==e||function(t){return!!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)}(t))}(e,n)){e.preventDefault();let r=void 0!==o?o:c(u)===c(p);d(t,{replace:r,state:i,preventScrollReset:a,relative:l})}}),[u,d,p,o,i,n,t,a,l])}(u,{replace:a,state:l,target:d,preventScrollReset:p,relative:o});return e.createElement("a",dt({},m,{href:f,onClick:i?n:function(t){n&&n(t),t.defaultPrevented||h(t)},ref:r,target:d}))}));var mt,ft;(function(t){t.UseScrollRestoration="useScrollRestoration",t.UseSubmitImpl="useSubmitImpl",t.UseFetcher="useFetcher"})(mt||(mt={})),function(t){t.UseFetchers="useFetchers",t.UseScrollRestoration="useScrollRestoration"}(ft||(ft={}));var ht=o(184),bt=o.n(ht),gt=o(893);const vt=e.createContext({prefixes:{},breakpoints:["xxl","xl","lg","md","sm","xs"],minBreakpoint:"xs"}),{Consumer:xt,Provider:yt}=vt;function wt(t,r){const{prefixes:n}=(0,e.useContext)(vt);return t||n[r]||r}function kt(){const{breakpoints:t}=(0,e.useContext)(vt);return t}function _t(){const{minBreakpoint:t}=(0,e.useContext)(vt);return t}const St=e.forwardRef((({bsPrefix:t,fluid:e,as:r="div",className:n,...o},i)=>{const a=wt(t,"container"),s="string"==typeof e?`-${e}`:"-fluid";return(0,gt.jsx)(r,{ref:i,...o,className:bt()(n,e?`${a}${s}`:a)})}));St.displayName="Container",St.defaultProps={fluid:!1};const Et=St,Ct=e.forwardRef((({bsPrefix:t,className:e,as:r="div",...n},o)=>{const i=wt(t,"row"),a=kt(),s=_t(),l=`${i}-cols`,d=[];return a.forEach((t=>{const e=n[t];let r;delete n[t],null!=e&&"object"==typeof e?({cols:r}=e):r=e;const o=t!==s?`-${t}`:"";null!=r&&d.push(`${l}${o}-${r}`)})),(0,gt.jsx)(r,{ref:o,...n,className:bt()(e,i,...d)})}));Ct.displayName="Row";const zt=Ct,Mt=e.forwardRef(((t,e)=>{const[{className:r,...n},{as:o="div",bsPrefix:i,spans:a}]=function({as:t,bsPrefix:e,className:r,...n}){e=wt(e,"col");const o=kt(),i=_t(),a=[],s=[];return o.forEach((t=>{const r=n[t];let o,l,d;delete n[t],"object"==typeof r&&null!=r?({span:o,offset:l,order:d}=r):o=r;const c=t!==i?`-${t}`:"";o&&a.push(!0===o?`${e}${c}`:`${e}${c}-${o}`),null!=d&&s.push(`order${c}-${d}`),null!=l&&s.push(`offset${c}-${l}`)})),[{...n,className:bt()(r,...a,...s)},{as:t,bsPrefix:e,spans:a}]}(t);return(0,gt.jsx)(o,{...n,ref:e,className:bt()(r,!a.length&&i)})}));Mt.displayName="Col";const Pt=Mt;var Ot=/-(.)/g;const Tt=t=>{return t[0].toUpperCase()+(e=t,e.replace(Ot,(function(t,e){return e.toUpperCase()}))).slice(1);var e};function Lt(t,{displayName:r=Tt(t),Component:n,defaultProps:o}={}){const i=e.forwardRef((({className:e,bsPrefix:r,as:o=n||"div",...i},a)=>{const s=wt(r,t);return(0,gt.jsx)(o,{ref:a,className:bt()(e,s),...i})}));return i.defaultProps=o,i.displayName=r,i}const Nt=t=>e.forwardRef(((e,r)=>(0,gt.jsx)("div",{...e,ref:r,className:bt()(e.className,t)}))),Rt=e.forwardRef((({bsPrefix:t,className:e,variant:r,as:n="img",...o},i)=>{const a=wt(t,"card-img");return(0,gt.jsx)(n,{ref:i,className:bt()(r?`${a}-${r}`:a,e),...o})}));Rt.displayName="CardImg";const Dt=Rt,It=e.createContext(null);It.displayName="CardHeaderContext";const At=It,jt=e.forwardRef((({bsPrefix:t,className:r,as:n="div",...o},i)=>{const a=wt(t,"card-header"),s=(0,e.useMemo)((()=>({cardHeaderBsPrefix:a})),[a]);return(0,gt.jsx)(At.Provider,{value:s,children:(0,gt.jsx)(n,{ref:i,...o,className:bt()(r,a)})})}));jt.displayName="CardHeader";const Ft=jt,Bt=Nt("h5"),Ut=Nt("h6"),Ht=Lt("card-body"),Vt=Lt("card-title",{Component:Bt}),$t=Lt("card-subtitle",{Component:Ut}),Wt=Lt("card-link",{Component:"a"}),Yt=Lt("card-text",{Component:"p"}),Kt=Lt("card-footer"),Qt=Lt("card-img-overlay"),Xt=e.forwardRef((({bsPrefix:t,className:e,bg:r,text:n,border:o,body:i,children:a,as:s="div",...l},d)=>{const c=wt(t,"card");return(0,gt.jsx)(s,{ref:d,...l,className:bt()(e,c,r&&`bg-${r}`,n&&`text-${n}`,o&&`border-${o}`),children:i?(0,gt.jsx)(Ht,{children:a}):a})}));Xt.displayName="Card",Xt.defaultProps={body:!1};const qt=Object.assign(Xt,{Img:Dt,Title:Vt,Subtitle:$t,Body:Ht,Link:Wt,Text:Yt,Header:Ft,Footer:Kt,ImgOverlay:Qt}),Gt=o.p+"images/home_data_icon.svg",Zt=o.p+"images/home_reports_icon.svg",Jt=function(){return e.createElement(Et,{className:"grey-container"},e.createElement(zt,null,e.createElement("div",{className:"center-text max-width-100vw"},e.createElement("h1",{className:"geant-header"},"THE GÉANT COMPENDIUM OF NRENS"),e.createElement("br",null),e.createElement("p",{className:"wordwrap"},"The GÉANT Compendium provides an authoritative reference source for anyone with an interest in the development of research and education networking in Europe and beyond. Published since 2001, the Compendium provides information on key areas such as users, services, traffic, budget and staffing."),e.createElement("p",{className:"wordwrap"},"This site captures the responses from the National Research and Education Networks themselves."))),e.createElement(zt,null,e.createElement(Pt,null,e.createElement(Et,{style:{backgroundColor:"white"},className:"rounded-border"},e.createElement(zt,{className:"justify-content-md-center"},e.createElement(Pt,{align:"center"},e.createElement(qt,{border:"light",style:{width:"18rem"}},e.createElement(pt,{to:"/data",style:{textDecoration:"none"}},e.createElement(qt.Img,{src:Gt}),e.createElement(qt.Body,null,e.createElement(qt.Title,null,"Compendium Data"),e.createElement(qt.Text,null,"The results of the Compendium Surveys data given annually by NRENs. Statical represetation of the data is available here."))))),e.createElement(Pt,{align:"center"},e.createElement(qt,{border:"light",style:{width:"18rem"}},e.createElement("a",{href:"https://resources.geant.org/geant-compendia/",style:{textDecoration:"none"}},e.createElement(qt.Img,{src:Zt}),e.createElement(qt.Body,null,e.createElement(qt.Title,null,"Compendium Reports"),e.createElement(qt.Text,null,"A GÉANT Compendium Report is published annually, drawing on data from the Compendium Survey lled in by NRENs, complemented by information from other surveys"))))))))))},te=o.p+"images/geant_logo_f2020_new.svg",ee=function(){return e.createElement("div",{className:"external-page-nav-bar"},e.createElement(Et,null,e.createElement(zt,null,e.createElement(Pt,null,e.createElement("img",{src:te}),e.createElement("ul",null,e.createElement("li",null,e.createElement("a",{href:"https://network.geant.org/"},"NETWORK")),e.createElement("li",null,e.createElement("a",{href:"https://geant.org/services/"},"SERVICES")),e.createElement("li",null,e.createElement("a",{href:"https://community.geant.org/"},"COMMUNITY")),e.createElement("li",null,e.createElement("a",{href:"https://tnc23.geant.org/"},"TNC")),e.createElement("li",null,e.createElement("a",{href:"https://geant.org/projects/"},"PROJECTS")),e.createElement("li",null,e.createElement("a",{href:"https://connect.geant.org/"},"CONNECT")),e.createElement("li",null,e.createElement("a",{href:"https://impact.geant.org/"},"IMPACT")),e.createElement("li",null,e.createElement("a",{href:"https://careers.geant.org/"},"CAREERS")),e.createElement("li",null,e.createElement("a",{href:"https://about.geant.org/"},"ABOUT")),e.createElement("li",null,e.createElement("a",{href:"https://connect.geant.org/community-news"},"NEWS")),e.createElement("li",null,e.createElement("a",{href:"https://resources.geant.org/"},"RESOURCES")))))))},re=function(){return e.createElement("div",null,e.createElement("h1",null,"About Page"))};function ne(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function oe(t,e){if(t){if("string"==typeof t)return ne(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?ne(t,e):void 0}}function ie(t){return function(t){if(Array.isArray(t))return ne(t)}(t)||function(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||oe(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ae(t,e,r,n,o,i,a){try{var s=t[i](a),l=s.value}catch(t){return void r(t)}s.done?e(l):Promise.resolve(l).then(n,o)}function se(t){return function(){var e=this,r=arguments;return new Promise((function(n,o){var i=t.apply(e,r);function a(t){ae(i,n,o,a,s,"next",t)}function s(t){ae(i,n,o,a,s,"throw",t)}a(void 0)}))}}function le(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,s=[],l=!0,d=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==e);l=!0);}catch(t){d=!0,o=t}finally{try{if(!l&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(d)throw o}}return s}}(t,e)||oe(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var de=o(687),ce=o.n(de);function ue(){return ue=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t},ue.apply(this,arguments)}function pe(t,e){if(null==t)return{};var r,n,o={},i=Object.keys(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||(o[r]=t[r]);return o}function me(t){return"default"+t.charAt(0).toUpperCase()+t.substr(1)}function fe(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,e);if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t,"string");return"symbol"==typeof e?e:String(e)}function he(t,r){return Object.keys(r).reduce((function(n,o){var i,a=n,s=a[me(o)],l=a[o],d=pe(a,[me(o),o].map(fe)),c=r[o],u=function(t,r,n){var o=(0,e.useRef)(void 0!==t),i=(0,e.useState)(r),a=i[0],s=i[1],l=void 0!==t,d=o.current;return o.current=l,!l&&d&&a!==r&&s(r),[l?t:a,(0,e.useCallback)((function(t){for(var e=arguments.length,r=new Array(e>1?e-1:0),o=1;o<e;o++)r[o-1]=arguments[o];n&&n.apply(void 0,[t].concat(r)),s(t)}),[n])]}(l,s,t[c]),p=u[0],m=u[1];return ue({},d,((i={})[o]=p,i[c]=m,i))}),t)}o(143);var be=/([A-Z])/g,ge=/^ms-/;function ve(t){return function(t){return t.replace(be,"-$1").toLowerCase()}(t).replace(ge,"-ms-")}var xe=/^((translate|rotate|scale)(X|Y|Z|3d)?|matrix(3d)?|perspective|skew(X|Y)?)$/i;const ye=function(t,e){var r="",n="";if("string"==typeof e)return t.style.getPropertyValue(ve(e))||function(t,e){return function(t){var e=function(t){return t&&t.ownerDocument||document}(t);return e&&e.defaultView||window}(t).getComputedStyle(t,void 0)}(t).getPropertyValue(ve(e));Object.keys(e).forEach((function(o){var i=e[o];i||0===i?function(t){return!(!t||!xe.test(t))}(o)?n+=o+"("+i+") ":r+=ve(o)+": "+i+";":t.style.removeProperty(ve(o))})),n&&(r+="transform: "+n+";"),t.style.cssText+=";"+r};function we(t,e){return we=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},we(t,e)}var ke=o(935);const _e=e.createContext(null);var Se="unmounted",Ee="exited",Ce="entering",ze="entered",Me="exiting",Pe=function(t){var r,n;function o(e,r){var n;n=t.call(this,e,r)||this;var o,i=r&&!r.isMounting?e.enter:e.appear;return n.appearStatus=null,e.in?i?(o=Ee,n.appearStatus=Ce):o=ze:o=e.unmountOnExit||e.mountOnEnter?Se:Ee,n.state={status:o},n.nextCallback=null,n}n=t,(r=o).prototype=Object.create(n.prototype),r.prototype.constructor=r,we(r,n),o.getDerivedStateFromProps=function(t,e){return t.in&&e.status===Se?{status:Ee}:null};var i=o.prototype;return i.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},i.componentDidUpdate=function(t){var e=null;if(t!==this.props){var r=this.state.status;this.props.in?r!==Ce&&r!==ze&&(e=Ce):r!==Ce&&r!==ze||(e=Me)}this.updateStatus(!1,e)},i.componentWillUnmount=function(){this.cancelNextCallback()},i.getTimeouts=function(){var t,e,r,n=this.props.timeout;return t=e=r=n,null!=n&&"number"!=typeof n&&(t=n.exit,e=n.enter,r=void 0!==n.appear?n.appear:e),{exit:t,enter:e,appear:r}},i.updateStatus=function(t,e){if(void 0===t&&(t=!1),null!==e)if(this.cancelNextCallback(),e===Ce){if(this.props.unmountOnExit||this.props.mountOnEnter){var r=this.props.nodeRef?this.props.nodeRef.current:ke.findDOMNode(this);r&&function(t){t.scrollTop}(r)}this.performEnter(t)}else this.performExit();else this.props.unmountOnExit&&this.state.status===Ee&&this.setState({status:Se})},i.performEnter=function(t){var e=this,r=this.props.enter,n=this.context?this.context.isMounting:t,o=this.props.nodeRef?[n]:[ke.findDOMNode(this),n],i=o[0],a=o[1],s=this.getTimeouts(),l=n?s.appear:s.enter;t||r?(this.props.onEnter(i,a),this.safeSetState({status:Ce},(function(){e.props.onEntering(i,a),e.onTransitionEnd(l,(function(){e.safeSetState({status:ze},(function(){e.props.onEntered(i,a)}))}))}))):this.safeSetState({status:ze},(function(){e.props.onEntered(i)}))},i.performExit=function(){var t=this,e=this.props.exit,r=this.getTimeouts(),n=this.props.nodeRef?void 0:ke.findDOMNode(this);e?(this.props.onExit(n),this.safeSetState({status:Me},(function(){t.props.onExiting(n),t.onTransitionEnd(r.exit,(function(){t.safeSetState({status:Ee},(function(){t.props.onExited(n)}))}))}))):this.safeSetState({status:Ee},(function(){t.props.onExited(n)}))},i.cancelNextCallback=function(){null!==this.nextCallback&&(this.nextCallback.cancel(),this.nextCallback=null)},i.safeSetState=function(t,e){e=this.setNextCallback(e),this.setState(t,e)},i.setNextCallback=function(t){var e=this,r=!0;return this.nextCallback=function(n){r&&(r=!1,e.nextCallback=null,t(n))},this.nextCallback.cancel=function(){r=!1},this.nextCallback},i.onTransitionEnd=function(t,e){this.setNextCallback(e);var r=this.props.nodeRef?this.props.nodeRef.current:ke.findDOMNode(this),n=null==t&&!this.props.addEndListener;if(r&&!n){if(this.props.addEndListener){var o=this.props.nodeRef?[this.nextCallback]:[r,this.nextCallback],i=o[0],a=o[1];this.props.addEndListener(i,a)}null!=t&&setTimeout(this.nextCallback,t)}else setTimeout(this.nextCallback,0)},i.render=function(){var t=this.state.status;if(t===Se)return null;var r=this.props,n=r.children,o=(r.in,r.mountOnEnter,r.unmountOnExit,r.appear,r.enter,r.exit,r.timeout,r.addEndListener,r.onEnter,r.onEntering,r.onEntered,r.onExit,r.onExiting,r.onExited,r.nodeRef,pe(r,["children","in","mountOnEnter","unmountOnExit","appear","enter","exit","timeout","addEndListener","onEnter","onEntering","onEntered","onExit","onExiting","onExited","nodeRef"]));return e.createElement(_e.Provider,{value:null},"function"==typeof n?n(t,o):e.cloneElement(e.Children.only(n),o))},o}(e.Component);function Oe(){}Pe.contextType=_e,Pe.propTypes={},Pe.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:Oe,onEntering:Oe,onEntered:Oe,onExit:Oe,onExiting:Oe,onExited:Oe},Pe.UNMOUNTED=Se,Pe.EXITED=Ee,Pe.ENTERING=Ce,Pe.ENTERED=ze,Pe.EXITING=Me;const Te=Pe,Le=!("undefined"==typeof window||!window.document||!window.document.createElement);var Ne=!1,Re=!1;try{var De={get passive(){return Ne=!0},get once(){return Re=Ne=!0}};Le&&(window.addEventListener("test",De,De),window.removeEventListener("test",De,!0))}catch(t){}const Ie=function(t,e,r,n){return function(t,e,r,n){if(n&&"boolean"!=typeof n&&!Re){var o=n.once,i=n.capture,a=r;!Re&&o&&(a=r.__once||function t(n){this.removeEventListener(e,t,i),r.call(this,n)},r.__once=a),t.addEventListener(e,a,Ne?n:i)}t.addEventListener(e,r,n)}(t,e,r,n),function(){!function(t,e,r,n){var o=n&&"boolean"!=typeof n?n.capture:n;t.removeEventListener(e,r,o),r.__once&&t.removeEventListener(e,r.__once,o)}(t,e,r,n)}};function Ae(t,e,r,n){var o,i;null==r&&(i=-1===(o=ye(t,"transitionDuration")||"").indexOf("ms")?1e3:1,r=parseFloat(o)*i||0);var a=function(t,e,r){void 0===r&&(r=5);var n=!1,o=setTimeout((function(){n||function(t,e,r,n){if(void 0===r&&(r=!1),void 0===n&&(n=!0),t){var o=document.createEvent("HTMLEvents");o.initEvent("transitionend",r,n),t.dispatchEvent(o)}}(t,0,!0)}),e+r),i=Ie(t,"transitionend",(function(){n=!0}),{once:!0});return function(){clearTimeout(o),i()}}(t,r,n),s=Ie(t,"transitionend",e);return function(){a(),s()}}function je(t,e){const r=ye(t,e)||"",n=-1===r.indexOf("ms")?1e3:1;return parseFloat(r)*n}function Fe(t,e){const r=je(t,"transitionDuration"),n=je(t,"transitionDelay"),o=Ae(t,(r=>{r.target===t&&(o(),e(r))}),r+n)}const Be=function(...t){return t.filter((t=>null!=t)).reduce(((t,e)=>{if("function"!=typeof e)throw new Error("Invalid Argument Type, must only provide functions, undefined, or null.");return null===t?e:function(...r){t.apply(this,r),e.apply(this,r)}}),null)};var Ue=function(t){return t&&"function"!=typeof t?function(e){t.current=e}:t};const He=function(t,r){return(0,e.useMemo)((function(){return function(t,e){var r=Ue(t),n=Ue(e);return function(t){r&&r(t),n&&n(t)}}(t,r)}),[t,r])},Ve=e.forwardRef((({onEnter:t,onEntering:r,onEntered:n,onExit:o,onExiting:i,onExited:a,addEndListener:s,children:l,childRef:d,...c},u)=>{const p=(0,e.useRef)(null),m=He(p,d),f=t=>{var e;m((e=t)&&"setState"in e?ke.findDOMNode(e):null!=e?e:null)},h=t=>e=>{t&&p.current&&t(p.current,e)},b=(0,e.useCallback)(h(t),[t]),g=(0,e.useCallback)(h(r),[r]),v=(0,e.useCallback)(h(n),[n]),x=(0,e.useCallback)(h(o),[o]),y=(0,e.useCallback)(h(i),[i]),w=(0,e.useCallback)(h(a),[a]),k=(0,e.useCallback)(h(s),[s]);return(0,gt.jsx)(Te,{ref:u,...c,onEnter:b,onEntered:v,onEntering:g,onExit:x,onExited:w,onExiting:y,addEndListener:k,nodeRef:p,children:"function"==typeof l?(t,e)=>l(t,{...e,ref:f}):e.cloneElement(l,{ref:f})})})),$e=Ve,We={height:["marginTop","marginBottom"],width:["marginLeft","marginRight"]};function Ye(t,e){const r=e[`offset${t[0].toUpperCase()}${t.slice(1)}`],n=We[t];return r+parseInt(ye(e,n[0]),10)+parseInt(ye(e,n[1]),10)}const Ke={[Ee]:"collapse",[Me]:"collapsing",[Ce]:"collapsing",[ze]:"collapse show"},Qe={in:!1,timeout:300,mountOnEnter:!1,unmountOnExit:!1,appear:!1,getDimensionValue:Ye},Xe=e.forwardRef((({onEnter:t,onEntering:r,onEntered:n,onExit:o,onExiting:i,className:a,children:s,dimension:l="height",getDimensionValue:d=Ye,...c},u)=>{const p="function"==typeof l?l():l,m=(0,e.useMemo)((()=>Be((t=>{t.style[p]="0"}),t)),[p,t]),f=(0,e.useMemo)((()=>Be((t=>{const e=`scroll${p[0].toUpperCase()}${p.slice(1)}`;t.style[p]=`${t[e]}px`}),r)),[p,r]),h=(0,e.useMemo)((()=>Be((t=>{t.style[p]=null}),n)),[p,n]),b=(0,e.useMemo)((()=>Be((t=>{t.style[p]=`${d(p,t)}px`,t.offsetHeight}),o)),[o,d,p]),g=(0,e.useMemo)((()=>Be((t=>{t.style[p]=null}),i)),[p,i]);return(0,gt.jsx)($e,{ref:u,addEndListener:Fe,...c,"aria-expanded":c.role?c.in:null,onEnter:m,onEntering:f,onEntered:h,onExit:b,onExiting:g,childRef:s.ref,children:(t,r)=>e.cloneElement(s,{...r,className:bt()(a,s.props.className,Ke[t],"width"===p&&"collapse-horizontal")})})}));Xe.defaultProps=Qe;const qe=Xe;function Ge(t,e){return Array.isArray(t)?t.includes(e):t===e}const Ze=e.createContext({});Ze.displayName="AccordionContext";const Je=Ze,tr=e.forwardRef((({as:t="div",bsPrefix:r,className:n,children:o,eventKey:i,...a},s)=>{const{activeEventKey:l}=(0,e.useContext)(Je);return r=wt(r,"accordion-collapse"),(0,gt.jsx)(qe,{ref:s,in:Ge(l,i),...a,className:bt()(n,r),children:(0,gt.jsx)(t,{children:e.Children.only(o)})})}));tr.displayName="AccordionCollapse";const er=tr,rr=e.createContext({eventKey:""});rr.displayName="AccordionItemContext";const nr=rr,or=e.forwardRef((({as:t="div",bsPrefix:r,className:n,onEnter:o,onEntering:i,onEntered:a,onExit:s,onExiting:l,onExited:d,...c},u)=>{r=wt(r,"accordion-body");const{eventKey:p}=(0,e.useContext)(nr);return(0,gt.jsx)(er,{eventKey:p,onEnter:o,onEntering:i,onEntered:a,onExit:s,onExiting:l,onExited:d,children:(0,gt.jsx)(t,{ref:u,...c,className:bt()(n,r)})})}));or.displayName="AccordionBody";const ir=or,ar=e.forwardRef((({as:t="button",bsPrefix:r,className:n,onClick:o,...i},a)=>{r=wt(r,"accordion-button");const{eventKey:s}=(0,e.useContext)(nr),l=function(t,r){const{activeEventKey:n,onSelect:o,alwaysOpen:i}=(0,e.useContext)(Je);return e=>{let a=t===n?null:t;i&&(a=Array.isArray(n)?n.includes(t)?n.filter((e=>e!==t)):[...n,t]:[t]),null==o||o(a,e),null==r||r(e)}}(s,o),{activeEventKey:d}=(0,e.useContext)(Je);return"button"===t&&(i.type="button"),(0,gt.jsx)(t,{ref:a,onClick:l,...i,"aria-expanded":s===d,className:bt()(n,r,!Ge(d,s)&&"collapsed")})}));ar.displayName="AccordionButton";const sr=ar,lr=e.forwardRef((({as:t="h2",bsPrefix:e,className:r,children:n,onClick:o,...i},a)=>(e=wt(e,"accordion-header"),(0,gt.jsx)(t,{ref:a,...i,className:bt()(r,e),children:(0,gt.jsx)(sr,{onClick:o,children:n})}))));lr.displayName="AccordionHeader";const dr=lr,cr=e.forwardRef((({as:t="div",bsPrefix:r,className:n,eventKey:o,...i},a)=>{r=wt(r,"accordion-item");const s=(0,e.useMemo)((()=>({eventKey:o})),[o]);return(0,gt.jsx)(nr.Provider,{value:s,children:(0,gt.jsx)(t,{ref:a,...i,className:bt()(n,r)})})}));cr.displayName="AccordionItem";const ur=cr,pr=e.forwardRef(((t,r)=>{const{as:n="div",activeKey:o,bsPrefix:i,className:a,onSelect:s,flush:l,alwaysOpen:d,...c}=he(t,{activeKey:"onSelect"}),u=wt(i,"accordion"),p=(0,e.useMemo)((()=>({activeEventKey:o,onSelect:s,alwaysOpen:d})),[o,s,d]);return(0,gt.jsx)(Je.Provider,{value:p,children:(0,gt.jsx)(n,{ref:r,...c,className:bt()(a,u,l&&`${u}-flush`)})})}));pr.displayName="Accordion";const mr=Object.assign(pr,{Button:sr,Collapse:er,Item:ur,Header:dr,Body:ir});o(473);var fr=Function.prototype.bind.call(Function.prototype.call,[].slice);const hr=e.createContext(null);hr.displayName="NavContext";const br=hr,gr=(t,e=null)=>null!=t?String(t):e||null,vr=e.createContext(null),xr=e.createContext(null);function yr(t){return`data-rr-ui-${t}`}function wr(t){var r=function(t){var r=(0,e.useRef)(t);return(0,e.useEffect)((function(){r.current=t}),[t]),r}(t);return(0,e.useCallback)((function(){return r.current&&r.current.apply(r,arguments)}),[r])}const kr=["as","disabled"],_r=e.forwardRef(((t,e)=>{let{as:r,disabled:n}=t,o=function(t,e){if(null==t)return{};var r,n,o={},i=Object.keys(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||(o[r]=t[r]);return o}(t,kr);const[i,{tagName:a}]=function({tagName:t,disabled:e,href:r,target:n,rel:o,role:i,onClick:a,tabIndex:s=0,type:l}){t||(t=null!=r||null!=n||null!=o?"a":"button");const d={tagName:t};if("button"===t)return[{type:l||"button",disabled:e},d];const c=n=>{(e||"a"===t&&function(t){return!t||"#"===t.trim()}(r))&&n.preventDefault(),e?n.stopPropagation():null==a||a(n)};return"a"===t&&(r||(r="#"),e&&(r=void 0)),[{role:null!=i?i:"button",disabled:void 0,tabIndex:e?void 0:s,href:r,target:"a"===t?n:void 0,"aria-disabled":e||void 0,rel:"a"===t?o:void 0,onClick:c,onKeyDown:t=>{" "===t.key&&(t.preventDefault(),c(t))}},d]}(Object.assign({tagName:r,disabled:n},o));return(0,gt.jsx)(a,Object.assign({},o,i,{ref:e}))}));_r.displayName="Button";const Sr=_r,Er=["as","active","eventKey"];function Cr({key:t,onClick:r,active:n,id:o,role:i,disabled:a}){const s=(0,e.useContext)(vr),l=(0,e.useContext)(br),d=(0,e.useContext)(xr);let c=n;const u={role:i};if(l){i||"tablist"!==l.role||(u.role="tab");const e=l.getControllerId(null!=t?t:null),r=l.getControlledId(null!=t?t:null);u[yr("event-key")]=t,u.id=e||o,c=null==n&&null!=t?l.activeKey===t:n,!c&&(null!=d&&d.unmountOnExit||null!=d&&d.mountOnEnter)||(u["aria-controls"]=r)}return"tab"===u.role&&(u["aria-selected"]=c,c||(u.tabIndex=-1),a&&(u.tabIndex=-1,u["aria-disabled"]=!0)),u.onClick=wr((e=>{a||(null==r||r(e),null!=t&&s&&!e.isPropagationStopped()&&s(t,e))})),[u,{isActive:c}]}const zr=e.forwardRef(((t,e)=>{let{as:r=Sr,active:n,eventKey:o}=t,i=function(t,e){if(null==t)return{};var r,n,o={},i=Object.keys(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||(o[r]=t[r]);return o}(t,Er);const[a,s]=Cr(Object.assign({key:gr(o,i.href),active:n},i));return a[yr("active")]=s.isActive,(0,gt.jsx)(r,Object.assign({},i,a,{ref:e}))}));zr.displayName="NavItem";const Mr=zr,Pr=["as","onSelect","activeKey","role","onKeyDown"],Or=()=>{},Tr=yr("event-key"),Lr=e.forwardRef(((t,r)=>{let{as:n="div",onSelect:o,activeKey:i,role:a,onKeyDown:s}=t,l=function(t,e){if(null==t)return{};var r,n,o={},i=Object.keys(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||(o[r]=t[r]);return o}(t,Pr);const d=(0,e.useReducer)((function(t){return!t}),!1)[1],c=(0,e.useRef)(!1),u=(0,e.useContext)(vr),p=(0,e.useContext)(xr);let m,f;p&&(a=a||"tablist",i=p.activeKey,m=p.getControlledId,f=p.getControllerId);const h=(0,e.useRef)(null),b=t=>{const e=h.current;if(!e)return null;const r=(n=`[${Tr}]:not([aria-disabled=true])`,fr(e.querySelectorAll(n)));var n;const o=e.querySelector("[aria-selected=true]");if(!o||o!==document.activeElement)return null;const i=r.indexOf(o);if(-1===i)return null;let a=i+t;return a>=r.length&&(a=0),a<0&&(a=r.length-1),r[a]},g=(t,e)=>{null!=t&&(null==o||o(t,e),null==u||u(t,e))};(0,e.useEffect)((()=>{if(h.current&&c.current){const t=h.current.querySelector(`[${Tr}][aria-selected=true]`);null==t||t.focus()}c.current=!1}));const v=He(r,h);return(0,gt.jsx)(vr.Provider,{value:g,children:(0,gt.jsx)(br.Provider,{value:{role:a,activeKey:gr(i),getControlledId:m||Or,getControllerId:f||Or},children:(0,gt.jsx)(n,Object.assign({},l,{onKeyDown:t=>{if(null==s||s(t),!p)return;let e;switch(t.key){case"ArrowLeft":case"ArrowUp":e=b(-1);break;case"ArrowRight":case"ArrowDown":e=b(1);break;default:return}e&&(t.preventDefault(),g(e.dataset[("EventKey","rrUiEventKey")]||null,t),c.current=!0,d())},ref:v,role:a}))})})}));Lr.displayName="Nav";const Nr=Object.assign(Lr,{Item:Mr}),Rr=e.forwardRef((({bsPrefix:t,active:e,disabled:r,eventKey:n,className:o,variant:i,action:a,as:s,...l},d)=>{t=wt(t,"list-group-item");const[c,u]=Cr({key:gr(n,l.href),active:e,...l}),p=wr((t=>{if(r)return t.preventDefault(),void t.stopPropagation();c.onClick(t)}));r&&void 0===l.tabIndex&&(l.tabIndex=-1,l["aria-disabled"]=!0);const m=s||(a?l.href?"a":"button":"div");return(0,gt.jsx)(m,{ref:d,...l,...c,onClick:p,className:bt()(o,t,u.isActive&&"active",r&&"disabled",i&&`${t}-${i}`,a&&`${t}-action`)})}));Rr.displayName="ListGroupItem";const Dr=Rr,Ir=e.forwardRef(((t,e)=>{const{className:r,bsPrefix:n,variant:o,horizontal:i,numbered:a,as:s="div",...l}=he(t,{activeKey:"onSelect"}),d=wt(n,"list-group");let c;return i&&(c=!0===i?"horizontal":`horizontal-${i}`),(0,gt.jsx)(Nr,{ref:e,...l,as:s,className:bt()(r,d,o&&`${d}-${o}`,c&&`${d}-${c}`,a&&`${d}-numbered`)})}));Ir.displayName="ListGroup";const Ar=Object.assign(Ir,{Item:Dr});function jr(t){return t+.5|0}const Fr=(t,e,r)=>Math.max(Math.min(t,r),e);function Br(t){return Fr(jr(2.55*t),0,255)}function Ur(t){return Fr(jr(255*t),0,255)}function Hr(t){return Fr(jr(t/2.55)/100,0,1)}function Vr(t){return Fr(jr(100*t),0,100)}const $r={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,A:10,B:11,C:12,D:13,E:14,F:15,a:10,b:11,c:12,d:13,e:14,f:15},Wr=[..."0123456789ABCDEF"],Yr=t=>Wr[15&t],Kr=t=>Wr[(240&t)>>4]+Wr[15&t],Qr=t=>(240&t)>>4==(15&t);const Xr=/^(hsla?|hwb|hsv)\(\s*([-+.e\d]+)(?:deg)?[\s,]+([-+.e\d]+)%[\s,]+([-+.e\d]+)%(?:[\s,]+([-+.e\d]+)(%)?)?\s*\)$/;function qr(t,e,r){const n=e*Math.min(r,1-r),o=(e,o=(e+t/30)%12)=>r-n*Math.max(Math.min(o-3,9-o,1),-1);return[o(0),o(8),o(4)]}function Gr(t,e,r){const n=(n,o=(n+t/60)%6)=>r-r*e*Math.max(Math.min(o,4-o,1),0);return[n(5),n(3),n(1)]}function Zr(t,e,r){const n=qr(t,1,.5);let o;for(e+r>1&&(o=1/(e+r),e*=o,r*=o),o=0;o<3;o++)n[o]*=1-e-r,n[o]+=e;return n}function Jr(t){const e=t.r/255,r=t.g/255,n=t.b/255,o=Math.max(e,r,n),i=Math.min(e,r,n),a=(o+i)/2;let s,l,d;return o!==i&&(d=o-i,l=a>.5?d/(2-o-i):d/(o+i),s=function(t,e,r,n,o){return t===o?(e-r)/n+(e<r?6:0):e===o?(r-t)/n+2:(t-e)/n+4}(e,r,n,d,o),s=60*s+.5),[0|s,l||0,a]}function tn(t,e,r,n){return(Array.isArray(e)?t(e[0],e[1],e[2]):t(e,r,n)).map(Ur)}function en(t,e,r){return tn(qr,t,e,r)}function rn(t){return(t%360+360)%360}const nn={x:"dark",Z:"light",Y:"re",X:"blu",W:"gr",V:"medium",U:"slate",A:"ee",T:"ol",S:"or",B:"ra",C:"lateg",D:"ights",R:"in",Q:"turquois",E:"hi",P:"ro",O:"al",N:"le",M:"de",L:"yello",F:"en",K:"ch",G:"arks",H:"ea",I:"ightg",J:"wh"},on={OiceXe:"f0f8ff",antiquewEte:"faebd7",aqua:"ffff",aquamarRe:"7fffd4",azuY:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"0",blanKedOmond:"ffebcd",Xe:"ff",XeviTet:"8a2be2",bPwn:"a52a2a",burlywood:"deb887",caMtXe:"5f9ea0",KartYuse:"7fff00",KocTate:"d2691e",cSO:"ff7f50",cSnflowerXe:"6495ed",cSnsilk:"fff8dc",crimson:"dc143c",cyan:"ffff",xXe:"8b",xcyan:"8b8b",xgTMnPd:"b8860b",xWay:"a9a9a9",xgYF:"6400",xgYy:"a9a9a9",xkhaki:"bdb76b",xmagFta:"8b008b",xTivegYF:"556b2f",xSange:"ff8c00",xScEd:"9932cc",xYd:"8b0000",xsOmon:"e9967a",xsHgYF:"8fbc8f",xUXe:"483d8b",xUWay:"2f4f4f",xUgYy:"2f4f4f",xQe:"ced1",xviTet:"9400d3",dAppRk:"ff1493",dApskyXe:"bfff",dimWay:"696969",dimgYy:"696969",dodgerXe:"1e90ff",fiYbrick:"b22222",flSOwEte:"fffaf0",foYstWAn:"228b22",fuKsia:"ff00ff",gaRsbSo:"dcdcdc",ghostwEte:"f8f8ff",gTd:"ffd700",gTMnPd:"daa520",Way:"808080",gYF:"8000",gYFLw:"adff2f",gYy:"808080",honeyMw:"f0fff0",hotpRk:"ff69b4",RdianYd:"cd5c5c",Rdigo:"4b0082",ivSy:"fffff0",khaki:"f0e68c",lavFMr:"e6e6fa",lavFMrXsh:"fff0f5",lawngYF:"7cfc00",NmoncEffon:"fffacd",ZXe:"add8e6",ZcSO:"f08080",Zcyan:"e0ffff",ZgTMnPdLw:"fafad2",ZWay:"d3d3d3",ZgYF:"90ee90",ZgYy:"d3d3d3",ZpRk:"ffb6c1",ZsOmon:"ffa07a",ZsHgYF:"20b2aa",ZskyXe:"87cefa",ZUWay:"778899",ZUgYy:"778899",ZstAlXe:"b0c4de",ZLw:"ffffe0",lime:"ff00",limegYF:"32cd32",lRF:"faf0e6",magFta:"ff00ff",maPon:"800000",VaquamarRe:"66cdaa",VXe:"cd",VScEd:"ba55d3",VpurpN:"9370db",VsHgYF:"3cb371",VUXe:"7b68ee",VsprRggYF:"fa9a",VQe:"48d1cc",VviTetYd:"c71585",midnightXe:"191970",mRtcYam:"f5fffa",mistyPse:"ffe4e1",moccasR:"ffe4b5",navajowEte:"ffdead",navy:"80",Tdlace:"fdf5e6",Tive:"808000",TivedBb:"6b8e23",Sange:"ffa500",SangeYd:"ff4500",ScEd:"da70d6",pOegTMnPd:"eee8aa",pOegYF:"98fb98",pOeQe:"afeeee",pOeviTetYd:"db7093",papayawEp:"ffefd5",pHKpuff:"ffdab9",peru:"cd853f",pRk:"ffc0cb",plum:"dda0dd",powMrXe:"b0e0e6",purpN:"800080",YbeccapurpN:"663399",Yd:"ff0000",Psybrown:"bc8f8f",PyOXe:"4169e1",saddNbPwn:"8b4513",sOmon:"fa8072",sandybPwn:"f4a460",sHgYF:"2e8b57",sHshell:"fff5ee",siFna:"a0522d",silver:"c0c0c0",skyXe:"87ceeb",UXe:"6a5acd",UWay:"708090",UgYy:"708090",snow:"fffafa",sprRggYF:"ff7f",stAlXe:"4682b4",tan:"d2b48c",teO:"8080",tEstN:"d8bfd8",tomato:"ff6347",Qe:"40e0d0",viTet:"ee82ee",JHt:"f5deb3",wEte:"ffffff",wEtesmoke:"f5f5f5",Lw:"ffff00",LwgYF:"9acd32"};let an;const sn=/^rgba?\(\s*([-+.\d]+)(%)?[\s,]+([-+.e\d]+)(%)?[\s,]+([-+.e\d]+)(%)?(?:[\s,/]+([-+.e\d]+)(%)?)?\s*\)$/,ln=t=>t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055,dn=t=>t<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4);function cn(t,e,r){if(t){let n=Jr(t);n[e]=Math.max(0,Math.min(n[e]+n[e]*r,0===e?360:1)),n=en(n),t.r=n[0],t.g=n[1],t.b=n[2]}}function un(t,e){return t?Object.assign(e||{},t):t}function pn(t){var e={r:0,g:0,b:0,a:255};return Array.isArray(t)?t.length>=3&&(e={r:t[0],g:t[1],b:t[2],a:255},t.length>3&&(e.a=Ur(t[3]))):(e=un(t,{r:0,g:0,b:0,a:1})).a=Ur(e.a),e}function mn(t){return"r"===t.charAt(0)?function(t){const e=sn.exec(t);let r,n,o,i=255;if(e){if(e[7]!==r){const t=+e[7];i=e[8]?Br(t):Fr(255*t,0,255)}return r=+e[1],n=+e[3],o=+e[5],r=255&(e[2]?Br(r):Fr(r,0,255)),n=255&(e[4]?Br(n):Fr(n,0,255)),o=255&(e[6]?Br(o):Fr(o,0,255)),{r,g:n,b:o,a:i}}}(t):function(t){const e=Xr.exec(t);let r,n=255;if(!e)return;e[5]!==r&&(n=e[6]?Br(+e[5]):Ur(+e[5]));const o=rn(+e[2]),i=+e[3]/100,a=+e[4]/100;return r="hwb"===e[1]?function(t,e,r){return tn(Zr,t,e,r)}(o,i,a):"hsv"===e[1]?function(t,e,r){return tn(Gr,t,e,r)}(o,i,a):en(o,i,a),{r:r[0],g:r[1],b:r[2],a:n}}(t)}class fn{constructor(t){if(t instanceof fn)return t;const e=typeof t;let r;var n,o,i;"object"===e?r=pn(t):"string"===e&&(i=(n=t).length,"#"===n[0]&&(4===i||5===i?o={r:255&17*$r[n[1]],g:255&17*$r[n[2]],b:255&17*$r[n[3]],a:5===i?17*$r[n[4]]:255}:7!==i&&9!==i||(o={r:$r[n[1]]<<4|$r[n[2]],g:$r[n[3]]<<4|$r[n[4]],b:$r[n[5]]<<4|$r[n[6]],a:9===i?$r[n[7]]<<4|$r[n[8]]:255})),r=o||function(t){an||(an=function(){const t={},e=Object.keys(on),r=Object.keys(nn);let n,o,i,a,s;for(n=0;n<e.length;n++){for(a=s=e[n],o=0;o<r.length;o++)i=r[o],s=s.replace(i,nn[i]);i=parseInt(on[a],16),t[s]=[i>>16&255,i>>8&255,255&i]}return t}(),an.transparent=[0,0,0,0]);const e=an[t.toLowerCase()];return e&&{r:e[0],g:e[1],b:e[2],a:4===e.length?e[3]:255}}(t)||mn(t)),this._rgb=r,this._valid=!!r}get valid(){return this._valid}get rgb(){var t=un(this._rgb);return t&&(t.a=Hr(t.a)),t}set rgb(t){this._rgb=pn(t)}rgbString(){return this._valid?(t=this._rgb)&&(t.a<255?`rgba(${t.r}, ${t.g}, ${t.b}, ${Hr(t.a)})`:`rgb(${t.r}, ${t.g}, ${t.b})`):void 0;var t}hexString(){return this._valid?(t=this._rgb,e=(t=>Qr(t.r)&&Qr(t.g)&&Qr(t.b)&&Qr(t.a))(t)?Yr:Kr,t?"#"+e(t.r)+e(t.g)+e(t.b)+((t,e)=>t<255?e(t):"")(t.a,e):void 0):void 0;var t,e}hslString(){return this._valid?function(t){if(!t)return;const e=Jr(t),r=e[0],n=Vr(e[1]),o=Vr(e[2]);return t.a<255?`hsla(${r}, ${n}%, ${o}%, ${Hr(t.a)})`:`hsl(${r}, ${n}%, ${o}%)`}(this._rgb):void 0}mix(t,e){if(t){const r=this.rgb,n=t.rgb;let o;const i=e===o?.5:e,a=2*i-1,s=r.a-n.a,l=((a*s==-1?a:(a+s)/(1+a*s))+1)/2;o=1-l,r.r=255&l*r.r+o*n.r+.5,r.g=255&l*r.g+o*n.g+.5,r.b=255&l*r.b+o*n.b+.5,r.a=i*r.a+(1-i)*n.a,this.rgb=r}return this}interpolate(t,e){return t&&(this._rgb=function(t,e,r){const n=dn(Hr(t.r)),o=dn(Hr(t.g)),i=dn(Hr(t.b));return{r:Ur(ln(n+r*(dn(Hr(e.r))-n))),g:Ur(ln(o+r*(dn(Hr(e.g))-o))),b:Ur(ln(i+r*(dn(Hr(e.b))-i))),a:t.a+r*(e.a-t.a)}}(this._rgb,t._rgb,e)),this}clone(){return new fn(this.rgb)}alpha(t){return this._rgb.a=Ur(t),this}clearer(t){return this._rgb.a*=1-t,this}greyscale(){const t=this._rgb,e=jr(.3*t.r+.59*t.g+.11*t.b);return t.r=t.g=t.b=e,this}opaquer(t){return this._rgb.a*=1+t,this}negate(){const t=this._rgb;return t.r=255-t.r,t.g=255-t.g,t.b=255-t.b,this}lighten(t){return cn(this._rgb,2,t),this}darken(t){return cn(this._rgb,2,-t),this}saturate(t){return cn(this._rgb,1,t),this}desaturate(t){return cn(this._rgb,1,-t),this}rotate(t){return function(t,e){var r=Jr(t);r[0]=rn(r[0]+e),r=en(r),t.r=r[0],t.g=r[1],t.b=r[2]}(this._rgb,t),this}}function hn(){}const bn=(()=>{let t=0;return()=>t++})();function gn(t){return null==t}function vn(t){if(Array.isArray&&Array.isArray(t))return!0;const e=Object.prototype.toString.call(t);return"[object"===e.slice(0,7)&&"Array]"===e.slice(-6)}function xn(t){return null!==t&&"[object Object]"===Object.prototype.toString.call(t)}function yn(t){return("number"==typeof t||t instanceof Number)&&isFinite(+t)}function wn(t,e){return yn(t)?t:e}function kn(t,e){return void 0===t?e:t}function _n(t,e,r){if(t&&"function"==typeof t.call)return t.apply(r,e)}function Sn(t,e,r,n){let o,i,a;if(vn(t))if(i=t.length,n)for(o=i-1;o>=0;o--)e.call(r,t[o],o);else for(o=0;o<i;o++)e.call(r,t[o],o);else if(xn(t))for(a=Object.keys(t),i=a.length,o=0;o<i;o++)e.call(r,t[a[o]],a[o])}function En(t,e){let r,n,o,i;if(!t||!e||t.length!==e.length)return!1;for(r=0,n=t.length;r<n;++r)if(o=t[r],i=e[r],o.datasetIndex!==i.datasetIndex||o.index!==i.index)return!1;return!0}function Cn(t){if(vn(t))return t.map(Cn);if(xn(t)){const e=Object.create(null),r=Object.keys(t),n=r.length;let o=0;for(;o<n;++o)e[r[o]]=Cn(t[r[o]]);return e}return t}function zn(t){return-1===["__proto__","prototype","constructor"].indexOf(t)}function Mn(t,e,r,n){if(!zn(t))return;const o=e[t],i=r[t];xn(o)&&xn(i)?Pn(o,i,n):e[t]=Cn(i)}function Pn(t,e,r){const n=vn(e)?e:[e],o=n.length;if(!xn(t))return t;const i=(r=r||{}).merger||Mn;let a;for(let e=0;e<o;++e){if(a=n[e],!xn(a))continue;const o=Object.keys(a);for(let e=0,n=o.length;e<n;++e)i(o[e],t,a,r)}return t}function On(t,e){return Pn(t,e,{merger:Tn})}function Tn(t,e,r){if(!zn(t))return;const n=e[t],o=r[t];xn(n)&&xn(o)?On(n,o):Object.prototype.hasOwnProperty.call(e,t)||(e[t]=Cn(o))}const Ln={"":t=>t,x:t=>t.x,y:t=>t.y};function Nn(t,e){const r=Ln[e]||(Ln[e]=function(t){const e=function(t){const e=t.split("."),r=[];let n="";for(const t of e)n+=t,n.endsWith("\\")?n=n.slice(0,-1)+".":(r.push(n),n="");return r}(t);return t=>{for(const r of e){if(""===r)break;t=t&&t[r]}return t}}(e));return r(t)}function Rn(t){return t.charAt(0).toUpperCase()+t.slice(1)}const Dn=t=>void 0!==t,In=t=>"function"==typeof t,An=(t,e)=>{if(t.size!==e.size)return!1;for(const r of t)if(!e.has(r))return!1;return!0},jn=Math.PI,Fn=2*jn,Bn=Fn+jn,Un=Number.POSITIVE_INFINITY,Hn=jn/180,Vn=jn/2,$n=jn/4,Wn=2*jn/3,Yn=Math.log10,Kn=Math.sign;function Qn(t,e,r){return Math.abs(t-e)<r}function Xn(t){const e=Math.round(t);t=Qn(t,e,t/1e3)?e:t;const r=Math.pow(10,Math.floor(Yn(t))),n=t/r;return(n<=1?1:n<=2?2:n<=5?5:10)*r}function qn(t){return!isNaN(parseFloat(t))&&isFinite(t)}function Gn(t,e,r){let n,o,i;for(n=0,o=t.length;n<o;n++)i=t[n][r],isNaN(i)||(e.min=Math.min(e.min,i),e.max=Math.max(e.max,i))}function Zn(t){return t*(jn/180)}function Jn(t){if(!yn(t))return;let e=1,r=0;for(;Math.round(t*e)/e!==t;)e*=10,r++;return r}function to(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))}function eo(t,e){return(t-e+Bn)%Fn-jn}function ro(t){return(t%Fn+Fn)%Fn}function no(t,e,r,n){const o=ro(t),i=ro(e),a=ro(r),s=ro(i-o),l=ro(a-o),d=ro(o-i),c=ro(o-a);return o===i||o===a||n&&i===a||s>l&&d<c}function oo(t,e,r){return Math.max(e,Math.min(r,t))}function io(t,e,r,n=1e-6){return t>=Math.min(e,r)-n&&t<=Math.max(e,r)+n}function ao(t,e,r){r=r||(r=>t[r]<e);let n,o=t.length-1,i=0;for(;o-i>1;)n=i+o>>1,r(n)?i=n:o=n;return{lo:i,hi:o}}const so=(t,e,r,n)=>ao(t,r,n?n=>{const o=t[n][e];return o<r||o===r&&t[n+1][e]===r}:n=>t[n][e]<r),lo=(t,e,r)=>ao(t,r,(n=>t[n][e]>=r)),co=["push","pop","shift","splice","unshift"];function uo(t,e){const r=t._chartjs;if(!r)return;const n=r.listeners,o=n.indexOf(e);-1!==o&&n.splice(o,1),n.length>0||(co.forEach((e=>{delete t[e]})),delete t._chartjs)}const po="undefined"==typeof window?function(t){return t()}:window.requestAnimationFrame;function mo(t,e){let r=[],n=!1;return function(...o){r=o,n||(n=!0,po.call(window,(()=>{n=!1,t.apply(e,r)})))}}const fo=t=>"start"===t?"left":"end"===t?"right":"center",ho=(t,e,r)=>"start"===t?e:"end"===t?r:(e+r)/2;const bo=t=>0===t||1===t,go=(t,e,r)=>-Math.pow(2,10*(t-=1))*Math.sin((t-e)*Fn/r),vo=(t,e,r)=>Math.pow(2,-10*t)*Math.sin((t-e)*Fn/r)+1,xo={linear:t=>t,easeInQuad:t=>t*t,easeOutQuad:t=>-t*(t-2),easeInOutQuad:t=>(t/=.5)<1?.5*t*t:-.5*(--t*(t-2)-1),easeInCubic:t=>t*t*t,easeOutCubic:t=>(t-=1)*t*t+1,easeInOutCubic:t=>(t/=.5)<1?.5*t*t*t:.5*((t-=2)*t*t+2),easeInQuart:t=>t*t*t*t,easeOutQuart:t=>-((t-=1)*t*t*t-1),easeInOutQuart:t=>(t/=.5)<1?.5*t*t*t*t:-.5*((t-=2)*t*t*t-2),easeInQuint:t=>t*t*t*t*t,easeOutQuint:t=>(t-=1)*t*t*t*t+1,easeInOutQuint:t=>(t/=.5)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2),easeInSine:t=>1-Math.cos(t*Vn),easeOutSine:t=>Math.sin(t*Vn),easeInOutSine:t=>-.5*(Math.cos(jn*t)-1),easeInExpo:t=>0===t?0:Math.pow(2,10*(t-1)),easeOutExpo:t=>1===t?1:1-Math.pow(2,-10*t),easeInOutExpo:t=>bo(t)?t:t<.5?.5*Math.pow(2,10*(2*t-1)):.5*(2-Math.pow(2,-10*(2*t-1))),easeInCirc:t=>t>=1?t:-(Math.sqrt(1-t*t)-1),easeOutCirc:t=>Math.sqrt(1-(t-=1)*t),easeInOutCirc:t=>(t/=.5)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1),easeInElastic:t=>bo(t)?t:go(t,.075,.3),easeOutElastic:t=>bo(t)?t:vo(t,.075,.3),easeInOutElastic(t){const e=.1125;return bo(t)?t:t<.5?.5*go(2*t,e,.45):.5+.5*vo(2*t-1,e,.45)},easeInBack(t){const e=1.70158;return t*t*((e+1)*t-e)},easeOutBack(t){const e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},easeInOutBack(t){let e=1.70158;return(t/=.5)<1?t*t*((1+(e*=1.525))*t-e)*.5:.5*((t-=2)*t*((1+(e*=1.525))*t+e)+2)},easeInBounce:t=>1-xo.easeOutBounce(1-t),easeOutBounce(t){const e=7.5625,r=2.75;return t<1/r?e*t*t:t<2/r?e*(t-=1.5/r)*t+.75:t<2.5/r?e*(t-=2.25/r)*t+.9375:e*(t-=2.625/r)*t+.984375},easeInOutBounce:t=>t<.5?.5*xo.easeInBounce(2*t):.5*xo.easeOutBounce(2*t-1)+.5};function yo(t){if(t&&"object"==typeof t){const e=t.toString();return"[object CanvasPattern]"===e||"[object CanvasGradient]"===e}return!1}function wo(t){return yo(t)?t:new fn(t)}function ko(t){return yo(t)?t:new fn(t).saturate(.5).darken(.1).hexString()}const _o=["x","y","borderWidth","radius","tension"],So=["color","borderColor","backgroundColor"],Eo=new Map;function Co(t,e,r){return function(t,e){e=e||{};const r=t+JSON.stringify(e);let n=Eo.get(r);return n||(n=new Intl.NumberFormat(t,e),Eo.set(r,n)),n}(e,r).format(t)}const zo={values:t=>vn(t)?t:""+t,numeric(t,e,r){if(0===t)return"0";const n=this.chart.options.locale;let o,i=t;if(r.length>1){const e=Math.max(Math.abs(r[0].value),Math.abs(r[r.length-1].value));(e<1e-4||e>1e15)&&(o="scientific"),i=function(t,e){let r=e.length>3?e[2].value-e[1].value:e[1].value-e[0].value;return Math.abs(r)>=1&&t!==Math.floor(t)&&(r=t-Math.floor(t)),r}(t,r)}const a=Yn(Math.abs(i)),s=Math.max(Math.min(-1*Math.floor(a),20),0),l={notation:o,minimumFractionDigits:s,maximumFractionDigits:s};return Object.assign(l,this.options.ticks.format),Co(t,n,l)},logarithmic(t,e,r){if(0===t)return"0";const n=r[e].significand||t/Math.pow(10,Math.floor(Yn(t)));return[1,2,3,5,10,15].includes(n)||e>.8*r.length?zo.numeric.call(this,t,e,r):""}};var Mo={formatters:zo};const Po=Object.create(null),Oo=Object.create(null);function To(t,e){if(!e)return t;const r=e.split(".");for(let e=0,n=r.length;e<n;++e){const n=r[e];t=t[n]||(t[n]=Object.create(null))}return t}function Lo(t,e,r){return"string"==typeof e?Pn(To(t,e),r):Pn(To(t,""),e)}class No{constructor(t,e){this.animation=void 0,this.backgroundColor="rgba(0,0,0,0.1)",this.borderColor="rgba(0,0,0,0.1)",this.color="#666",this.datasets={},this.devicePixelRatio=t=>t.chart.platform.getDevicePixelRatio(),this.elements={},this.events=["mousemove","mouseout","click","touchstart","touchmove"],this.font={family:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",size:12,style:"normal",lineHeight:1.2,weight:null},this.hover={},this.hoverBackgroundColor=(t,e)=>ko(e.backgroundColor),this.hoverBorderColor=(t,e)=>ko(e.borderColor),this.hoverColor=(t,e)=>ko(e.color),this.indexAxis="x",this.interaction={mode:"nearest",intersect:!0,includeInvisible:!1},this.maintainAspectRatio=!0,this.onHover=null,this.onClick=null,this.parsing=!0,this.plugins={},this.responsive=!0,this.scale=void 0,this.scales={},this.showLine=!0,this.drawActiveElementsOnTop=!0,this.describe(t),this.apply(e)}set(t,e){return Lo(this,t,e)}get(t){return To(this,t)}describe(t,e){return Lo(Oo,t,e)}override(t,e){return Lo(Po,t,e)}route(t,e,r,n){const o=To(this,t),i=To(this,r),a="_"+e;Object.defineProperties(o,{[a]:{value:o[e],writable:!0},[e]:{enumerable:!0,get(){const t=this[a],e=i[n];return xn(t)?Object.assign({},e,t):kn(t,e)},set(t){this[a]=t}}})}apply(t){t.forEach((t=>t(this)))}}var Ro=new No({_scriptable:t=>!t.startsWith("on"),_indexable:t=>"events"!==t,hover:{_fallback:"interaction"},interaction:{_scriptable:!1,_indexable:!1}},[function(t){t.set("animation",{delay:void 0,duration:1e3,easing:"easeOutQuart",fn:void 0,from:void 0,loop:void 0,to:void 0,type:void 0}),t.describe("animation",{_fallback:!1,_indexable:!1,_scriptable:t=>"onProgress"!==t&&"onComplete"!==t&&"fn"!==t}),t.set("animations",{colors:{type:"color",properties:So},numbers:{type:"number",properties:_o}}),t.describe("animations",{_fallback:"animation"}),t.set("transitions",{active:{animation:{duration:400}},resize:{animation:{duration:0}},show:{animations:{colors:{from:"transparent"},visible:{type:"boolean",duration:0}}},hide:{animations:{colors:{to:"transparent"},visible:{type:"boolean",easing:"linear",fn:t=>0|t}}}})},function(t){t.set("layout",{autoPadding:!0,padding:{top:0,right:0,bottom:0,left:0}})},function(t){t.set("scale",{display:!0,offset:!1,reverse:!1,beginAtZero:!1,bounds:"ticks",grace:0,grid:{display:!0,lineWidth:1,drawOnChartArea:!0,drawTicks:!0,tickLength:8,tickWidth:(t,e)=>e.lineWidth,tickColor:(t,e)=>e.color,offset:!1},border:{display:!0,dash:[],dashOffset:0,width:1},title:{display:!1,text:"",padding:{top:4,bottom:4}},ticks:{minRotation:0,maxRotation:50,mirror:!1,textStrokeWidth:0,textStrokeColor:"",padding:3,display:!0,autoSkip:!0,autoSkipPadding:3,labelOffset:0,callback:Mo.formatters.values,minor:{},major:{},align:"center",crossAlign:"near",showLabelBackdrop:!1,backdropColor:"rgba(255, 255, 255, 0.75)",backdropPadding:2}}),t.route("scale.ticks","color","","color"),t.route("scale.grid","color","","borderColor"),t.route("scale.border","color","","borderColor"),t.route("scale.title","color","","color"),t.describe("scale",{_fallback:!1,_scriptable:t=>!t.startsWith("before")&&!t.startsWith("after")&&"callback"!==t&&"parser"!==t,_indexable:t=>"borderDash"!==t&&"tickBorderDash"!==t&&"dash"!==t}),t.describe("scales",{_fallback:"scale"}),t.describe("scale.ticks",{_scriptable:t=>"backdropPadding"!==t&&"callback"!==t,_indexable:t=>"backdropPadding"!==t})}]);function Do(t,e,r,n,o){let i=e[o];return i||(i=e[o]=t.measureText(o).width,r.push(o)),i>n&&(n=i),n}function Io(t,e,r){const n=t.currentDevicePixelRatio,o=0!==r?Math.max(r/2,.5):0;return Math.round((e-o)*n)/n+o}function Ao(t,e){(e=e||t.getContext("2d")).save(),e.resetTransform(),e.clearRect(0,0,t.width,t.height),e.restore()}function jo(t,e,r,n){Fo(t,e,r,n,null)}function Fo(t,e,r,n,o){let i,a,s,l,d,c,u,p;const m=e.pointStyle,f=e.rotation,h=e.radius;let b=(f||0)*Hn;if(m&&"object"==typeof m&&(i=m.toString(),"[object HTMLImageElement]"===i||"[object HTMLCanvasElement]"===i))return t.save(),t.translate(r,n),t.rotate(b),t.drawImage(m,-m.width/2,-m.height/2,m.width,m.height),void t.restore();if(!(isNaN(h)||h<=0)){switch(t.beginPath(),m){default:o?t.ellipse(r,n,o/2,h,0,0,Fn):t.arc(r,n,h,0,Fn),t.closePath();break;case"triangle":c=o?o/2:h,t.moveTo(r+Math.sin(b)*c,n-Math.cos(b)*h),b+=Wn,t.lineTo(r+Math.sin(b)*c,n-Math.cos(b)*h),b+=Wn,t.lineTo(r+Math.sin(b)*c,n-Math.cos(b)*h),t.closePath();break;case"rectRounded":d=.516*h,l=h-d,a=Math.cos(b+$n)*l,u=Math.cos(b+$n)*(o?o/2-d:l),s=Math.sin(b+$n)*l,p=Math.sin(b+$n)*(o?o/2-d:l),t.arc(r-u,n-s,d,b-jn,b-Vn),t.arc(r+p,n-a,d,b-Vn,b),t.arc(r+u,n+s,d,b,b+Vn),t.arc(r-p,n+a,d,b+Vn,b+jn),t.closePath();break;case"rect":if(!f){l=Math.SQRT1_2*h,c=o?o/2:l,t.rect(r-c,n-l,2*c,2*l);break}b+=$n;case"rectRot":u=Math.cos(b)*(o?o/2:h),a=Math.cos(b)*h,s=Math.sin(b)*h,p=Math.sin(b)*(o?o/2:h),t.moveTo(r-u,n-s),t.lineTo(r+p,n-a),t.lineTo(r+u,n+s),t.lineTo(r-p,n+a),t.closePath();break;case"crossRot":b+=$n;case"cross":u=Math.cos(b)*(o?o/2:h),a=Math.cos(b)*h,s=Math.sin(b)*h,p=Math.sin(b)*(o?o/2:h),t.moveTo(r-u,n-s),t.lineTo(r+u,n+s),t.moveTo(r+p,n-a),t.lineTo(r-p,n+a);break;case"star":u=Math.cos(b)*(o?o/2:h),a=Math.cos(b)*h,s=Math.sin(b)*h,p=Math.sin(b)*(o?o/2:h),t.moveTo(r-u,n-s),t.lineTo(r+u,n+s),t.moveTo(r+p,n-a),t.lineTo(r-p,n+a),b+=$n,u=Math.cos(b)*(o?o/2:h),a=Math.cos(b)*h,s=Math.sin(b)*h,p=Math.sin(b)*(o?o/2:h),t.moveTo(r-u,n-s),t.lineTo(r+u,n+s),t.moveTo(r+p,n-a),t.lineTo(r-p,n+a);break;case"line":a=o?o/2:Math.cos(b)*h,s=Math.sin(b)*h,t.moveTo(r-a,n-s),t.lineTo(r+a,n+s);break;case"dash":t.moveTo(r,n),t.lineTo(r+Math.cos(b)*(o?o/2:h),n+Math.sin(b)*h);break;case!1:t.closePath()}t.fill(),e.borderWidth>0&&t.stroke()}}function Bo(t,e,r){return r=r||.5,!e||t&&t.x>e.left-r&&t.x<e.right+r&&t.y>e.top-r&&t.y<e.bottom+r}function Uo(t,e){t.save(),t.beginPath(),t.rect(e.left,e.top,e.right-e.left,e.bottom-e.top),t.clip()}function Ho(t){t.restore()}function Vo(t,e,r,n,o){if(!e)return t.lineTo(r.x,r.y);if("middle"===o){const n=(e.x+r.x)/2;t.lineTo(n,e.y),t.lineTo(n,r.y)}else"after"===o!=!!n?t.lineTo(e.x,r.y):t.lineTo(r.x,e.y);t.lineTo(r.x,r.y)}function $o(t,e,r,n){if(!e)return t.lineTo(r.x,r.y);t.bezierCurveTo(n?e.cp1x:e.cp2x,n?e.cp1y:e.cp2y,n?r.cp2x:r.cp1x,n?r.cp2y:r.cp1y,r.x,r.y)}function Wo(t,e,r,n,o,i={}){const a=vn(e)?e:[e],s=i.strokeWidth>0&&""!==i.strokeColor;let l,d;for(t.save(),t.font=o.string,function(t,e){e.translation&&t.translate(e.translation[0],e.translation[1]),gn(e.rotation)||t.rotate(e.rotation),e.color&&(t.fillStyle=e.color),e.textAlign&&(t.textAlign=e.textAlign),e.textBaseline&&(t.textBaseline=e.textBaseline)}(t,i),l=0;l<a.length;++l)d=a[l],i.backdrop&&Ko(t,i.backdrop),s&&(i.strokeColor&&(t.strokeStyle=i.strokeColor),gn(i.strokeWidth)||(t.lineWidth=i.strokeWidth),t.strokeText(d,r,n,i.maxWidth)),t.fillText(d,r,n,i.maxWidth),Yo(t,r,n,d,i),n+=o.lineHeight;t.restore()}function Yo(t,e,r,n,o){if(o.strikethrough||o.underline){const i=t.measureText(n),a=e-i.actualBoundingBoxLeft,s=e+i.actualBoundingBoxRight,l=r-i.actualBoundingBoxAscent,d=r+i.actualBoundingBoxDescent,c=o.strikethrough?(l+d)/2:d;t.strokeStyle=t.fillStyle,t.beginPath(),t.lineWidth=o.decorationWidth||2,t.moveTo(a,c),t.lineTo(s,c),t.stroke()}}function Ko(t,e){const r=t.fillStyle;t.fillStyle=e.color,t.fillRect(e.left,e.top,e.width,e.height),t.fillStyle=r}function Qo(t,e){const{x:r,y:n,w:o,h:i,radius:a}=e;t.arc(r+a.topLeft,n+a.topLeft,a.topLeft,-Vn,jn,!0),t.lineTo(r,n+i-a.bottomLeft),t.arc(r+a.bottomLeft,n+i-a.bottomLeft,a.bottomLeft,jn,Vn,!0),t.lineTo(r+o-a.bottomRight,n+i),t.arc(r+o-a.bottomRight,n+i-a.bottomRight,a.bottomRight,Vn,0,!0),t.lineTo(r+o,n+a.topRight),t.arc(r+o-a.topRight,n+a.topRight,a.topRight,0,-Vn,!0),t.lineTo(r+a.topLeft,n)}const Xo=/^(normal|(\d+(?:\.\d+)?)(px|em|%)?)$/,qo=/^(normal|italic|initial|inherit|unset|(oblique( -?[0-9]?[0-9]deg)?))$/;function Go(t,e){const r=(""+t).match(Xo);if(!r||"normal"===r[1])return 1.2*e;switch(t=+r[2],r[3]){case"px":return t;case"%":t/=100}return e*t}function Zo(t,e){const r={},n=xn(e),o=n?Object.keys(e):e,i=xn(t)?n?r=>kn(t[r],t[e[r]]):e=>t[e]:()=>t;for(const t of o)r[t]=+i(t)||0;return r}function Jo(t){return Zo(t,{top:"y",right:"x",bottom:"y",left:"x"})}function ti(t){return Zo(t,["topLeft","topRight","bottomLeft","bottomRight"])}function ei(t){const e=Jo(t);return e.width=e.left+e.right,e.height=e.top+e.bottom,e}function ri(t,e){t=t||{},e=e||Ro.font;let r=kn(t.size,e.size);"string"==typeof r&&(r=parseInt(r,10));let n=kn(t.style,e.style);n&&!(""+n).match(qo)&&(console.warn('Invalid font style specified: "'+n+'"'),n=void 0);const o={family:kn(t.family,e.family),lineHeight:Go(kn(t.lineHeight,e.lineHeight),r),size:r,style:n,weight:kn(t.weight,e.weight),string:""};return o.string=function(t){return!t||gn(t.size)||gn(t.family)?null:(t.style?t.style+" ":"")+(t.weight?t.weight+" ":"")+t.size+"px "+t.family}(o),o}function ni(t,e,r,n){let o,i,a,s=!0;for(o=0,i=t.length;o<i;++o)if(a=t[o],void 0!==a&&(void 0!==e&&"function"==typeof a&&(a=a(e),s=!1),void 0!==r&&vn(a)&&(a=a[r%a.length],s=!1),void 0!==a))return n&&!s&&(n.cacheable=!1),a}function oi(t,e){return Object.assign(Object.create(t),e)}function ii(t,e=[""],r=t,n,o=(()=>t[0])){Dn(n)||(n=bi("_fallback",t));const i={[Symbol.toStringTag]:"Object",_cacheable:!0,_scopes:t,_rootScopes:r,_fallback:n,_getTarget:o,override:o=>ii([o,...t],e,r,n)};return new Proxy(i,{deleteProperty:(e,r)=>(delete e[r],delete e._keys,delete t[0][r],!0),get:(r,n)=>ci(r,n,(()=>function(t,e,r,n){let o;for(const i of e)if(o=bi(li(i,t),r),Dn(o))return di(t,o)?fi(r,n,t,o):o}(n,e,t,r))),getOwnPropertyDescriptor:(t,e)=>Reflect.getOwnPropertyDescriptor(t._scopes[0],e),getPrototypeOf:()=>Reflect.getPrototypeOf(t[0]),has:(t,e)=>gi(t).includes(e),ownKeys:t=>gi(t),set(t,e,r){const n=t._storage||(t._storage=o());return t[e]=n[e]=r,delete t._keys,!0}})}function ai(t,e,r,n){const o={_cacheable:!1,_proxy:t,_context:e,_subProxy:r,_stack:new Set,_descriptors:si(t,n),setContext:e=>ai(t,e,r,n),override:o=>ai(t.override(o),e,r,n)};return new Proxy(o,{deleteProperty:(e,r)=>(delete e[r],delete t[r],!0),get:(t,e,r)=>ci(t,e,(()=>function(t,e,r){const{_proxy:n,_context:o,_subProxy:i,_descriptors:a}=t;let s=n[e];return In(s)&&a.isScriptable(e)&&(s=function(t,e,r,n){const{_proxy:o,_context:i,_subProxy:a,_stack:s}=r;if(s.has(t))throw new Error("Recursion detected: "+Array.from(s).join("->")+"->"+t);return s.add(t),e=e(i,a||n),s.delete(t),di(t,e)&&(e=fi(o._scopes,o,t,e)),e}(e,s,t,r)),vn(s)&&s.length&&(s=function(t,e,r,n){const{_proxy:o,_context:i,_subProxy:a,_descriptors:s}=r;if(Dn(i.index)&&n(t))e=e[i.index%e.length];else if(xn(e[0])){const r=e,n=o._scopes.filter((t=>t!==r));e=[];for(const l of r){const r=fi(n,o,t,l);e.push(ai(r,i,a&&a[t],s))}}return e}(e,s,t,a.isIndexable)),di(e,s)&&(s=ai(s,o,i&&i[e],a)),s}(t,e,r))),getOwnPropertyDescriptor:(e,r)=>e._descriptors.allKeys?Reflect.has(t,r)?{enumerable:!0,configurable:!0}:void 0:Reflect.getOwnPropertyDescriptor(t,r),getPrototypeOf:()=>Reflect.getPrototypeOf(t),has:(e,r)=>Reflect.has(t,r),ownKeys:()=>Reflect.ownKeys(t),set:(e,r,n)=>(t[r]=n,delete e[r],!0)})}function si(t,e={scriptable:!0,indexable:!0}){const{_scriptable:r=e.scriptable,_indexable:n=e.indexable,_allKeys:o=e.allKeys}=t;return{allKeys:o,scriptable:r,indexable:n,isScriptable:In(r)?r:()=>r,isIndexable:In(n)?n:()=>n}}const li=(t,e)=>t?t+Rn(e):e,di=(t,e)=>xn(e)&&"adapters"!==t&&(null===Object.getPrototypeOf(e)||e.constructor===Object);function ci(t,e,r){if(Object.prototype.hasOwnProperty.call(t,e))return t[e];const n=r();return t[e]=n,n}function ui(t,e,r){return In(t)?t(e,r):t}const pi=(t,e)=>!0===t?e:"string"==typeof t?Nn(e,t):void 0;function mi(t,e,r,n,o){for(const i of e){const e=pi(r,i);if(e){t.add(e);const i=ui(e._fallback,r,o);if(Dn(i)&&i!==r&&i!==n)return i}else if(!1===e&&Dn(n)&&r!==n)return null}return!1}function fi(t,e,r,n){const o=e._rootScopes,i=ui(e._fallback,r,n),a=[...t,...o],s=new Set;s.add(n);let l=hi(s,a,r,i||r,n);return null!==l&&(!Dn(i)||i===r||(l=hi(s,a,i,l,n),null!==l))&&ii(Array.from(s),[""],o,i,(()=>function(t,e,r){const n=t._getTarget();e in n||(n[e]={});const o=n[e];return vn(o)&&xn(r)?r:o||{}}(e,r,n)))}function hi(t,e,r,n,o){for(;r;)r=mi(t,e,r,n,o);return r}function bi(t,e){for(const r of e){if(!r)continue;const e=r[t];if(Dn(e))return e}}function gi(t){let e=t._keys;return e||(e=t._keys=function(t){const e=new Set;for(const r of t)for(const t of Object.keys(r).filter((t=>!t.startsWith("_"))))e.add(t);return Array.from(e)}(t._scopes)),e}const vi=Number.EPSILON||1e-14,xi=(t,e)=>e<t.length&&!t[e].skip&&t[e],yi=t=>"x"===t?"y":"x";function wi(t,e,r,n){const o=t.skip?e:t,i=e,a=r.skip?e:r,s=to(i,o),l=to(a,i);let d=s/(s+l),c=l/(s+l);d=isNaN(d)?0:d,c=isNaN(c)?0:c;const u=n*d,p=n*c;return{previous:{x:i.x-u*(a.x-o.x),y:i.y-u*(a.y-o.y)},next:{x:i.x+p*(a.x-o.x),y:i.y+p*(a.y-o.y)}}}function ki(t,e,r){return Math.max(Math.min(t,r),e)}function _i(t,e,r,n,o){let i,a,s,l;if(e.spanGaps&&(t=t.filter((t=>!t.skip))),"monotone"===e.cubicInterpolationMode)!function(t,e="x"){const r=yi(e),n=t.length,o=Array(n).fill(0),i=Array(n);let a,s,l,d=xi(t,0);for(a=0;a<n;++a)if(s=l,l=d,d=xi(t,a+1),l){if(d){const t=d[e]-l[e];o[a]=0!==t?(d[r]-l[r])/t:0}i[a]=s?d?Kn(o[a-1])!==Kn(o[a])?0:(o[a-1]+o[a])/2:o[a-1]:o[a]}!function(t,e,r){const n=t.length;let o,i,a,s,l,d=xi(t,0);for(let c=0;c<n-1;++c)l=d,d=xi(t,c+1),l&&d&&(Qn(e[c],0,vi)?r[c]=r[c+1]=0:(o=r[c]/e[c],i=r[c+1]/e[c],s=Math.pow(o,2)+Math.pow(i,2),s<=9||(a=3/Math.sqrt(s),r[c]=o*a*e[c],r[c+1]=i*a*e[c])))}(t,o,i),function(t,e,r="x"){const n=yi(r),o=t.length;let i,a,s,l=xi(t,0);for(let d=0;d<o;++d){if(a=s,s=l,l=xi(t,d+1),!s)continue;const o=s[r],c=s[n];a&&(i=(o-a[r])/3,s[`cp1${r}`]=o-i,s[`cp1${n}`]=c-i*e[d]),l&&(i=(l[r]-o)/3,s[`cp2${r}`]=o+i,s[`cp2${n}`]=c+i*e[d])}}(t,i,e)}(t,o);else{let r=n?t[t.length-1]:t[0];for(i=0,a=t.length;i<a;++i)s=t[i],l=wi(r,s,t[Math.min(i+1,a-(n?0:1))%a],e.tension),s.cp1x=l.previous.x,s.cp1y=l.previous.y,s.cp2x=l.next.x,s.cp2y=l.next.y,r=s}e.capBezierPoints&&function(t,e){let r,n,o,i,a,s=Bo(t[0],e);for(r=0,n=t.length;r<n;++r)a=i,i=s,s=r<n-1&&Bo(t[r+1],e),i&&(o=t[r],a&&(o.cp1x=ki(o.cp1x,e.left,e.right),o.cp1y=ki(o.cp1y,e.top,e.bottom)),s&&(o.cp2x=ki(o.cp2x,e.left,e.right),o.cp2y=ki(o.cp2y,e.top,e.bottom)))}(t,r)}function Si(){return"undefined"!=typeof window&&"undefined"!=typeof document}function Ei(t){let e=t.parentNode;return e&&"[object ShadowRoot]"===e.toString()&&(e=e.host),e}function Ci(t,e,r){let n;return"string"==typeof t?(n=parseInt(t,10),-1!==t.indexOf("%")&&(n=n/100*e.parentNode[r])):n=t,n}const zi=t=>t.ownerDocument.defaultView.getComputedStyle(t,null),Mi=["top","right","bottom","left"];function Pi(t,e,r){const n={};r=r?"-"+r:"";for(let o=0;o<4;o++){const i=Mi[o];n[i]=parseFloat(t[e+"-"+i+r])||0}return n.width=n.left+n.right,n.height=n.top+n.bottom,n}function Oi(t,e){if("native"in t)return t;const{canvas:r,currentDevicePixelRatio:n}=e,o=zi(r),i="border-box"===o.boxSizing,a=Pi(o,"padding"),s=Pi(o,"border","width"),{x:l,y:d,box:c}=function(t,e){const r=t.touches,n=r&&r.length?r[0]:t,{offsetX:o,offsetY:i}=n;let a,s,l=!1;if(((t,e,r)=>(t>0||e>0)&&(!r||!r.shadowRoot))(o,i,t.target))a=o,s=i;else{const t=e.getBoundingClientRect();a=n.clientX-t.left,s=n.clientY-t.top,l=!0}return{x:a,y:s,box:l}}(t,r),u=a.left+(c&&s.left),p=a.top+(c&&s.top);let{width:m,height:f}=e;return i&&(m-=a.width+s.width,f-=a.height+s.height),{x:Math.round((l-u)/m*r.width/n),y:Math.round((d-p)/f*r.height/n)}}const Ti=t=>Math.round(10*t)/10;function Li(t,e,r){const n=e||1,o=Math.floor(t.height*n),i=Math.floor(t.width*n);t.height=Math.floor(t.height),t.width=Math.floor(t.width);const a=t.canvas;return a.style&&(r||!a.style.height&&!a.style.width)&&(a.style.height=`${t.height}px`,a.style.width=`${t.width}px`),(t.currentDevicePixelRatio!==n||a.height!==o||a.width!==i)&&(t.currentDevicePixelRatio=n,a.height=o,a.width=i,t.ctx.setTransform(n,0,0,n,0,0),!0)}const Ni=function(){let t=!1;try{const e={get passive(){return t=!0,!1}};window.addEventListener("test",null,e),window.removeEventListener("test",null,e)}catch(t){}return t}();function Ri(t,e){const r=function(t,e){return zi(t).getPropertyValue(e)}(t,e),n=r&&r.match(/^(\d+)(\.\d+)?px$/);return n?+n[1]:void 0}function Di(t,e,r,n){return{x:t.x+r*(e.x-t.x),y:t.y+r*(e.y-t.y)}}function Ii(t,e,r,n){return{x:t.x+r*(e.x-t.x),y:"middle"===n?r<.5?t.y:e.y:"after"===n?r<1?t.y:e.y:r>0?e.y:t.y}}function Ai(t,e,r,n){const o={x:t.cp2x,y:t.cp2y},i={x:e.cp1x,y:e.cp1y},a=Di(t,o,r),s=Di(o,i,r),l=Di(i,e,r),d=Di(a,s,r),c=Di(s,l,r);return Di(d,c,r)}function ji(t,e,r){return t?function(t,e){return{x:r=>t+t+e-r,setWidth(t){e=t},textAlign:t=>"center"===t?t:"right"===t?"left":"right",xPlus:(t,e)=>t-e,leftForLtr:(t,e)=>t-e}}(e,r):{x:t=>t,setWidth(t){},textAlign:t=>t,xPlus:(t,e)=>t+e,leftForLtr:(t,e)=>t}}function Fi(t,e){let r,n;"ltr"!==e&&"rtl"!==e||(r=t.canvas.style,n=[r.getPropertyValue("direction"),r.getPropertyPriority("direction")],r.setProperty("direction",e,"important"),t.prevTextDirection=n)}function Bi(t,e){void 0!==e&&(delete t.prevTextDirection,t.canvas.style.setProperty("direction",e[0],e[1]))}function Ui(t){return"angle"===t?{between:no,compare:eo,normalize:ro}:{between:io,compare:(t,e)=>t-e,normalize:t=>t}}function Hi({start:t,end:e,count:r,loop:n,style:o}){return{start:t%r,end:e%r,loop:n&&(e-t+1)%r==0,style:o}}function Vi(t,e,r){if(!r)return[t];const{property:n,start:o,end:i}=r,a=e.length,{compare:s,between:l,normalize:d}=Ui(n),{start:c,end:u,loop:p,style:m}=function(t,e,r){const{property:n,start:o,end:i}=r,{between:a,normalize:s}=Ui(n),l=e.length;let d,c,{start:u,end:p,loop:m}=t;if(m){for(u+=l,p+=l,d=0,c=l;d<c&&a(s(e[u%l][n]),o,i);++d)u--,p--;u%=l,p%=l}return p<u&&(p+=l),{start:u,end:p,loop:m,style:t.style}}(t,e,r),f=[];let h,b,g,v=!1,x=null;for(let t=c,r=c;t<=u;++t)b=e[t%a],b.skip||(h=d(b[n]),h!==g&&(v=l(h,o,i),null===x&&(v||l(o,g,h)&&0!==s(o,g))&&(x=0===s(h,o)?t:r),null!==x&&(!v||0===s(i,h)||l(i,g,h))&&(f.push(Hi({start:x,end:t,loop:p,count:a,style:m})),x=null),r=t,g=h));return null!==x&&f.push(Hi({start:x,end:u,loop:p,count:a,style:m})),f}function $i(t){return{backgroundColor:t.backgroundColor,borderCapStyle:t.borderCapStyle,borderDash:t.borderDash,borderDashOffset:t.borderDashOffset,borderJoinStyle:t.borderJoinStyle,borderWidth:t.borderWidth,borderColor:t.borderColor}}function Wi(t,e){return e&&JSON.stringify(t)!==JSON.stringify(e)}class Yi{constructor(){this._request=null,this._charts=new Map,this._running=!1,this._lastDate=void 0}_notify(t,e,r,n){const o=e.listeners[n],i=e.duration;o.forEach((n=>n({chart:t,initial:e.initial,numSteps:i,currentStep:Math.min(r-e.start,i)})))}_refresh(){this._request||(this._running=!0,this._request=po.call(window,(()=>{this._update(),this._request=null,this._running&&this._refresh()})))}_update(t=Date.now()){let e=0;this._charts.forEach(((r,n)=>{if(!r.running||!r.items.length)return;const o=r.items;let i,a=o.length-1,s=!1;for(;a>=0;--a)i=o[a],i._active?(i._total>r.duration&&(r.duration=i._total),i.tick(t),s=!0):(o[a]=o[o.length-1],o.pop());s&&(n.draw(),this._notify(n,r,t,"progress")),o.length||(r.running=!1,this._notify(n,r,t,"complete"),r.initial=!1),e+=o.length})),this._lastDate=t,0===e&&(this._running=!1)}_getAnims(t){const e=this._charts;let r=e.get(t);return r||(r={running:!1,initial:!0,items:[],listeners:{complete:[],progress:[]}},e.set(t,r)),r}listen(t,e,r){this._getAnims(t).listeners[e].push(r)}add(t,e){e&&e.length&&this._getAnims(t).items.push(...e)}has(t){return this._getAnims(t).items.length>0}start(t){const e=this._charts.get(t);e&&(e.running=!0,e.start=Date.now(),e.duration=e.items.reduce(((t,e)=>Math.max(t,e._duration)),0),this._refresh())}running(t){if(!this._running)return!1;const e=this._charts.get(t);return!!(e&&e.running&&e.items.length)}stop(t){const e=this._charts.get(t);if(!e||!e.items.length)return;const r=e.items;let n=r.length-1;for(;n>=0;--n)r[n].cancel();e.items=[],this._notify(t,e,Date.now(),"complete")}remove(t){return this._charts.delete(t)}}var Ki=new Yi;const Qi="transparent",Xi={boolean:(t,e,r)=>r>.5?e:t,color(t,e,r){const n=wo(t||Qi),o=n.valid&&wo(e||Qi);return o&&o.valid?o.mix(n,r).hexString():e},number:(t,e,r)=>t+(e-t)*r};class qi{constructor(t,e,r,n){const o=e[r];n=ni([t.to,n,o,t.from]);const i=ni([t.from,o,n]);this._active=!0,this._fn=t.fn||Xi[t.type||typeof i],this._easing=xo[t.easing]||xo.linear,this._start=Math.floor(Date.now()+(t.delay||0)),this._duration=this._total=Math.floor(t.duration),this._loop=!!t.loop,this._target=e,this._prop=r,this._from=i,this._to=n,this._promises=void 0}active(){return this._active}update(t,e,r){if(this._active){this._notify(!1);const n=this._target[this._prop],o=r-this._start,i=this._duration-o;this._start=r,this._duration=Math.floor(Math.max(i,t.duration)),this._total+=o,this._loop=!!t.loop,this._to=ni([t.to,e,n,t.from]),this._from=ni([t.from,n,e])}}cancel(){this._active&&(this.tick(Date.now()),this._active=!1,this._notify(!1))}tick(t){const e=t-this._start,r=this._duration,n=this._prop,o=this._from,i=this._loop,a=this._to;let s;if(this._active=o!==a&&(i||e<r),!this._active)return this._target[n]=a,void this._notify(!0);e<0?this._target[n]=o:(s=e/r%2,s=i&&s>1?2-s:s,s=this._easing(Math.min(1,Math.max(0,s))),this._target[n]=this._fn(o,a,s))}wait(){const t=this._promises||(this._promises=[]);return new Promise(((e,r)=>{t.push({res:e,rej:r})}))}_notify(t){const e=t?"res":"rej",r=this._promises||[];for(let t=0;t<r.length;t++)r[t][e]()}}class Gi{constructor(t,e){this._chart=t,this._properties=new Map,this.configure(e)}configure(t){if(!xn(t))return;const e=Object.keys(Ro.animation),r=this._properties;Object.getOwnPropertyNames(t).forEach((n=>{const o=t[n];if(!xn(o))return;const i={};for(const t of e)i[t]=o[t];(vn(o.properties)&&o.properties||[n]).forEach((t=>{t!==n&&r.has(t)||r.set(t,i)}))}))}_animateOptions(t,e){const r=e.options,n=function(t,e){if(!e)return;let r=t.options;if(r)return r.$shared&&(t.options=r=Object.assign({},r,{$shared:!1,$animations:{}})),r;t.options=e}(t,r);if(!n)return[];const o=this._createAnimations(n,r);return r.$shared&&function(t,e){const r=[],n=Object.keys(e);for(let e=0;e<n.length;e++){const o=t[n[e]];o&&o.active()&&r.push(o.wait())}return Promise.all(r)}(t.options.$animations,r).then((()=>{t.options=r}),(()=>{})),o}_createAnimations(t,e){const r=this._properties,n=[],o=t.$animations||(t.$animations={}),i=Object.keys(e),a=Date.now();let s;for(s=i.length-1;s>=0;--s){const l=i[s];if("$"===l.charAt(0))continue;if("options"===l){n.push(...this._animateOptions(t,e));continue}const d=e[l];let c=o[l];const u=r.get(l);if(c){if(u&&c.active()){c.update(u,d,a);continue}c.cancel()}u&&u.duration?(o[l]=c=new qi(u,t,l,d),n.push(c)):t[l]=d}return n}update(t,e){if(0===this._properties.size)return void Object.assign(t,e);const r=this._createAnimations(t,e);return r.length?(Ki.add(this._chart,r),!0):void 0}}function Zi(t,e){const r=t&&t.options||{},n=r.reverse,o=void 0===r.min?e:0,i=void 0===r.max?e:0;return{start:n?i:o,end:n?o:i}}function Ji(t,e){const r=[],n=t._getSortedDatasetMetas(e);let o,i;for(o=0,i=n.length;o<i;++o)r.push(n[o].index);return r}function ta(t,e,r,n={}){const o=t.keys,i="single"===n.mode;let a,s,l,d;if(null!==e){for(a=0,s=o.length;a<s;++a){if(l=+o[a],l===r){if(n.all)continue;break}d=t.values[l],yn(d)&&(i||0===e||Kn(e)===Kn(d))&&(e+=d)}return e}}function ea(t,e){const r=t&&t.options.stacked;return r||void 0===r&&void 0!==e.stack}function ra(t,e,r){const n=t[e]||(t[e]={});return n[r]||(n[r]={})}function na(t,e,r,n){for(const o of e.getMatchingVisibleMetas(n).reverse()){const e=t[o.index];if(r&&e>0||!r&&e<0)return o.index}return null}function oa(t,e){const{chart:r,_cachedMeta:n}=t,o=r._stacks||(r._stacks={}),{iScale:i,vScale:a,index:s}=n,l=i.axis,d=a.axis,c=function(t,e,r){return`${t.id}.${e.id}.${r.stack||r.type}`}(i,a,n),u=e.length;let p;for(let t=0;t<u;++t){const r=e[t],{[l]:i,[d]:u}=r;p=(r._stacks||(r._stacks={}))[d]=ra(o,c,i),p[s]=u,p._top=na(p,a,!0,n.type),p._bottom=na(p,a,!1,n.type),(p._visualValues||(p._visualValues={}))[s]=u}}function ia(t,e){const r=t.scales;return Object.keys(r).filter((t=>r[t].axis===e)).shift()}function aa(t,e){const r=t.controller.index,n=t.vScale&&t.vScale.axis;if(n){e=e||t._parsed;for(const t of e){const e=t._stacks;if(!e||void 0===e[n]||void 0===e[n][r])return;delete e[n][r],void 0!==e[n]._visualValues&&void 0!==e[n]._visualValues[r]&&delete e[n]._visualValues[r]}}}const sa=t=>"reset"===t||"none"===t,la=(t,e)=>e?t:Object.assign({},t);class da{static defaults={};static datasetElementType=null;static dataElementType=null;constructor(t,e){this.chart=t,this._ctx=t.ctx,this.index=e,this._cachedDataOpts={},this._cachedMeta=this.getMeta(),this._type=this._cachedMeta.type,this.options=void 0,this._parsing=!1,this._data=void 0,this._objectData=void 0,this._sharedOptions=void 0,this._drawStart=void 0,this._drawCount=void 0,this.enableOptionSharing=!1,this.supportsDecimation=!1,this.$context=void 0,this._syncList=[],this.datasetElementType=new.target.datasetElementType,this.dataElementType=new.target.dataElementType,this.initialize()}initialize(){const t=this._cachedMeta;this.configure(),this.linkScales(),t._stacked=ea(t.vScale,t),this.addElements(),this.options.fill&&!this.chart.isPluginEnabled("filler")&&console.warn("Tried to use the 'fill' option without the 'Filler' plugin enabled. Please import and register the 'Filler' plugin and make sure it is not disabled in the options")}updateIndex(t){this.index!==t&&aa(this._cachedMeta),this.index=t}linkScales(){const t=this.chart,e=this._cachedMeta,r=this.getDataset(),n=(t,e,r,n)=>"x"===t?e:"r"===t?n:r,o=e.xAxisID=kn(r.xAxisID,ia(t,"x")),i=e.yAxisID=kn(r.yAxisID,ia(t,"y")),a=e.rAxisID=kn(r.rAxisID,ia(t,"r")),s=e.indexAxis,l=e.iAxisID=n(s,o,i,a),d=e.vAxisID=n(s,i,o,a);e.xScale=this.getScaleForId(o),e.yScale=this.getScaleForId(i),e.rScale=this.getScaleForId(a),e.iScale=this.getScaleForId(l),e.vScale=this.getScaleForId(d)}getDataset(){return this.chart.data.datasets[this.index]}getMeta(){return this.chart.getDatasetMeta(this.index)}getScaleForId(t){return this.chart.scales[t]}_getOtherScale(t){const e=this._cachedMeta;return t===e.iScale?e.vScale:e.iScale}reset(){this._update("reset")}_destroy(){const t=this._cachedMeta;this._data&&uo(this._data,this),t._stacked&&aa(t)}_dataCheck(){const t=this.getDataset(),e=t.data||(t.data=[]),r=this._data;if(xn(e))this._data=function(t){const e=Object.keys(t),r=new Array(e.length);let n,o,i;for(n=0,o=e.length;n<o;++n)i=e[n],r[n]={x:i,y:t[i]};return r}(e);else if(r!==e){if(r){uo(r,this);const t=this._cachedMeta;aa(t),t._parsed=[]}e&&Object.isExtensible(e)&&(this,(n=e)._chartjs?n._chartjs.listeners.push(this):(Object.defineProperty(n,"_chartjs",{configurable:!0,enumerable:!1,value:{listeners:[this]}}),co.forEach((t=>{const e="_onData"+Rn(t),r=n[t];Object.defineProperty(n,t,{configurable:!0,enumerable:!1,value(...t){const o=r.apply(this,t);return n._chartjs.listeners.forEach((r=>{"function"==typeof r[e]&&r[e](...t)})),o}})})))),this._syncList=[],this._data=e}var n}addElements(){const t=this._cachedMeta;this._dataCheck(),this.datasetElementType&&(t.dataset=new this.datasetElementType)}buildOrUpdateElements(t){const e=this._cachedMeta,r=this.getDataset();let n=!1;this._dataCheck();const o=e._stacked;e._stacked=ea(e.vScale,e),e.stack!==r.stack&&(n=!0,aa(e),e.stack=r.stack),this._resyncElements(t),(n||o!==e._stacked)&&oa(this,e._parsed)}configure(){const t=this.chart.config,e=t.datasetScopeKeys(this._type),r=t.getOptionScopes(this.getDataset(),e,!0);this.options=t.createResolver(r,this.getContext()),this._parsing=this.options.parsing,this._cachedDataOpts={}}parse(t,e){const{_cachedMeta:r,_data:n}=this,{iScale:o,_stacked:i}=r,a=o.axis;let s,l,d,c=0===t&&e===n.length||r._sorted,u=t>0&&r._parsed[t-1];if(!1===this._parsing)r._parsed=n,r._sorted=!0,d=n;else{d=vn(n[t])?this.parseArrayData(r,n,t,e):xn(n[t])?this.parseObjectData(r,n,t,e):this.parsePrimitiveData(r,n,t,e);const o=()=>null===l[a]||u&&l[a]<u[a];for(s=0;s<e;++s)r._parsed[s+t]=l=d[s],c&&(o()&&(c=!1),u=l);r._sorted=c}i&&oa(this,d)}parsePrimitiveData(t,e,r,n){const{iScale:o,vScale:i}=t,a=o.axis,s=i.axis,l=o.getLabels(),d=o===i,c=new Array(n);let u,p,m;for(u=0,p=n;u<p;++u)m=u+r,c[u]={[a]:d||o.parse(l[m],m),[s]:i.parse(e[m],m)};return c}parseArrayData(t,e,r,n){const{xScale:o,yScale:i}=t,a=new Array(n);let s,l,d,c;for(s=0,l=n;s<l;++s)d=s+r,c=e[d],a[s]={x:o.parse(c[0],d),y:i.parse(c[1],d)};return a}parseObjectData(t,e,r,n){const{xScale:o,yScale:i}=t,{xAxisKey:a="x",yAxisKey:s="y"}=this._parsing,l=new Array(n);let d,c,u,p;for(d=0,c=n;d<c;++d)u=d+r,p=e[u],l[d]={x:o.parse(Nn(p,a),u),y:i.parse(Nn(p,s),u)};return l}getParsed(t){return this._cachedMeta._parsed[t]}getDataElement(t){return this._cachedMeta.data[t]}applyStack(t,e,r){const n=this.chart,o=this._cachedMeta,i=e[t.axis];return ta({keys:Ji(n,!0),values:e._stacks[t.axis]._visualValues},i,o.index,{mode:r})}updateRangeFromParsed(t,e,r,n){const o=r[e.axis];let i=null===o?NaN:o;const a=n&&r._stacks[e.axis];n&&a&&(n.values=a,i=ta(n,o,this._cachedMeta.index)),t.min=Math.min(t.min,i),t.max=Math.max(t.max,i)}getMinMax(t,e){const r=this._cachedMeta,n=r._parsed,o=r._sorted&&t===r.iScale,i=n.length,a=this._getOtherScale(t),s=((t,e,r)=>t&&!e.hidden&&e._stacked&&{keys:Ji(r,!0),values:null})(e,r,this.chart),l={min:Number.POSITIVE_INFINITY,max:Number.NEGATIVE_INFINITY},{min:d,max:c}=function(t){const{min:e,max:r,minDefined:n,maxDefined:o}=t.getUserBounds();return{min:n?e:Number.NEGATIVE_INFINITY,max:o?r:Number.POSITIVE_INFINITY}}(a);let u,p;function m(){p=n[u];const e=p[a.axis];return!yn(p[t.axis])||d>e||c<e}for(u=0;u<i&&(m()||(this.updateRangeFromParsed(l,t,p,s),!o));++u);if(o)for(u=i-1;u>=0;--u)if(!m()){this.updateRangeFromParsed(l,t,p,s);break}return l}getAllParsedValues(t){const e=this._cachedMeta._parsed,r=[];let n,o,i;for(n=0,o=e.length;n<o;++n)i=e[n][t.axis],yn(i)&&r.push(i);return r}getMaxOverflow(){return!1}getLabelAndValue(t){const e=this._cachedMeta,r=e.iScale,n=e.vScale,o=this.getParsed(t);return{label:r?""+r.getLabelForValue(o[r.axis]):"",value:n?""+n.getLabelForValue(o[n.axis]):""}}_update(t){const e=this._cachedMeta;this.update(t||"default"),e._clip=function(t){let e,r,n,o;return xn(t)?(e=t.top,r=t.right,n=t.bottom,o=t.left):e=r=n=o=t,{top:e,right:r,bottom:n,left:o,disabled:!1===t}}(kn(this.options.clip,function(t,e,r){if(!1===r)return!1;const n=Zi(t,r),o=Zi(e,r);return{top:o.end,right:n.end,bottom:o.start,left:n.start}}(e.xScale,e.yScale,this.getMaxOverflow())))}update(t){}draw(){const t=this._ctx,e=this.chart,r=this._cachedMeta,n=r.data||[],o=e.chartArea,i=[],a=this._drawStart||0,s=this._drawCount||n.length-a,l=this.options.drawActiveElementsOnTop;let d;for(r.dataset&&r.dataset.draw(t,o,a,s),d=a;d<a+s;++d){const e=n[d];e.hidden||(e.active&&l?i.push(e):e.draw(t,o))}for(d=0;d<i.length;++d)i[d].draw(t,o)}getStyle(t,e){const r=e?"active":"default";return void 0===t&&this._cachedMeta.dataset?this.resolveDatasetElementOptions(r):this.resolveDataElementOptions(t||0,r)}getContext(t,e,r){const n=this.getDataset();let o;if(t>=0&&t<this._cachedMeta.data.length){const e=this._cachedMeta.data[t];o=e.$context||(e.$context=function(t,e,r){return oi(t,{active:!1,dataIndex:e,parsed:void 0,raw:void 0,element:r,index:e,mode:"default",type:"data"})}(this.getContext(),t,e)),o.parsed=this.getParsed(t),o.raw=n.data[t],o.index=o.dataIndex=t}else o=this.$context||(this.$context=function(t,e){return oi(t,{active:!1,dataset:void 0,datasetIndex:e,index:e,mode:"default",type:"dataset"})}(this.chart.getContext(),this.index)),o.dataset=n,o.index=o.datasetIndex=this.index;return o.active=!!e,o.mode=r,o}resolveDatasetElementOptions(t){return this._resolveElementOptions(this.datasetElementType.id,t)}resolveDataElementOptions(t,e){return this._resolveElementOptions(this.dataElementType.id,e,t)}_resolveElementOptions(t,e="default",r){const n="active"===e,o=this._cachedDataOpts,i=t+"-"+e,a=o[i],s=this.enableOptionSharing&&Dn(r);if(a)return la(a,s);const l=this.chart.config,d=l.datasetElementScopeKeys(this._type,t),c=n?[`${t}Hover`,"hover",t,""]:[t,""],u=l.getOptionScopes(this.getDataset(),d),p=Object.keys(Ro.elements[t]),m=l.resolveNamedOptions(u,p,(()=>this.getContext(r,n,e)),c);return m.$shared&&(m.$shared=s,o[i]=Object.freeze(la(m,s))),m}_resolveAnimations(t,e,r){const n=this.chart,o=this._cachedDataOpts,i=`animation-${e}`,a=o[i];if(a)return a;let s;if(!1!==n.options.animation){const n=this.chart.config,o=n.datasetAnimationScopeKeys(this._type,e),i=n.getOptionScopes(this.getDataset(),o);s=n.createResolver(i,this.getContext(t,r,e))}const l=new Gi(n,s&&s.animations);return s&&s._cacheable&&(o[i]=Object.freeze(l)),l}getSharedOptions(t){if(t.$shared)return this._sharedOptions||(this._sharedOptions=Object.assign({},t))}includeOptions(t,e){return!e||sa(t)||this.chart._animationsDisabled}_getSharedOptions(t,e){const r=this.resolveDataElementOptions(t,e),n=this._sharedOptions,o=this.getSharedOptions(r),i=this.includeOptions(e,o)||o!==n;return this.updateSharedOptions(o,e,r),{sharedOptions:o,includeOptions:i}}updateElement(t,e,r,n){sa(n)?Object.assign(t,r):this._resolveAnimations(e,n).update(t,r)}updateSharedOptions(t,e,r){t&&!sa(e)&&this._resolveAnimations(void 0,e).update(t,r)}_setStyle(t,e,r,n){t.active=n;const o=this.getStyle(e,n);this._resolveAnimations(e,r,n).update(t,{options:!n&&this.getSharedOptions(o)||o})}removeHoverStyle(t,e,r){this._setStyle(t,r,"active",!1)}setHoverStyle(t,e,r){this._setStyle(t,r,"active",!0)}_removeDatasetHoverStyle(){const t=this._cachedMeta.dataset;t&&this._setStyle(t,void 0,"active",!1)}_setDatasetHoverStyle(){const t=this._cachedMeta.dataset;t&&this._setStyle(t,void 0,"active",!0)}_resyncElements(t){const e=this._data,r=this._cachedMeta.data;for(const[t,e,r]of this._syncList)this[t](e,r);this._syncList=[];const n=r.length,o=e.length,i=Math.min(o,n);i&&this.parse(0,i),o>n?this._insertElements(n,o-n,t):o<n&&this._removeElements(o,n-o)}_insertElements(t,e,r=!0){const n=this._cachedMeta,o=n.data,i=t+e;let a;const s=t=>{for(t.length+=e,a=t.length-1;a>=i;a--)t[a]=t[a-e]};for(s(o),a=t;a<i;++a)o[a]=new this.dataElementType;this._parsing&&s(n._parsed),this.parse(t,e),r&&this.updateElements(o,t,e,"reset")}updateElements(t,e,r,n){}_removeElements(t,e){const r=this._cachedMeta;if(this._parsing){const n=r._parsed.splice(t,e);r._stacked&&aa(r,n)}r.data.splice(t,e)}_sync(t){if(this._parsing)this._syncList.push(t);else{const[e,r,n]=t;this[e](r,n)}this.chart._dataChanges.push([this.index,...t])}_onDataPush(){const t=arguments.length;this._sync(["_insertElements",this.getDataset().data.length-t,t])}_onDataPop(){this._sync(["_removeElements",this._cachedMeta.data.length-1,1])}_onDataShift(){this._sync(["_removeElements",0,1])}_onDataSplice(t,e){e&&this._sync(["_removeElements",t,e]);const r=arguments.length-2;r&&this._sync(["_insertElements",t,r])}_onDataUnshift(){this._sync(["_insertElements",0,arguments.length])}}function ca(t){const e=t.iScale,r=function(t,e){if(!t._cache.$bar){const r=t.getMatchingVisibleMetas(e);let n=[];for(let e=0,o=r.length;e<o;e++)n=n.concat(r[e].controller.getAllParsedValues(t));t._cache.$bar=function(t){const e=new Set;let r,n;for(r=0,n=t.length;r<n;++r)e.add(t[r]);return e.size===n?t:Array.from(e)}(n.sort(((t,e)=>t-e)))}return t._cache.$bar}(e,t.type);let n,o,i,a,s=e._length;const l=()=>{32767!==i&&-32768!==i&&(Dn(a)&&(s=Math.min(s,Math.abs(i-a)||s)),a=i)};for(n=0,o=r.length;n<o;++n)i=e.getPixelForValue(r[n]),l();for(a=void 0,n=0,o=e.ticks.length;n<o;++n)i=e.getPixelForTick(n),l();return s}function ua(t,e,r,n){return vn(t)?function(t,e,r,n){const o=r.parse(t[0],n),i=r.parse(t[1],n),a=Math.min(o,i),s=Math.max(o,i);let l=a,d=s;Math.abs(a)>Math.abs(s)&&(l=s,d=a),e[r.axis]=d,e._custom={barStart:l,barEnd:d,start:o,end:i,min:a,max:s}}(t,e,r,n):e[r.axis]=r.parse(t,n),e}function pa(t,e,r,n){const o=t.iScale,i=t.vScale,a=o.getLabels(),s=o===i,l=[];let d,c,u,p;for(d=r,c=r+n;d<c;++d)p=e[d],u={},u[o.axis]=s||o.parse(a[d],d),l.push(ua(p,u,i,d));return l}function ma(t){return t&&void 0!==t.barStart&&void 0!==t.barEnd}function fa(t,e,r,n){let o=e.borderSkipped;const i={};if(!o)return void(t.borderSkipped=i);if(!0===o)return void(t.borderSkipped={top:!0,right:!0,bottom:!0,left:!0});const{start:a,end:s,reverse:l,top:d,bottom:c}=function(t){let e,r,n,o,i;return t.horizontal?(e=t.base>t.x,r="left",n="right"):(e=t.base<t.y,r="bottom",n="top"),e?(o="end",i="start"):(o="start",i="end"),{start:r,end:n,reverse:e,top:o,bottom:i}}(t);"middle"===o&&r&&(t.enableBorderRadius=!0,(r._top||0)===n?o=d:(r._bottom||0)===n?o=c:(i[ha(c,a,s,l)]=!0,o=d)),i[ha(o,a,s,l)]=!0,t.borderSkipped=i}function ha(t,e,r,n){var o,i,a;return n?(a=r,t=ba(t=(o=t)===(i=e)?a:o===a?i:o,r,e)):t=ba(t,e,r),t}function ba(t,e,r){return"start"===t?e:"end"===t?r:t}function ga(t,{inflateAmount:e},r){t.inflateAmount="auto"===e?1===r?.33:0:e}class va extends da{static id="bar";static defaults={datasetElementType:!1,dataElementType:"bar",categoryPercentage:.8,barPercentage:.9,grouped:!0,animations:{numbers:{type:"number",properties:["x","y","base","width","height"]}}};static overrides={scales:{_index_:{type:"category",offset:!0,grid:{offset:!0}},_value_:{type:"linear",beginAtZero:!0}}};parsePrimitiveData(t,e,r,n){return pa(t,e,r,n)}parseArrayData(t,e,r,n){return pa(t,e,r,n)}parseObjectData(t,e,r,n){const{iScale:o,vScale:i}=t,{xAxisKey:a="x",yAxisKey:s="y"}=this._parsing,l="x"===o.axis?a:s,d="x"===i.axis?a:s,c=[];let u,p,m,f;for(u=r,p=r+n;u<p;++u)f=e[u],m={},m[o.axis]=o.parse(Nn(f,l),u),c.push(ua(Nn(f,d),m,i,u));return c}updateRangeFromParsed(t,e,r,n){super.updateRangeFromParsed(t,e,r,n);const o=r._custom;o&&e===this._cachedMeta.vScale&&(t.min=Math.min(t.min,o.min),t.max=Math.max(t.max,o.max))}getMaxOverflow(){return 0}getLabelAndValue(t){const e=this._cachedMeta,{iScale:r,vScale:n}=e,o=this.getParsed(t),i=o._custom,a=ma(i)?"["+i.start+", "+i.end+"]":""+n.getLabelForValue(o[n.axis]);return{label:""+r.getLabelForValue(o[r.axis]),value:a}}initialize(){this.enableOptionSharing=!0,super.initialize(),this._cachedMeta.stack=this.getDataset().stack}update(t){const e=this._cachedMeta;this.updateElements(e.data,0,e.data.length,t)}updateElements(t,e,r,n){const o="reset"===n,{index:i,_cachedMeta:{vScale:a}}=this,s=a.getBasePixel(),l=a.isHorizontal(),d=this._getRuler(),{sharedOptions:c,includeOptions:u}=this._getSharedOptions(e,n);for(let p=e;p<e+r;p++){const e=this.getParsed(p),r=o||gn(e[a.axis])?{base:s,head:s}:this._calculateBarValuePixels(p),m=this._calculateBarIndexPixels(p,d),f=(e._stacks||{})[a.axis],h={horizontal:l,base:r.base,enableBorderRadius:!f||ma(e._custom)||i===f._top||i===f._bottom,x:l?r.head:m.center,y:l?m.center:r.head,height:l?m.size:Math.abs(r.size),width:l?Math.abs(r.size):m.size};u&&(h.options=c||this.resolveDataElementOptions(p,t[p].active?"active":n));const b=h.options||t[p].options;fa(h,b,f,i),ga(h,b,d.ratio),this.updateElement(t[p],p,h,n)}}_getStacks(t,e){const{iScale:r}=this._cachedMeta,n=r.getMatchingVisibleMetas(this._type).filter((t=>t.controller.options.grouped)),o=r.options.stacked,i=[],a=t=>{const r=t.controller.getParsed(e),n=r&&r[t.vScale.axis];if(gn(n)||isNaN(n))return!0};for(const r of n)if((void 0===e||!a(r))&&((!1===o||-1===i.indexOf(r.stack)||void 0===o&&void 0===r.stack)&&i.push(r.stack),r.index===t))break;return i.length||i.push(void 0),i}_getStackCount(t){return this._getStacks(void 0,t).length}_getStackIndex(t,e,r){const n=this._getStacks(t,r),o=void 0!==e?n.indexOf(e):-1;return-1===o?n.length-1:o}_getRuler(){const t=this.options,e=this._cachedMeta,r=e.iScale,n=[];let o,i;for(o=0,i=e.data.length;o<i;++o)n.push(r.getPixelForValue(this.getParsed(o)[r.axis],o));const a=t.barThickness;return{min:a||ca(e),pixels:n,start:r._startPixel,end:r._endPixel,stackCount:this._getStackCount(),scale:r,grouped:t.grouped,ratio:a?1:t.categoryPercentage*t.barPercentage}}_calculateBarValuePixels(t){const{_cachedMeta:{vScale:e,_stacked:r,index:n},options:{base:o,minBarLength:i}}=this,a=o||0,s=this.getParsed(t),l=s._custom,d=ma(l);let c,u,p=s[e.axis],m=0,f=r?this.applyStack(e,s,r):p;f!==p&&(m=f-p,f=p),d&&(p=l.barStart,f=l.barEnd-l.barStart,0!==p&&Kn(p)!==Kn(l.barEnd)&&(m=0),m+=p);const h=gn(o)||d?m:o;let b=e.getPixelForValue(h);if(c=this.chart.getDataVisibility(t)?e.getPixelForValue(m+f):b,u=c-b,Math.abs(u)<i){u=function(t,e,r){return 0!==t?Kn(t):(e.isHorizontal()?1:-1)*(e.min>=r?1:-1)}(u,e,a)*i,p===a&&(b-=u/2);const t=e.getPixelForDecimal(0),o=e.getPixelForDecimal(1),l=Math.min(t,o),m=Math.max(t,o);b=Math.max(Math.min(b,m),l),c=b+u,r&&!d&&(s._stacks[e.axis]._visualValues[n]=e.getValueForPixel(c)-e.getValueForPixel(b))}if(b===e.getPixelForValue(a)){const t=Kn(u)*e.getLineWidthForValue(a)/2;b+=t,u-=t}return{size:u,base:b,head:c,center:c+u/2}}_calculateBarIndexPixels(t,e){const r=e.scale,n=this.options,o=n.skipNull,i=kn(n.maxBarThickness,1/0);let a,s;if(e.grouped){const r=o?this._getStackCount(t):e.stackCount,l="flex"===n.barThickness?function(t,e,r,n){const o=e.pixels,i=o[t];let a=t>0?o[t-1]:null,s=t<o.length-1?o[t+1]:null;const l=r.categoryPercentage;null===a&&(a=i-(null===s?e.end-e.start:s-i)),null===s&&(s=i+i-a);const d=i-(i-Math.min(a,s))/2*l;return{chunk:Math.abs(s-a)/2*l/n,ratio:r.barPercentage,start:d}}(t,e,n,r):function(t,e,r,n){const o=r.barThickness;let i,a;return gn(o)?(i=e.min*r.categoryPercentage,a=r.barPercentage):(i=o*n,a=1),{chunk:i/n,ratio:a,start:e.pixels[t]-i/2}}(t,e,n,r),d=this._getStackIndex(this.index,this._cachedMeta.stack,o?t:void 0);a=l.start+l.chunk*d+l.chunk/2,s=Math.min(i,l.chunk*l.ratio)}else a=r.getPixelForValue(this.getParsed(t)[r.axis],t),s=Math.min(i,e.min*e.ratio);return{base:a-s/2,head:a+s/2,center:a,size:s}}draw(){const t=this._cachedMeta,e=t.vScale,r=t.data,n=r.length;let o=0;for(;o<n;++o)null!==this.getParsed(o)[e.axis]&&r[o].draw(this._ctx)}}class xa extends da{static id="line";static defaults={datasetElementType:"line",dataElementType:"point",showLine:!0,spanGaps:!1};static overrides={scales:{_index_:{type:"category"},_value_:{type:"linear"}}};initialize(){this.enableOptionSharing=!0,this.supportsDecimation=!0,super.initialize()}update(t){const e=this._cachedMeta,{dataset:r,data:n=[],_dataset:o}=e,i=this.chart._animationsDisabled;let{start:a,count:s}=function(t,e,r){const n=e.length;let o=0,i=n;if(t._sorted){const{iScale:a,_parsed:s}=t,l=a.axis,{min:d,max:c,minDefined:u,maxDefined:p}=a.getUserBounds();u&&(o=oo(Math.min(so(s,a.axis,d).lo,r?n:so(e,l,a.getPixelForValue(d)).lo),0,n-1)),i=p?oo(Math.max(so(s,a.axis,c,!0).hi+1,r?0:so(e,l,a.getPixelForValue(c),!0).hi+1),o,n)-o:n-o}return{start:o,count:i}}(e,n,i);this._drawStart=a,this._drawCount=s,function(t){const{xScale:e,yScale:r,_scaleRanges:n}=t,o={xmin:e.min,xmax:e.max,ymin:r.min,ymax:r.max};if(!n)return t._scaleRanges=o,!0;const i=n.xmin!==e.min||n.xmax!==e.max||n.ymin!==r.min||n.ymax!==r.max;return Object.assign(n,o),i}(e)&&(a=0,s=n.length),r._chart=this.chart,r._datasetIndex=this.index,r._decimated=!!o._decimated,r.points=n;const l=this.resolveDatasetElementOptions(t);this.options.showLine||(l.borderWidth=0),l.segment=this.options.segment,this.updateElement(r,void 0,{animated:!i,options:l},t),this.updateElements(n,a,s,t)}updateElements(t,e,r,n){const o="reset"===n,{iScale:i,vScale:a,_stacked:s,_dataset:l}=this._cachedMeta,{sharedOptions:d,includeOptions:c}=this._getSharedOptions(e,n),u=i.axis,p=a.axis,{spanGaps:m,segment:f}=this.options,h=qn(m)?m:Number.POSITIVE_INFINITY,b=this.chart._animationsDisabled||o||"none"===n,g=e+r,v=t.length;let x=e>0&&this.getParsed(e-1);for(let r=0;r<v;++r){const m=t[r],v=b?m:{};if(r<e||r>=g){v.skip=!0;continue}const y=this.getParsed(r),w=gn(y[p]),k=v[u]=i.getPixelForValue(y[u],r),_=v[p]=o||w?a.getBasePixel():a.getPixelForValue(s?this.applyStack(a,y,s):y[p],r);v.skip=isNaN(k)||isNaN(_)||w,v.stop=r>0&&Math.abs(y[u]-x[u])>h,f&&(v.parsed=y,v.raw=l.data[r]),c&&(v.options=d||this.resolveDataElementOptions(r,m.active?"active":n)),b||this.updateElement(m,r,v,n),x=y}}getMaxOverflow(){const t=this._cachedMeta,e=t.dataset,r=e.options&&e.options.borderWidth||0,n=t.data||[];if(!n.length)return r;const o=n[0].size(this.resolveDataElementOptions(0)),i=n[n.length-1].size(this.resolveDataElementOptions(n.length-1));return Math.max(r,o,i)/2}draw(){const t=this._cachedMeta;t.dataset.updateControlPoints(this.chart.chartArea,t.iScale.axis),super.draw()}}function ya(t,e,r,n){const{controller:o,data:i,_sorted:a}=t,s=o._cachedMeta.iScale;if(s&&e===s.axis&&"r"!==e&&a&&i.length){const t=s._reversePixels?lo:so;if(!n)return t(i,e,r);if(o._sharedOptions){const n=i[0],o="function"==typeof n.getRange&&n.getRange(e);if(o){const n=t(i,e,r-o),a=t(i,e,r+o);return{lo:n.lo,hi:a.hi}}}}return{lo:0,hi:i.length-1}}function wa(t,e,r,n,o){const i=t.getSortedVisibleDatasetMetas(),a=r[e];for(let t=0,r=i.length;t<r;++t){const{index:r,data:s}=i[t],{lo:l,hi:d}=ya(i[t],e,a,o);for(let t=l;t<=d;++t){const e=s[t];e.skip||n(e,r,t)}}}function ka(t,e,r,n,o){const i=[];return o||t.isPointInArea(e)?(wa(t,r,e,(function(r,a,s){(o||Bo(r,t.chartArea,0))&&r.inRange(e.x,e.y,n)&&i.push({element:r,datasetIndex:a,index:s})}),!0),i):i}function _a(t,e,r,n,o,i){return i||t.isPointInArea(e)?"r"!==r||n?function(t,e,r,n,o,i){let a=[];const s=function(t){const e=-1!==t.indexOf("x"),r=-1!==t.indexOf("y");return function(t,n){const o=e?Math.abs(t.x-n.x):0,i=r?Math.abs(t.y-n.y):0;return Math.sqrt(Math.pow(o,2)+Math.pow(i,2))}}(r);let l=Number.POSITIVE_INFINITY;return wa(t,r,e,(function(r,d,c){const u=r.inRange(e.x,e.y,o);if(n&&!u)return;const p=r.getCenterPoint(o);if(!i&&!t.isPointInArea(p)&&!u)return;const m=s(e,p);m<l?(a=[{element:r,datasetIndex:d,index:c}],l=m):m===l&&a.push({element:r,datasetIndex:d,index:c})})),a}(t,e,r,n,o,i):function(t,e,r,n){let o=[];return wa(t,r,e,(function(t,r,i){const{startAngle:a,endAngle:s}=t.getProps(["startAngle","endAngle"],n),{angle:l}=function(t,e){const r=e.x-t.x,n=e.y-t.y,o=Math.sqrt(r*r+n*n);let i=Math.atan2(n,r);return i<-.5*jn&&(i+=Fn),{angle:i,distance:o}}(t,{x:e.x,y:e.y});no(l,a,s)&&o.push({element:t,datasetIndex:r,index:i})})),o}(t,e,r,o):[]}function Sa(t,e,r,n,o){const i=[],a="x"===r?"inXRange":"inYRange";let s=!1;return wa(t,r,e,((t,n,l)=>{t[a](e[r],o)&&(i.push({element:t,datasetIndex:n,index:l}),s=s||t.inRange(e.x,e.y,o))})),n&&!s?[]:i}var Ea={evaluateInteractionItems:wa,modes:{index(t,e,r,n){const o=Oi(e,t),i=r.axis||"x",a=r.includeInvisible||!1,s=r.intersect?ka(t,o,i,n,a):_a(t,o,i,!1,n,a),l=[];return s.length?(t.getSortedVisibleDatasetMetas().forEach((t=>{const e=s[0].index,r=t.data[e];r&&!r.skip&&l.push({element:r,datasetIndex:t.index,index:e})})),l):[]},dataset(t,e,r,n){const o=Oi(e,t),i=r.axis||"xy",a=r.includeInvisible||!1;let s=r.intersect?ka(t,o,i,n,a):_a(t,o,i,!1,n,a);if(s.length>0){const e=s[0].datasetIndex,r=t.getDatasetMeta(e).data;s=[];for(let t=0;t<r.length;++t)s.push({element:r[t],datasetIndex:e,index:t})}return s},point:(t,e,r,n)=>ka(t,Oi(e,t),r.axis||"xy",n,r.includeInvisible||!1),nearest(t,e,r,n){const o=Oi(e,t),i=r.axis||"xy",a=r.includeInvisible||!1;return _a(t,o,i,r.intersect,n,a)},x:(t,e,r,n)=>Sa(t,Oi(e,t),"x",r.intersect,n),y:(t,e,r,n)=>Sa(t,Oi(e,t),"y",r.intersect,n)}};const Ca=["left","top","right","bottom"];function za(t,e){return t.filter((t=>t.pos===e))}function Ma(t,e){return t.filter((t=>-1===Ca.indexOf(t.pos)&&t.box.axis===e))}function Pa(t,e){return t.sort(((t,r)=>{const n=e?r:t,o=e?t:r;return n.weight===o.weight?n.index-o.index:n.weight-o.weight}))}function Oa(t,e,r,n){return Math.max(t[r],e[r])+Math.max(t[n],e[n])}function Ta(t,e){t.top=Math.max(t.top,e.top),t.left=Math.max(t.left,e.left),t.bottom=Math.max(t.bottom,e.bottom),t.right=Math.max(t.right,e.right)}function La(t,e,r,n){const{pos:o,box:i}=r,a=t.maxPadding;if(!xn(o)){r.size&&(t[o]-=r.size);const e=n[r.stack]||{size:0,count:1};e.size=Math.max(e.size,r.horizontal?i.height:i.width),r.size=e.size/e.count,t[o]+=r.size}i.getPadding&&Ta(a,i.getPadding());const s=Math.max(0,e.outerWidth-Oa(a,t,"left","right")),l=Math.max(0,e.outerHeight-Oa(a,t,"top","bottom")),d=s!==t.w,c=l!==t.h;return t.w=s,t.h=l,r.horizontal?{same:d,other:c}:{same:c,other:d}}function Na(t,e){const r=e.maxPadding;return function(t){const n={left:0,top:0,right:0,bottom:0};return t.forEach((t=>{n[t]=Math.max(e[t],r[t])})),n}(t?["left","right"]:["top","bottom"])}function Ra(t,e,r,n){const o=[];let i,a,s,l,d,c;for(i=0,a=t.length,d=0;i<a;++i){s=t[i],l=s.box,l.update(s.width||e.w,s.height||e.h,Na(s.horizontal,e));const{same:a,other:u}=La(e,r,s,n);d|=a&&o.length,c=c||u,l.fullSize||o.push(s)}return d&&Ra(o,e,r,n)||c}function Da(t,e,r,n,o){t.top=r,t.left=e,t.right=e+n,t.bottom=r+o,t.width=n,t.height=o}function Ia(t,e,r,n){const o=r.padding;let{x:i,y:a}=e;for(const s of t){const t=s.box,l=n[s.stack]||{count:1,placed:0,weight:1},d=s.stackWeight/l.weight||1;if(s.horizontal){const n=e.w*d,i=l.size||t.height;Dn(l.start)&&(a=l.start),t.fullSize?Da(t,o.left,a,r.outerWidth-o.right-o.left,i):Da(t,e.left+l.placed,a,n,i),l.start=a,l.placed+=n,a=t.bottom}else{const n=e.h*d,a=l.size||t.width;Dn(l.start)&&(i=l.start),t.fullSize?Da(t,i,o.top,a,r.outerHeight-o.bottom-o.top):Da(t,i,e.top+l.placed,a,n),l.start=i,l.placed+=n,i=t.right}}e.x=i,e.y=a}var Aa={addBox(t,e){t.boxes||(t.boxes=[]),e.fullSize=e.fullSize||!1,e.position=e.position||"top",e.weight=e.weight||0,e._layers=e._layers||function(){return[{z:0,draw(t){e.draw(t)}}]},t.boxes.push(e)},removeBox(t,e){const r=t.boxes?t.boxes.indexOf(e):-1;-1!==r&&t.boxes.splice(r,1)},configure(t,e,r){e.fullSize=r.fullSize,e.position=r.position,e.weight=r.weight},update(t,e,r,n){if(!t)return;const o=ei(t.options.layout.padding),i=Math.max(e-o.width,0),a=Math.max(r-o.height,0),s=function(t){const e=function(t){const e=[];let r,n,o,i,a,s;for(r=0,n=(t||[]).length;r<n;++r)o=t[r],({position:i,options:{stack:a,stackWeight:s=1}}=o),e.push({index:r,box:o,pos:i,horizontal:o.isHorizontal(),weight:o.weight,stack:a&&i+a,stackWeight:s});return e}(t),r=Pa(e.filter((t=>t.box.fullSize)),!0),n=Pa(za(e,"left"),!0),o=Pa(za(e,"right")),i=Pa(za(e,"top"),!0),a=Pa(za(e,"bottom")),s=Ma(e,"x"),l=Ma(e,"y");return{fullSize:r,leftAndTop:n.concat(i),rightAndBottom:o.concat(l).concat(a).concat(s),chartArea:za(e,"chartArea"),vertical:n.concat(o).concat(l),horizontal:i.concat(a).concat(s)}}(t.boxes),l=s.vertical,d=s.horizontal;Sn(t.boxes,(t=>{"function"==typeof t.beforeLayout&&t.beforeLayout()}));const c=l.reduce(((t,e)=>e.box.options&&!1===e.box.options.display?t:t+1),0)||1,u=Object.freeze({outerWidth:e,outerHeight:r,padding:o,availableWidth:i,availableHeight:a,vBoxMaxWidth:i/2/c,hBoxMaxHeight:a/2}),p=Object.assign({},o);Ta(p,ei(n));const m=Object.assign({maxPadding:p,w:i,h:a,x:o.left,y:o.top},o),f=function(t,e){const r=function(t){const e={};for(const r of t){const{stack:t,pos:n,stackWeight:o}=r;if(!t||!Ca.includes(n))continue;const i=e[t]||(e[t]={count:0,placed:0,weight:0,size:0});i.count++,i.weight+=o}return e}(t),{vBoxMaxWidth:n,hBoxMaxHeight:o}=e;let i,a,s;for(i=0,a=t.length;i<a;++i){s=t[i];const{fullSize:a}=s.box,l=r[s.stack],d=l&&s.stackWeight/l.weight;s.horizontal?(s.width=d?d*n:a&&e.availableWidth,s.height=o):(s.width=n,s.height=d?d*o:a&&e.availableHeight)}return r}(l.concat(d),u);Ra(s.fullSize,m,u,f),Ra(l,m,u,f),Ra(d,m,u,f)&&Ra(l,m,u,f),function(t){const e=t.maxPadding;function r(r){const n=Math.max(e[r]-t[r],0);return t[r]+=n,n}t.y+=r("top"),t.x+=r("left"),r("right"),r("bottom")}(m),Ia(s.leftAndTop,m,u,f),m.x+=m.w,m.y+=m.h,Ia(s.rightAndBottom,m,u,f),t.chartArea={left:m.left,top:m.top,right:m.left+m.w,bottom:m.top+m.h,height:m.h,width:m.w},Sn(s.chartArea,(e=>{const r=e.box;Object.assign(r,t.chartArea),r.update(m.w,m.h,{left:0,top:0,right:0,bottom:0})}))}};class ja{acquireContext(t,e){}releaseContext(t){return!1}addEventListener(t,e,r){}removeEventListener(t,e,r){}getDevicePixelRatio(){return 1}getMaximumSize(t,e,r,n){return e=Math.max(0,e||t.width),r=r||t.height,{width:e,height:Math.max(0,n?Math.floor(e/n):r)}}isAttached(t){return!0}updateConfig(t){}}class Fa extends ja{acquireContext(t){return t&&t.getContext&&t.getContext("2d")||null}updateConfig(t){t.options.animation=!1}}const Ba={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"},Ua=t=>null===t||""===t,Ha=!!Ni&&{passive:!0};function Va(t,e,r){t.canvas.removeEventListener(e,r,Ha)}function $a(t,e){for(const r of t)if(r===e||r.contains(e))return!0}function Wa(t,e,r){const n=t.canvas,o=new MutationObserver((t=>{let e=!1;for(const r of t)e=e||$a(r.addedNodes,n),e=e&&!$a(r.removedNodes,n);e&&r()}));return o.observe(document,{childList:!0,subtree:!0}),o}function Ya(t,e,r){const n=t.canvas,o=new MutationObserver((t=>{let e=!1;for(const r of t)e=e||$a(r.removedNodes,n),e=e&&!$a(r.addedNodes,n);e&&r()}));return o.observe(document,{childList:!0,subtree:!0}),o}const Ka=new Map;let Qa=0;function Xa(){const t=window.devicePixelRatio;t!==Qa&&(Qa=t,Ka.forEach(((e,r)=>{r.currentDevicePixelRatio!==t&&e()})))}function qa(t,e,r){const n=t.canvas,o=n&&Ei(n);if(!o)return;const i=mo(((t,e)=>{const n=o.clientWidth;r(t,e),n<o.clientWidth&&r()}),window),a=new ResizeObserver((t=>{const e=t[0],r=e.contentRect.width,n=e.contentRect.height;0===r&&0===n||i(r,n)}));return a.observe(o),function(t,e){Ka.size||window.addEventListener("resize",Xa),Ka.set(t,e)}(t,i),a}function Ga(t,e,r){r&&r.disconnect(),"resize"===e&&function(t){Ka.delete(t),Ka.size||window.removeEventListener("resize",Xa)}(t)}function Za(t,e,r){const n=t.canvas,o=mo((e=>{null!==t.ctx&&r(function(t,e){const r=Ba[t.type]||t.type,{x:n,y:o}=Oi(t,e);return{type:r,chart:e,native:t,x:void 0!==n?n:null,y:void 0!==o?o:null}}(e,t))}),t);return function(t,e,r){t.addEventListener(e,r,Ha)}(n,e,o),o}class Ja extends ja{acquireContext(t,e){const r=t&&t.getContext&&t.getContext("2d");return r&&r.canvas===t?(function(t,e){const r=t.style,n=t.getAttribute("height"),o=t.getAttribute("width");if(t.$chartjs={initial:{height:n,width:o,style:{display:r.display,height:r.height,width:r.width}}},r.display=r.display||"block",r.boxSizing=r.boxSizing||"border-box",Ua(o)){const e=Ri(t,"width");void 0!==e&&(t.width=e)}if(Ua(n))if(""===t.style.height)t.height=t.width/(e||2);else{const e=Ri(t,"height");void 0!==e&&(t.height=e)}}(t,e),r):null}releaseContext(t){const e=t.canvas;if(!e.$chartjs)return!1;const r=e.$chartjs.initial;["height","width"].forEach((t=>{const n=r[t];gn(n)?e.removeAttribute(t):e.setAttribute(t,n)}));const n=r.style||{};return Object.keys(n).forEach((t=>{e.style[t]=n[t]})),e.width=e.width,delete e.$chartjs,!0}addEventListener(t,e,r){this.removeEventListener(t,e);const n=t.$proxies||(t.$proxies={}),o={attach:Wa,detach:Ya,resize:qa}[e]||Za;n[e]=o(t,e,r)}removeEventListener(t,e){const r=t.$proxies||(t.$proxies={}),n=r[e];n&&(({attach:Ga,detach:Ga,resize:Ga}[e]||Va)(t,e,n),r[e]=void 0)}getDevicePixelRatio(){return window.devicePixelRatio}getMaximumSize(t,e,r,n){return function(t,e,r,n){const o=zi(t),i=Pi(o,"margin"),a=Ci(o.maxWidth,t,"clientWidth")||Un,s=Ci(o.maxHeight,t,"clientHeight")||Un,l=function(t,e,r){let n,o;if(void 0===e||void 0===r){const i=Ei(t);if(i){const t=i.getBoundingClientRect(),a=zi(i),s=Pi(a,"border","width"),l=Pi(a,"padding");e=t.width-l.width-s.width,r=t.height-l.height-s.height,n=Ci(a.maxWidth,i,"clientWidth"),o=Ci(a.maxHeight,i,"clientHeight")}else e=t.clientWidth,r=t.clientHeight}return{width:e,height:r,maxWidth:n||Un,maxHeight:o||Un}}(t,e,r);let{width:d,height:c}=l;if("content-box"===o.boxSizing){const t=Pi(o,"border","width"),e=Pi(o,"padding");d-=e.width+t.width,c-=e.height+t.height}return d=Math.max(0,d-i.width),c=Math.max(0,n?d/n:c-i.height),d=Ti(Math.min(d,a,l.maxWidth)),c=Ti(Math.min(c,s,l.maxHeight)),d&&!c&&(c=Ti(d/2)),(void 0!==e||void 0!==r)&&n&&l.height&&c>l.height&&(c=l.height,d=Ti(Math.floor(c*n))),{width:d,height:c}}(t,e,r,n)}isAttached(t){const e=Ei(t);return!(!e||!e.isConnected)}}class ts{static defaults={};static defaultRoutes=void 0;active=!1;tooltipPosition(t){const{x:e,y:r}=this.getProps(["x","y"],t);return{x:e,y:r}}hasValue(){return qn(this.x)&&qn(this.y)}getProps(t,e){const r=this.$animations;if(!e||!r)return this;const n={};return t.forEach((t=>{n[t]=r[t]&&r[t].active()?r[t]._to:this[t]})),n}}function es(t,e,r,n,o){const i=kn(n,0),a=Math.min(kn(o,t.length),t.length);let s,l,d,c=0;for(r=Math.ceil(r),o&&(s=o-n,r=s/Math.floor(s/r)),d=i;d<0;)c++,d=Math.round(i+c*r);for(l=Math.max(i,0);l<a;l++)l===d&&(e.push(t[l]),c++,d=Math.round(i+c*r))}const rs=(t,e,r)=>"top"===e||"left"===e?t[e]+r:t[e]-r,ns=(t,e)=>Math.min(e||t,t);function os(t,e){const r=[],n=t.length/e,o=t.length;let i=0;for(;i<o;i+=n)r.push(t[Math.floor(i)]);return r}function is(t,e,r){const n=t.ticks.length,o=Math.min(e,n-1),i=t._startPixel,a=t._endPixel,s=1e-6;let l,d=t.getPixelForTick(o);if(!(r&&(l=1===n?Math.max(d-i,a-d):0===e?(t.getPixelForTick(1)-d)/2:(d-t.getPixelForTick(o-1))/2,d+=o<e?l:-l,d<i-s||d>a+s)))return d}function as(t){return t.drawTicks?t.tickLength:0}function ss(t,e){if(!t.display)return 0;const r=ri(t.font,e),n=ei(t.padding);return(vn(t.text)?t.text.length:1)*r.lineHeight+n.height}function ls(t,e,r){let n=fo(t);return(r&&"right"!==e||!r&&"right"===e)&&(n=(t=>"left"===t?"right":"right"===t?"left":t)(n)),n}class ds extends ts{constructor(t){super(),this.id=t.id,this.type=t.type,this.options=void 0,this.ctx=t.ctx,this.chart=t.chart,this.top=void 0,this.bottom=void 0,this.left=void 0,this.right=void 0,this.width=void 0,this.height=void 0,this._margins={left:0,right:0,top:0,bottom:0},this.maxWidth=void 0,this.maxHeight=void 0,this.paddingTop=void 0,this.paddingBottom=void 0,this.paddingLeft=void 0,this.paddingRight=void 0,this.axis=void 0,this.labelRotation=void 0,this.min=void 0,this.max=void 0,this._range=void 0,this.ticks=[],this._gridLineItems=null,this._labelItems=null,this._labelSizes=null,this._length=0,this._maxLength=0,this._longestTextCache={},this._startPixel=void 0,this._endPixel=void 0,this._reversePixels=!1,this._userMax=void 0,this._userMin=void 0,this._suggestedMax=void 0,this._suggestedMin=void 0,this._ticksLength=0,this._borderValue=0,this._cache={},this._dataLimitsCached=!1,this.$context=void 0}init(t){this.options=t.setContext(this.getContext()),this.axis=t.axis,this._userMin=this.parse(t.min),this._userMax=this.parse(t.max),this._suggestedMin=this.parse(t.suggestedMin),this._suggestedMax=this.parse(t.suggestedMax)}parse(t,e){return t}getUserBounds(){let{_userMin:t,_userMax:e,_suggestedMin:r,_suggestedMax:n}=this;return t=wn(t,Number.POSITIVE_INFINITY),e=wn(e,Number.NEGATIVE_INFINITY),r=wn(r,Number.POSITIVE_INFINITY),n=wn(n,Number.NEGATIVE_INFINITY),{min:wn(t,r),max:wn(e,n),minDefined:yn(t),maxDefined:yn(e)}}getMinMax(t){let e,{min:r,max:n,minDefined:o,maxDefined:i}=this.getUserBounds();if(o&&i)return{min:r,max:n};const a=this.getMatchingVisibleMetas();for(let s=0,l=a.length;s<l;++s)e=a[s].controller.getMinMax(this,t),o||(r=Math.min(r,e.min)),i||(n=Math.max(n,e.max));return r=i&&r>n?n:r,n=o&&r>n?r:n,{min:wn(r,wn(n,r)),max:wn(n,wn(r,n))}}getPadding(){return{left:this.paddingLeft||0,top:this.paddingTop||0,right:this.paddingRight||0,bottom:this.paddingBottom||0}}getTicks(){return this.ticks}getLabels(){const t=this.chart.data;return this.options.labels||(this.isHorizontal()?t.xLabels:t.yLabels)||t.labels||[]}getLabelItems(t=this.chart.chartArea){return this._labelItems||(this._labelItems=this._computeLabelItems(t))}beforeLayout(){this._cache={},this._dataLimitsCached=!1}beforeUpdate(){_n(this.options.beforeUpdate,[this])}update(t,e,r){const{beginAtZero:n,grace:o,ticks:i}=this.options,a=i.sampleSize;this.beforeUpdate(),this.maxWidth=t,this.maxHeight=e,this._margins=r=Object.assign({left:0,right:0,top:0,bottom:0},r),this.ticks=null,this._labelSizes=null,this._gridLineItems=null,this._labelItems=null,this.beforeSetDimensions(),this.setDimensions(),this.afterSetDimensions(),this._maxLength=this.isHorizontal()?this.width+r.left+r.right:this.height+r.top+r.bottom,this._dataLimitsCached||(this.beforeDataLimits(),this.determineDataLimits(),this.afterDataLimits(),this._range=function(t,e,r){const{min:n,max:o}=t,i=(l=(o-n)/2,"string"==typeof(s=e)&&s.endsWith("%")?parseFloat(s)/100*l:+s),a=(t,e)=>r&&0===t?0:t+e;var s,l;return{min:a(n,-Math.abs(i)),max:a(o,i)}}(this,o,n),this._dataLimitsCached=!0),this.beforeBuildTicks(),this.ticks=this.buildTicks()||[],this.afterBuildTicks();const s=a<this.ticks.length;this._convertTicksToLabels(s?os(this.ticks,a):this.ticks),this.configure(),this.beforeCalculateLabelRotation(),this.calculateLabelRotation(),this.afterCalculateLabelRotation(),i.display&&(i.autoSkip||"auto"===i.source)&&(this.ticks=function(t,e){const r=t.options.ticks,n=function(t){const e=t.options.offset,r=t._tickSize(),n=t._length/r+(e?0:1),o=t._maxLength/r;return Math.floor(Math.min(n,o))}(t),o=Math.min(r.maxTicksLimit||n,n),i=r.major.enabled?function(t){const e=[];let r,n;for(r=0,n=t.length;r<n;r++)t[r].major&&e.push(r);return e}(e):[],a=i.length,s=i[0],l=i[a-1],d=[];if(a>o)return function(t,e,r,n){let o,i=0,a=r[0];for(n=Math.ceil(n),o=0;o<t.length;o++)o===a&&(e.push(t[o]),i++,a=r[i*n])}(e,d,i,a/o),d;const c=function(t,e,r){const n=function(t){const e=t.length;let r,n;if(e<2)return!1;for(n=t[0],r=1;r<e;++r)if(t[r]-t[r-1]!==n)return!1;return n}(t),o=e.length/r;if(!n)return Math.max(o,1);const i=function(t){const e=[],r=Math.sqrt(t);let n;for(n=1;n<r;n++)t%n==0&&(e.push(n),e.push(t/n));return r===(0|r)&&e.push(r),e.sort(((t,e)=>t-e)).pop(),e}(n);for(let t=0,e=i.length-1;t<e;t++){const e=i[t];if(e>o)return e}return Math.max(o,1)}(i,e,o);if(a>0){let t,r;const n=a>1?Math.round((l-s)/(a-1)):null;for(es(e,d,c,gn(n)?0:s-n,s),t=0,r=a-1;t<r;t++)es(e,d,c,i[t],i[t+1]);return es(e,d,c,l,gn(n)?e.length:l+n),d}return es(e,d,c),d}(this,this.ticks),this._labelSizes=null,this.afterAutoSkip()),s&&this._convertTicksToLabels(this.ticks),this.beforeFit(),this.fit(),this.afterFit(),this.afterUpdate()}configure(){let t,e,r=this.options.reverse;this.isHorizontal()?(t=this.left,e=this.right):(t=this.top,e=this.bottom,r=!r),this._startPixel=t,this._endPixel=e,this._reversePixels=r,this._length=e-t,this._alignToPixels=this.options.alignToPixels}afterUpdate(){_n(this.options.afterUpdate,[this])}beforeSetDimensions(){_n(this.options.beforeSetDimensions,[this])}setDimensions(){this.isHorizontal()?(this.width=this.maxWidth,this.left=0,this.right=this.width):(this.height=this.maxHeight,this.top=0,this.bottom=this.height),this.paddingLeft=0,this.paddingTop=0,this.paddingRight=0,this.paddingBottom=0}afterSetDimensions(){_n(this.options.afterSetDimensions,[this])}_callHooks(t){this.chart.notifyPlugins(t,this.getContext()),_n(this.options[t],[this])}beforeDataLimits(){this._callHooks("beforeDataLimits")}determineDataLimits(){}afterDataLimits(){this._callHooks("afterDataLimits")}beforeBuildTicks(){this._callHooks("beforeBuildTicks")}buildTicks(){return[]}afterBuildTicks(){this._callHooks("afterBuildTicks")}beforeTickToLabelConversion(){_n(this.options.beforeTickToLabelConversion,[this])}generateTickLabels(t){const e=this.options.ticks;let r,n,o;for(r=0,n=t.length;r<n;r++)o=t[r],o.label=_n(e.callback,[o.value,r,t],this)}afterTickToLabelConversion(){_n(this.options.afterTickToLabelConversion,[this])}beforeCalculateLabelRotation(){_n(this.options.beforeCalculateLabelRotation,[this])}calculateLabelRotation(){const t=this.options,e=t.ticks,r=ns(this.ticks.length,t.ticks.maxTicksLimit),n=e.minRotation||0,o=e.maxRotation;let i,a,s,l=n;if(!this._isVisible()||!e.display||n>=o||r<=1||!this.isHorizontal())return void(this.labelRotation=n);const d=this._getLabelSizes(),c=d.widest.width,u=d.highest.height,p=oo(this.chart.width-c,0,this.maxWidth);i=t.offset?this.maxWidth/r:p/(r-1),c+6>i&&(i=p/(r-(t.offset?.5:1)),a=this.maxHeight-as(t.grid)-e.padding-ss(t.title,this.chart.options.font),s=Math.sqrt(c*c+u*u),l=Math.min(Math.asin(oo((d.highest.height+6)/i,-1,1)),Math.asin(oo(a/s,-1,1))-Math.asin(oo(u/s,-1,1)))*(180/jn),l=Math.max(n,Math.min(o,l))),this.labelRotation=l}afterCalculateLabelRotation(){_n(this.options.afterCalculateLabelRotation,[this])}afterAutoSkip(){}beforeFit(){_n(this.options.beforeFit,[this])}fit(){const t={width:0,height:0},{chart:e,options:{ticks:r,title:n,grid:o}}=this,i=this._isVisible(),a=this.isHorizontal();if(i){const i=ss(n,e.options.font);if(a?(t.width=this.maxWidth,t.height=as(o)+i):(t.height=this.maxHeight,t.width=as(o)+i),r.display&&this.ticks.length){const{first:e,last:n,widest:o,highest:i}=this._getLabelSizes(),s=2*r.padding,l=Zn(this.labelRotation),d=Math.cos(l),c=Math.sin(l);if(a){const e=r.mirror?0:c*o.width+d*i.height;t.height=Math.min(this.maxHeight,t.height+e+s)}else{const e=r.mirror?0:d*o.width+c*i.height;t.width=Math.min(this.maxWidth,t.width+e+s)}this._calculatePadding(e,n,c,d)}}this._handleMargins(),a?(this.width=this._length=e.width-this._margins.left-this._margins.right,this.height=t.height):(this.width=t.width,this.height=this._length=e.height-this._margins.top-this._margins.bottom)}_calculatePadding(t,e,r,n){const{ticks:{align:o,padding:i},position:a}=this.options,s=0!==this.labelRotation,l="top"!==a&&"x"===this.axis;if(this.isHorizontal()){const a=this.getPixelForTick(0)-this.left,d=this.right-this.getPixelForTick(this.ticks.length-1);let c=0,u=0;s?l?(c=n*t.width,u=r*e.height):(c=r*t.height,u=n*e.width):"start"===o?u=e.width:"end"===o?c=t.width:"inner"!==o&&(c=t.width/2,u=e.width/2),this.paddingLeft=Math.max((c-a+i)*this.width/(this.width-a),0),this.paddingRight=Math.max((u-d+i)*this.width/(this.width-d),0)}else{let r=e.height/2,n=t.height/2;"start"===o?(r=0,n=t.height):"end"===o&&(r=e.height,n=0),this.paddingTop=r+i,this.paddingBottom=n+i}}_handleMargins(){this._margins&&(this._margins.left=Math.max(this.paddingLeft,this._margins.left),this._margins.top=Math.max(this.paddingTop,this._margins.top),this._margins.right=Math.max(this.paddingRight,this._margins.right),this._margins.bottom=Math.max(this.paddingBottom,this._margins.bottom))}afterFit(){_n(this.options.afterFit,[this])}isHorizontal(){const{axis:t,position:e}=this.options;return"top"===e||"bottom"===e||"x"===t}isFullSize(){return this.options.fullSize}_convertTicksToLabels(t){let e,r;for(this.beforeTickToLabelConversion(),this.generateTickLabels(t),e=0,r=t.length;e<r;e++)gn(t[e].label)&&(t.splice(e,1),r--,e--);this.afterTickToLabelConversion()}_getLabelSizes(){let t=this._labelSizes;if(!t){const e=this.options.ticks.sampleSize;let r=this.ticks;e<r.length&&(r=os(r,e)),this._labelSizes=t=this._computeLabelSizes(r,r.length,this.options.ticks.maxTicksLimit)}return t}_computeLabelSizes(t,e,r){const{ctx:n,_longestTextCache:o}=this,i=[],a=[],s=Math.floor(e/ns(e,r));let l,d,c,u,p,m,f,h,b,g,v,x=0,y=0;for(l=0;l<e;l+=s){if(u=t[l].label,p=this._resolveTickFontOptions(l),n.font=m=p.string,f=o[m]=o[m]||{data:{},gc:[]},h=p.lineHeight,b=g=0,gn(u)||vn(u)){if(vn(u))for(d=0,c=u.length;d<c;++d)v=u[d],gn(v)||vn(v)||(b=Do(n,f.data,f.gc,b,v),g+=h)}else b=Do(n,f.data,f.gc,b,u),g=h;i.push(b),a.push(g),x=Math.max(b,x),y=Math.max(g,y)}!function(t,e){Sn(t,(t=>{const r=t.gc,n=r.length/2;let o;if(n>e){for(o=0;o<n;++o)delete t.data[r[o]];r.splice(0,n)}}))}(o,e);const w=i.indexOf(x),k=a.indexOf(y),_=t=>({width:i[t]||0,height:a[t]||0});return{first:_(0),last:_(e-1),widest:_(w),highest:_(k),widths:i,heights:a}}getLabelForValue(t){return t}getPixelForValue(t,e){return NaN}getValueForPixel(t){}getPixelForTick(t){const e=this.ticks;return t<0||t>e.length-1?null:this.getPixelForValue(e[t].value)}getPixelForDecimal(t){this._reversePixels&&(t=1-t);const e=this._startPixel+t*this._length;return oo(this._alignToPixels?Io(this.chart,e,0):e,-32768,32767)}getDecimalForPixel(t){const e=(t-this._startPixel)/this._length;return this._reversePixels?1-e:e}getBasePixel(){return this.getPixelForValue(this.getBaseValue())}getBaseValue(){const{min:t,max:e}=this;return t<0&&e<0?e:t>0&&e>0?t:0}getContext(t){const e=this.ticks||[];if(t>=0&&t<e.length){const r=e[t];return r.$context||(r.$context=function(t,e,r){return oi(t,{tick:r,index:e,type:"tick"})}(this.getContext(),t,r))}return this.$context||(this.$context=oi(this.chart.getContext(),{scale:this,type:"scale"}))}_tickSize(){const t=this.options.ticks,e=Zn(this.labelRotation),r=Math.abs(Math.cos(e)),n=Math.abs(Math.sin(e)),o=this._getLabelSizes(),i=t.autoSkipPadding||0,a=o?o.widest.width+i:0,s=o?o.highest.height+i:0;return this.isHorizontal()?s*r>a*n?a/r:s/n:s*n<a*r?s/r:a/n}_isVisible(){const t=this.options.display;return"auto"!==t?!!t:this.getMatchingVisibleMetas().length>0}_computeGridLineItems(t){const e=this.axis,r=this.chart,n=this.options,{grid:o,position:i,border:a}=n,s=o.offset,l=this.isHorizontal(),d=this.ticks.length+(s?1:0),c=as(o),u=[],p=a.setContext(this.getContext()),m=p.display?p.width:0,f=m/2,h=function(t){return Io(r,t,m)};let b,g,v,x,y,w,k,_,S,E,C,z;if("top"===i)b=h(this.bottom),w=this.bottom-c,_=b-f,E=h(t.top)+f,z=t.bottom;else if("bottom"===i)b=h(this.top),E=t.top,z=h(t.bottom)-f,w=b+f,_=this.top+c;else if("left"===i)b=h(this.right),y=this.right-c,k=b-f,S=h(t.left)+f,C=t.right;else if("right"===i)b=h(this.left),S=t.left,C=h(t.right)-f,y=b+f,k=this.left+c;else if("x"===e){if("center"===i)b=h((t.top+t.bottom)/2+.5);else if(xn(i)){const t=Object.keys(i)[0],e=i[t];b=h(this.chart.scales[t].getPixelForValue(e))}E=t.top,z=t.bottom,w=b+f,_=w+c}else if("y"===e){if("center"===i)b=h((t.left+t.right)/2);else if(xn(i)){const t=Object.keys(i)[0],e=i[t];b=h(this.chart.scales[t].getPixelForValue(e))}y=b-f,k=y-c,S=t.left,C=t.right}const M=kn(n.ticks.maxTicksLimit,d),P=Math.max(1,Math.ceil(d/M));for(g=0;g<d;g+=P){const t=this.getContext(g),e=o.setContext(t),n=a.setContext(t),i=e.lineWidth,d=e.color,c=n.dash||[],p=n.dashOffset,m=e.tickWidth,f=e.tickColor,h=e.tickBorderDash||[],b=e.tickBorderDashOffset;v=is(this,g,s),void 0!==v&&(x=Io(r,v,i),l?y=k=S=C=x:w=_=E=z=x,u.push({tx1:y,ty1:w,tx2:k,ty2:_,x1:S,y1:E,x2:C,y2:z,width:i,color:d,borderDash:c,borderDashOffset:p,tickWidth:m,tickColor:f,tickBorderDash:h,tickBorderDashOffset:b}))}return this._ticksLength=d,this._borderValue=b,u}_computeLabelItems(t){const e=this.axis,r=this.options,{position:n,ticks:o}=r,i=this.isHorizontal(),a=this.ticks,{align:s,crossAlign:l,padding:d,mirror:c}=o,u=as(r.grid),p=u+d,m=c?-d:p,f=-Zn(this.labelRotation),h=[];let b,g,v,x,y,w,k,_,S,E,C,z,M="middle";if("top"===n)w=this.bottom-m,k=this._getXAxisLabelAlignment();else if("bottom"===n)w=this.top+m,k=this._getXAxisLabelAlignment();else if("left"===n){const t=this._getYAxisLabelAlignment(u);k=t.textAlign,y=t.x}else if("right"===n){const t=this._getYAxisLabelAlignment(u);k=t.textAlign,y=t.x}else if("x"===e){if("center"===n)w=(t.top+t.bottom)/2+p;else if(xn(n)){const t=Object.keys(n)[0],e=n[t];w=this.chart.scales[t].getPixelForValue(e)+p}k=this._getXAxisLabelAlignment()}else if("y"===e){if("center"===n)y=(t.left+t.right)/2-p;else if(xn(n)){const t=Object.keys(n)[0],e=n[t];y=this.chart.scales[t].getPixelForValue(e)}k=this._getYAxisLabelAlignment(u).textAlign}"y"===e&&("start"===s?M="top":"end"===s&&(M="bottom"));const P=this._getLabelSizes();for(b=0,g=a.length;b<g;++b){v=a[b],x=v.label;const t=o.setContext(this.getContext(b));_=this.getPixelForTick(b)+o.labelOffset,S=this._resolveTickFontOptions(b),E=S.lineHeight,C=vn(x)?x.length:1;const e=C/2,r=t.color,s=t.textStrokeColor,d=t.textStrokeWidth;let u,p=k;if(i?(y=_,"inner"===k&&(p=b===g-1?this.options.reverse?"left":"right":0===b?this.options.reverse?"right":"left":"center"),z="top"===n?"near"===l||0!==f?-C*E+E/2:"center"===l?-P.highest.height/2-e*E+E:-P.highest.height+E/2:"near"===l||0!==f?E/2:"center"===l?P.highest.height/2-e*E:P.highest.height-C*E,c&&(z*=-1),0===f||t.showLabelBackdrop||(y+=E/2*Math.sin(f))):(w=_,z=(1-C)*E/2),t.showLabelBackdrop){const e=ei(t.backdropPadding),r=P.heights[b],n=P.widths[b];let o=z-e.top,i=0-e.left;switch(M){case"middle":o-=r/2;break;case"bottom":o-=r}switch(k){case"center":i-=n/2;break;case"right":i-=n}u={left:i,top:o,width:n+e.width,height:r+e.height,color:t.backdropColor}}h.push({label:x,font:S,textOffset:z,options:{rotation:f,color:r,strokeColor:s,strokeWidth:d,textAlign:p,textBaseline:M,translation:[y,w],backdrop:u}})}return h}_getXAxisLabelAlignment(){const{position:t,ticks:e}=this.options;if(-Zn(this.labelRotation))return"top"===t?"left":"right";let r="center";return"start"===e.align?r="left":"end"===e.align?r="right":"inner"===e.align&&(r="inner"),r}_getYAxisLabelAlignment(t){const{position:e,ticks:{crossAlign:r,mirror:n,padding:o}}=this.options,i=t+o,a=this._getLabelSizes().widest.width;let s,l;return"left"===e?n?(l=this.right+o,"near"===r?s="left":"center"===r?(s="center",l+=a/2):(s="right",l+=a)):(l=this.right-i,"near"===r?s="right":"center"===r?(s="center",l-=a/2):(s="left",l=this.left)):"right"===e?n?(l=this.left+o,"near"===r?s="right":"center"===r?(s="center",l-=a/2):(s="left",l-=a)):(l=this.left+i,"near"===r?s="left":"center"===r?(s="center",l+=a/2):(s="right",l=this.right)):s="right",{textAlign:s,x:l}}_computeLabelArea(){if(this.options.ticks.mirror)return;const t=this.chart,e=this.options.position;return"left"===e||"right"===e?{top:0,left:this.left,bottom:t.height,right:this.right}:"top"===e||"bottom"===e?{top:this.top,left:0,bottom:this.bottom,right:t.width}:void 0}drawBackground(){const{ctx:t,options:{backgroundColor:e},left:r,top:n,width:o,height:i}=this;e&&(t.save(),t.fillStyle=e,t.fillRect(r,n,o,i),t.restore())}getLineWidthForValue(t){const e=this.options.grid;if(!this._isVisible()||!e.display)return 0;const r=this.ticks.findIndex((e=>e.value===t));return r>=0?e.setContext(this.getContext(r)).lineWidth:0}drawGrid(t){const e=this.options.grid,r=this.ctx,n=this._gridLineItems||(this._gridLineItems=this._computeGridLineItems(t));let o,i;const a=(t,e,n)=>{n.width&&n.color&&(r.save(),r.lineWidth=n.width,r.strokeStyle=n.color,r.setLineDash(n.borderDash||[]),r.lineDashOffset=n.borderDashOffset,r.beginPath(),r.moveTo(t.x,t.y),r.lineTo(e.x,e.y),r.stroke(),r.restore())};if(e.display)for(o=0,i=n.length;o<i;++o){const t=n[o];e.drawOnChartArea&&a({x:t.x1,y:t.y1},{x:t.x2,y:t.y2},t),e.drawTicks&&a({x:t.tx1,y:t.ty1},{x:t.tx2,y:t.ty2},{color:t.tickColor,width:t.tickWidth,borderDash:t.tickBorderDash,borderDashOffset:t.tickBorderDashOffset})}}drawBorder(){const{chart:t,ctx:e,options:{border:r,grid:n}}=this,o=r.setContext(this.getContext()),i=r.display?o.width:0;if(!i)return;const a=n.setContext(this.getContext(0)).lineWidth,s=this._borderValue;let l,d,c,u;this.isHorizontal()?(l=Io(t,this.left,i)-i/2,d=Io(t,this.right,a)+a/2,c=u=s):(c=Io(t,this.top,i)-i/2,u=Io(t,this.bottom,a)+a/2,l=d=s),e.save(),e.lineWidth=o.width,e.strokeStyle=o.color,e.beginPath(),e.moveTo(l,c),e.lineTo(d,u),e.stroke(),e.restore()}drawLabels(t){if(!this.options.ticks.display)return;const e=this.ctx,r=this._computeLabelArea();r&&Uo(e,r);const n=this.getLabelItems(t);for(const t of n){const r=t.options,n=t.font;Wo(e,t.label,0,t.textOffset,n,r)}r&&Ho(e)}drawTitle(){const{ctx:t,options:{position:e,title:r,reverse:n}}=this;if(!r.display)return;const o=ri(r.font),i=ei(r.padding),a=r.align;let s=o.lineHeight/2;"bottom"===e||"center"===e||xn(e)?(s+=i.bottom,vn(r.text)&&(s+=o.lineHeight*(r.text.length-1))):s+=i.top;const{titleX:l,titleY:d,maxWidth:c,rotation:u}=function(t,e,r,n){const{top:o,left:i,bottom:a,right:s,chart:l}=t,{chartArea:d,scales:c}=l;let u,p,m,f=0;const h=a-o,b=s-i;if(t.isHorizontal()){if(p=ho(n,i,s),xn(r)){const t=Object.keys(r)[0],n=r[t];m=c[t].getPixelForValue(n)+h-e}else m="center"===r?(d.bottom+d.top)/2+h-e:rs(t,r,e);u=s-i}else{if(xn(r)){const t=Object.keys(r)[0],n=r[t];p=c[t].getPixelForValue(n)-b+e}else p="center"===r?(d.left+d.right)/2-b+e:rs(t,r,e);m=ho(n,a,o),f="left"===r?-Vn:Vn}return{titleX:p,titleY:m,maxWidth:u,rotation:f}}(this,s,e,a);Wo(t,r.text,0,0,o,{color:r.color,maxWidth:c,rotation:u,textAlign:ls(a,e,n),textBaseline:"middle",translation:[l,d]})}draw(t){this._isVisible()&&(this.drawBackground(),this.drawGrid(t),this.drawBorder(),this.drawTitle(),this.drawLabels(t))}_layers(){const t=this.options,e=t.ticks&&t.ticks.z||0,r=kn(t.grid&&t.grid.z,-1),n=kn(t.border&&t.border.z,0);return this._isVisible()&&this.draw===ds.prototype.draw?[{z:r,draw:t=>{this.drawBackground(),this.drawGrid(t),this.drawTitle()}},{z:n,draw:()=>{this.drawBorder()}},{z:e,draw:t=>{this.drawLabels(t)}}]:[{z:e,draw:t=>{this.draw(t)}}]}getMatchingVisibleMetas(t){const e=this.chart.getSortedVisibleDatasetMetas(),r=this.axis+"AxisID",n=[];let o,i;for(o=0,i=e.length;o<i;++o){const i=e[o];i[r]!==this.id||t&&i.type!==t||n.push(i)}return n}_resolveTickFontOptions(t){return ri(this.options.ticks.setContext(this.getContext(t)).font)}_maxDigits(){const t=this._resolveTickFontOptions(0).lineHeight;return(this.isHorizontal()?this.width:this.height)/t}}class cs{constructor(t,e,r){this.type=t,this.scope=e,this.override=r,this.items=Object.create(null)}isForType(t){return Object.prototype.isPrototypeOf.call(this.type.prototype,t.prototype)}register(t){const e=Object.getPrototypeOf(t);let r;(function(t){return"id"in t&&"defaults"in t})(e)&&(r=this.register(e));const n=this.items,o=t.id,i=this.scope+"."+o;if(!o)throw new Error("class does not have id: "+t);return o in n||(n[o]=t,function(t,e,r){const n=Pn(Object.create(null),[r?Ro.get(r):{},Ro.get(e),t.defaults]);Ro.set(e,n),t.defaultRoutes&&function(t,e){Object.keys(e).forEach((r=>{const n=r.split("."),o=n.pop(),i=[t].concat(n).join("."),a=e[r].split("."),s=a.pop(),l=a.join(".");Ro.route(i,o,l,s)}))}(e,t.defaultRoutes),t.descriptors&&Ro.describe(e,t.descriptors)}(t,i,r),this.override&&Ro.override(t.id,t.overrides)),i}get(t){return this.items[t]}unregister(t){const e=this.items,r=t.id,n=this.scope;r in e&&delete e[r],n&&r in Ro[n]&&(delete Ro[n][r],this.override&&delete Po[r])}}class us{constructor(){this.controllers=new cs(da,"datasets",!0),this.elements=new cs(ts,"elements"),this.plugins=new cs(Object,"plugins"),this.scales=new cs(ds,"scales"),this._typedRegistries=[this.controllers,this.scales,this.elements]}add(...t){this._each("register",t)}remove(...t){this._each("unregister",t)}addControllers(...t){this._each("register",t,this.controllers)}addElements(...t){this._each("register",t,this.elements)}addPlugins(...t){this._each("register",t,this.plugins)}addScales(...t){this._each("register",t,this.scales)}getController(t){return this._get(t,this.controllers,"controller")}getElement(t){return this._get(t,this.elements,"element")}getPlugin(t){return this._get(t,this.plugins,"plugin")}getScale(t){return this._get(t,this.scales,"scale")}removeControllers(...t){this._each("unregister",t,this.controllers)}removeElements(...t){this._each("unregister",t,this.elements)}removePlugins(...t){this._each("unregister",t,this.plugins)}removeScales(...t){this._each("unregister",t,this.scales)}_each(t,e,r){[...e].forEach((e=>{const n=r||this._getRegistryForType(e);r||n.isForType(e)||n===this.plugins&&e.id?this._exec(t,n,e):Sn(e,(e=>{const n=r||this._getRegistryForType(e);this._exec(t,n,e)}))}))}_exec(t,e,r){const n=Rn(t);_n(r["before"+n],[],r),e[t](r),_n(r["after"+n],[],r)}_getRegistryForType(t){for(let e=0;e<this._typedRegistries.length;e++){const r=this._typedRegistries[e];if(r.isForType(t))return r}return this.plugins}_get(t,e,r){const n=e.get(t);if(void 0===n)throw new Error('"'+t+'" is not a registered '+r+".");return n}}var ps=new us;class ms{constructor(){this._init=[]}notify(t,e,r,n){"beforeInit"===e&&(this._init=this._createDescriptors(t,!0),this._notify(this._init,t,"install"));const o=n?this._descriptors(t).filter(n):this._descriptors(t),i=this._notify(o,t,e,r);return"afterDestroy"===e&&(this._notify(o,t,"stop"),this._notify(this._init,t,"uninstall")),i}_notify(t,e,r,n){n=n||{};for(const o of t){const t=o.plugin;if(!1===_n(t[r],[e,n,o.options],t)&&n.cancelable)return!1}return!0}invalidate(){gn(this._cache)||(this._oldCache=this._cache,this._cache=void 0)}_descriptors(t){if(this._cache)return this._cache;const e=this._cache=this._createDescriptors(t);return this._notifyStateChanges(t),e}_createDescriptors(t,e){const r=t&&t.config,n=kn(r.options&&r.options.plugins,{}),o=function(t){const e={},r=[],n=Object.keys(ps.plugins.items);for(let t=0;t<n.length;t++)r.push(ps.getPlugin(n[t]));const o=t.plugins||[];for(let t=0;t<o.length;t++){const n=o[t];-1===r.indexOf(n)&&(r.push(n),e[n.id]=!0)}return{plugins:r,localIds:e}}(r);return!1!==n||e?function(t,{plugins:e,localIds:r},n,o){const i=[],a=t.getContext();for(const s of e){const e=s.id,l=fs(n[e],o);null!==l&&i.push({plugin:s,options:hs(t.config,{plugin:s,local:r[e]},l,a)})}return i}(t,o,n,e):[]}_notifyStateChanges(t){const e=this._oldCache||[],r=this._cache,n=(t,e)=>t.filter((t=>!e.some((e=>t.plugin.id===e.plugin.id))));this._notify(n(e,r),t,"stop"),this._notify(n(r,e),t,"start")}}function fs(t,e){return e||!1!==t?!0===t?{}:t:null}function hs(t,{plugin:e,local:r},n,o){const i=t.pluginScopeKeys(e),a=t.getOptionScopes(n,i);return r&&e.defaults&&a.push(e.defaults),t.createResolver(a,o,[""],{scriptable:!1,indexable:!1,allKeys:!0})}function bs(t,e){const r=Ro.datasets[t]||{};return((e.datasets||{})[t]||{}).indexAxis||e.indexAxis||r.indexAxis||"x"}function gs(t,e){if("x"===t||"y"===t||"r"===t)return t;var r;if(t=e.axis||("top"===(r=e.position)||"bottom"===r?"x":"left"===r||"right"===r?"y":void 0)||t.length>1&&gs(t[0].toLowerCase(),e))return t;throw new Error(`Cannot determine type of '${name}' axis. Please provide 'axis' or 'position' option.`)}function vs(t){const e=t.options||(t.options={});e.plugins=kn(e.plugins,{}),e.scales=function(t,e){const r=Po[t.type]||{scales:{}},n=e.scales||{},o=bs(t.type,e),i=Object.create(null);return Object.keys(n).forEach((t=>{const e=n[t];if(!xn(e))return console.error(`Invalid scale configuration for scale: ${t}`);if(e._proxy)return console.warn(`Ignoring resolver passed as options for scale: ${t}`);const a=gs(t,e),s=function(t,e){return t===e?"_index_":"_value_"}(a,o),l=r.scales||{};i[t]=On(Object.create(null),[{axis:a},e,l[a],l[s]])})),t.data.datasets.forEach((r=>{const o=r.type||t.type,a=r.indexAxis||bs(o,e),s=(Po[o]||{}).scales||{};Object.keys(s).forEach((t=>{const e=function(t,e){let r=t;return"_index_"===t?r=e:"_value_"===t&&(r="x"===e?"y":"x"),r}(t,a),o=r[e+"AxisID"]||e;i[o]=i[o]||Object.create(null),On(i[o],[{axis:e},n[o],s[t]])}))})),Object.keys(i).forEach((t=>{const e=i[t];On(e,[Ro.scales[e.type],Ro.scale])})),i}(t,e)}function xs(t){return(t=t||{}).datasets=t.datasets||[],t.labels=t.labels||[],t}const ys=new Map,ws=new Set;function ks(t,e){let r=ys.get(t);return r||(r=e(),ys.set(t,r),ws.add(r)),r}const _s=(t,e,r)=>{const n=Nn(e,r);void 0!==n&&t.add(n)};class Ss{constructor(t){this._config=function(t){return(t=t||{}).data=xs(t.data),vs(t),t}(t),this._scopeCache=new Map,this._resolverCache=new Map}get platform(){return this._config.platform}get type(){return this._config.type}set type(t){this._config.type=t}get data(){return this._config.data}set data(t){this._config.data=xs(t)}get options(){return this._config.options}set options(t){this._config.options=t}get plugins(){return this._config.plugins}update(){const t=this._config;this.clearCache(),vs(t)}clearCache(){this._scopeCache.clear(),this._resolverCache.clear()}datasetScopeKeys(t){return ks(t,(()=>[[`datasets.${t}`,""]]))}datasetAnimationScopeKeys(t,e){return ks(`${t}.transition.${e}`,(()=>[[`datasets.${t}.transitions.${e}`,`transitions.${e}`],[`datasets.${t}`,""]]))}datasetElementScopeKeys(t,e){return ks(`${t}-${e}`,(()=>[[`datasets.${t}.elements.${e}`,`datasets.${t}`,`elements.${e}`,""]]))}pluginScopeKeys(t){const e=t.id;return ks(`${this.type}-plugin-${e}`,(()=>[[`plugins.${e}`,...t.additionalOptionScopes||[]]]))}_cachedScopes(t,e){const r=this._scopeCache;let n=r.get(t);return n&&!e||(n=new Map,r.set(t,n)),n}getOptionScopes(t,e,r){const{options:n,type:o}=this,i=this._cachedScopes(t,r),a=i.get(e);if(a)return a;const s=new Set;e.forEach((e=>{t&&(s.add(t),e.forEach((e=>_s(s,t,e)))),e.forEach((t=>_s(s,n,t))),e.forEach((t=>_s(s,Po[o]||{},t))),e.forEach((t=>_s(s,Ro,t))),e.forEach((t=>_s(s,Oo,t)))}));const l=Array.from(s);return 0===l.length&&l.push(Object.create(null)),ws.has(e)&&i.set(e,l),l}chartOptionScopes(){const{options:t,type:e}=this;return[t,Po[e]||{},Ro.datasets[e]||{},{type:e},Ro,Oo]}resolveNamedOptions(t,e,r,n=[""]){const o={$shared:!0},{resolver:i,subPrefixes:a}=Es(this._resolverCache,t,n);let s=i;(function(t,e){const{isScriptable:r,isIndexable:n}=si(t);for(const o of e){const e=r(o),i=n(o),a=(i||e)&&t[o];if(e&&(In(a)||Cs(a))||i&&vn(a))return!0}return!1})(i,e)&&(o.$shared=!1,s=ai(i,r=In(r)?r():r,this.createResolver(t,r,a)));for(const t of e)o[t]=s[t];return o}createResolver(t,e,r=[""],n){const{resolver:o}=Es(this._resolverCache,t,r);return xn(e)?ai(o,e,void 0,n):o}}function Es(t,e,r){let n=t.get(e);n||(n=new Map,t.set(e,n));const o=r.join();let i=n.get(o);return i||(i={resolver:ii(e,r),subPrefixes:r.filter((t=>!t.toLowerCase().includes("hover")))},n.set(o,i)),i}const Cs=t=>xn(t)&&Object.getOwnPropertyNames(t).reduce(((e,r)=>e||In(t[r])),!1),zs=["top","bottom","left","right","chartArea"];function Ms(t,e){return"top"===t||"bottom"===t||-1===zs.indexOf(t)&&"x"===e}function Ps(t,e){return function(r,n){return r[t]===n[t]?r[e]-n[e]:r[t]-n[t]}}function Os(t){const e=t.chart,r=e.options.animation;e.notifyPlugins("afterRender"),_n(r&&r.onComplete,[t],e)}function Ts(t){const e=t.chart,r=e.options.animation;_n(r&&r.onProgress,[t],e)}function Ls(t){return Si()&&"string"==typeof t?t=document.getElementById(t):t&&t.length&&(t=t[0]),t&&t.canvas&&(t=t.canvas),t}const Ns={},Rs=t=>{const e=Ls(t);return Object.values(Ns).filter((t=>t.canvas===e)).pop()};function Ds(t,e,r){const n=Object.keys(t);for(const o of n){const n=+o;if(n>=e){const i=t[o];delete t[o],(r>0||n>e)&&(t[n+r]=i)}}}class Is{static defaults=Ro;static instances=Ns;static overrides=Po;static registry=ps;static version="4.2.1";static getChart=Rs;static register(...t){ps.add(...t),As()}static unregister(...t){ps.remove(...t),As()}constructor(t,e){const r=this.config=new Ss(e),n=Ls(t),o=Rs(n);if(o)throw new Error("Canvas is already in use. Chart with ID '"+o.id+"' must be destroyed before the canvas with ID '"+o.canvas.id+"' can be reused.");const i=r.createResolver(r.chartOptionScopes(),this.getContext());this.platform=new(r.platform||function(t){return!Si()||"undefined"!=typeof OffscreenCanvas&&t instanceof OffscreenCanvas?Fa:Ja}(n)),this.platform.updateConfig(r);const a=this.platform.acquireContext(n,i.aspectRatio),s=a&&a.canvas,l=s&&s.height,d=s&&s.width;this.id=bn(),this.ctx=a,this.canvas=s,this.width=d,this.height=l,this._options=i,this._aspectRatio=this.aspectRatio,this._layers=[],this._metasets=[],this._stacks=void 0,this.boxes=[],this.currentDevicePixelRatio=void 0,this.chartArea=void 0,this._active=[],this._lastEvent=void 0,this._listeners={},this._responsiveListeners=void 0,this._sortedMetasets=[],this.scales={},this._plugins=new ms,this.$proxies={},this._hiddenIndices={},this.attached=!1,this._animationsDisabled=void 0,this.$context=void 0,this._doResize=function(t,e){let r;return function(...n){return e?(clearTimeout(r),r=setTimeout(t,e,n)):t.apply(this,n),e}}((t=>this.update(t)),i.resizeDelay||0),this._dataChanges=[],Ns[this.id]=this,a&&s?(Ki.listen(this,"complete",Os),Ki.listen(this,"progress",Ts),this._initialize(),this.attached&&this.update()):console.error("Failed to create chart: can't acquire context from the given item")}get aspectRatio(){const{options:{aspectRatio:t,maintainAspectRatio:e},width:r,height:n,_aspectRatio:o}=this;return gn(t)?e&&o?o:n?r/n:null:t}get data(){return this.config.data}set data(t){this.config.data=t}get options(){return this._options}set options(t){this.config.options=t}get registry(){return ps}_initialize(){return this.notifyPlugins("beforeInit"),this.options.responsive?this.resize():Li(this,this.options.devicePixelRatio),this.bindEvents(),this.notifyPlugins("afterInit"),this}clear(){return Ao(this.canvas,this.ctx),this}stop(){return Ki.stop(this),this}resize(t,e){Ki.running(this)?this._resizeBeforeDraw={width:t,height:e}:this._resize(t,e)}_resize(t,e){const r=this.options,n=this.canvas,o=r.maintainAspectRatio&&this.aspectRatio,i=this.platform.getMaximumSize(n,t,e,o),a=r.devicePixelRatio||this.platform.getDevicePixelRatio(),s=this.width?"resize":"attach";this.width=i.width,this.height=i.height,this._aspectRatio=this.aspectRatio,Li(this,a,!0)&&(this.notifyPlugins("resize",{size:i}),_n(r.onResize,[this,i],this),this.attached&&this._doResize(s)&&this.render())}ensureScalesHaveIDs(){Sn(this.options.scales||{},((t,e)=>{t.id=e}))}buildOrUpdateScales(){const t=this.options,e=t.scales,r=this.scales,n=Object.keys(r).reduce(((t,e)=>(t[e]=!1,t)),{});let o=[];e&&(o=o.concat(Object.keys(e).map((t=>{const r=e[t],n=gs(t,r),o="r"===n,i="x"===n;return{options:r,dposition:o?"chartArea":i?"bottom":"left",dtype:o?"radialLinear":i?"category":"linear"}})))),Sn(o,(e=>{const o=e.options,i=o.id,a=gs(i,o),s=kn(o.type,e.dtype);void 0!==o.position&&Ms(o.position,a)===Ms(e.dposition)||(o.position=e.dposition),n[i]=!0;let l=null;i in r&&r[i].type===s?l=r[i]:(l=new(ps.getScale(s))({id:i,type:s,ctx:this.ctx,chart:this}),r[l.id]=l),l.init(o,t)})),Sn(n,((t,e)=>{t||delete r[e]})),Sn(r,(t=>{Aa.configure(this,t,t.options),Aa.addBox(this,t)}))}_updateMetasets(){const t=this._metasets,e=this.data.datasets.length,r=t.length;if(t.sort(((t,e)=>t.index-e.index)),r>e){for(let t=e;t<r;++t)this._destroyDatasetMeta(t);t.splice(e,r-e)}this._sortedMetasets=t.slice(0).sort(Ps("order","index"))}_removeUnreferencedMetasets(){const{_metasets:t,data:{datasets:e}}=this;t.length>e.length&&delete this._stacks,t.forEach(((t,r)=>{0===e.filter((e=>e===t._dataset)).length&&this._destroyDatasetMeta(r)}))}buildOrUpdateControllers(){const t=[],e=this.data.datasets;let r,n;for(this._removeUnreferencedMetasets(),r=0,n=e.length;r<n;r++){const n=e[r];let o=this.getDatasetMeta(r);const i=n.type||this.config.type;if(o.type&&o.type!==i&&(this._destroyDatasetMeta(r),o=this.getDatasetMeta(r)),o.type=i,o.indexAxis=n.indexAxis||bs(i,this.options),o.order=n.order||0,o.index=r,o.label=""+n.label,o.visible=this.isDatasetVisible(r),o.controller)o.controller.updateIndex(r),o.controller.linkScales();else{const e=ps.getController(i),{datasetElementType:n,dataElementType:a}=Ro.datasets[i];Object.assign(e,{dataElementType:ps.getElement(a),datasetElementType:n&&ps.getElement(n)}),o.controller=new e(this,r),t.push(o.controller)}}return this._updateMetasets(),t}_resetElements(){Sn(this.data.datasets,((t,e)=>{this.getDatasetMeta(e).controller.reset()}),this)}reset(){this._resetElements(),this.notifyPlugins("reset")}update(t){const e=this.config;e.update();const r=this._options=e.createResolver(e.chartOptionScopes(),this.getContext()),n=this._animationsDisabled=!r.animation;if(this._updateScales(),this._checkEventBindings(),this._updateHiddenIndices(),this._plugins.invalidate(),!1===this.notifyPlugins("beforeUpdate",{mode:t,cancelable:!0}))return;const o=this.buildOrUpdateControllers();this.notifyPlugins("beforeElementsUpdate");let i=0;for(let t=0,e=this.data.datasets.length;t<e;t++){const{controller:e}=this.getDatasetMeta(t),r=!n&&-1===o.indexOf(e);e.buildOrUpdateElements(r),i=Math.max(+e.getMaxOverflow(),i)}i=this._minPadding=r.layout.autoPadding?i:0,this._updateLayout(i),n||Sn(o,(t=>{t.reset()})),this._updateDatasets(t),this.notifyPlugins("afterUpdate",{mode:t}),this._layers.sort(Ps("z","_idx"));const{_active:a,_lastEvent:s}=this;s?this._eventHandler(s,!0):a.length&&this._updateHoverStyles(a,a,!0),this.render()}_updateScales(){Sn(this.scales,(t=>{Aa.removeBox(this,t)})),this.ensureScalesHaveIDs(),this.buildOrUpdateScales()}_checkEventBindings(){const t=this.options,e=new Set(Object.keys(this._listeners)),r=new Set(t.events);An(e,r)&&!!this._responsiveListeners===t.responsive||(this.unbindEvents(),this.bindEvents())}_updateHiddenIndices(){const{_hiddenIndices:t}=this,e=this._getUniformDataChanges()||[];for(const{method:r,start:n,count:o}of e)Ds(t,n,"_removeElements"===r?-o:o)}_getUniformDataChanges(){const t=this._dataChanges;if(!t||!t.length)return;this._dataChanges=[];const e=this.data.datasets.length,r=e=>new Set(t.filter((t=>t[0]===e)).map(((t,e)=>e+","+t.splice(1).join(",")))),n=r(0);for(let t=1;t<e;t++)if(!An(n,r(t)))return;return Array.from(n).map((t=>t.split(","))).map((t=>({method:t[1],start:+t[2],count:+t[3]})))}_updateLayout(t){if(!1===this.notifyPlugins("beforeLayout",{cancelable:!0}))return;Aa.update(this,this.width,this.height,t);const e=this.chartArea,r=e.width<=0||e.height<=0;this._layers=[],Sn(this.boxes,(t=>{r&&"chartArea"===t.position||(t.configure&&t.configure(),this._layers.push(...t._layers()))}),this),this._layers.forEach(((t,e)=>{t._idx=e})),this.notifyPlugins("afterLayout")}_updateDatasets(t){if(!1!==this.notifyPlugins("beforeDatasetsUpdate",{mode:t,cancelable:!0})){for(let t=0,e=this.data.datasets.length;t<e;++t)this.getDatasetMeta(t).controller.configure();for(let e=0,r=this.data.datasets.length;e<r;++e)this._updateDataset(e,In(t)?t({datasetIndex:e}):t);this.notifyPlugins("afterDatasetsUpdate",{mode:t})}}_updateDataset(t,e){const r=this.getDatasetMeta(t),n={meta:r,index:t,mode:e,cancelable:!0};!1!==this.notifyPlugins("beforeDatasetUpdate",n)&&(r.controller._update(e),n.cancelable=!1,this.notifyPlugins("afterDatasetUpdate",n))}render(){!1!==this.notifyPlugins("beforeRender",{cancelable:!0})&&(Ki.has(this)?this.attached&&!Ki.running(this)&&Ki.start(this):(this.draw(),Os({chart:this})))}draw(){let t;if(this._resizeBeforeDraw){const{width:t,height:e}=this._resizeBeforeDraw;this._resize(t,e),this._resizeBeforeDraw=null}if(this.clear(),this.width<=0||this.height<=0)return;if(!1===this.notifyPlugins("beforeDraw",{cancelable:!0}))return;const e=this._layers;for(t=0;t<e.length&&e[t].z<=0;++t)e[t].draw(this.chartArea);for(this._drawDatasets();t<e.length;++t)e[t].draw(this.chartArea);this.notifyPlugins("afterDraw")}_getSortedDatasetMetas(t){const e=this._sortedMetasets,r=[];let n,o;for(n=0,o=e.length;n<o;++n){const o=e[n];t&&!o.visible||r.push(o)}return r}getSortedVisibleDatasetMetas(){return this._getSortedDatasetMetas(!0)}_drawDatasets(){if(!1===this.notifyPlugins("beforeDatasetsDraw",{cancelable:!0}))return;const t=this.getSortedVisibleDatasetMetas();for(let e=t.length-1;e>=0;--e)this._drawDataset(t[e]);this.notifyPlugins("afterDatasetsDraw")}_drawDataset(t){const e=this.ctx,r=t._clip,n=!r.disabled,o=function(t){const{xScale:e,yScale:r}=t;if(e&&r)return{left:e.left,right:e.right,top:r.top,bottom:r.bottom}}(t)||this.chartArea,i={meta:t,index:t.index,cancelable:!0};!1!==this.notifyPlugins("beforeDatasetDraw",i)&&(n&&Uo(e,{left:!1===r.left?0:o.left-r.left,right:!1===r.right?this.width:o.right+r.right,top:!1===r.top?0:o.top-r.top,bottom:!1===r.bottom?this.height:o.bottom+r.bottom}),t.controller.draw(),n&&Ho(e),i.cancelable=!1,this.notifyPlugins("afterDatasetDraw",i))}isPointInArea(t){return Bo(t,this.chartArea,this._minPadding)}getElementsAtEventForMode(t,e,r,n){const o=Ea.modes[e];return"function"==typeof o?o(this,t,r,n):[]}getDatasetMeta(t){const e=this.data.datasets[t],r=this._metasets;let n=r.filter((t=>t&&t._dataset===e)).pop();return n||(n={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null,order:e&&e.order||0,index:t,_dataset:e,_parsed:[],_sorted:!1},r.push(n)),n}getContext(){return this.$context||(this.$context=oi(null,{chart:this,type:"chart"}))}getVisibleDatasetCount(){return this.getSortedVisibleDatasetMetas().length}isDatasetVisible(t){const e=this.data.datasets[t];if(!e)return!1;const r=this.getDatasetMeta(t);return"boolean"==typeof r.hidden?!r.hidden:!e.hidden}setDatasetVisibility(t,e){this.getDatasetMeta(t).hidden=!e}toggleDataVisibility(t){this._hiddenIndices[t]=!this._hiddenIndices[t]}getDataVisibility(t){return!this._hiddenIndices[t]}_updateVisibility(t,e,r){const n=r?"show":"hide",o=this.getDatasetMeta(t),i=o.controller._resolveAnimations(void 0,n);Dn(e)?(o.data[e].hidden=!r,this.update()):(this.setDatasetVisibility(t,r),i.update(o,{visible:r}),this.update((e=>e.datasetIndex===t?n:void 0)))}hide(t,e){this._updateVisibility(t,e,!1)}show(t,e){this._updateVisibility(t,e,!0)}_destroyDatasetMeta(t){const e=this._metasets[t];e&&e.controller&&e.controller._destroy(),delete this._metasets[t]}_stop(){let t,e;for(this.stop(),Ki.remove(this),t=0,e=this.data.datasets.length;t<e;++t)this._destroyDatasetMeta(t)}destroy(){this.notifyPlugins("beforeDestroy");const{canvas:t,ctx:e}=this;this._stop(),this.config.clearCache(),t&&(this.unbindEvents(),Ao(t,e),this.platform.releaseContext(e),this.canvas=null,this.ctx=null),delete Ns[this.id],this.notifyPlugins("afterDestroy")}toBase64Image(...t){return this.canvas.toDataURL(...t)}bindEvents(){this.bindUserEvents(),this.options.responsive?this.bindResponsiveEvents():this.attached=!0}bindUserEvents(){const t=this._listeners,e=this.platform,r=(r,n)=>{e.addEventListener(this,r,n),t[r]=n},n=(t,e,r)=>{t.offsetX=e,t.offsetY=r,this._eventHandler(t)};Sn(this.options.events,(t=>r(t,n)))}bindResponsiveEvents(){this._responsiveListeners||(this._responsiveListeners={});const t=this._responsiveListeners,e=this.platform,r=(r,n)=>{e.addEventListener(this,r,n),t[r]=n},n=(r,n)=>{t[r]&&(e.removeEventListener(this,r,n),delete t[r])},o=(t,e)=>{this.canvas&&this.resize(t,e)};let i;const a=()=>{n("attach",a),this.attached=!0,this.resize(),r("resize",o),r("detach",i)};i=()=>{this.attached=!1,n("resize",o),this._stop(),this._resize(0,0),r("attach",a)},e.isAttached(this.canvas)?a():i()}unbindEvents(){Sn(this._listeners,((t,e)=>{this.platform.removeEventListener(this,e,t)})),this._listeners={},Sn(this._responsiveListeners,((t,e)=>{this.platform.removeEventListener(this,e,t)})),this._responsiveListeners=void 0}updateHoverStyle(t,e,r){const n=r?"set":"remove";let o,i,a,s;for("dataset"===e&&(o=this.getDatasetMeta(t[0].datasetIndex),o.controller["_"+n+"DatasetHoverStyle"]()),a=0,s=t.length;a<s;++a){i=t[a];const e=i&&this.getDatasetMeta(i.datasetIndex).controller;e&&e[n+"HoverStyle"](i.element,i.datasetIndex,i.index)}}getActiveElements(){return this._active||[]}setActiveElements(t){const e=this._active||[],r=t.map((({datasetIndex:t,index:e})=>{const r=this.getDatasetMeta(t);if(!r)throw new Error("No dataset found at index "+t);return{datasetIndex:t,element:r.data[e],index:e}}));!En(r,e)&&(this._active=r,this._lastEvent=null,this._updateHoverStyles(r,e))}notifyPlugins(t,e,r){return this._plugins.notify(this,t,e,r)}isPluginEnabled(t){return 1===this._plugins._cache.filter((e=>e.plugin.id===t)).length}_updateHoverStyles(t,e,r){const n=this.options.hover,o=(t,e)=>t.filter((t=>!e.some((e=>t.datasetIndex===e.datasetIndex&&t.index===e.index)))),i=o(e,t),a=r?t:o(t,e);i.length&&this.updateHoverStyle(i,n.mode,!1),a.length&&n.mode&&this.updateHoverStyle(a,n.mode,!0)}_eventHandler(t,e){const r={event:t,replay:e,cancelable:!0,inChartArea:this.isPointInArea(t)},n=e=>(e.options.events||this.options.events).includes(t.native.type);if(!1===this.notifyPlugins("beforeEvent",r,n))return;const o=this._handleEvent(t,e,r.inChartArea);return r.cancelable=!1,this.notifyPlugins("afterEvent",r,n),(o||r.changed)&&this.render(),this}_handleEvent(t,e,r){const{_active:n=[],options:o}=this,i=e,a=this._getActiveElements(t,n,r,i),s=function(t){return"mouseup"===t.type||"click"===t.type||"contextmenu"===t.type}(t),l=function(t,e,r,n){return r&&"mouseout"!==t.type?n?e:t:null}(t,this._lastEvent,r,s);r&&(this._lastEvent=null,_n(o.onHover,[t,a,this],this),s&&_n(o.onClick,[t,a,this],this));const d=!En(a,n);return(d||e)&&(this._active=a,this._updateHoverStyles(a,n,e)),this._lastEvent=l,d}_getActiveElements(t,e,r,n){if("mouseout"===t.type)return[];if(!r)return e;const o=this.options.hover;return this.getElementsAtEventForMode(t,o.mode,o,n)}}function As(){return Sn(Is.instances,(t=>t._plugins.invalidate()))}function js(t,e,r=e){t.lineCap=kn(r.borderCapStyle,e.borderCapStyle),t.setLineDash(kn(r.borderDash,e.borderDash)),t.lineDashOffset=kn(r.borderDashOffset,e.borderDashOffset),t.lineJoin=kn(r.borderJoinStyle,e.borderJoinStyle),t.lineWidth=kn(r.borderWidth,e.borderWidth),t.strokeStyle=kn(r.borderColor,e.borderColor)}function Fs(t,e,r){t.lineTo(r.x,r.y)}function Bs(t,e,r={}){const n=t.length,{start:o=0,end:i=n-1}=r,{start:a,end:s}=e,l=Math.max(o,a),d=Math.min(i,s),c=o<a&&i<a||o>s&&i>s;return{count:n,start:l,loop:e.loop,ilen:d<l&&!c?n+d-l:d-l}}function Us(t,e,r,n){const{points:o,options:i}=e,{count:a,start:s,loop:l,ilen:d}=Bs(o,r,n),c=function(t){return t.stepped?Vo:t.tension||"monotone"===t.cubicInterpolationMode?$o:Fs}(i);let u,p,m,{move:f=!0,reverse:h}=n||{};for(u=0;u<=d;++u)p=o[(s+(h?d-u:u))%a],p.skip||(f?(t.moveTo(p.x,p.y),f=!1):c(t,m,p,h,i.stepped),m=p);return l&&(p=o[(s+(h?d:0))%a],c(t,m,p,h,i.stepped)),!!l}function Hs(t,e,r,n){const o=e.points,{count:i,start:a,ilen:s}=Bs(o,r,n),{move:l=!0,reverse:d}=n||{};let c,u,p,m,f,h,b=0,g=0;const v=t=>(a+(d?s-t:t))%i,x=()=>{m!==f&&(t.lineTo(b,f),t.lineTo(b,m),t.lineTo(b,h))};for(l&&(u=o[v(0)],t.moveTo(u.x,u.y)),c=0;c<=s;++c){if(u=o[v(c)],u.skip)continue;const e=u.x,r=u.y,n=0|e;n===p?(r<m?m=r:r>f&&(f=r),b=(g*b+e)/++g):(x(),t.lineTo(e,r),p=n,g=0,m=f=r),h=r}x()}function Vs(t){const e=t.options,r=e.borderDash&&e.borderDash.length;return t._decimated||t._loop||e.tension||"monotone"===e.cubicInterpolationMode||e.stepped||r?Us:Hs}const $s="function"==typeof Path2D;function Ws(t,e,r,n){const o=t.options,{[r]:i}=t.getProps([r],n);return Math.abs(e-i)<o.radius+o.hitRadius}function Ys(t,e){const{x:r,y:n,base:o,width:i,height:a}=t.getProps(["x","y","base","width","height"],e);let s,l,d,c,u;return t.horizontal?(u=a/2,s=Math.min(r,o),l=Math.max(r,o),d=n-u,c=n+u):(u=i/2,s=r-u,l=r+u,d=Math.min(n,o),c=Math.max(n,o)),{left:s,top:d,right:l,bottom:c}}function Ks(t,e,r,n){return t?0:oo(e,r,n)}function Qs(t,e,r,n){const o=null===e,i=null===r,a=t&&!(o&&i)&&Ys(t,n);return a&&(o||io(e,a.left,a.right))&&(i||io(r,a.top,a.bottom))}function Xs(t,e){t.rect(e.x,e.y,e.w,e.h)}function qs(t,e,r={}){const n=t.x!==r.x?-e:0,o=t.y!==r.y?-e:0,i=(t.x+t.w!==r.x+r.w?e:0)-n,a=(t.y+t.h!==r.y+r.h?e:0)-o;return{x:t.x+n,y:t.y+o,w:t.w+i,h:t.h+a,radius:t.radius}}const Gs=(t,e)=>{let{boxHeight:r=e,boxWidth:n=e}=t;return t.usePointStyle&&(r=Math.min(r,e),n=t.pointStyleWidth||Math.min(n,e)),{boxWidth:n,boxHeight:r,itemHeight:Math.max(e,r)}};class Zs extends ts{constructor(t){super(),this._added=!1,this.legendHitBoxes=[],this._hoveredItem=null,this.doughnutMode=!1,this.chart=t.chart,this.options=t.options,this.ctx=t.ctx,this.legendItems=void 0,this.columnSizes=void 0,this.lineWidths=void 0,this.maxHeight=void 0,this.maxWidth=void 0,this.top=void 0,this.bottom=void 0,this.left=void 0,this.right=void 0,this.height=void 0,this.width=void 0,this._margins=void 0,this.position=void 0,this.weight=void 0,this.fullSize=void 0}update(t,e,r){this.maxWidth=t,this.maxHeight=e,this._margins=r,this.setDimensions(),this.buildLabels(),this.fit()}setDimensions(){this.isHorizontal()?(this.width=this.maxWidth,this.left=this._margins.left,this.right=this.width):(this.height=this.maxHeight,this.top=this._margins.top,this.bottom=this.height)}buildLabels(){const t=this.options.labels||{};let e=_n(t.generateLabels,[this.chart],this)||[];t.filter&&(e=e.filter((e=>t.filter(e,this.chart.data)))),t.sort&&(e=e.sort(((e,r)=>t.sort(e,r,this.chart.data)))),this.options.reverse&&e.reverse(),this.legendItems=e}fit(){const{options:t,ctx:e}=this;if(!t.display)return void(this.width=this.height=0);const r=t.labels,n=ri(r.font),o=n.size,i=this._computeTitleHeight(),{boxWidth:a,itemHeight:s}=Gs(r,o);let l,d;e.font=n.string,this.isHorizontal()?(l=this.maxWidth,d=this._fitRows(i,o,a,s)+10):(d=this.maxHeight,l=this._fitCols(i,n,a,s)+10),this.width=Math.min(l,t.maxWidth||this.maxWidth),this.height=Math.min(d,t.maxHeight||this.maxHeight)}_fitRows(t,e,r,n){const{ctx:o,maxWidth:i,options:{labels:{padding:a}}}=this,s=this.legendHitBoxes=[],l=this.lineWidths=[0],d=n+a;let c=t;o.textAlign="left",o.textBaseline="middle";let u=-1,p=-d;return this.legendItems.forEach(((t,m)=>{const f=r+e/2+o.measureText(t.text).width;(0===m||l[l.length-1]+f+2*a>i)&&(c+=d,l[l.length-(m>0?0:1)]=0,p+=d,u++),s[m]={left:0,top:p,row:u,width:f,height:n},l[l.length-1]+=f+a})),c}_fitCols(t,e,r,n){const{ctx:o,maxHeight:i,options:{labels:{padding:a}}}=this,s=this.legendHitBoxes=[],l=this.columnSizes=[],d=i-t;let c=a,u=0,p=0,m=0,f=0;return this.legendItems.forEach(((t,i)=>{const{itemWidth:h,itemHeight:b}=function(t,e,r,n,o){const i=function(t,e,r,n){let o=t.text;return o&&"string"!=typeof o&&(o=o.reduce(((t,e)=>t.length>e.length?t:e))),e+r.size/2+n.measureText(o).width}(n,t,e,r),a=function(t,e,r){let n=t;return"string"!=typeof e.text&&(n=Js(e,r)),n}(o,n,e.lineHeight);return{itemWidth:i,itemHeight:a}}(r,e,o,t,n);i>0&&p+b+2*a>d&&(c+=u+a,l.push({width:u,height:p}),m+=u+a,f++,u=p=0),s[i]={left:m,top:p,col:f,width:h,height:b},u=Math.max(u,h),p+=b+a})),c+=u,l.push({width:u,height:p}),c}adjustHitBoxes(){if(!this.options.display)return;const t=this._computeTitleHeight(),{legendHitBoxes:e,options:{align:r,labels:{padding:n},rtl:o}}=this,i=ji(o,this.left,this.width);if(this.isHorizontal()){let o=0,a=ho(r,this.left+n,this.right-this.lineWidths[o]);for(const s of e)o!==s.row&&(o=s.row,a=ho(r,this.left+n,this.right-this.lineWidths[o])),s.top+=this.top+t+n,s.left=i.leftForLtr(i.x(a),s.width),a+=s.width+n}else{let o=0,a=ho(r,this.top+t+n,this.bottom-this.columnSizes[o].height);for(const s of e)s.col!==o&&(o=s.col,a=ho(r,this.top+t+n,this.bottom-this.columnSizes[o].height)),s.top=a,s.left+=this.left+n,s.left=i.leftForLtr(i.x(s.left),s.width),a+=s.height+n}}isHorizontal(){return"top"===this.options.position||"bottom"===this.options.position}draw(){if(this.options.display){const t=this.ctx;Uo(t,this),this._draw(),Ho(t)}}_draw(){const{options:t,columnSizes:e,lineWidths:r,ctx:n}=this,{align:o,labels:i}=t,a=Ro.color,s=ji(t.rtl,this.left,this.width),l=ri(i.font),{padding:d}=i,c=l.size,u=c/2;let p;this.drawTitle(),n.textAlign=s.textAlign("left"),n.textBaseline="middle",n.lineWidth=.5,n.font=l.string;const{boxWidth:m,boxHeight:f,itemHeight:h}=Gs(i,c),b=this.isHorizontal(),g=this._computeTitleHeight();p=b?{x:ho(o,this.left+d,this.right-r[0]),y:this.top+d+g,line:0}:{x:this.left+d,y:ho(o,this.top+g+d,this.bottom-e[0].height),line:0},Fi(this.ctx,t.textDirection);const v=h+d;this.legendItems.forEach(((x,y)=>{n.strokeStyle=x.fontColor,n.fillStyle=x.fontColor;const w=n.measureText(x.text).width,k=s.textAlign(x.textAlign||(x.textAlign=i.textAlign)),_=m+u+w;let S=p.x,E=p.y;if(s.setWidth(this.width),b?y>0&&S+_+d>this.right&&(E=p.y+=v,p.line++,S=p.x=ho(o,this.left+d,this.right-r[p.line])):y>0&&E+v>this.bottom&&(S=p.x=S+e[p.line].width+d,p.line++,E=p.y=ho(o,this.top+g+d,this.bottom-e[p.line].height)),function(t,e,r){if(isNaN(m)||m<=0||isNaN(f)||f<0)return;n.save();const o=kn(r.lineWidth,1);if(n.fillStyle=kn(r.fillStyle,a),n.lineCap=kn(r.lineCap,"butt"),n.lineDashOffset=kn(r.lineDashOffset,0),n.lineJoin=kn(r.lineJoin,"miter"),n.lineWidth=o,n.strokeStyle=kn(r.strokeStyle,a),n.setLineDash(kn(r.lineDash,[])),i.usePointStyle){const a={radius:f*Math.SQRT2/2,pointStyle:r.pointStyle,rotation:r.rotation,borderWidth:o},l=s.xPlus(t,m/2);Fo(n,a,l,e+u,i.pointStyleWidth&&m)}else{const i=e+Math.max((c-f)/2,0),a=s.leftForLtr(t,m),l=ti(r.borderRadius);n.beginPath(),Object.values(l).some((t=>0!==t))?Qo(n,{x:a,y:i,w:m,h:f,radius:l}):n.rect(a,i,m,f),n.fill(),0!==o&&n.stroke()}n.restore()}(s.x(S),E,x),S=((t,e,r,n)=>t===(n?"left":"right")?r:"center"===t?(e+r)/2:e)(k,S+m+u,b?S+_:this.right,t.rtl),function(t,e,r){Wo(n,r.text,t,e+h/2,l,{strikethrough:r.hidden,textAlign:s.textAlign(r.textAlign)})}(s.x(S),E,x),b)p.x+=_+d;else if("string"!=typeof x.text){const t=l.lineHeight;p.y+=Js(x,t)}else p.y+=v})),Bi(this.ctx,t.textDirection)}drawTitle(){const t=this.options,e=t.title,r=ri(e.font),n=ei(e.padding);if(!e.display)return;const o=ji(t.rtl,this.left,this.width),i=this.ctx,a=e.position,s=r.size/2,l=n.top+s;let d,c=this.left,u=this.width;if(this.isHorizontal())u=Math.max(...this.lineWidths),d=this.top+l,c=ho(t.align,c,this.right-u);else{const e=this.columnSizes.reduce(((t,e)=>Math.max(t,e.height)),0);d=l+ho(t.align,this.top,this.bottom-e-t.labels.padding-this._computeTitleHeight())}const p=ho(a,c,c+u);i.textAlign=o.textAlign(fo(a)),i.textBaseline="middle",i.strokeStyle=e.color,i.fillStyle=e.color,i.font=r.string,Wo(i,e.text,p,d,r)}_computeTitleHeight(){const t=this.options.title,e=ri(t.font),r=ei(t.padding);return t.display?e.lineHeight+r.height:0}_getLegendItemAt(t,e){let r,n,o;if(io(t,this.left,this.right)&&io(e,this.top,this.bottom))for(o=this.legendHitBoxes,r=0;r<o.length;++r)if(n=o[r],io(t,n.left,n.left+n.width)&&io(e,n.top,n.top+n.height))return this.legendItems[r];return null}handleEvent(t){const e=this.options;if(!function(t,e){return!("mousemove"!==t&&"mouseout"!==t||!e.onHover&&!e.onLeave)||!(!e.onClick||"click"!==t&&"mouseup"!==t)}(t.type,e))return;const r=this._getLegendItemAt(t.x,t.y);if("mousemove"===t.type||"mouseout"===t.type){const i=this._hoveredItem,a=(o=r,null!==(n=i)&&null!==o&&n.datasetIndex===o.datasetIndex&&n.index===o.index);i&&!a&&_n(e.onLeave,[t,i,this],this),this._hoveredItem=r,r&&!a&&_n(e.onHover,[t,r,this],this)}else r&&_n(e.onClick,[t,r,this],this);var n,o}}function Js(t,e){return e*(t.text?t.text.length+.5:0)}var tl={id:"legend",_element:Zs,start(t,e,r){const n=t.legend=new Zs({ctx:t.ctx,options:r,chart:t});Aa.configure(t,n,r),Aa.addBox(t,n)},stop(t){Aa.removeBox(t,t.legend),delete t.legend},beforeUpdate(t,e,r){const n=t.legend;Aa.configure(t,n,r),n.options=r},afterUpdate(t){const e=t.legend;e.buildLabels(),e.adjustHitBoxes()},afterEvent(t,e){e.replay||t.legend.handleEvent(e.event)},defaults:{display:!0,position:"top",align:"center",fullSize:!0,reverse:!1,weight:1e3,onClick(t,e,r){const n=e.datasetIndex,o=r.chart;o.isDatasetVisible(n)?(o.hide(n),e.hidden=!0):(o.show(n),e.hidden=!1)},onHover:null,onLeave:null,labels:{color:t=>t.chart.options.color,boxWidth:40,padding:10,generateLabels(t){const e=t.data.datasets,{labels:{usePointStyle:r,pointStyle:n,textAlign:o,color:i,useBorderRadius:a,borderRadius:s}}=t.legend.options;return t._getSortedDatasetMetas().map((t=>{const l=t.controller.getStyle(r?0:void 0),d=ei(l.borderWidth);return{text:e[t.index].label,fillStyle:l.backgroundColor,fontColor:i,hidden:!t.visible,lineCap:l.borderCapStyle,lineDash:l.borderDash,lineDashOffset:l.borderDashOffset,lineJoin:l.borderJoinStyle,lineWidth:(d.width+d.height)/4,strokeStyle:l.borderColor,pointStyle:n||l.pointStyle,rotation:l.rotation,textAlign:o||l.textAlign,borderRadius:a&&(s||l.borderRadius),datasetIndex:t.index}}),this)}},title:{color:t=>t.chart.options.color,display:!1,position:"center",text:""}},descriptors:{_scriptable:t=>!t.startsWith("on"),labels:{_scriptable:t=>!["generateLabels","filter","sort"].includes(t)}}};class el extends ts{constructor(t){super(),this.chart=t.chart,this.options=t.options,this.ctx=t.ctx,this._padding=void 0,this.top=void 0,this.bottom=void 0,this.left=void 0,this.right=void 0,this.width=void 0,this.height=void 0,this.position=void 0,this.weight=void 0,this.fullSize=void 0}update(t,e){const r=this.options;if(this.left=0,this.top=0,!r.display)return void(this.width=this.height=this.right=this.bottom=0);this.width=this.right=t,this.height=this.bottom=e;const n=vn(r.text)?r.text.length:1;this._padding=ei(r.padding);const o=n*ri(r.font).lineHeight+this._padding.height;this.isHorizontal()?this.height=o:this.width=o}isHorizontal(){const t=this.options.position;return"top"===t||"bottom"===t}_drawArgs(t){const{top:e,left:r,bottom:n,right:o,options:i}=this,a=i.align;let s,l,d,c=0;return this.isHorizontal()?(l=ho(a,r,o),d=e+t,s=o-r):("left"===i.position?(l=r+t,d=ho(a,n,e),c=-.5*jn):(l=o-t,d=ho(a,e,n),c=.5*jn),s=n-e),{titleX:l,titleY:d,maxWidth:s,rotation:c}}draw(){const t=this.ctx,e=this.options;if(!e.display)return;const r=ri(e.font),n=r.lineHeight/2+this._padding.top,{titleX:o,titleY:i,maxWidth:a,rotation:s}=this._drawArgs(n);Wo(t,e.text,0,0,r,{color:e.color,maxWidth:a,rotation:s,textAlign:fo(e.align),textBaseline:"middle",translation:[o,i]})}}var rl={id:"title",_element:el,start(t,e,r){!function(t,e){const r=new el({ctx:t.ctx,options:e,chart:t});Aa.configure(t,r,e),Aa.addBox(t,r),t.titleBlock=r}(t,r)},stop(t){const e=t.titleBlock;Aa.removeBox(t,e),delete t.titleBlock},beforeUpdate(t,e,r){const n=t.titleBlock;Aa.configure(t,n,r),n.options=r},defaults:{align:"center",display:!1,font:{weight:"bold"},fullSize:!0,padding:10,position:"top",text:"",weight:2e3},defaultRoutes:{color:"color"},descriptors:{_scriptable:!0,_indexable:!1}};new WeakMap;const nl={average(t){if(!t.length)return!1;let e,r,n=0,o=0,i=0;for(e=0,r=t.length;e<r;++e){const r=t[e].element;if(r&&r.hasValue()){const t=r.tooltipPosition();n+=t.x,o+=t.y,++i}}return{x:n/i,y:o/i}},nearest(t,e){if(!t.length)return!1;let r,n,o,i=e.x,a=e.y,s=Number.POSITIVE_INFINITY;for(r=0,n=t.length;r<n;++r){const n=t[r].element;if(n&&n.hasValue()){const t=to(e,n.getCenterPoint());t<s&&(s=t,o=n)}}if(o){const t=o.tooltipPosition();i=t.x,a=t.y}return{x:i,y:a}}};function ol(t,e){return e&&(vn(e)?Array.prototype.push.apply(t,e):t.push(e)),t}function il(t){return("string"==typeof t||t instanceof String)&&t.indexOf("\n")>-1?t.split("\n"):t}function al(t,e){const{element:r,datasetIndex:n,index:o}=e,i=t.getDatasetMeta(n).controller,{label:a,value:s}=i.getLabelAndValue(o);return{chart:t,label:a,parsed:i.getParsed(o),raw:t.data.datasets[n].data[o],formattedValue:s,dataset:i.getDataset(),dataIndex:o,datasetIndex:n,element:r}}function sl(t,e){const r=t.chart.ctx,{body:n,footer:o,title:i}=t,{boxWidth:a,boxHeight:s}=e,l=ri(e.bodyFont),d=ri(e.titleFont),c=ri(e.footerFont),u=i.length,p=o.length,m=n.length,f=ei(e.padding);let h=f.height,b=0,g=n.reduce(((t,e)=>t+e.before.length+e.lines.length+e.after.length),0);g+=t.beforeBody.length+t.afterBody.length,u&&(h+=u*d.lineHeight+(u-1)*e.titleSpacing+e.titleMarginBottom),g&&(h+=m*(e.displayColors?Math.max(s,l.lineHeight):l.lineHeight)+(g-m)*l.lineHeight+(g-1)*e.bodySpacing),p&&(h+=e.footerMarginTop+p*c.lineHeight+(p-1)*e.footerSpacing);let v=0;const x=function(t){b=Math.max(b,r.measureText(t).width+v)};return r.save(),r.font=d.string,Sn(t.title,x),r.font=l.string,Sn(t.beforeBody.concat(t.afterBody),x),v=e.displayColors?a+2+e.boxPadding:0,Sn(n,(t=>{Sn(t.before,x),Sn(t.lines,x),Sn(t.after,x)})),v=0,r.font=c.string,Sn(t.footer,x),r.restore(),b+=f.width,{width:b,height:h}}function ll(t,e,r,n){const{x:o,width:i}=r,{width:a,chartArea:{left:s,right:l}}=t;let d="center";return"center"===n?d=o<=(s+l)/2?"left":"right":o<=i/2?d="left":o>=a-i/2&&(d="right"),function(t,e,r,n){const{x:o,width:i}=n,a=r.caretSize+r.caretPadding;return"left"===t&&o+i+a>e.width||"right"===t&&o-i-a<0||void 0}(d,t,e,r)&&(d="center"),d}function dl(t,e,r){const n=r.yAlign||e.yAlign||function(t,e){const{y:r,height:n}=e;return r<n/2?"top":r>t.height-n/2?"bottom":"center"}(t,r);return{xAlign:r.xAlign||e.xAlign||ll(t,e,r,n),yAlign:n}}function cl(t,e,r,n){const{caretSize:o,caretPadding:i,cornerRadius:a}=t,{xAlign:s,yAlign:l}=r,d=o+i,{topLeft:c,topRight:u,bottomLeft:p,bottomRight:m}=ti(a);let f=function(t,e){let{x:r,width:n}=t;return"right"===e?r-=n:"center"===e&&(r-=n/2),r}(e,s);const h=function(t,e,r){let{y:n,height:o}=t;return"top"===e?n+=r:n-="bottom"===e?o+r:o/2,n}(e,l,d);return"center"===l?"left"===s?f+=d:"right"===s&&(f-=d):"left"===s?f-=Math.max(c,p)+o:"right"===s&&(f+=Math.max(u,m)+o),{x:oo(f,0,n.width-e.width),y:oo(h,0,n.height-e.height)}}function ul(t,e,r){const n=ei(r.padding);return"center"===e?t.x+t.width/2:"right"===e?t.x+t.width-n.right:t.x+n.left}function pl(t){return ol([],il(t))}function ml(t,e){const r=e&&e.dataset&&e.dataset.tooltip&&e.dataset.tooltip.callbacks;return r?t.override(r):t}const fl={beforeTitle:hn,title(t){if(t.length>0){const e=t[0],r=e.chart.data.labels,n=r?r.length:0;if(this&&this.options&&"dataset"===this.options.mode)return e.dataset.label||"";if(e.label)return e.label;if(n>0&&e.dataIndex<n)return r[e.dataIndex]}return""},afterTitle:hn,beforeBody:hn,beforeLabel:hn,label(t){if(this&&this.options&&"dataset"===this.options.mode)return t.label+": "+t.formattedValue||t.formattedValue;let e=t.dataset.label||"";e&&(e+=": ");const r=t.formattedValue;return gn(r)||(e+=r),e},labelColor(t){const e=t.chart.getDatasetMeta(t.datasetIndex).controller.getStyle(t.dataIndex);return{borderColor:e.borderColor,backgroundColor:e.backgroundColor,borderWidth:e.borderWidth,borderDash:e.borderDash,borderDashOffset:e.borderDashOffset,borderRadius:0}},labelTextColor(){return this.options.bodyColor},labelPointStyle(t){const e=t.chart.getDatasetMeta(t.datasetIndex).controller.getStyle(t.dataIndex);return{pointStyle:e.pointStyle,rotation:e.rotation}},afterLabel:hn,afterBody:hn,beforeFooter:hn,footer:hn,afterFooter:hn};function hl(t,e,r,n){const o=t[e].call(r,n);return void 0===o?fl[e].call(r,n):o}class bl extends ts{static positioners=nl;constructor(t){super(),this.opacity=0,this._active=[],this._eventPosition=void 0,this._size=void 0,this._cachedAnimations=void 0,this._tooltipItems=[],this.$animations=void 0,this.$context=void 0,this.chart=t.chart,this.options=t.options,this.dataPoints=void 0,this.title=void 0,this.beforeBody=void 0,this.body=void 0,this.afterBody=void 0,this.footer=void 0,this.xAlign=void 0,this.yAlign=void 0,this.x=void 0,this.y=void 0,this.height=void 0,this.width=void 0,this.caretX=void 0,this.caretY=void 0,this.labelColors=void 0,this.labelPointStyles=void 0,this.labelTextColors=void 0}initialize(t){this.options=t,this._cachedAnimations=void 0,this.$context=void 0}_resolveAnimations(){const t=this._cachedAnimations;if(t)return t;const e=this.chart,r=this.options.setContext(this.getContext()),n=r.enabled&&e.options.animation&&r.animations,o=new Gi(this.chart,n);return n._cacheable&&(this._cachedAnimations=Object.freeze(o)),o}getContext(){return this.$context||(this.$context=(this,oi(this.chart.getContext(),{tooltip:this,tooltipItems:this._tooltipItems,type:"tooltip"})))}getTitle(t,e){const{callbacks:r}=e,n=hl(r,"beforeTitle",this,t),o=hl(r,"title",this,t),i=hl(r,"afterTitle",this,t);let a=[];return a=ol(a,il(n)),a=ol(a,il(o)),a=ol(a,il(i)),a}getBeforeBody(t,e){return pl(hl(e.callbacks,"beforeBody",this,t))}getBody(t,e){const{callbacks:r}=e,n=[];return Sn(t,(t=>{const e={before:[],lines:[],after:[]},o=ml(r,t);ol(e.before,il(hl(o,"beforeLabel",this,t))),ol(e.lines,hl(o,"label",this,t)),ol(e.after,il(hl(o,"afterLabel",this,t))),n.push(e)})),n}getAfterBody(t,e){return pl(hl(e.callbacks,"afterBody",this,t))}getFooter(t,e){const{callbacks:r}=e,n=hl(r,"beforeFooter",this,t),o=hl(r,"footer",this,t),i=hl(r,"afterFooter",this,t);let a=[];return a=ol(a,il(n)),a=ol(a,il(o)),a=ol(a,il(i)),a}_createItems(t){const e=this._active,r=this.chart.data,n=[],o=[],i=[];let a,s,l=[];for(a=0,s=e.length;a<s;++a)l.push(al(this.chart,e[a]));return t.filter&&(l=l.filter(((e,n,o)=>t.filter(e,n,o,r)))),t.itemSort&&(l=l.sort(((e,n)=>t.itemSort(e,n,r)))),Sn(l,(e=>{const r=ml(t.callbacks,e);n.push(hl(r,"labelColor",this,e)),o.push(hl(r,"labelPointStyle",this,e)),i.push(hl(r,"labelTextColor",this,e))})),this.labelColors=n,this.labelPointStyles=o,this.labelTextColors=i,this.dataPoints=l,l}update(t,e){const r=this.options.setContext(this.getContext()),n=this._active;let o,i=[];if(n.length){const t=nl[r.position].call(this,n,this._eventPosition);i=this._createItems(r),this.title=this.getTitle(i,r),this.beforeBody=this.getBeforeBody(i,r),this.body=this.getBody(i,r),this.afterBody=this.getAfterBody(i,r),this.footer=this.getFooter(i,r);const e=this._size=sl(this,r),a=Object.assign({},t,e),s=dl(this.chart,r,a),l=cl(r,a,s,this.chart);this.xAlign=s.xAlign,this.yAlign=s.yAlign,o={opacity:1,x:l.x,y:l.y,width:e.width,height:e.height,caretX:t.x,caretY:t.y}}else 0!==this.opacity&&(o={opacity:0});this._tooltipItems=i,this.$context=void 0,o&&this._resolveAnimations().update(this,o),t&&r.external&&r.external.call(this,{chart:this.chart,tooltip:this,replay:e})}drawCaret(t,e,r,n){const o=this.getCaretPosition(t,r,n);e.lineTo(o.x1,o.y1),e.lineTo(o.x2,o.y2),e.lineTo(o.x3,o.y3)}getCaretPosition(t,e,r){const{xAlign:n,yAlign:o}=this,{caretSize:i,cornerRadius:a}=r,{topLeft:s,topRight:l,bottomLeft:d,bottomRight:c}=ti(a),{x:u,y:p}=t,{width:m,height:f}=e;let h,b,g,v,x,y;return"center"===o?(x=p+f/2,"left"===n?(h=u,b=h-i,v=x+i,y=x-i):(h=u+m,b=h+i,v=x-i,y=x+i),g=h):(b="left"===n?u+Math.max(s,d)+i:"right"===n?u+m-Math.max(l,c)-i:this.caretX,"top"===o?(v=p,x=v-i,h=b-i,g=b+i):(v=p+f,x=v+i,h=b+i,g=b-i),y=v),{x1:h,x2:b,x3:g,y1:v,y2:x,y3:y}}drawTitle(t,e,r){const n=this.title,o=n.length;let i,a,s;if(o){const l=ji(r.rtl,this.x,this.width);for(t.x=ul(this,r.titleAlign,r),e.textAlign=l.textAlign(r.titleAlign),e.textBaseline="middle",i=ri(r.titleFont),a=r.titleSpacing,e.fillStyle=r.titleColor,e.font=i.string,s=0;s<o;++s)e.fillText(n[s],l.x(t.x),t.y+i.lineHeight/2),t.y+=i.lineHeight+a,s+1===o&&(t.y+=r.titleMarginBottom-a)}}_drawColorBox(t,e,r,n,o){const i=this.labelColors[r],a=this.labelPointStyles[r],{boxHeight:s,boxWidth:l,boxPadding:d}=o,c=ri(o.bodyFont),u=ul(this,"left",o),p=n.x(u),m=s<c.lineHeight?(c.lineHeight-s)/2:0,f=e.y+m;if(o.usePointStyle){const e={radius:Math.min(l,s)/2,pointStyle:a.pointStyle,rotation:a.rotation,borderWidth:1},r=n.leftForLtr(p,l)+l/2,d=f+s/2;t.strokeStyle=o.multiKeyBackground,t.fillStyle=o.multiKeyBackground,jo(t,e,r,d),t.strokeStyle=i.borderColor,t.fillStyle=i.backgroundColor,jo(t,e,r,d)}else{t.lineWidth=xn(i.borderWidth)?Math.max(...Object.values(i.borderWidth)):i.borderWidth||1,t.strokeStyle=i.borderColor,t.setLineDash(i.borderDash||[]),t.lineDashOffset=i.borderDashOffset||0;const e=n.leftForLtr(p,l-d),r=n.leftForLtr(n.xPlus(p,1),l-d-2),a=ti(i.borderRadius);Object.values(a).some((t=>0!==t))?(t.beginPath(),t.fillStyle=o.multiKeyBackground,Qo(t,{x:e,y:f,w:l,h:s,radius:a}),t.fill(),t.stroke(),t.fillStyle=i.backgroundColor,t.beginPath(),Qo(t,{x:r,y:f+1,w:l-2,h:s-2,radius:a}),t.fill()):(t.fillStyle=o.multiKeyBackground,t.fillRect(e,f,l,s),t.strokeRect(e,f,l,s),t.fillStyle=i.backgroundColor,t.fillRect(r,f+1,l-2,s-2))}t.fillStyle=this.labelTextColors[r]}drawBody(t,e,r){const{body:n}=this,{bodySpacing:o,bodyAlign:i,displayColors:a,boxHeight:s,boxWidth:l,boxPadding:d}=r,c=ri(r.bodyFont);let u=c.lineHeight,p=0;const m=ji(r.rtl,this.x,this.width),f=function(r){e.fillText(r,m.x(t.x+p),t.y+u/2),t.y+=u+o},h=m.textAlign(i);let b,g,v,x,y,w,k;for(e.textAlign=i,e.textBaseline="middle",e.font=c.string,t.x=ul(this,h,r),e.fillStyle=r.bodyColor,Sn(this.beforeBody,f),p=a&&"right"!==h?"center"===i?l/2+d:l+2+d:0,x=0,w=n.length;x<w;++x){for(b=n[x],g=this.labelTextColors[x],e.fillStyle=g,Sn(b.before,f),v=b.lines,a&&v.length&&(this._drawColorBox(e,t,x,m,r),u=Math.max(c.lineHeight,s)),y=0,k=v.length;y<k;++y)f(v[y]),u=c.lineHeight;Sn(b.after,f)}p=0,u=c.lineHeight,Sn(this.afterBody,f),t.y-=o}drawFooter(t,e,r){const n=this.footer,o=n.length;let i,a;if(o){const s=ji(r.rtl,this.x,this.width);for(t.x=ul(this,r.footerAlign,r),t.y+=r.footerMarginTop,e.textAlign=s.textAlign(r.footerAlign),e.textBaseline="middle",i=ri(r.footerFont),e.fillStyle=r.footerColor,e.font=i.string,a=0;a<o;++a)e.fillText(n[a],s.x(t.x),t.y+i.lineHeight/2),t.y+=i.lineHeight+r.footerSpacing}}drawBackground(t,e,r,n){const{xAlign:o,yAlign:i}=this,{x:a,y:s}=t,{width:l,height:d}=r,{topLeft:c,topRight:u,bottomLeft:p,bottomRight:m}=ti(n.cornerRadius);e.fillStyle=n.backgroundColor,e.strokeStyle=n.borderColor,e.lineWidth=n.borderWidth,e.beginPath(),e.moveTo(a+c,s),"top"===i&&this.drawCaret(t,e,r,n),e.lineTo(a+l-u,s),e.quadraticCurveTo(a+l,s,a+l,s+u),"center"===i&&"right"===o&&this.drawCaret(t,e,r,n),e.lineTo(a+l,s+d-m),e.quadraticCurveTo(a+l,s+d,a+l-m,s+d),"bottom"===i&&this.drawCaret(t,e,r,n),e.lineTo(a+p,s+d),e.quadraticCurveTo(a,s+d,a,s+d-p),"center"===i&&"left"===o&&this.drawCaret(t,e,r,n),e.lineTo(a,s+c),e.quadraticCurveTo(a,s,a+c,s),e.closePath(),e.fill(),n.borderWidth>0&&e.stroke()}_updateAnimationTarget(t){const e=this.chart,r=this.$animations,n=r&&r.x,o=r&&r.y;if(n||o){const r=nl[t.position].call(this,this._active,this._eventPosition);if(!r)return;const i=this._size=sl(this,t),a=Object.assign({},r,this._size),s=dl(e,t,a),l=cl(t,a,s,e);n._to===l.x&&o._to===l.y||(this.xAlign=s.xAlign,this.yAlign=s.yAlign,this.width=i.width,this.height=i.height,this.caretX=r.x,this.caretY=r.y,this._resolveAnimations().update(this,l))}}_willRender(){return!!this.opacity}draw(t){const e=this.options.setContext(this.getContext());let r=this.opacity;if(!r)return;this._updateAnimationTarget(e);const n={width:this.width,height:this.height},o={x:this.x,y:this.y};r=Math.abs(r)<.001?0:r;const i=ei(e.padding),a=this.title.length||this.beforeBody.length||this.body.length||this.afterBody.length||this.footer.length;e.enabled&&a&&(t.save(),t.globalAlpha=r,this.drawBackground(o,t,n,e),Fi(t,e.textDirection),o.y+=i.top,this.drawTitle(o,t,e),this.drawBody(o,t,e),this.drawFooter(o,t,e),Bi(t,e.textDirection),t.restore())}getActiveElements(){return this._active||[]}setActiveElements(t,e){const r=this._active,n=t.map((({datasetIndex:t,index:e})=>{const r=this.chart.getDatasetMeta(t);if(!r)throw new Error("Cannot find a dataset at index "+t);return{datasetIndex:t,element:r.data[e],index:e}})),o=!En(r,n),i=this._positionChanged(n,e);(o||i)&&(this._active=n,this._eventPosition=e,this._ignoreReplayEvents=!0,this.update(!0))}handleEvent(t,e,r=!0){if(e&&this._ignoreReplayEvents)return!1;this._ignoreReplayEvents=!1;const n=this.options,o=this._active||[],i=this._getActiveElements(t,o,e,r),a=this._positionChanged(i,t),s=e||!En(i,o)||a;return s&&(this._active=i,(n.enabled||n.external)&&(this._eventPosition={x:t.x,y:t.y},this.update(!0,e))),s}_getActiveElements(t,e,r,n){const o=this.options;if("mouseout"===t.type)return[];if(!n)return e;const i=this.chart.getElementsAtEventForMode(t,o.mode,o,r);return o.reverse&&i.reverse(),i}_positionChanged(t,e){const{caretX:r,caretY:n,options:o}=this,i=nl[o.position].call(this,t,e);return!1!==i&&(r!==i.x||n!==i.y)}}var gl={id:"tooltip",_element:bl,positioners:nl,afterInit(t,e,r){r&&(t.tooltip=new bl({chart:t,options:r}))},beforeUpdate(t,e,r){t.tooltip&&t.tooltip.initialize(r)},reset(t,e,r){t.tooltip&&t.tooltip.initialize(r)},afterDraw(t){const e=t.tooltip;if(e&&e._willRender()){const r={tooltip:e};if(!1===t.notifyPlugins("beforeTooltipDraw",{...r,cancelable:!0}))return;e.draw(t.ctx),t.notifyPlugins("afterTooltipDraw",r)}},afterEvent(t,e){if(t.tooltip){const r=e.replay;t.tooltip.handleEvent(e.event,r,e.inChartArea)&&(e.changed=!0)}},defaults:{enabled:!0,external:null,position:"average",backgroundColor:"rgba(0,0,0,0.8)",titleColor:"#fff",titleFont:{weight:"bold"},titleSpacing:2,titleMarginBottom:6,titleAlign:"left",bodyColor:"#fff",bodySpacing:2,bodyFont:{},bodyAlign:"left",footerColor:"#fff",footerSpacing:2,footerMarginTop:6,footerFont:{weight:"bold"},footerAlign:"left",padding:6,caretPadding:2,caretSize:5,cornerRadius:6,boxHeight:(t,e)=>e.bodyFont.size,boxWidth:(t,e)=>e.bodyFont.size,multiKeyBackground:"#fff",displayColors:!0,boxPadding:0,borderColor:"rgba(0,0,0,0)",borderWidth:0,animation:{duration:400,easing:"easeOutQuart"},animations:{numbers:{type:"number",properties:["x","y","width","height","caretX","caretY"]},opacity:{easing:"linear",duration:200}},callbacks:fl},defaultRoutes:{bodyFont:"font",footerFont:"font",titleFont:"font"},descriptors:{_scriptable:t=>"filter"!==t&&"itemSort"!==t&&"external"!==t,_indexable:!1,callbacks:{_scriptable:!1,_indexable:!1},animation:{_fallback:!1},animations:{_fallback:"animation"}},additionalOptionScopes:["interaction"]};function vl(t){const e=this.getLabels();return t>=0&&t<e.length?e[t]:t}class xl extends ds{static id="category";static defaults={ticks:{callback:vl}};constructor(t){super(t),this._startValue=void 0,this._valueRange=0,this._addedLabels=[]}init(t){const e=this._addedLabels;if(e.length){const t=this.getLabels();for(const{index:r,label:n}of e)t[r]===n&&t.splice(r,1);this._addedLabels=[]}super.init(t)}parse(t,e){if(gn(t))return null;const r=this.getLabels();return((t,e)=>null===t?null:oo(Math.round(t),0,e))(e=isFinite(e)&&r[e]===t?e:function(t,e,r,n){const o=t.indexOf(e);return-1===o?((t,e,r,n)=>("string"==typeof e?(r=t.push(e)-1,n.unshift({index:r,label:e})):isNaN(e)&&(r=null),r))(t,e,r,n):o!==t.lastIndexOf(e)?r:o}(r,t,kn(e,t),this._addedLabels),r.length-1)}determineDataLimits(){const{minDefined:t,maxDefined:e}=this.getUserBounds();let{min:r,max:n}=this.getMinMax(!0);"ticks"===this.options.bounds&&(t||(r=0),e||(n=this.getLabels().length-1)),this.min=r,this.max=n}buildTicks(){const t=this.min,e=this.max,r=this.options.offset,n=[];let o=this.getLabels();o=0===t&&e===o.length-1?o:o.slice(t,e+1),this._valueRange=Math.max(o.length-(r?0:1),1),this._startValue=this.min-(r?.5:0);for(let r=t;r<=e;r++)n.push({value:r});return n}getLabelForValue(t){return vl.call(this,t)}configure(){super.configure(),this.isHorizontal()||(this._reversePixels=!this._reversePixels)}getPixelForValue(t){return"number"!=typeof t&&(t=this.parse(t)),null===t?NaN:this.getPixelForDecimal((t-this._startValue)/this._valueRange)}getPixelForTick(t){const e=this.ticks;return t<0||t>e.length-1?null:this.getPixelForValue(e[t].value)}getValueForPixel(t){return Math.round(this._startValue+this.getDecimalForPixel(t)*this._valueRange)}getBasePixel(){return this.bottom}}function yl(t,e,{horizontal:r,minRotation:n}){const o=Zn(n),i=(r?Math.sin(o):Math.cos(o))||.001,a=.75*e*(""+t).length;return Math.min(e/i,a)}class wl extends ds{constructor(t){super(t),this.start=void 0,this.end=void 0,this._startValue=void 0,this._endValue=void 0,this._valueRange=0}parse(t,e){return gn(t)||("number"==typeof t||t instanceof Number)&&!isFinite(+t)?null:+t}handleTickRangeOptions(){const{beginAtZero:t}=this.options,{minDefined:e,maxDefined:r}=this.getUserBounds();let{min:n,max:o}=this;const i=t=>n=e?n:t,a=t=>o=r?o:t;if(t){const t=Kn(n),e=Kn(o);t<0&&e<0?a(0):t>0&&e>0&&i(0)}if(n===o){let e=0===o?1:Math.abs(.05*o);a(o+e),t||i(n-e)}this.min=n,this.max=o}getTickLimit(){const t=this.options.ticks;let e,{maxTicksLimit:r,stepSize:n}=t;return n?(e=Math.ceil(this.max/n)-Math.floor(this.min/n)+1,e>1e3&&(console.warn(`scales.${this.id}.ticks.stepSize: ${n} would result generating up to ${e} ticks. Limiting to 1000.`),e=1e3)):(e=this.computeTickLimit(),r=r||11),r&&(e=Math.min(r,e)),e}computeTickLimit(){return Number.POSITIVE_INFINITY}buildTicks(){const t=this.options,e=t.ticks;let r=this.getTickLimit();r=Math.max(2,r);const n=function(t,e){const r=[],{bounds:n,step:o,min:i,max:a,precision:s,count:l,maxTicks:d,maxDigits:c,includeBounds:u}=t,p=o||1,m=d-1,{min:f,max:h}=e,b=!gn(i),g=!gn(a),v=!gn(l),x=(h-f)/(c+1);let y,w,k,_,S=Xn((h-f)/m/p)*p;if(S<1e-14&&!b&&!g)return[{value:f},{value:h}];_=Math.ceil(h/S)-Math.floor(f/S),_>m&&(S=Xn(_*S/m/p)*p),gn(s)||(y=Math.pow(10,s),S=Math.ceil(S*y)/y),"ticks"===n?(w=Math.floor(f/S)*S,k=Math.ceil(h/S)*S):(w=f,k=h),b&&g&&o&&function(t,e){const r=Math.round(t);return r-e<=t&&r+e>=t}((a-i)/o,S/1e3)?(_=Math.round(Math.min((a-i)/S,d)),S=(a-i)/_,w=i,k=a):v?(w=b?i:w,k=g?a:k,_=l-1,S=(k-w)/_):(_=(k-w)/S,_=Qn(_,Math.round(_),S/1e3)?Math.round(_):Math.ceil(_));const E=Math.max(Jn(S),Jn(w));y=Math.pow(10,gn(s)?E:s),w=Math.round(w*y)/y,k=Math.round(k*y)/y;let C=0;for(b&&(u&&w!==i?(r.push({value:i}),w<i&&C++,Qn(Math.round((w+C*S)*y)/y,i,yl(i,x,t))&&C++):w<i&&C++);C<_;++C)r.push({value:Math.round((w+C*S)*y)/y});return g&&u&&k!==a?r.length&&Qn(r[r.length-1].value,a,yl(a,x,t))?r[r.length-1].value=a:r.push({value:a}):g&&k!==a||r.push({value:k}),r}({maxTicks:r,bounds:t.bounds,min:t.min,max:t.max,precision:e.precision,step:e.stepSize,count:e.count,maxDigits:this._maxDigits(),horizontal:this.isHorizontal(),minRotation:e.minRotation||0,includeBounds:!1!==e.includeBounds},this._range||this);return"ticks"===t.bounds&&Gn(n,this,"value"),t.reverse?(n.reverse(),this.start=this.max,this.end=this.min):(this.start=this.min,this.end=this.max),n}configure(){const t=this.ticks;let e=this.min,r=this.max;if(super.configure(),this.options.offset&&t.length){const n=(r-e)/Math.max(t.length-1,1)/2;e-=n,r+=n}this._startValue=e,this._endValue=r,this._valueRange=r-e}getLabelForValue(t){return Co(t,this.chart.options.locale,this.options.ticks.format)}}class kl extends wl{static id="linear";static defaults={ticks:{callback:Mo.formatters.numeric}};determineDataLimits(){const{min:t,max:e}=this.getMinMax(!0);this.min=yn(t)?t:0,this.max=yn(e)?e:1,this.handleTickRangeOptions()}computeTickLimit(){const t=this.isHorizontal(),e=t?this.width:this.height,r=Zn(this.options.ticks.minRotation),n=(t?Math.sin(r):Math.cos(r))||.001,o=this._resolveTickFontOptions(0);return Math.ceil(e/Math.min(40,o.lineHeight/n))}getPixelForValue(t){return null===t?NaN:this.getPixelForDecimal((t-this._startValue)/this._valueRange)}getValueForPixel(t){return this._startValue+this.getDecimalForPixel(t)*this._valueRange}}class _l extends ds{static id="logarithmic";static defaults={ticks:{callback:Mo.formatters.logarithmic,major:{enabled:!0}}};constructor(t){super(t),this.start=void 0,this.end=void 0,this._startValue=void 0,this._valueRange=0}parse(t,e){const r=wl.prototype.parse.apply(this,[t,e]);if(0!==r)return yn(r)&&r>0?r:null;this._zero=!0}determineDataLimits(){const{min:t,max:e}=this.getMinMax(!0);this.min=yn(t)?Math.max(0,t):null,this.max=yn(e)?Math.max(0,e):null,this.options.beginAtZero&&(this._zero=!0),this._zero&&this.min!==this._suggestedMin&&!yn(this._userMin)&&(this.min=t===changeExponent(this.min,0)?changeExponent(this.min,-1):changeExponent(this.min,0)),this.handleTickRangeOptions()}handleTickRangeOptions(){const{minDefined:t,maxDefined:e}=this.getUserBounds();let r=this.min,n=this.max;const o=e=>t?r:e,i=t=>e?n:t;r===n&&(r<=0?(o(1),i(10)):(o(changeExponent(r,-1)),i(changeExponent(n,1)))),r<=0&&o(changeExponent(n,-1)),n<=0&&i(changeExponent(r,1)),this.min=r,this.max=n}buildTicks(){const t=this.options,e=generateTicks({min:this._userMin,max:this._userMax},this);return"ticks"===t.bounds&&Gn(e,this,"value"),t.reverse?(e.reverse(),this.start=this.max,this.end=this.min):(this.start=this.min,this.end=this.max),e}getLabelForValue(t){return void 0===t?"0":Co(t,this.chart.options.locale,this.options.ticks.format)}configure(){const t=this.min;super.configure(),this._startValue=Yn(t),this._valueRange=Yn(this.max)-Yn(t)}getPixelForValue(t){return void 0!==t&&0!==t||this.min,null===t||isNaN(t)?NaN:this.getPixelForDecimal(t===this.min?0:(Yn(t)-this._startValue)/this._valueRange)}getValueForPixel(t){const e=this.getDecimalForPixel(t);return Math.pow(10,this._startValue+e*this._valueRange)}}class Sl extends wl{static id="radialLinear";static defaults={display:!0,animate:!0,position:"chartArea",angleLines:{display:!0,lineWidth:1,borderDash:[],borderDashOffset:0},grid:{circular:!1},startAngle:0,ticks:{showLabelBackdrop:!0,callback:Mo.formatters.numeric},pointLabels:{backdropColor:void 0,backdropPadding:2,display:!0,font:{size:10},callback:t=>t,padding:5,centerPointLabels:!1}};static defaultRoutes={"angleLines.color":"borderColor","pointLabels.color":"color","ticks.color":"color"};static descriptors={angleLines:{_fallback:"grid"}};constructor(t){super(t),this.xCenter=void 0,this.yCenter=void 0,this.drawingArea=void 0,this._pointLabels=[],this._pointLabelItems=[]}setDimensions(){const t=this._padding=ei(getTickBackdropHeight(this.options)/2),e=this.width=this.maxWidth-t.width,r=this.height=this.maxHeight-t.height;this.xCenter=Math.floor(this.left+e/2+t.left),this.yCenter=Math.floor(this.top+r/2+t.top),this.drawingArea=Math.floor(Math.min(e,r)/2)}determineDataLimits(){const{min:t,max:e}=this.getMinMax(!1);this.min=yn(t)&&!isNaN(t)?t:0,this.max=yn(e)&&!isNaN(e)?e:0,this.handleTickRangeOptions()}computeTickLimit(){return Math.ceil(this.drawingArea/getTickBackdropHeight(this.options))}generateTickLabels(t){wl.prototype.generateTickLabels.call(this,t),this._pointLabels=this.getLabels().map(((t,e)=>{const r=_n(this.options.pointLabels.callback,[t,e],this);return r||0===r?r:""})).filter(((t,e)=>this.chart.getDataVisibility(e)))}fit(){const t=this.options;t.display&&t.pointLabels.display?fitWithPointLabels(this):this.setCenterPoint(0,0,0,0)}setCenterPoint(t,e,r,n){this.xCenter+=Math.floor((t-e)/2),this.yCenter+=Math.floor((r-n)/2),this.drawingArea-=Math.min(this.drawingArea/2,Math.max(t,e,r,n))}getIndexAngle(t){return ro(t*(Fn/(this._pointLabels.length||1))+Zn(this.options.startAngle||0))}getDistanceFromCenterForValue(t){if(gn(t))return NaN;const e=this.drawingArea/(this.max-this.min);return this.options.reverse?(this.max-t)*e:(t-this.min)*e}getValueForDistanceFromCenter(t){if(gn(t))return NaN;const e=t/(this.drawingArea/(this.max-this.min));return this.options.reverse?this.max-e:this.min+e}getPointLabelContext(t){const e=this._pointLabels||[];if(t>=0&&t<e.length){const r=e[t];return function(t,e,r){return oi(t,{label:r,index:e,type:"pointLabel"})}(this.getContext(),t,r)}}getPointPosition(t,e,r=0){const n=this.getIndexAngle(t)-Vn+r;return{x:Math.cos(n)*e+this.xCenter,y:Math.sin(n)*e+this.yCenter,angle:n}}getPointPositionForValue(t,e){return this.getPointPosition(t,this.getDistanceFromCenterForValue(e))}getBasePosition(t){return this.getPointPositionForValue(t||0,this.getBaseValue())}getPointLabelPosition(t){const{left:e,top:r,right:n,bottom:o}=this._pointLabelItems[t];return{left:e,top:r,right:n,bottom:o}}drawBackground(){const{backgroundColor:t,grid:{circular:e}}=this.options;if(t){const r=this.ctx;r.save(),r.beginPath(),pathRadiusLine(this,this.getDistanceFromCenterForValue(this._endValue),e,this._pointLabels.length),r.closePath(),r.fillStyle=t,r.fill(),r.restore()}}drawGrid(){const t=this.ctx,e=this.options,{angleLines:r,grid:n,border:o}=e,i=this._pointLabels.length;let a,s,l;if(e.pointLabels.display&&function(t,e){const{ctx:r,options:{pointLabels:n}}=t;for(let o=e-1;o>=0;o--){const e=n.setContext(t.getPointLabelContext(o)),i=ri(e.font),{x:a,y:s,textAlign:l,left:d,top:c,right:u,bottom:p}=t._pointLabelItems[o],{backdropColor:m}=e;if(!gn(m)){const t=ti(e.borderRadius),n=ei(e.backdropPadding);r.fillStyle=m;const o=d-n.left,i=c-n.top,a=u-d+n.width,s=p-c+n.height;Object.values(t).some((t=>0!==t))?(r.beginPath(),Qo(r,{x:o,y:i,w:a,h:s,radius:t}),r.fill()):r.fillRect(o,i,a,s)}Wo(r,t._pointLabels[o],a,s+i.lineHeight/2,i,{color:e.color,textAlign:l,textBaseline:"middle"})}}(this,i),n.display&&this.ticks.forEach(((t,e)=>{if(0!==e){this.getDistanceFromCenterForValue(t.value);const r=this.getContext(e),a=n.setContext(r),l=o.setContext(r);!function(t,e,r,n,o){const i=t.ctx,a=e.circular,{color:s,lineWidth:l}=e;!a&&!n||!s||!l||(i.save(),i.strokeStyle=s,i.lineWidth=l,i.setLineDash(o.dash),i.lineDashOffset=o.dashOffset,i.beginPath(),pathRadiusLine(t,r,a,n),i.closePath(),i.stroke(),i.restore())}(this,a,s,i,l)}})),r.display){for(t.save();a>=0;a--){const n=r.setContext(this.getPointLabelContext(a)),{color:o,lineWidth:i}=n;i&&o&&(t.lineWidth=i,t.strokeStyle=o,t.setLineDash(n.borderDash),t.lineDashOffset=n.borderDashOffset,this.getDistanceFromCenterForValue(e.ticks.reverse?this.min:this.max),this.getPointPosition(a,s),t.beginPath(),t.moveTo(this.xCenter,this.yCenter),t.lineTo(l.x,l.y),t.stroke())}t.restore()}}drawBorder(){}drawLabels(){const t=this.ctx,e=this.options,r=e.ticks;if(!r.display)return;const n=this.getIndexAngle(0);let o;t.save(),t.translate(this.xCenter,this.yCenter),t.rotate(n),t.textAlign="center",t.textBaseline="middle",this.ticks.forEach(((n,i)=>{if(0===i&&!e.reverse)return;const a=r.setContext(this.getContext(i)),s=ri(a.font);if(this.getDistanceFromCenterForValue(this.ticks[i].value),a.showLabelBackdrop){t.font=s.string,t.measureText(n.label).width,t.fillStyle=a.backdropColor;const e=ei(a.backdropPadding);t.fillRect(NaN-e.left,NaN-s.size/2-e.top,o+e.width,s.size+e.height)}Wo(t,n.label,0,NaN,s,{color:a.color})})),t.restore()}drawTitle(){}}const El="label";function Cl(t,e){"function"==typeof t?t(e):t&&(t.current=e)}function zl(t,e){t.labels=e}function Ml(t,e){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:El;const n=[];t.datasets=e.map((e=>{const o=t.datasets.find((t=>t[r]===e[r]));return o&&e.data&&!n.includes(o)?(n.push(o),Object.assign(o,e),o):{...e}}))}function Pl(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:El;const r={labels:[],datasets:[]};return zl(r,t.labels),Ml(r,t.datasets,e),r}function Ol(t,r){const{height:n=150,width:o=300,redraw:i=!1,datasetIdKey:a,type:s,data:l,options:d,plugins:c=[],fallbackContent:u,updateMode:p,...m}=t,f=(0,e.useRef)(null),h=(0,e.useRef)(),b=()=>{f.current&&(h.current=new Is(f.current,{type:s,data:Pl(l,a),options:d&&{...d},plugins:c}),Cl(r,h.current))},g=()=>{Cl(r,null),h.current&&(h.current.destroy(),h.current=null)};return(0,e.useEffect)((()=>{!i&&h.current&&d&&function(t,e){const r=t.options;r&&e&&Object.assign(r,e)}(h.current,d)}),[i,d]),(0,e.useEffect)((()=>{!i&&h.current&&zl(h.current.config.data,l.labels)}),[i,l.labels]),(0,e.useEffect)((()=>{!i&&h.current&&l.datasets&&Ml(h.current.config.data,l.datasets,a)}),[i,l.datasets]),(0,e.useEffect)((()=>{h.current&&(i?(g(),setTimeout(b)):h.current.update(p))}),[i,d,l.labels,l.datasets,p]),(0,e.useEffect)((()=>{h.current&&(g(),setTimeout(b))}),[s]),(0,e.useEffect)((()=>(b(),()=>g())),[]),e.createElement("canvas",Object.assign({ref:f,role:"img",height:n,width:o},m),u)}const Tl=(0,e.forwardRef)(Ol);function Ll(t,r){return Is.register(r),(0,e.forwardRef)(((r,n)=>e.createElement(Tl,Object.assign({},r,{ref:n,type:t}))))}const Nl=Ll("line",xa),Rl=Ll("bar",va);Is.register(xl,kl,class extends ts{static id="point";static defaults={borderWidth:1,hitRadius:1,hoverBorderWidth:1,hoverRadius:4,pointStyle:"circle",radius:3,rotation:0};static defaultRoutes={backgroundColor:"backgroundColor",borderColor:"borderColor"};constructor(t){super(),this.options=void 0,this.parsed=void 0,this.skip=void 0,this.stop=void 0,t&&Object.assign(this,t)}inRange(t,e,r){const n=this.options,{x:o,y:i}=this.getProps(["x","y"],r);return Math.pow(t-o,2)+Math.pow(e-i,2)<Math.pow(n.hitRadius+n.radius,2)}inXRange(t,e){return Ws(this,t,"x",e)}inYRange(t,e){return Ws(this,t,"y",e)}getCenterPoint(t){const{x:e,y:r}=this.getProps(["x","y"],t);return{x:e,y:r}}size(t){let e=(t=t||this.options||{}).radius||0;return e=Math.max(e,e&&t.hoverRadius||0),2*(e+(e&&t.borderWidth||0))}draw(t,e){const r=this.options;this.skip||r.radius<.1||!Bo(this,e,this.size(r)/2)||(t.strokeStyle=r.borderColor,t.lineWidth=r.borderWidth,t.fillStyle=r.backgroundColor,jo(t,r,this.x,this.y))}getRange(){const t=this.options||{};return t.radius+t.hitRadius}},class extends ts{static id="line";static defaults={borderCapStyle:"butt",borderDash:[],borderDashOffset:0,borderJoinStyle:"miter",borderWidth:3,capBezierPoints:!0,cubicInterpolationMode:"default",fill:!1,spanGaps:!1,stepped:!1,tension:0};static defaultRoutes={backgroundColor:"backgroundColor",borderColor:"borderColor"};static descriptors={_scriptable:!0,_indexable:t=>"borderDash"!==t&&"fill"!==t};constructor(t){super(),this.animated=!0,this.options=void 0,this._chart=void 0,this._loop=void 0,this._fullLoop=void 0,this._path=void 0,this._points=void 0,this._segments=void 0,this._decimated=!1,this._pointsUpdated=!1,this._datasetIndex=void 0,t&&Object.assign(this,t)}updateControlPoints(t,e){const r=this.options;if((r.tension||"monotone"===r.cubicInterpolationMode)&&!r.stepped&&!this._pointsUpdated){const n=r.spanGaps?this._loop:this._fullLoop;_i(this._points,r,t,n,e),this._pointsUpdated=!0}}set points(t){this._points=t,delete this._segments,delete this._path,this._pointsUpdated=!1}get points(){return this._points}get segments(){return this._segments||(this._segments=function(t,e){const r=t.points,n=t.options.spanGaps,o=r.length;if(!o)return[];const i=!!t._loop,{start:a,end:s}=function(t,e,r,n){let o=0,i=e-1;if(r&&!n)for(;o<e&&!t[o].skip;)o++;for(;o<e&&t[o].skip;)o++;for(o%=e,r&&(i+=o);i>o&&t[i%e].skip;)i--;return i%=e,{start:o,end:i}}(r,o,i,n);return function(t,e,r,n){return n&&n.setContext&&r?function(t,e,r,n){const o=t._chart.getContext(),i=$i(t.options),{_datasetIndex:a,options:{spanGaps:s}}=t,l=r.length,d=[];let c=i,u=e[0].start,p=u;function m(t,e,n,o){const i=s?-1:1;if(t!==e){for(t+=l;r[t%l].skip;)t-=i;for(;r[e%l].skip;)e+=i;t%l!=e%l&&(d.push({start:t%l,end:e%l,loop:n,style:o}),c=o,u=e%l)}}for(const t of e){u=s?u:t.start;let e,i=r[u%l];for(p=u+1;p<=t.end;p++){const s=r[p%l];e=$i(n.setContext(oi(o,{type:"segment",p0:i,p1:s,p0DataIndex:(p-1)%l,p1DataIndex:p%l,datasetIndex:a}))),Wi(e,c)&&m(u,p-1,t.loop,c),i=s,c=e}u<p-1&&m(u,p-1,t.loop,c)}return d}(t,e,r,n):e}(t,!0===n?[{start:a,end:s,loop:i}]:function(t,e,r,n){const o=t.length,i=[];let a,s=e,l=t[e];for(a=e+1;a<=r;++a){const r=t[a%o];r.skip||r.stop?l.skip||(n=!1,i.push({start:e%o,end:(a-1)%o,loop:n}),e=s=r.stop?a:null):(s=a,l.skip&&(e=a)),l=r}return null!==s&&i.push({start:e%o,end:s%o,loop:n}),i}(r,a,s<a?s+o:s,!!t._fullLoop&&0===a&&s===o-1),r,e)}(this,this.options.segment))}first(){const t=this.segments,e=this.points;return t.length&&e[t[0].start]}last(){const t=this.segments,e=this.points,r=t.length;return r&&e[t[r-1].end]}interpolate(t,e){const r=this.options,n=t[e],o=this.points,i=function(t,e){const r=[],n=t.segments;for(let o=0;o<n.length;o++){const i=Vi(n[o],t.points,e);i.length&&r.push(...i)}return r}(this,{property:e,start:n,end:n});if(!i.length)return;const a=[],s=function(t){return t.stepped?Ii:t.tension||"monotone"===t.cubicInterpolationMode?Ai:Di}(r);let l,d;for(l=0,d=i.length;l<d;++l){const{start:d,end:c}=i[l],u=o[d],p=o[c];if(u===p){a.push(u);continue}const m=s(u,p,Math.abs((n-u[e])/(p[e]-u[e])),r.stepped);m[e]=t[e],a.push(m)}return 1===a.length?a[0]:a}pathSegment(t,e,r){return Vs(this)(t,this,e,r)}path(t,e,r){const n=this.segments,o=Vs(this);let i=this._loop;e=e||0,r=r||this.points.length-e;for(const a of n)i&=o(t,this,a,{start:e,end:e+r-1});return!!i}draw(t,e,r,n){const o=this.options||{};(this.points||[]).length&&o.borderWidth&&(t.save(),function(t,e,r,n){$s&&!e.options.segment?function(t,e,r,n){let o=e._path;o||(o=e._path=new Path2D,e.path(o,r,n)&&o.closePath()),js(t,e.options),t.stroke(o)}(t,e,r,n):function(t,e,r,n){const{segments:o,options:i}=e,a=Vs(e);for(const s of o)js(t,i,s.style),t.beginPath(),a(t,e,s,{start:r,end:r+n-1})&&t.closePath(),t.stroke()}(t,e,r,n)}(t,this,r,n),t.restore()),this.animated&&(this._pointsUpdated=!1,this._path=void 0)}},rl,gl,tl);var Dl={responsive:!0,plugins:{legend:{position:"top"},title:{display:!0,text:""}}};const Il=function(t){return e.createElement(Nl,{data:t.data,options:Dl})};var Al={responsive:!0,plugins:{legend:{position:"top"},title:{display:!0,text:"Loading..."}}};const jl=function(){function t(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0;return fetch(t,e).then((function(t){return t.ok?t.json():t.text().then((function(e){throw console.error("Failed to load datax: ".concat(e),t.status),new Error("The data could not be loaded, check the logs for details.")}))}))}var r=le((0,e.useState)(),2),n=r[0],o=r[1],i=le((0,e.useState)(),2),a=i[0],s=i[1],l=le((0,e.useState)(),2),d=l[0],c=l[1],u=le((0,e.useState)(0),2),p=u[0],m=u[1];(0,e.useEffect)((function(){var t={description:"Org",items:[{id:0,title:"NREN Budgets per year, in Millions EUR",url:"/api/data-entries/item/2"}],name:"Organisation"};c(t),m(t.items[0].id)}),[]),(0,e.useEffect)((function(){var e=function(){var e=se(ce().mark((function e(){return ce().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:console.log("budgetResponse "+a),null==a?t("/api/budget/",{}).then((function(t){console.log("budget.data :",t),console.log("budget :",t);var e=null==d?void 0:d.items.find((function(t){return t.id==p}));console.log(p,d,e),e&&(Al.plugins.title.text=e.title),s(t),console.log("budgetResponse after api "+a),h(t)})).catch((function(t){console.log("Error fetching from API: ".concat(t))})):h(a);case 2:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}();e()}),[d,p]);var f=[{BUDGET:"",BUDGET_YEAR:0,NREN:"",id:0}],h=function(t){var e=null!=t?t:f;console.log("barResponse "+e),console.log(e.map((function(t){return t.BUDGET_YEAR})));var r=ie(new Set(e.map((function(t){return t.BUDGET_YEAR})))),n=ie(new Set(e.map((function(t){return t.NREN}))));function i(){var t=Math.floor(256*Math.random()).toString(16).padStart(2,"0"),e=Math.floor(256*Math.random()).toString(16).padStart(2,"0"),r=Math.floor(256*Math.random()).toString(16).padStart(2,"0");return"#".concat(t).concat(e).concat(r)}function a(t,r){var n=e.find((function(e,n){if(e.BUDGET_YEAR==t&&e.NREN==r)return Number(e.BUDGET)}));return void 0!==n?Number(n.BUDGET):null}var s=r.map((function(t){var e=i();return{backgroundColor:e,borderColor:e,data:n.map((function(e){return a(t,e)})),label:t.toString()}})),l=n.map((function(t){var e=i();return{backgroundColor:e,borderColor:e,data:r.map((function(e){return a(e,t)})),label:t}}));if(0==p){var d={data:{datasets:l,labels:r.map((function(t){return t.toString()}))},description:"The numbers are based on 30 NRENs that reported their budgets continuously throughout this period. This means that some larger NRENs are not included and therefore the actual total budgets will have been higher. (For comparison, the total budget according to the 2021 survey results based on the data for all responding NRENs that year is €555 M). The percentage change is based on the previous year's budget.",id:"3",settings:{},title:"NREN Budgets per NREN, in Millions EUR"};o(d)}else{var c={data:{datasets:s,labels:n.map((function(t){return t.toString()}))},description:"The numbers are based on 30 NRENs that reported their budgets continuously throughout this period. This means that some larger NRENs are not included and therefore the actual total budgets will have been higher. (For comparison, the total budget according to the 2021 survey results based on the data for all responding NRENs that year is €555 M). The percentage change is based on the previous year’s budget.",id:"2",settings:{},title:"NREN Budgets per year, in Millions EUR"};o(c)}},b=void 0!==n?n:{data:{datasets:[{backgroundColor:"",data:[],label:""}],labels:[]},description:"",id:"",settings:{},title:""};return e.createElement("div",null,e.createElement("h1",null,"Data Analysis"),e.createElement(Et,null,e.createElement(zt,null,e.createElement(Pt,null,e.createElement(zt,null,e.createElement(Il,{data:b.data})),e.createElement(zt,null,null==n?void 0:n.description)),e.createElement(Pt,{xs:3},e.createElement(mr,{defaultActiveKey:"0"},e.createElement(mr.Item,{eventKey:"0"},e.createElement(mr.Header,null,"Items"),e.createElement(mr.Body,null,e.createElement(Ar,null,null==d?void 0:d.items.map((function(t){return e.createElement(Ar.Item,{key:t.id,action:!0,active:t.id==p,onClick:function(){return m(t.id)}},t.title)}))))))))))},Fl=function(){return e.createElement("div",null,e.createElement("h1",null,"Annual Report"))};var Bl={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},Ul=e.createContext&&e.createContext(Bl),Hl=function(){return Hl=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t},Hl.apply(this,arguments)};function Vl(t){return t&&t.map((function(t,r){return e.createElement(t.tag,Hl({key:r},t.attr),Vl(t.child))}))}function $l(t){return function(r){return e.createElement(Wl,Hl({attr:Hl({},t.attr)},r),Vl(t.child))}}function Wl(t){var r=function(r){var n,o=t.attr,i=t.size,a=t.title,s=function(t,e){var r={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&e.indexOf(n)<0&&(r[n]=t[n]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(t);o<n.length;o++)e.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(t,n[o])&&(r[n[o]]=t[n[o]])}return r}(t,["attr","size","title"]),l=i||r.size||"1em";return r.className&&(n=r.className),t.className&&(n=(n?n+" ":"")+t.className),e.createElement("svg",Hl({stroke:"currentColor",fill:"currentColor",strokeWidth:"0"},r.attr,o,s,{className:n,style:Hl(Hl({color:t.color||r.color},r.style),t.style),height:l,width:l,xmlns:"http://www.w3.org/2000/svg"}),a&&e.createElement("title",null,a),t.children)};return void 0!==Ul?e.createElement(Ul.Consumer,null,(function(t){return r(t)})):r(Bl)}function Yl(t){return $l({tag:"svg",attr:{viewBox:"0 0 24 24"},child:[{tag:"path",attr:{fill:"none",stroke:"#000",strokeWidth:"2",d:"M12,22 L12,2 M2,12 L22,12"}}]})(t)}function Kl(t){return $l({tag:"svg",attr:{viewBox:"0 0 24 24"},child:[{tag:"path",attr:{fill:"none",stroke:"#000",strokeWidth:"2",d:"M2,12 L22,12"}}]})(t)}const Ql=function(t){var r=t.title,n=t.children,o=le((0,e.useState)(!1),2),i=o[0],a=o[1];return e.createElement("div",{className:"collapsible-box"},e.createElement(zt,null,e.createElement(Pt,null,e.createElement("h1",{className:"bold-caps-16pt dark-teal"},r)),e.createElement(Pt,{align:"right"},e.createElement("button",{className:"expand-collapse-btn",onClick:function(){return a(!i)}},i?e.createElement(Yl,null):e.createElement(Kl,null)))),!i&&e.createElement("div",{className:"collapsible-content"},n))},Xl=function(t){var r=t.type,n=t.header,o=t.children,i="";return"data"==r?i+=" compendium-data-header":"reports"==r&&(i=" compendium-reports-header"),e.createElement("div",{className:i},e.createElement(Et,null,e.createElement(zt,null,e.createElement(Pt,{sm:8},e.createElement("h1",{className:"bold-caps-30pt "},n)),e.createElement(Pt,{sm:4},o))))},ql=function(t){var r=t.section;return e.createElement("div",{style:{float:"right"},className:"bold-caps-20pt"},e.createElement("span",null,"Compendium"),e.createElement("br",null),e.createElement("span",{style:{float:"right"}},r))},Gl=function(t){var r=t.children,n=t.type,o="";return"data"==n?o+=" compendium-data-banner":"reports"==n&&(o=" compendium-reports-banner"),e.createElement("div",{className:o},e.createElement(Et,null,e.createElement(zt,null,e.createElement(Pt,{sm:8},e.createElement(zt,null,e.createElement(Pt,{sm:2},e.createElement("img",{src:Gt,style:{maxWidth:"80%"}})),e.createElement(Pt,{sm:8},e.createElement("div",{className:"center-text max-width-100vw"},r)))))))},Zl=function(){return e.createElement("main",{style:{backgroundColor:"white"}},e.createElement(Xl,{type:"data",header:"Compendium Data"},e.createElement(ql,{section:"Reports"})),e.createElement(Gl,{type:"data"},e.createElement("p",{className:"wordwrap"},"The GÉANT Compendium provides an authoritative reference source for anyone with an interest in the development of research and education networking in Europe and beyond. Published since 2001, the Compendium provides information on key areas such as users, services, traffic, budget and staffing.")),e.createElement(Et,{className:"geant-container"},e.createElement(zt,null,e.createElement("div",{className:"center"},e.createElement(Ql,{title:"ORGANISATION"},e.createElement("div",{className:"collapsible-column"},e.createElement(zt,null,e.createElement(pt,{to:"/analysis",state:{graph:"budget"}},e.createElement("span",null,"Budget of NRENs per Year"))),e.createElement(zt,null,e.createElement(pt,{to:"/funding",state:{graph:"fundingsources"}},e.createElement("span",null,"Income Source of NRENs per Year")))))))))};var Jl=o(844),td=[{CLIENT_INSTITUTIONS:"0.0",COMMERCIAL:"0.0",EUROPEAN_FUNDING:"0.0",GOV_PUBLIC_BODIES:"0.0",NREN:"",OTHER:"0.0",YEAR:0,id:0}];Is.register(xl,kl,class extends ts{static id="bar";static defaults={borderSkipped:"start",borderWidth:0,borderRadius:0,inflateAmount:"auto",pointStyle:void 0};static defaultRoutes={backgroundColor:"backgroundColor",borderColor:"borderColor"};constructor(t){super(),this.options=void 0,this.horizontal=void 0,this.base=void 0,this.width=void 0,this.height=void 0,this.inflateAmount=void 0,t&&Object.assign(this,t)}draw(t){const{inflateAmount:e,options:{borderColor:r,backgroundColor:n}}=this,{inner:o,outer:i}=function(t){const e=Ys(t),r=e.right-e.left,n=e.bottom-e.top,o=function(t,e,r){const n=t.options.borderWidth,o=t.borderSkipped,i=Jo(n);return{t:Ks(o.top,i.top,0,r),r:Ks(o.right,i.right,0,e),b:Ks(o.bottom,i.bottom,0,r),l:Ks(o.left,i.left,0,e)}}(t,r/2,n/2),i=function(t,e,r){const{enableBorderRadius:n}=t.getProps(["enableBorderRadius"]),o=t.options.borderRadius,i=ti(o),a=Math.min(e,r),s=t.borderSkipped,l=n||xn(o);return{topLeft:Ks(!l||s.top||s.left,i.topLeft,0,a),topRight:Ks(!l||s.top||s.right,i.topRight,0,a),bottomLeft:Ks(!l||s.bottom||s.left,i.bottomLeft,0,a),bottomRight:Ks(!l||s.bottom||s.right,i.bottomRight,0,a)}}(t,r/2,n/2);return{outer:{x:e.left,y:e.top,w:r,h:n,radius:i},inner:{x:e.left+o.l,y:e.top+o.t,w:r-o.l-o.r,h:n-o.t-o.b,radius:{topLeft:Math.max(0,i.topLeft-Math.max(o.t,o.l)),topRight:Math.max(0,i.topRight-Math.max(o.t,o.r)),bottomLeft:Math.max(0,i.bottomLeft-Math.max(o.b,o.l)),bottomRight:Math.max(0,i.bottomRight-Math.max(o.b,o.r))}}}}(this),a=(s=i.radius).topLeft||s.topRight||s.bottomLeft||s.bottomRight?Qo:Xs;var s;t.save(),i.w===o.w&&i.h===o.h||(t.beginPath(),a(t,qs(i,e,o)),t.clip(),a(t,qs(o,-e,i)),t.fillStyle=r,t.fill("evenodd")),t.beginPath(),a(t,qs(o,e)),t.fillStyle=n,t.fill(),t.restore()}inRange(t,e,r){return Qs(this,t,e,r)}inXRange(t,e){return Qs(this,t,null,e)}inYRange(t,e){return Qs(this,null,t,e)}getCenterPoint(t){const{x:e,y:r,base:n,horizontal:o}=this.getProps(["x","y","base","horizontal"],t);return{x:o?(e+n)/2:e,y:o?r:(r+n)/2}}getRange(t){return"x"===t?this.width/2:this.height/2}},rl,gl,tl);var ed={datasets:[{backgroundColor:"",data:[],label:"",borderRadius:0,borderSkipped:!1,barPercentage:0,borderWidth:0,stack:"0",categoryPercentage:.5}],labels:[]},rd={maintainAspectRatio:!1,plugins:{legend:{display:!1,labels:{boxWidth:20,boxHeight:30,pointStyle:"rectRounded",borderRadius:6,useBorderRadius:!0}}},scales:{x:{stacked:!0,ticks:{callback:function(t){return"number"==typeof t?t.toFixed(2):t}}},y:{stacked:!0}},indexAxis:"y"};function nd(){return od.apply(this,arguments)}function od(){return(od=se(ce().mark((function t(){var e;return ce().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.next=3,fetch("/api/funding/");case 3:return e=t.sent,t.abrupt("return",e.json());case 7:throw t.prev=7,t.t0=t.catch(0),console.error("Failed to load data: ".concat(t.t0)),t.t0;case 11:case"end":return t.stop()}}),t,null,[[0,7]])})))).apply(this,arguments)}const id=function(){var t=le((0,e.useState)(),2),r=t[0],n=t[1],o=le((0,e.useState)(),2),i=o[0],a=o[1];(0,e.useEffect)((function(){var t=function(){var t=se(ce().mark((function t(){var e;return ce().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,nd();case 2:e=t.sent,a(e);case 4:case"end":return t.stop()}}),t)})));return function(){return t.apply(this,arguments)}}();t()}),[]),(0,e.useEffect)((function(){if(null!=i){var t=(o=function(t){var e=new Map;return t.forEach((function(t){var r="".concat(t.NREN,"/").concat(t.YEAR),n=e.get(r);n||(n=new Map),n.set("CLIENT INSTITUTIONS",t.CLIENT_INSTITUTIONS),n.set("COMMERCIAL",t.COMMERCIAL),n.set("EUROPEAN FUNDING",t.EUROPEAN_FUNDING),n.set("GOV/PUBLIC_BODIES",t.GOV_PUBLIC_BODIES),n.set("OTHER",t.OTHER),e.set(r,n)})),e}(r=null!=(e=i)?e:td),a=ie(new Set(r.map((function(t){return t.YEAR})))),s=ie(new Set(r.map((function(t){return t.NREN})))),l=(0,Jl.gr)(["CLIENT INSTITUTIONS","COMMERCIAL","EUROPEAN FUNDING","GOV/PUBLIC_BODIES","OTHER"],a),d=function(){var t=function(t,e,r){return"#"+[t,e,r].map((function(t){var e=t.toString(16);return 1===e.length?"0"+e:e})).join("")},e=new Map;return e.set("CLIENT INSTITUTIONS",t(157,40,114)),e.set("COMMERCIAL",t(241,224,79)),e.set("EUROPEAN FUNDING",t(219,42,76)),e.set("GOV/PUBLIC_BODIES",t(237,141,24)),e.set("OTHER",t(137,166,121)),e}(),{datasets:l.map((function(t){var e=le(t,2),r=e[0],n=e[1];return{backgroundColor:d.get(r),label:r+"("+n+")",data:s.map((function(t){var e,i="".concat(t,"/").concat(n),a=o.get(i);return a&&null!==(e=a.get(r))&&void 0!==e?e:0})),stack:n,borderRadius:10,borderSkipped:!1,barPercentage:.5,borderWidth:.5,categoryPercentage:.8}})),labels:s.map((function(t){return t.toString()}))});n(t)}var e,r,o,a,s,l,d}),[i]);var s=null!=r?r:ed;return e.createElement("div",{className:"center"},e.createElement("h1",null,"Funding Source"),e.createElement("div",{className:"chart-container",style:{minHeight:"100vh",width:"60vw"}},e.createElement(Rl,{data:s,options:rd})))},ad=function(){return e.createElement("div",null,e.createElement(ut,null,e.createElement(ee,null),e.createElement(at,null,e.createElement(ot,{path:"/data",element:e.createElement(Zl,null)}),e.createElement(ot,{path:"/about",element:e.createElement(re,null)}),e.createElement(ot,{path:"/analysis",element:e.createElement(jl,null)}),e.createElement(ot,{path:"/report",element:e.createElement(Fl,null)}),e.createElement(ot,{path:"/funding",element:e.createElement(id,null)}),e.createElement(ot,{path:"*",element:e.createElement(Jt,null)}))))};var sd=o(379),ld=o.n(sd),dd=o(795),cd=o.n(dd),ud=o(569),pd=o.n(ud),md=o(565),fd=o.n(md),hd=o(216),bd=o.n(hd),gd=o(589),vd=o.n(gd),xd=o(666),yd={};yd.styleTagTransform=vd(),yd.setAttributes=fd(),yd.insert=pd().bind(null,"head"),yd.domAPI=cd(),yd.insertStyleElement=bd(),ld()(xd.Z,yd),xd.Z&&xd.Z.locals&&xd.Z.locals;var wd=o(169),kd={};kd.styleTagTransform=vd(),kd.setAttributes=fd(),kd.insert=pd().bind(null,"head"),kd.domAPI=cd(),kd.insertStyleElement=bd(),ld()(wd.Z,kd),wd.Z&&wd.Z.locals&&wd.Z.locals;var _d=document.getElementById("root");(0,n.s)(_d).render(e.createElement(e.StrictMode,null,e.createElement(ad,null)))})()})(); \ No newline at end of file diff --git a/compendium_v2/static/images/compendium_header.png b/compendium_v2/static/images/compendium_header.png index e7e678ee8e51c4c6927400e79da75f1b40cc1d0a..467f3f4aa589a325002779b94f8f460c2f07dc0d 100644 Binary files a/compendium_v2/static/images/compendium_header.png and b/compendium_v2/static/images/compendium_header.png differ diff --git a/compendium_v2/static/images/home_data_icon.svg b/compendium_v2/static/images/home_data_icon.svg new file mode 100644 index 0000000000000000000000000000000000000000..3262b58ac6b2731584c97bf4dcaddb3f28d55520 --- /dev/null +++ b/compendium_v2/static/images/home_data_icon.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 207.17 207.08" style="enable-background:new 0 0 207.17 207.08" xml:space="preserve"><path d="M171.3 190.6H36.7c-10.11 0-18.39-8.27-18.39-18.39V37.62c0-10.11 8.27-18.39 18.39-18.39h134.6c10.11 0 18.39 8.27 18.39 18.39v134.6c0 10.11-8.28 18.38-18.39 18.38z" style="fill:#fff;stroke:#c5cad1;stroke-miterlimit:10"/><path d="M103.91 133.71H93.13c-15.04 0-27.57-11.96-27.77-27-.2-15.28 12.13-27.72 27.36-27.72h11.03c1.35 0 2.45-1.09 2.45-2.45v-6.08c0-.9-.58-1.69-1.43-1.97-.54-.18-1.09-.35-1.65-.5-2.06-.58-3.68-2.16-4.4-4.17l-.93-2.62a3.78 3.78 0 0 0-3.41-2.5c-.69-.03-1.39-.05-2.09-.05-.73 0-1.46.02-2.18.05-1.49.07-2.79 1.01-3.29 2.41l-1.05 2.95c-.68 1.92-2.26 3.36-4.22 3.91-2.88.8-5.62 1.92-8.2 3.31a7.894 7.894 0 0 1-7.16.18l-2.62-1.24c-.96-.45-2.1-.3-2.89.41a47.343 47.343 0 0 0-4.13 4.13c-.7.79-.86 1.93-.41 2.89l1.37 2.89c1 2.11.96 4.57-.17 6.62a40.108 40.108 0 0 0-3.38 8.19c-.62 2.18-2.3 3.9-4.44 4.66l-3.15 1.12c-.98.35-1.65 1.24-1.72 2.28a48.508 48.508 0 0 0 0 5.92c.06 1.03.74 1.93 1.72 2.28l2.8 1c2.35.84 4.18 2.74 4.89 5.13a39.4 39.4 0 0 0 3.21 7.72c1.16 2.12 1.21 4.68.18 6.86l-1.13 2.39c-.57 1.19-.38 2.61.51 3.59 1.12 1.24 2.29 2.42 3.53 3.53.98.88 2.4 1.07 3.59.51l2.87-1.36c1.94-.92 4.2-.81 6.08.24 2.43 1.35 5.01 2.46 7.72 3.28 2.58.79 4.64 2.74 5.54 5.27l.8 2.26a2.97 2.97 0 0 0 2.63 1.98c.89.05 1.79.08 2.7.08.9 0 1.8-.03 2.7-.08 1.19-.07 2.23-.86 2.63-1.98l.84-2.36c.89-2.5 2.94-4.39 5.48-5.16.2-.06.41-.13.61-.19.98-.32 1.65-1.23 1.65-2.26V136c0-1.27-1.02-2.29-2.29-2.29z" style="fill:#bbbdbf"/><path d="M92.73 91.39h20.14c1.86 0 3.65-.79 4.9-2.17l7.52-8.26c1.15.54 2.43.85 3.79.85 4.93 0 8.94-4.01 8.94-8.94s-4.01-8.94-8.94-8.94-8.94 4.01-8.94 8.94c0 1.78.53 3.43 1.42 4.82l-7.46 8.18c-.32.35-.77.55-1.24.55H92.73c-1.37 0-2.48 1.11-2.48 2.48s1.11 2.49 2.48 2.49zm36.36-22.49c2.2 0 3.98 1.79 3.98 3.98 0 2.2-1.79 3.98-3.98 3.98-2.2 0-3.98-1.79-3.98-3.98s1.78-3.98 3.98-3.98zm30.9 11.73c-4.19 0-7.7 2.9-8.67 6.79h-10.55c-2.09 0-4.09.78-5.63 2.19l-8.12 7.43c-.67.62-1.55.96-2.46.96H92.73a2.48 2.48 0 1 0 0 4.96h31.83c2.16 0 4.22-.8 5.81-2.26l8.12-7.43c.62-.57 1.43-.89 2.28-.89h10.74c1.18 3.56 4.53 6.13 8.48 6.13 4.93 0 8.94-4.01 8.94-8.94s-4.01-8.94-8.94-8.94zm0 12.93c-2.2 0-3.98-1.79-3.98-3.98 0-2.2 1.79-3.98 3.98-3.98 2.2 0 3.98 1.79 3.98 3.98.01 2.19-1.78 3.98-3.98 3.98zm-17.56 10.82c-4.07 0-7.51 2.74-8.58 6.46H92.4a2.48 2.48 0 1 0 0 4.96h41.44c1.08 3.73 4.51 6.46 8.58 6.46 4.93 0 8.94-4.01 8.94-8.94.01-4.93-4-8.94-8.93-8.94zm0 12.92c-2.2 0-3.98-1.79-3.98-3.98 0-2.2 1.79-3.98 3.98-3.98 2.2 0 3.98 1.79 3.98 3.98 0 2.2-1.79 3.98-3.98 3.98zm-13.49 13.57c-1.47 0-2.86.36-4.08 1l-6.59-7.34a8.239 8.239 0 0 0-6.11-2.73H92.73a2.48 2.48 0 1 0 0 4.96h19.42c.92 0 1.8.39 2.42 1.08l6.67 7.44a8.86 8.86 0 0 0-1.25 4.54c0 4.93 4.01 8.94 8.94 8.94s8.94-4.01 8.94-8.94c.01-4.94-4-8.95-8.93-8.95zm0 12.93c-2.2 0-3.98-1.79-3.98-3.98 0-2.2 1.79-3.98 3.98-3.98 2.2 0 3.98 1.79 3.98 3.98a3.99 3.99 0 0 1-3.98 3.98z" style="fill:#f69320"/></svg> \ No newline at end of file diff --git a/compendium_v2/static/images/home_reports_icon.svg b/compendium_v2/static/images/home_reports_icon.svg new file mode 100644 index 0000000000000000000000000000000000000000..f67db4594fca45c7cebf5ad4d69b2db9b967d64a --- /dev/null +++ b/compendium_v2/static/images/home_reports_icon.svg @@ -0,0 +1 @@ +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 207.17 207.08" style="enable-background:new 0 0 207.17 207.08" xml:space="preserve"><style>.st1{fill:#00a79c}.st2{fill:#bbbdbf}</style><path d="M171.94 189.03H33.75c-9.12 0-16.59-7.47-16.59-16.59V34.25c0-9.12 7.47-16.59 16.59-16.59h138.19c9.12 0 16.59 7.47 16.59 16.59v138.19c0 9.13-7.46 16.59-16.59 16.59z" style="fill:#fff;stroke:#c5cad1;stroke-miterlimit:10"/><path class="st1" d="M115.35 119.12c-8.38-8.38-8.38-22.01 0-30.39 8.38-8.38 22.01-8.38 30.39 0 8.38 8.38 8.38 22.01 0 30.39-8.38 8.38-22.01 8.38-30.39 0zm3.2-3.2c6.62 6.61 17.38 6.61 23.99 0 6.61-6.61 6.62-17.38 0-23.99-6.61-6.62-17.38-6.62-23.99 0-6.61 6.61-6.61 17.37 0 23.99zm29.54 5.55c1.15-1.15 2.19-2.36 3.14-3.63l15.79 15.79a4.907 4.907 0 0 1 0 6.93 4.889 4.889 0 0 1-6.93 0l-15.81-15.81a32.56 32.56 0 0 0 3.81-3.28z"/><path class="st1" d="M120.95 103.07c0-2.31.9-4.47 2.53-6.1a8.603 8.603 0 0 1 5.34-2.49l-.3-3.36c-2.8.25-5.44 1.48-7.43 3.47a11.905 11.905 0 0 0-3.51 8.48h3.37z"/><path class="st2" d="M83.46 124.61c-1.11 0-2.01.91-2.01 2.01 0 1.11.91 2.01 2.01 2.01h32.76c.19 0 .38-.04.55-.09a28.1 28.1 0 0 1-5.64-3.94H83.46z"/><path class="st2" d="M129.75 131.77c-.48 0-.95-.01-1.43-.04v11.15c0 3.57-2.9 6.47-6.47 6.47H63.06c-3.57 0-6.47-2.9-6.47-6.47V66.71c0-3.57 2.9-6.47 6.47-6.47h58.79c3.57 0 6.47 2.9 6.47 6.47v9.53c.47-.02.95-.04 1.43-.04.53 0 1.05.02 1.57.05V66.7c0-5.22-4.25-9.47-9.47-9.47h-6.45l-.24-1.1c-.75-3.5-4.22-5.73-7.71-4.98l-4.67 1.01-2.98-5.15a5.608 5.608 0 0 0-7.66-2.05L70.63 57.24h-7.57c-3.73 0-6.95 2.17-8.5 5.31l-6.84 1.47c-3.5.75-5.73 4.21-4.98 7.71l.34 1.57-5.37 3.1a5.608 5.608 0 0 0-2.05 7.66l15.52 26.88 2.41 11.18v20.76c0 5.22 4.25 9.47 9.47 9.47h58.79c5.22 0 9.47-4.25 9.47-9.47v-11.16c-.52.04-1.04.05-1.57.05zM108.09 54.1c1.88-.4 3.74.8 4.14 2.68l.1.47h-19.6l15.36-3.15zm-14.43-6.54c1.25-.72 2.84-.29 3.56.96l2.49 4.32-20.44 4.41h-2.38l16.77-9.69zm-55.4 35c-.72-1.25-.29-2.84.96-3.56l4.53-2.62 5.38 25-10.87-18.82zm15.33-15.85v42.11L45.68 71.1c-.41-1.88.79-3.74 2.67-4.14l5.28-1.14c-.03.29-.04.59-.04.89z"/><path class="st2" d="M83.46 132.46c-1.11 0-2.01.91-2.01 2.01s.91 2.01 2.01 2.01h32.76c1.11 0 2.01-.91 2.01-2.01s-.91-2.01-2.01-2.01H83.46zm-13.02-9.45c-4.24 0-7.68 3.45-7.68 7.68 0 4.24 3.45 7.68 7.68 7.68s7.68-3.45 7.68-7.68c0-4.23-3.44-7.68-7.68-7.68zm0 12.17c-2.47 0-4.48-2.01-4.48-4.48s2.01-4.48 4.48-4.48 4.48 2.01 4.48 4.48-2.01 4.48-4.48 4.48zm11.01-34.91c0 1.11.91 2.01 2.01 2.01h18.57c.08-1.37.26-2.72.54-4.03H83.46c-1.11 0-2.01.91-2.01 2.02zM70.44 71.16c-4.24 0-7.68 3.45-7.68 7.68 0 4.24 3.45 7.68 7.68 7.68s7.68-3.45 7.68-7.68c0-4.23-3.44-7.68-7.68-7.68zm0 12.17c-2.47 0-4.48-2.01-4.48-4.48s2.01-4.48 4.48-4.48 4.48 2.01 4.48 4.48-2.01 4.48-4.48 4.48zm0 13.32c-4.24 0-7.68 3.45-7.68 7.68 0 4.24 3.45 7.68 7.68 7.68s7.68-3.45 7.68-7.68c0-4.23-3.44-7.68-7.68-7.68zm0 12.17c-2.47 0-4.48-2.01-4.48-4.48s2.01-4.48 4.48-4.48 4.48 2.01 4.48 4.48-2.01 4.48-4.48 4.48zm11.01-.7c0 1.11.91 2.01 2.01 2.01h19.2c-.3-1.31-.5-2.66-.6-4.03h-18.6c-1.11 0-2.01.91-2.01 2.02zm2.01-31.33h32.76c1.11 0 2.01-.91 2.01-2.01s-.91-2.01-2.01-2.01H83.46c-1.11 0-2.01.91-2.01 2.01s.9 2.01 2.01 2.01zm-2.01 5.83c0 1.11.91 2.01 2.01 2.01h26.37c1.48-1.52 3.14-2.88 4.93-4.03h-31.3c-1.11.01-2.01.91-2.01 2.02z"/></svg> \ No newline at end of file diff --git a/compendium_v2/survey_db/model.py b/compendium_v2/survey_db/model.py index 4ea5af32f0336baa6787e6efbfb432cda321b86c..45c27ddf82a2854799190b438c31576d3c5126dc 100644 --- a/compendium_v2/survey_db/model.py +++ b/compendium_v2/survey_db/model.py @@ -28,15 +28,3 @@ class Nrens(base_schema): abbreviation = sa.Column(sa.String) country_code = sa.Column(sa.String) budgets = relationship('Budgets', back_populates='nren') - - -# class BudgetEntry(base_schema): -# # Session = sessionmaker(bind=engine) -# # session = Session() -# -# __tablename__ = 'budgets' -# session.query(Budget).all() -# id = sa.Column(sa.Integer, autoincrement=True) -# nren = sa.Column(sa.String(128), primary_key=True) -# budget = sa.Column(sa.String(128), nullable=True) -# year = sa.Column(sa.String(128), primary_key=True) diff --git a/compendium_v2/templating/__init__.py b/compendium_v2/templating/__init__.py deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/setup.py b/setup.py index 657af19ac19e904290693f81c14e09307d6b532d..4353c92d8c334848e5fc840c7d30f57c199562e8 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='compendium-v2', - version="0.9", + version="0.10", author='GEANT', author_email='swd@geant.org', description='Flask and React project for displaying ' diff --git a/test/conftest.py b/test/conftest.py index 42c7453504942a22a47d38a269ead5aa6a551ae5..bc36503c2c3ba01d5fbf6511f562e56aa6255bd2 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -6,12 +6,23 @@ import pytest import compendium_v2 from compendium_v2 import db from compendium_v2.db import model +from compendium_v2 import survey_db from compendium_v2.survey_db import model as survey_model from sqlalchemy import create_engine from sqlalchemy.orm import sessionmaker from sqlalchemy.pool import StaticPool +import csv + + +def _test_data_csv(filename): + data_filename = os.path.join( + os.path.dirname(__file__), + 'data', + filename) + yield from csv.DictReader(open(data_filename, "r")) + @pytest.fixture def dummy_config(): @@ -58,15 +69,71 @@ def mocked_db(mocker): @pytest.fixture -def create_test_presentation_data(): +def test_budget_data(): + with db.session_scope() as session: + data = _test_data_csv("BudgetTestData.csv") + for row in data: + nren = row["nren"] + budget = row["budget"] + year = row["year"] + + session.add( + model.BudgetEntry( + nren=nren, + budget=float(budget), + year=int(year)) + ) + with survey_db.session_scope() as session: + data = _test_data_csv("BudgetTestData.csv") + nrens = set() + budgets_data = [] + for row in data: + nren = row["nren"] + budget = row["budget"] + year = row["year"] + country_code = row["nren"] + + nrens.add(nren) + + budgets_data.append( + survey_model.Budgets( + budget=budget, + year=year, + country_code=country_code + ) + ) + for nren in nrens: + session.add( + survey_model.Nrens( + abbreviation=nren, + country_code=nren + )) + + session.add_all(budgets_data) + + +@pytest.fixture +def test_funding_source_data(): with db.session_scope() as session: - session.add( - model.BudgetEntry( - id=1, - nren='testnren', - budget=123, - year=2023,) - ) + data = _test_data_csv("FundingSourceTestData.csv") + for row in data: + nren = row["nren"] + year = row["year"] + client = row["client"] + european = row["european"] + publicbodies = row["publicbodies"] + commercial = row["commercial"] + other = row["other"] + + session.add( + model.FundingSource( + nren=nren, year=year, + client_institutions=client, + european_funding=european, + gov_public_bodies=publicbodies, + commercial=commercial, + other=other) + ) @pytest.fixture diff --git a/test/data/2021_Organisation_DataSeries.xlsx b/test/data/2021_Organisation_DataSeries.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..b8d2db21641fe881e98026a91873934555bdd37e Binary files /dev/null and b/test/data/2021_Organisation_DataSeries.xlsx differ diff --git a/compendium_v2/background_task/csv/BudgetCsvFile.csv b/test/data/BudgetTestData.csv similarity index 99% rename from compendium_v2/background_task/csv/BudgetCsvFile.csv rename to test/data/BudgetTestData.csv index 09ac009cfd38b042651034b8fa4b53985e10fb51..4f55a4ca0f9ae9f5df6b2138ea53b9c1acba896e 100644 --- a/compendium_v2/background_task/csv/BudgetCsvFile.csv +++ b/test/data/BudgetTestData.csv @@ -1,3 +1,4 @@ +nren,budget,year ACOnet,6.4,2021 ACOnet,6.4,2020 ACOnet,6.1,2019 diff --git a/compendium_v2/background_task/csv/FundingSourceCsvFile.csv b/test/data/FundingSourceTestData.csv similarity index 99% rename from compendium_v2/background_task/csv/FundingSourceCsvFile.csv rename to test/data/FundingSourceTestData.csv index 2a7b4a72b72c9553c8d29e2e74dedc595d345825..f361cd4637a8cd61632329999094068f51bf36e3 100644 --- a/compendium_v2/background_task/csv/FundingSourceCsvFile.csv +++ b/test/data/FundingSourceTestData.csv @@ -1,3 +1,4 @@ +nren,year,client,european,publicbodies,commercial,other ACOnet,2020,100.0,0.0,0.0,0.0,0.0 AMRES,2020,0.0,0.0,100.0,0.0,0.0 ANA,2020,13.0,1.0,1.0,1.0,0.0 diff --git a/test/test_budget.py b/test/test_budget.py new file mode 100644 index 0000000000000000000000000000000000000000..71bfa2dc129657d9905cb5af8875dddf88fa375c --- /dev/null +++ b/test/test_budget.py @@ -0,0 +1,13 @@ +import json +import jsonschema +from compendium_v2.routes.budget import BUDGET_RESPONSE_SCHEMA + + +def test_budget_response(client, test_budget_data): + rv = client.get( + '/api/budget/', + headers={'Accept': ['application/json']}) + assert rv.status_code == 200 + result = json.loads(rv.data.decode('utf-8')) + jsonschema.validate(result, BUDGET_RESPONSE_SCHEMA) + assert result diff --git a/test/test_funding_source.py b/test/test_funding_source.py new file mode 100644 index 0000000000000000000000000000000000000000..234f8f6bf920a60837a07b3bcd608c2674d2003c --- /dev/null +++ b/test/test_funding_source.py @@ -0,0 +1,13 @@ +import json +import jsonschema +from compendium_v2.routes.funding import FUNDING_RESPONSE_SCHEMA + + +def test_funding_source_response(client, test_funding_source_data): + rv = client.get( + '/api/funding/', + headers={'Accept': ['application/json']}) + assert rv.status_code == 200 + result = json.loads(rv.data.decode('utf-8')) + jsonschema.validate(result, FUNDING_RESPONSE_SCHEMA) + assert result diff --git a/test/test_routes.py b/test/test_routes.py index 5ed7739796880ec356dacbdd9ea81550c4d4d3a6..41d022a56d2db4c10dab13480deb7d00e628defb 100644 --- a/test/test_routes.py +++ b/test/test_routes.py @@ -3,7 +3,6 @@ import json import jsonschema import pytest -from compendium_v2.routes.budget import BUDGET_RESPONSE_SCHEMA from compendium_v2.routes.default import VERSION_SCHEMA @@ -24,12 +23,3 @@ def test_version_request(client): assert rv.status_code == 200 result = json.loads(rv.data.decode('utf-8')) jsonschema.validate(result, VERSION_SCHEMA) - - -def test_budget_response(client, create_test_presentation_data): - rv = client.get( - '/api/budget/', - headers={'Accept': ['application/json']}) - assert rv.status_code == 200 - result = json.loads(rv.data.decode('utf-8')) - jsonschema.validate(result, BUDGET_RESPONSE_SCHEMA) diff --git a/test/test_service_matrix.py b/test/test_service_matrix.py deleted file mode 100644 index ef5347497e569cf950ef496de6de14730cf59b3e..0000000000000000000000000000000000000000 --- a/test/test_service_matrix.py +++ /dev/null @@ -1,25 +0,0 @@ -import json - -import jsonschema -import pytest - -from compendium_v2.routes.service_matrix import SERVICE_MATRIX_SCHEMA - - -@pytest.mark.parametrize( - 'endpoint', - ['service-matrix']) -def test_bad_accept(endpoint, client): - rv = client.get( - endpoint, - headers={'Accept': ['text/html']}) - assert rv.status_code == 406 - - -def test_service_matrix(client): - rv = client.get( - 'service-matrix', - headers={'Accept': ['application/json']}) - assert rv.status_code == 200 - result = json.loads(rv.data.decode('utf-8')) - jsonschema.validate(result, SERVICE_MATRIX_SCHEMA) diff --git a/test/test_survey_publisher_2022.py b/test/test_survey_publisher_2022.py new file mode 100644 index 0000000000000000000000000000000000000000..ebfb4acfc2f4dce97950f429414629b8eea78cde --- /dev/null +++ b/test/test_survey_publisher_2022.py @@ -0,0 +1,64 @@ +from compendium_v2 import db +from compendium_v2.db import model +from compendium_v2.publishers.survey_publisher_2022 import _cli, FundingSource + + +def test_publisher(client, mocker, dummy_config): + + def get_rows_as_tuples(*args, **kwargs): + return [ + ('nren1', '100'), + ('nren2', '200'), + ('nren3', '300'), + ('nren4', 'abcd') + ] + + def funding_source_data(): + yield FundingSource.CLIENT_INSTITUTIONS, [ + ('nren1', '10'), + ('nren2', '80'), + ('nren3', '30'), + ] + yield FundingSource.EUROPEAN_FUNDING, [ + ('nren1', '50'), + ('nren2', '20'), + ('nren3', '30'), + ] + yield FundingSource.OTHER, [ + ('nren1', '40'), + ('nren2', 'abc'), + ('nren3', '30'), + ] + + mocker.patch('compendium_v2.publishers.survey_publisher_2022.query_budget', # noqa + get_rows_as_tuples) + + mocker.patch('compendium_v2.publishers.survey_publisher_2022.query_funding_sources', # noqa + funding_source_data) + + _cli(dummy_config) + + with db.session_scope() as session: + budgets = session.query(model.BudgetEntry).order_by( + model.BudgetEntry.nren.asc()).all() + assert len(budgets) == 3 + assert budgets[0].nren == 'nren1' + assert budgets[0].budget == 100 + + funding_sources = session.query(model.FundingSource).order_by( + model.FundingSource.nren.asc()).all() + assert len(funding_sources) == 3 + assert funding_sources[0].nren == 'nren1' + assert funding_sources[0].client_institutions == 10 + assert funding_sources[0].european_funding == 50 + assert funding_sources[0].other == 40 + + assert funding_sources[1].nren == 'nren2' + assert funding_sources[1].client_institutions == 80 + assert funding_sources[1].european_funding == 20 + assert funding_sources[1].other == 0 + + assert funding_sources[2].nren == 'nren3' + assert funding_sources[2].client_institutions == 30 + assert funding_sources[2].european_funding == 30 + assert funding_sources[2].other == 30 diff --git a/test/test_survey_publisher_v1.py b/test/test_survey_publisher_v1.py new file mode 100644 index 0000000000000000000000000000000000000000..08461f1f9cd0f729a66e5ffefc7d9a60dc646dab --- /dev/null +++ b/test/test_survey_publisher_v1.py @@ -0,0 +1,22 @@ +import os + +from compendium_v2 import db +from compendium_v2.db import model +from compendium_v2.publishers.survey_publisher_v1 import _cli + +EXCEL_FILE = os.path.join( + os.path.dirname(__file__), "data", + "2021_Organisation_DataSeries.xlsx") + + +def test_publisher(client, mocker, dummy_config): + mocker.patch('compendium_v2.background_task.parse_excel_data.EXCEL_FILE', + EXCEL_FILE) + + _cli(dummy_config) + + with db.session_scope() as session: + budget_count = session.query(model.BudgetEntry.year).count() + assert budget_count + funding_source_count = session.query(model.FundingSource.year).count() + assert funding_source_count diff --git a/tox.ini b/tox.ini index f65e542a123a5817dfc59e150cab5e2d851a17f2..de6d0a45b913e909506bd784ca947e12bc849dee 100644 --- a/tox.ini +++ b/tox.ini @@ -15,7 +15,7 @@ commands = coverage run --source compendium_v2 -m pytest {posargs} coverage xml coverage html - coverage report --fail-under 40 + coverage report --fail-under 80 flake8 # Disable mypy in tox until build server supports python 3.9 # mypy compendium_v2/**/*.py test/*.py diff --git a/webapp/package-lock.json b/webapp/package-lock.json index a6b6bc54e568ee966109cd91166284c1ea80aee4..2ecf30fe121572a5113f04b855ef7f816ec185b0 100644 --- a/webapp/package-lock.json +++ b/webapp/package-lock.json @@ -20,6 +20,7 @@ "react-bootstrap": "^2.7.0", "react-chartjs-2": "^5.1.0", "react-dom": "^18.2.0", + "react-icons": "4.8.0", "react-router-dom": "^6.5.0" }, "devDependencies": { @@ -12475,6 +12476,14 @@ "react": "^18.2.0" } }, + "node_modules/react-icons": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.8.0.tgz", + "integrity": "sha512-N6+kOLcihDiAnj5Czu637waJqSnwlMNROzVZMhfX68V/9bu9qHaMIJC4UdozWoOk57gahFCNHwVvWzm0MTzRjg==", + "peerDependencies": { + "react": "*" + } + }, "node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", @@ -23726,6 +23735,12 @@ "scheduler": "^0.23.0" } }, + "react-icons": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.8.0.tgz", + "integrity": "sha512-N6+kOLcihDiAnj5Czu637waJqSnwlMNROzVZMhfX68V/9bu9qHaMIJC4UdozWoOk57gahFCNHwVvWzm0MTzRjg==", + "requires": {} + }, "react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", diff --git a/webapp/package.json b/webapp/package.json index af8176b74a9a239e03517aab95fb23df7dc2d330..857ea767e6d7cba5010c4a283b5da9fe9b61b0b3 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -53,6 +53,7 @@ "react-bootstrap": "^2.7.0", "react-chartjs-2": "^5.1.0", "react-dom": "^18.2.0", + "react-icons": "4.8.0", "react-router-dom": "^6.5.0" }, "description": "## development environment", diff --git a/webapp/src/Schema.tsx b/webapp/src/Schema.tsx index b66f038b990e75a90341f5fca516ec5629f8a061..380237d6ce31f4416eacc14800b58ed0daede75b 100644 --- a/webapp/src/Schema.tsx +++ b/webapp/src/Schema.tsx @@ -1,10 +1,3 @@ -export interface ServiceMatrix { - key: string, - nrens: Nren[], - services: Service[][] -} - - export interface Nren { name: string nren_id: number @@ -33,35 +26,31 @@ export interface Budget { id: number } -export interface FundingSource{ - CLIENT_INSTITUTIONS: string, - COMMERCIAL: string, - EUROPEAN_FUNDING: string, - GOV_PUBLIC_BODIES: string, +export interface FundingSource { + CLIENT_INSTITUTIONS: number, + COMMERCIAL: number, + EUROPEAN_FUNDING: number, + GOV_PUBLIC_BODIES: number, + OTHER: number, NREN: string, - OTHER: string, YEAR: number, id: number } -export interface FS{ - data: [FundingSource] -} - -export interface FundingGraphMatrix { +export interface FundingSourceDataset { - labels: string[], - datasets: { - label: string, - data: string[], - backgroundColor: string - borderRadius:number, - borderSkipped: boolean , - barPercentage:number, - borderWidth: number, - categoryPercentage:number - stack: string - }[] + labels: string[], + datasets: { + label: string, + data: number[], + backgroundColor: string + borderRadius: number, + borderSkipped: boolean, + barPercentage: number, + borderWidth: number, + categoryPercentage: number + stack: string + }[] } export interface DataEntrySection { diff --git a/webapp/src/components/CollapsibleBox.tsx b/webapp/src/components/CollapsibleBox.tsx index 52c45e478bf8ee7eb1ec1b542e65150d94ba29ce..890e531e889121c1d9160350c636d736dc2895cb 100644 --- a/webapp/src/components/CollapsibleBox.tsx +++ b/webapp/src/components/CollapsibleBox.tsx @@ -1,5 +1,6 @@ import React, { useState } from 'react'; import { Col, Row } from 'react-bootstrap'; +import { GrAdd, GrSubtract } from 'react-icons/gr'; interface CollapsibleBoxProps { title: string; @@ -16,9 +17,9 @@ const CollapsibleBox: React.FC<CollapsibleBoxProps> = ({ title, children }) => { <h1 className="bold-caps-16pt dark-teal">{title}</h1> </Col> <Col align="right"> - <button onClick={() => setIsCollapsed(!isCollapsed)}> - {isCollapsed ? 'Expand' : 'Collapse'} - </button> + <button className="expand-collapse-btn" onClick={() => setIsCollapsed(!isCollapsed)}> + {isCollapsed ? <GrAdd/> : <GrSubtract />} + </button> </Col> </Row> diff --git a/webapp/src/components/global/Banner.tsx b/webapp/src/components/global/Banner.tsx index 369d0b5f086c783497ce8efd053a68f0199c820b..3cfa8afb158de155ab80c145175583475ac85b4e 100644 --- a/webapp/src/components/global/Banner.tsx +++ b/webapp/src/components/global/Banner.tsx @@ -1,6 +1,6 @@ import React, { ReactElement } from "react"; import { Container, Row, Col } from "react-bootstrap"; -import SectionDataLogo from "../../images/section_data_large.png"; +import SectionDataLogo from "../../images/home_data_icon.svg"; interface inputProps { diff --git a/webapp/src/components/global/ExternalPageNavBar.tsx b/webapp/src/components/global/ExternalPageNavBar.tsx index f915aafab4d6d4827ef9115bf4e0687e34adaf2b..1e52bdc243709498f3f19fff0a15d184011ab679 100644 --- a/webapp/src/components/global/ExternalPageNavBar.tsx +++ b/webapp/src/components/global/ExternalPageNavBar.tsx @@ -17,17 +17,17 @@ function ExternalPageNavBar(): ReactElement { <Col> <img src={GeantLogo}/> <ul> - <li><a>NETWORK</a></li> - <li><a>SERVICES</a></li> - <li><a>COMMUNITY</a></li> - <li><a>TNC</a></li> - <li><a>PROJECTS</a></li> - <li><a>CONNECT</a></li> - <li><a>IMPACT</a></li> - <li><a>CAREERS</a></li> - <li><a>ABOUT</a></li> - <li><a>NEWS</a></li> - <li><a>RESOURCES</a></li> + <li><a href="https://network.geant.org/">NETWORK</a></li> + <li><a href="https://geant.org/services/">SERVICES</a></li> + <li><a href="https://community.geant.org/">COMMUNITY</a></li> + <li><a href="https://tnc23.geant.org/">TNC</a></li> + <li><a href="https://geant.org/projects/">PROJECTS</a></li> + <li><a href="https://connect.geant.org/">CONNECT</a></li> + <li><a href="https://impact.geant.org/">IMPACT</a></li> + <li><a href="https://careers.geant.org/">CAREERS</a></li> + <li><a href="https://about.geant.org/">ABOUT</a></li> + <li><a href="https://connect.geant.org/community-news">NEWS</a></li> + <li><a href="https://resources.geant.org/">RESOURCES</a></li> </ul> </Col> </Row> diff --git a/webapp/src/components/graphing/BarGraph.tsx b/webapp/src/components/graphing/BarGraph.tsx index 084a49fa4d79a53e60c7414cf161c00c1648b8eb..46689a075140149cbb89606f31da9490e7a585d1 100644 --- a/webapp/src/components/graphing/BarGraph.tsx +++ b/webapp/src/components/graphing/BarGraph.tsx @@ -1,6 +1,6 @@ -import React, {ReactElement} from 'react'; -import {Bar} from 'react-chartjs-2'; -import {DataSetProps} from './types'; +import React, { ReactElement } from 'react'; +import { Bar } from 'react-chartjs-2'; +import { DataSetProps } from './types'; import { @@ -25,7 +25,7 @@ ChartJS.register( function BarGraph(data: DataSetProps): ReactElement { return ( - <Bar data={data.data} options={{}}/> + <Bar data={data.data} options={{}} /> ); } diff --git a/webapp/src/components/graphing/LineGraph.tsx b/webapp/src/components/graphing/LineGraph.tsx index f865ccbf9284d7b1e4944676380a9836a071425d..4ef6dcd41921ad96fc020471773e5417ee1e5b13 100644 --- a/webapp/src/components/graphing/LineGraph.tsx +++ b/webapp/src/components/graphing/LineGraph.tsx @@ -1,10 +1,10 @@ -import React, {ReactElement} from 'react'; -import {Line} from 'react-chartjs-2'; -import {DataSetProps} from './types'; +import React, { ReactElement } from 'react'; +import { Line } from 'react-chartjs-2'; +import { DataSetProps } from './types'; import { - Chart as ChartJS, + Chart as ChartJS, CategoryScale, LinearScale, PointElement, @@ -38,9 +38,9 @@ const options = { }, }; function LineGraph(data: DataSetProps): ReactElement { - return ( - <Line data={data.data} options={options}/> - ); + return ( + <Line data={data.data} options={options} /> + ); } export default LineGraph; diff --git a/webapp/src/components/graphing/types.ts b/webapp/src/components/graphing/types.ts index 6ebb08f1be0a0fc55689111165f301214510848d..cd3c2cb123e8854146c6f8c286ead3881c676586 100644 --- a/webapp/src/components/graphing/types.ts +++ b/webapp/src/components/graphing/types.ts @@ -1,14 +1,13 @@ export type DatasetEntry = { - backgroundColor: string, - borderColor?: string, - data: (number|null)[], - label: string - -} + backgroundColor: string; + borderColor?: string; + data: (number | null)[]; + label: string; +}; export type DataSetProps = { data: { - datasets: DatasetEntry[], - labels: string[] - } -} + datasets: DatasetEntry[]; + labels: string[]; + }; +}; diff --git a/webapp/src/helpers/dataconversion.tsx b/webapp/src/helpers/dataconversion.tsx new file mode 100644 index 0000000000000000000000000000000000000000..a3bb36acbf80f48c191167a108155336f6d4695f --- /dev/null +++ b/webapp/src/helpers/dataconversion.tsx @@ -0,0 +1,102 @@ +import { cartesianProduct } from 'cartesian-product-multiple-arrays'; + +import { + FundingSource, + FundingSourceDataset +} from "../Schema"; + +const DEFAULT_FUNDING_SOURCE_DATA = [ + { + "CLIENT_INSTITUTIONS": "0.0", + "COMMERCIAL": "0.0", + "EUROPEAN_FUNDING": "0.0", + "GOV_PUBLIC_BODIES": "0.0", + "NREN": "", + "OTHER": "0.0", + "YEAR": 0, + "id": 0 + }] + +function getColorMap() { + const rgbToHex = (r: number, g: number, b: number) => '#' + [r, g, b].map(x => { + const hex = x.toString(16) + return hex.length === 1 ? '0' + hex : hex + }).join('') + + let colorMap = new Map<string, string>(); + colorMap.set("CLIENT INSTITUTIONS", rgbToHex(157, 40, 114)) + colorMap.set("COMMERCIAL", rgbToHex(241, 224, 79)) + colorMap.set("EUROPEAN FUNDING", rgbToHex(219, 42, 76)) + colorMap.set("GOV/PUBLIC_BODIES", rgbToHex(237, 141, 24)) + colorMap.set("OTHER", rgbToHex(137, 166, 121)) + return colorMap +} + +function CreateDataLookup(data: FundingSource[]) { + let dataLookup = new Map<string, Map<string, number>>(); + + data.forEach((item: FundingSource) => { + const lookupKey = `${item.NREN}/${item.YEAR}` + + let fundingSourceMap = dataLookup.get(lookupKey) + if (!fundingSourceMap) { + fundingSourceMap = new Map<string, number>(); + } + fundingSourceMap.set("CLIENT INSTITUTIONS", item.CLIENT_INSTITUTIONS) + fundingSourceMap.set("COMMERCIAL", item.COMMERCIAL) + fundingSourceMap.set("EUROPEAN FUNDING", item.EUROPEAN_FUNDING) + fundingSourceMap.set("GOV/PUBLIC_BODIES", item.GOV_PUBLIC_BODIES) + fundingSourceMap.set("OTHER", item.OTHER) + dataLookup.set(lookupKey, fundingSourceMap) + }) + return dataLookup +} + +export const createFundingSourceDataset = (fundingSourcesData: FundingSource[]) => { + const data = fundingSourcesData ?? DEFAULT_FUNDING_SOURCE_DATA; + const dataLookup = CreateDataLookup(data) + + const labelsYear = [...new Set(data.map((item: FundingSource) => item.YEAR))]; + const labelsNREN = [...new Set(data.map((item: FundingSource) => item.NREN))]; + const fundingSources = [ + "CLIENT INSTITUTIONS", + "COMMERCIAL", + "EUROPEAN FUNDING", + "GOV/PUBLIC_BODIES", + "OTHER" + ] + const fundingSourcesPerYear = cartesianProduct(fundingSources, labelsYear) + + const colorMap = getColorMap(); + const fundingSourceDataset = fundingSourcesPerYear.map(function ([fundingSource, year]) { + + const color = colorMap.get(fundingSource)!; + return { + backgroundColor: color, + label: fundingSource + "(" + year + ")", + data: labelsNREN.map(nren => { + // ensure that the data is in the same order as the labels + const lookupKey = `${nren}/${year}` + const dataForYear = dataLookup.get(lookupKey) + if (!dataForYear) { + return 0 + } + return dataForYear.get(fundingSource) ?? 0 + }), + stack: year, + borderRadius: 10, + borderSkipped: false, + barPercentage: 0.5, + borderWidth: 0.5, + categoryPercentage: 0.8 + + } + }) + + const dataResponse: FundingSourceDataset = { + // datasets: datasetFunding, + datasets: fundingSourceDataset, + labels: labelsNREN.map(l => l.toString()) + } + return dataResponse; +} \ No newline at end of file diff --git a/webapp/src/images/home_data_icon.svg b/webapp/src/images/home_data_icon.svg new file mode 100644 index 0000000000000000000000000000000000000000..ffc9ed1f0c93c3bc1eebc0c31992731725f55f66 --- /dev/null +++ b/webapp/src/images/home_data_icon.svg @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 27.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 207.17 207.08" style="enable-background:new 0 0 207.17 207.08;" xml:space="preserve"> +<style type="text/css"> + .st0{fill:#FFFFFF;stroke:#C5CAD1;stroke-miterlimit:10;} + .st1{fill:#BBBDBF;} + .st2{fill:#F69320;} +</style> +<g> + <path class="st0" d="M171.3,190.6H36.7c-10.11,0-18.39-8.27-18.39-18.39V37.62c0-10.11,8.27-18.39,18.39-18.39h134.6 + c10.11,0,18.39,8.27,18.39,18.39v134.6C189.69,182.33,181.41,190.6,171.3,190.6z"/> + <g> + <path class="st1" d="M103.91,133.71H93.13c-15.04,0-27.57-11.96-27.77-27c-0.2-15.28,12.13-27.72,27.36-27.72h11.03 + c1.35,0,2.45-1.09,2.45-2.45v-6.08c0-0.9-0.58-1.69-1.43-1.97c-0.54-0.18-1.09-0.35-1.65-0.5c-2.06-0.58-3.68-2.16-4.4-4.17 + l-0.93-2.62c-0.52-1.45-1.87-2.44-3.41-2.5c-0.69-0.03-1.39-0.05-2.09-0.05c-0.73,0-1.46,0.02-2.18,0.05 + c-1.49,0.07-2.79,1.01-3.29,2.41l-1.05,2.95c-0.68,1.92-2.26,3.36-4.22,3.91c-2.88,0.8-5.62,1.92-8.2,3.31 + c-2.22,1.2-4.88,1.27-7.16,0.18l-2.62-1.24c-0.96-0.45-2.1-0.3-2.89,0.41c-1.46,1.29-2.84,2.67-4.13,4.13 + c-0.7,0.79-0.86,1.93-0.41,2.89l1.37,2.89c1,2.11,0.96,4.57-0.17,6.62c-1.41,2.57-2.55,5.31-3.38,8.19 + c-0.62,2.18-2.3,3.9-4.44,4.66l-3.15,1.12c-0.98,0.35-1.65,1.24-1.72,2.28c-0.06,0.98-0.09,1.97-0.09,2.96 + c0,0.99,0.03,1.98,0.09,2.96c0.06,1.03,0.74,1.93,1.72,2.28l2.8,1c2.35,0.84,4.18,2.74,4.89,5.13c0.8,2.7,1.88,5.29,3.21,7.72 + c1.16,2.12,1.21,4.68,0.18,6.86l-1.13,2.39c-0.57,1.19-0.38,2.61,0.51,3.59c1.12,1.24,2.29,2.42,3.53,3.53 + c0.98,0.88,2.4,1.07,3.59,0.51l2.87-1.36c1.94-0.92,4.2-0.81,6.08,0.24c2.43,1.35,5.01,2.46,7.72,3.28 + c2.58,0.79,4.64,2.74,5.54,5.27l0.8,2.26c0.4,1.13,1.43,1.91,2.63,1.98c0.89,0.05,1.79,0.08,2.7,0.08c0.9,0,1.8-0.03,2.7-0.08 + c1.19-0.07,2.23-0.86,2.63-1.98l0.84-2.36c0.89-2.5,2.94-4.39,5.48-5.16c0.2-0.06,0.41-0.13,0.61-0.19 + c0.98-0.32,1.65-1.23,1.65-2.26V136C106.2,134.73,105.18,133.71,103.91,133.71z"/> + <g> + <path class="st2" d="M92.73,91.39h20.14c1.86,0,3.65-0.79,4.9-2.17l7.52-8.26c1.15,0.54,2.43,0.85,3.79,0.85 + c4.93,0,8.94-4.01,8.94-8.94c0-4.93-4.01-8.94-8.94-8.94c-4.93,0-8.94,4.01-8.94,8.94c0,1.78,0.53,3.43,1.42,4.82l-7.46,8.18 + c-0.32,0.35-0.77,0.55-1.24,0.55H92.73c-1.37,0-2.48,1.11-2.48,2.48S91.36,91.39,92.73,91.39z M129.09,68.9 + c2.2,0,3.98,1.79,3.98,3.98c0,2.2-1.79,3.98-3.98,3.98c-2.2,0-3.98-1.79-3.98-3.98C125.11,70.69,126.89,68.9,129.09,68.9z"/> + <path class="st2" d="M159.99,80.63c-4.19,0-7.7,2.9-8.67,6.79h-10.55c-2.09,0-4.09,0.78-5.63,2.19l-8.12,7.43 + c-0.67,0.62-1.55,0.96-2.46,0.96H92.73c-1.37,0-2.48,1.11-2.48,2.48c0,1.37,1.11,2.48,2.48,2.48h31.83c2.16,0,4.22-0.8,5.81-2.26 + l8.12-7.43c0.62-0.57,1.43-0.89,2.28-0.89h10.74c1.18,3.56,4.53,6.13,8.48,6.13c4.93,0,8.94-4.01,8.94-8.94 + C168.93,84.64,164.92,80.63,159.99,80.63z M159.99,93.56c-2.2,0-3.98-1.79-3.98-3.98c0-2.2,1.79-3.98,3.98-3.98 + c2.2,0,3.98,1.79,3.98,3.98C163.98,91.77,162.19,93.56,159.99,93.56z"/> + <path class="st2" d="M142.43,104.38c-4.07,0-7.51,2.74-8.58,6.46H92.4c-1.37,0-2.48,1.11-2.48,2.48c0,1.37,1.11,2.48,2.48,2.48 + h41.44c1.08,3.73,4.51,6.46,8.58,6.46c4.93,0,8.94-4.01,8.94-8.94C151.37,108.39,147.36,104.38,142.43,104.38z M142.43,117.3 + c-2.2,0-3.98-1.79-3.98-3.98c0-2.2,1.79-3.98,3.98-3.98c2.2,0,3.98,1.79,3.98,3.98C146.41,115.52,144.62,117.3,142.43,117.3z"/> + <path class="st2" d="M128.94,130.87c-1.47,0-2.86,0.36-4.08,1l-6.59-7.34c-1.56-1.73-3.78-2.73-6.11-2.73H92.73 + c-1.37,0-2.48,1.11-2.48,2.48s1.11,2.48,2.48,2.48h19.42c0.92,0,1.8,0.39,2.42,1.08l6.67,7.44c-0.79,1.33-1.25,2.88-1.25,4.54 + c0,4.93,4.01,8.94,8.94,8.94c4.93,0,8.94-4.01,8.94-8.94C137.88,134.88,133.87,130.87,128.94,130.87z M128.94,143.8 + c-2.2,0-3.98-1.79-3.98-3.98c0-2.2,1.79-3.98,3.98-3.98c2.2,0,3.98,1.79,3.98,3.98C132.92,142.01,131.13,143.8,128.94,143.8z"/> + </g> + </g> +</g> +</svg> diff --git a/webapp/src/images/home_reports_icon.svg b/webapp/src/images/home_reports_icon.svg new file mode 100644 index 0000000000000000000000000000000000000000..b6eb1074967ea724618ec96b4a65b0225df33594 --- /dev/null +++ b/webapp/src/images/home_reports_icon.svg @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Generator: Adobe Illustrator 27.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> +<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" + viewBox="0 0 207.17 207.08" style="enable-background:new 0 0 207.17 207.08;" xml:space="preserve"> +<style type="text/css"> + .st0{fill:#FFFFFF;stroke:#C5CAD1;stroke-miterlimit:10;} + .st1{fill:#00A79C;} + .st2{fill:#BBBDBF;} +</style> +<g> + <path class="st0" d="M171.94,189.03H33.75c-9.12,0-16.59-7.47-16.59-16.59V34.25c0-9.12,7.47-16.59,16.59-16.59h138.19 + c9.12,0,16.59,7.47,16.59,16.59v138.19C188.53,181.57,181.07,189.03,171.94,189.03z"/> + <g> + <g> + <g> + <path class="st1" d="M115.35,119.12c-8.38-8.38-8.38-22.01,0-30.39c8.38-8.38,22.01-8.38,30.39,0c8.38,8.38,8.38,22.01,0,30.39 + C137.36,127.5,123.73,127.5,115.35,119.12z M118.55,115.92c6.62,6.61,17.38,6.61,23.99,0c6.61-6.61,6.62-17.38,0-23.99 + c-6.61-6.62-17.38-6.62-23.99,0C111.94,98.54,111.94,109.3,118.55,115.92z"/> + </g> + <g> + <path class="st1" d="M148.09,121.47c1.15-1.15,2.19-2.36,3.14-3.63l15.79,15.79c1.91,1.92,1.91,5.02,0,6.93 + c-1.92,1.92-5.02,1.92-6.93,0l-15.81-15.81C145.61,123.77,146.89,122.68,148.09,121.47z"/> + </g> + <g> + <path class="st1" d="M120.95,103.07c0-2.31,0.9-4.47,2.53-6.1c1.43-1.43,3.33-2.32,5.34-2.49l-0.3-3.36 + c-2.8,0.25-5.44,1.48-7.43,3.47c-2.27,2.27-3.51,5.28-3.51,8.48H120.95z"/> + </g> + </g> + <g> + <path class="st2" d="M83.46,124.61c-1.11,0-2.01,0.91-2.01,2.01c0,1.11,0.91,2.01,2.01,2.01h32.76c0.19,0,0.38-0.04,0.55-0.09 + c-2.04-1.08-3.94-2.41-5.64-3.94H83.46z"/> + <path class="st2" d="M129.75,131.77c-0.48,0-0.95-0.01-1.43-0.04v11.15c0,3.57-2.9,6.47-6.47,6.47H63.06 + c-3.57,0-6.47-2.9-6.47-6.47V66.71c0-3.57,2.9-6.47,6.47-6.47h58.79c3.57,0,6.47,2.9,6.47,6.47v9.53 + c0.47-0.02,0.95-0.04,1.43-0.04c0.53,0,1.05,0.02,1.57,0.05v-9.55c0-5.22-4.25-9.47-9.47-9.47h-6.45l-0.24-1.1 + c-0.75-3.5-4.22-5.73-7.71-4.98l-4.67,1.01l-2.98-5.15c-1.55-2.68-4.98-3.6-7.66-2.05L70.63,57.24h-7.57 + c-3.73,0-6.95,2.17-8.5,5.31l-6.84,1.47c-3.5,0.75-5.73,4.21-4.98,7.71l0.34,1.57l-5.37,3.1c-2.68,1.55-3.6,4.98-2.05,7.66 + l15.52,26.88l2.41,11.18v20.76c0,5.22,4.25,9.47,9.47,9.47h58.79c5.22,0,9.47-4.25,9.47-9.47v-11.16 + C130.8,131.76,130.28,131.77,129.75,131.77z M108.09,54.1c1.88-0.4,3.74,0.8,4.14,2.68l0.1,0.47H92.73L108.09,54.1z M93.66,47.56 + c1.25-0.72,2.84-0.29,3.56,0.96l2.49,4.32l-20.44,4.41h-2.38L93.66,47.56z M38.26,82.56c-0.72-1.25-0.29-2.84,0.96-3.56 + l4.53-2.62l5.38,25L38.26,82.56z M53.59,66.71v42.11L45.68,71.1c-0.41-1.88,0.79-3.74,2.67-4.14l5.28-1.14 + C53.6,66.11,53.59,66.41,53.59,66.71z"/> + <path class="st2" d="M83.46,132.46c-1.11,0-2.01,0.91-2.01,2.01s0.91,2.01,2.01,2.01h32.76c1.11,0,2.01-0.91,2.01-2.01 + s-0.91-2.01-2.01-2.01H83.46z"/> + <path class="st2" d="M70.44,123.01c-4.24,0-7.68,3.45-7.68,7.68c0,4.24,3.45,7.68,7.68,7.68s7.68-3.45,7.68-7.68 + C78.12,126.46,74.68,123.01,70.44,123.01z M70.44,135.18c-2.47,0-4.48-2.01-4.48-4.48s2.01-4.48,4.48-4.48s4.48,2.01,4.48,4.48 + S72.91,135.18,70.44,135.18z"/> + <path class="st2" d="M81.45,100.27c0,1.11,0.91,2.01,2.01,2.01h18.57c0.08-1.37,0.26-2.72,0.54-4.03H83.46 + C82.35,98.25,81.45,99.16,81.45,100.27z"/> + <path class="st2" d="M70.44,71.16c-4.24,0-7.68,3.45-7.68,7.68c0,4.24,3.45,7.68,7.68,7.68s7.68-3.45,7.68-7.68 + C78.12,74.61,74.68,71.16,70.44,71.16z M70.44,83.33c-2.47,0-4.48-2.01-4.48-4.48s2.01-4.48,4.48-4.48s4.48,2.01,4.48,4.48 + S72.91,83.33,70.44,83.33z"/> + <path class="st2" d="M70.44,96.65c-4.24,0-7.68,3.45-7.68,7.68c0,4.24,3.45,7.68,7.68,7.68s7.68-3.45,7.68-7.68 + C78.12,100.1,74.68,96.65,70.44,96.65z M70.44,108.82c-2.47,0-4.48-2.01-4.48-4.48s2.01-4.48,4.48-4.48s4.48,2.01,4.48,4.48 + S72.91,108.82,70.44,108.82z"/> + <path class="st2" d="M81.45,108.12c0,1.11,0.91,2.01,2.01,2.01h19.2c-0.3-1.31-0.5-2.66-0.6-4.03h-18.6 + C82.35,106.1,81.45,107.01,81.45,108.12L81.45,108.12z"/> + <path class="st2" d="M83.46,76.79h32.76c1.11,0,2.01-0.91,2.01-2.01s-0.91-2.01-2.01-2.01H83.46c-1.11,0-2.01,0.91-2.01,2.01 + S82.35,76.79,83.46,76.79z"/> + <path class="st2" d="M81.45,82.62L81.45,82.62c0,1.11,0.91,2.01,2.01,2.01h26.37c1.48-1.52,3.14-2.88,4.93-4.03h-31.3 + C82.35,80.61,81.45,81.51,81.45,82.62z"/> + </g> + </g> +</g> +</svg> diff --git a/webapp/src/images/section_data_large.png b/webapp/src/images/section_data_large.png deleted file mode 100644 index 33db5101e4ebfa25ab2e7fbb9d6b41f361018a08..0000000000000000000000000000000000000000 Binary files a/webapp/src/images/section_data_large.png and /dev/null differ diff --git a/webapp/src/images/section_reports_large.png b/webapp/src/images/section_reports_large.png deleted file mode 100644 index a87845b5c8a4a7589c1d95ae6c3e64c26e68df9f..0000000000000000000000000000000000000000 Binary files a/webapp/src/images/section_reports_large.png and /dev/null differ diff --git a/webapp/src/main.scss b/webapp/src/main.scss index 00d814cb1e8623868e6c41b3837b6401196bccf0..59466dd751e0554ae078533013dafd9bb2b0ffd4 100644 --- a/webapp/src/main.scss +++ b/webapp/src/main.scss @@ -95,6 +95,8 @@ $footer-height: 75px !default; font-family: "Open Sans"; font-size: 14px; font-weight: 400; + text-decoration: none; + color: #b0cde1; } } } diff --git a/webapp/src/pages/About.tsx b/webapp/src/pages/About.tsx index 74182aa7ead34c22bce4cdb13ec536779faeabea..410aa4a51b0656df77b5e4d25e048a660b3a567f 100644 --- a/webapp/src/pages/About.tsx +++ b/webapp/src/pages/About.tsx @@ -1,4 +1,4 @@ -import React, {ReactElement} from 'react'; +import React, { ReactElement } from 'react'; // import AnnualReport from './AnnualReport'; // import DataAnalysis from './DataAnalysis'; // import Navigation from './Navigation'; @@ -13,7 +13,7 @@ function About(): ReactElement { return ( <div> - <h1>About Page</h1> + <h1>About Page</h1> </div> ); } diff --git a/webapp/src/pages/AnnualReport.tsx b/webapp/src/pages/AnnualReport.tsx index e4524b65ab5a9b499c7e7f1afe47fdbb3c2aa572..6e95251cadfb37345414a81521ea6da688df02cd 100644 --- a/webapp/src/pages/AnnualReport.tsx +++ b/webapp/src/pages/AnnualReport.tsx @@ -1,11 +1,11 @@ -import React, {ReactElement} from 'react'; +import React, { ReactElement } from 'react'; function AnnualReport(): ReactElement { return ( <div> - <h1>Annual Report</h1> + <h1>Annual Report</h1> </div> ); } diff --git a/webapp/src/pages/CompendiumData.tsx b/webapp/src/pages/CompendiumData.tsx index 59386bb59e92e41515f7b58000e45e37681506fa..84b425076fdf771b47c481590030f89ac0a1d4ec 100644 --- a/webapp/src/pages/CompendiumData.tsx +++ b/webapp/src/pages/CompendiumData.tsx @@ -13,82 +13,33 @@ function CompendiumData(): ReactElement { <SectionLink section={"Reports"} /> </PageHeader> <Banner type={'data'}> - <p> - What the Compendium is, the history of it, the aim, what you can find in it etc etc etc etc - Lorem ipsum dolor sit amet, consec tetur adi piscing elit, sed do eiusmod tempor inc dolor sit amet, consec - tetur adi piscing elit, sed do eiusmod tempor inc - </p> + <p className="wordwrap"> + The GÉANT Compendium provides an authoritative reference source for anyone with an + interest in the development of research and education networking in Europe and beyond. + Published since 2001, the Compendium provides information on key areas such as users, + services, traffic, budget and staffing. + </p> </Banner> + <Container className="geant-container"> <Row> <div className="center"> - + <CollapsibleBox title="ORGANISATION"> - <div className="collapsible-column"> <Row> <Link to="/analysis" state={{ graph: 'budget' }}> - <span>Length of NREN dark fibres leased by NRENs</span> + <span>Budget of NRENs per Year</span> </Link> </Row> <Row> <Link to="/funding" state={{ graph: 'fundingsources' }}> - <span>Length of dark fibres operated by NRENs outside their own countries</span> + <span>Income Source of NRENs per Year</span> </Link> </Row> - - <Row> - <span>Average duration of NREN's Indefensible Rights of use of dark fibre cables</span> - </Row> - <Row> - <span>Length of of dark fibre cables laid by the NREN in their network</span> - </Row> - </div> - <div className="collapsible-column"> - <Row> - <span>Length of NREN dark fibres leased by NRENs</span> - </Row> - - <Row> - <span>Length of dark fibres operated by NRENs outside their own countries</span> - </Row> - - <Row> - <span>Average duration of NREN's Indefensible Rights of use of dark fibre cables</span> - </Row> - <Row> - <span>Length of of dark fibre cables laid by the NREN in their network</span> - </Row> </div> </CollapsibleBox> - <Row> - <CollapsibleBox title="STANDARDS AND POLICES"> - - </CollapsibleBox> - </Row> - - - <Row> - <CollapsibleBox title="CONNECTED USERS"> - - </CollapsibleBox> - </Row> - - - <Row> - <CollapsibleBox title="NETWORK"> - - </CollapsibleBox> - </Row> - - - <Row> - <CollapsibleBox title="SERVICES"> - - </CollapsibleBox> - </Row> - </div> </Row> diff --git a/webapp/src/pages/DataAnalysis.tsx b/webapp/src/pages/DataAnalysis.tsx index cdea542b64d3fdd20f91ae5563488c9cf121fd28..204d5cf938199f448be7e1d1abede0a7b27a268b 100644 --- a/webapp/src/pages/DataAnalysis.tsx +++ b/webapp/src/pages/DataAnalysis.tsx @@ -62,7 +62,7 @@ function DataAnalysis(): ReactElement { useEffect(() => { const loadData = async () => { - console.log("budgetResponse "+ budgetResponse) + console.log("budgetResponse " + budgetResponse) if (budgetResponse == undefined) { api<Budget[]>('/api/budget/', {}) .then((budget: Budget[]) => { @@ -73,7 +73,7 @@ function DataAnalysis(): ReactElement { if (entry) options.plugins.title.text = entry.title; setBudget(budget) - console.log("budgetResponse after api "+ budgetResponse) + console.log("budgetResponse after api " + budgetResponse) convertToBudgetPerYearDataResponse(budget) }) .catch(error => { @@ -113,7 +113,7 @@ function DataAnalysis(): ReactElement { const convertToBudgetPerYearDataResponse = (budgetResponse: Budget[]) => { const barResponse = budgetResponse != undefined ? budgetResponse : empty_budget_response; - console.log("barResponse "+barResponse); + console.log("barResponse " + barResponse); console.log(barResponse.map((item) => item.BUDGET_YEAR)); const labelsYear = [...new Set(barResponse.map((item) => item.BUDGET_YEAR))]; const labelsNREN = [...new Set(barResponse.map((item) => item.NREN))]; diff --git a/webapp/src/pages/FundingSource.tsx b/webapp/src/pages/FundingSource.tsx index 1514cf6d46beb2f79dca9824fb66b0d5a40b9cab..cdc3db3282d835864b1cbab54c10b2c70efa7932 100644 --- a/webapp/src/pages/FundingSource.tsx +++ b/webapp/src/pages/FundingSource.tsx @@ -1,7 +1,6 @@ -import React, { ReactElement, useEffect, useState } from 'react'; -import { ChartOptions, scales, Tick } from 'chart.js'; +import React, { useEffect, useState } from 'react'; import { Bar } from 'react-chartjs-2'; -import { cartesianProduct } from 'cartesian-product-multiple-arrays'; +import { createFundingSourceDataset } from "../helpers/dataconversion"; import { Chart as ChartJS, @@ -13,14 +12,9 @@ import { Legend, } from 'chart.js'; import { - Budget, - BudgetMatrix, - DataEntrySection, FundingSource, - FS, FundingGraphMatrix + FundingSourceDataset } from "../Schema"; -// import _default from "chart.js/dist/plugins/plugin.tooltip"; -// import numbers = _default.defaults.animations.numbers; ChartJS.register( @@ -32,15 +26,34 @@ ChartJS.register( Legend ); -export const option = { +const EMPTY_DATASET = { + datasets: [ + { + backgroundColor: '', + data: [], + label: '', + borderRadius: 0, + borderSkipped: false, + barPercentage: 0, + borderWidth: 0, + stack: '0', + categoryPercentage: 0.5 + }], + labels: [] +} + +export const chartOptions = { + maintainAspectRatio: false, plugins: { legend: { + display: false, labels: { boxWidth: 20, boxHeight: 30, pointStyle: "rectRounded", borderRadius: 6, useBorderRadius: true, + }, }, }, @@ -60,209 +73,48 @@ export const option = { stacked: true, }, }, - indexAxis: 'y', + indexAxis: "y" as const }; - - - -function FundingSourcePage(): ReactElement { - function api<T>(url: string, options: RequestInit | undefined = undefined): Promise<T> { - return fetch(url, options) - .then((response) => { - if (!response.ok) { - return response.text().then((message) => { - console.error(`Failed to load datax: ${message}`, response.status); - throw new Error("The data could not be loaded, check the logs for details."); - }); - } - - return response.json() as Promise<T>; - }) +async function getData(): Promise<FundingSource[]> { + try { + const response = await fetch('/api/funding/'); + return response.json(); + } catch (error) { + console.error(`Failed to load data: ${error}`); + throw error; } +} - const [fundingMatrixResponse, setFundingMatrixResponse] = useState<FundingGraphMatrix>(); - const [fundingSourceResponse, setFundingSource] = useState<FundingSource[]>(); - const [dataEntrySection, setDataEntrySection] = useState<DataEntrySection>(); - const [selectedDataEntry, setSelectedDataEntry] = useState<number>(0); +function FundingSourcePage() { + const [fundingSourceDataset, setDataset] = useState<FundingSourceDataset>(); + const [fundingSourceData, setFundingSourceData] = useState<FundingSource[]>(); useEffect(() => { const loadData = async () => { - if (fundingSourceResponse == undefined) { - api<FS>('/api/funding/', {}) - .then((fundingSources: FS) => { - console.log('fundingSource:', fundingSources) - const entry = dataEntrySection?.items.find(i => i.id == selectedDataEntry) - console.log(selectedDataEntry, dataEntrySection, entry) - if (entry) - console.log("hello") - // options.plugins.title.text = entry.title; - setFundingSource(fundingSources.data) - convertToFundingSourcePerYearDataResponse(fundingSources.data) - }) - .catch(error => { - console.log(`Error fetching from API: ${error}`); - }) - } else { - convertToFundingSourcePerYearDataResponse(fundingSourceResponse) - } - + const _fundingData = await getData() + setFundingSourceData(_fundingData) } loadData() }, []) - const empty_funding_source_response = [ - { - "CLIENT_INSTITUTIONS": "0.0", - "COMMERCIAL": "0.0", - "EUROPEAN_FUNDING": "0.0", - "GOV_PUBLIC_BODIES": "0.0", - "NREN": "", - "OTHER": "0.0", - "YEAR": 0, - "id": 0 - }] - - const convertToFundingSourcePerYearDataResponse = (fundingSourcesResponse: FundingSource[]) => { - const fsResponse = fundingSourcesResponse != undefined ? fundingSourcesResponse : empty_funding_source_response; - const labelsYear = [...new Set(fsResponse.map((item: FundingSource) => item.YEAR))]; - const labelsNREN = [...new Set(fsResponse.map((item: FundingSource) => item.NREN))]; - const fundingComposition = [ - "CLIENT INSTITUTIONS", - "COMMERCIAL", - "EUROPEAN FUNDING", - "GOV/PUBLIC_BODIES", - "OTHER" - ] - const dataSetKey = cartesianProduct(fundingComposition, labelsYear) - console.log("Nrens : ", labelsNREN) - console.log("Years : ", labelsYear) - console.log(dataSetKey); - - function getRandomColor() { - const red = Math.floor(Math.random() * 256).toString(16).padStart(2, '0'); // generates a value between 00 and ff - const green = Math.floor(Math.random() * 256).toString(16).padStart(2, '0'); - const blue = Math.floor(Math.random() * 256).toString(16).padStart(2, '0'); - return `#${red}${green}${blue}`; - } - - const rgbToHex = (r: number, g: number, b: number) => '#' + [r, g, b].map(x => { - const hex = x.toString(16) - return hex.length === 1 ? '0' + hex : hex - }).join('') - - let colorMap = new Map<string, string>(); - colorMap.set("CLIENT INSTITUTIONS", rgbToHex(157, 40, 114)) - colorMap.set("COMMERCIAL", rgbToHex(241, 224, 79)) - colorMap.set("EUROPEAN FUNDING", rgbToHex(219, 42, 76)) - colorMap.set("GOV/PUBLIC_BODIES", rgbToHex(237, 141, 24)) - colorMap.set("OTHER", rgbToHex(137, 166, 121)) - - - const datasetFunding = dataSetKey.map(function (entry) { - - // const randomColor = getRandomColor(); - const color: string = colorMap.get(entry[0])!; - console.log(color) - return { - backgroundColor: color, - label: entry[0] + "(" + entry[1] + ")",//composition+year - data: labelsNREN.map(nren => dataPerCompositionPerYear(entry[1], nren, entry[0])), - stack: entry[1], - borderRadius: 10, - borderSkipped: false, - barPercentage: 0.5, - borderWidth: 0.5, - categoryPercentage: 0.8 - - } - }) - - function dataPerCompositionPerYear(year: number, nren: string, composition: string) { - let compValue = "" - fsResponse.find(function (entry, index) { - if (entry.YEAR == year && entry.NREN == nren) { - if (composition === "CLIENT INSTITUTIONS") - compValue = String(entry.CLIENT_INSTITUTIONS); - if (composition === "COMMERCIAL") - compValue = entry.COMMERCIAL; - if (composition === "EUROPEAN FUNDING") - compValue = entry.EUROPEAN_FUNDING; - if (composition === "GOV/PUBLIC_BODIES") - compValue = entry.GOV_PUBLIC_BODIES; - if (composition === "OTHER") - compValue = entry.OTHER; - } - }) - console.log(compValue) - return compValue; + useEffect(() => { + if (fundingSourceData != undefined) { + const dataset = createFundingSourceDataset(fundingSourceData); + setDataset(dataset); } - console.log(datasetFunding) + }, [fundingSourceData]) - const dataResponse: FundingGraphMatrix = { - // datasets: datasetFunding, - datasets: datasetFunding, - labels: labelsNREN.map(l => l.toString()) - } - setFundingMatrixResponse(dataResponse); - } - const empty_bar_response = { - datasets: [ - { - backgroundColor: '', - data: [], - label: '', - borderRadius: 0, - borderSkipped: false, - barPercentage: 0, - borderWidth: 0, - stack: '0', - categoryPercentage: 0.5 - }], - labels: [] - } - const fundingAPIResponse: FundingGraphMatrix = fundingMatrixResponse !== undefined - ? fundingMatrixResponse : empty_bar_response; + const dataset: FundingSourceDataset = fundingSourceDataset ?? EMPTY_DATASET; return ( <div className='center' > - <div className="chart-container" style={{ position: 'relative', height: '300vh', 'width': '80vw' }}> - <h1>Income Source</h1> - <Bar data={fundingAPIResponse} - //height={200} - options={{ - maintainAspectRatio: false, - plugins: { - legend: { - display: false, - labels: { - boxWidth: 20, - boxHeight: 30, - pointStyle: "rectRounded", - borderRadius: 6, - useBorderRadius: true, + <h1 >Funding Source</h1> - }, - }, - }, - scales: { - x: { - stacked: true, - ticks: { - callback: (value: string | number) => { - if (typeof value === 'number') { - return value.toFixed(2); - } - return value; - }, - }, - }, - y: { - stacked: true, - }, - }, - indexAxis: "y", - }} - ></Bar> + <div className="chart-container" style={{ 'minHeight': '100vh', 'width': '60vw', }}> + <Bar + data={dataset} + options={chartOptions} + /> </div> </div> diff --git a/webapp/src/pages/Landing.tsx b/webapp/src/pages/Landing.tsx index 29ddcd5cd08d056e938abb375ed87ef92dad282d..6525abf45122769f5b5aaa187e5c4d380d13cae8 100644 --- a/webapp/src/pages/Landing.tsx +++ b/webapp/src/pages/Landing.tsx @@ -1,8 +1,8 @@ import React, { ReactElement } from "react"; import { Link } from "react-router-dom"; import { Card, Container, Row, Col } from "react-bootstrap"; -import SectionDataLogo from "../images/section_data_large.png"; -import SectionReportsLogo from "../images/section_reports_large.png"; +import SectionDataLogo from "../images/home_data_icon.svg"; +import SectionReportsLogo from "../images/home_reports_icon.svg"; function Landing(): ReactElement { return ( @@ -12,11 +12,14 @@ function Landing(): ReactElement { <h1 className="geant-header">THE GÉANT COMPENDIUM OF NRENS</h1> <br /> <p className="wordwrap"> - What the Compendium is, the history of it, the aim, what you can - find in it etc etc etc etc - Lorem ipsum dolor sit amet, consec tetur - adi piscing elit, sed do eiusmod tempor inc dolor sit amet, consec - tetur adi piscing elit, sed do eiusmod tempor inc + The GÉANT Compendium provides an authoritative reference source for anyone with an + interest in the development of research and education networking in Europe and beyond. + Published since 2001, the Compendium provides information on key areas such as users, + services, traffic, budget and staffing. + </p> + <p className="wordwrap"> + This site captures the responses from the National Research and Education Networks + themselves. </p> </div> </Row> @@ -30,14 +33,13 @@ function Landing(): ReactElement { <Col align={"center"}> <Card border='light' style={{ width: "18rem" }}> - <Link to="/data"> - <Card.Img src={SectionDataLogo}/> + <Link to="/data" style={{textDecoration:"none"}}> + <Card.Img src={SectionDataLogo} /> <Card.Body> <Card.Title>Compendium Data</Card.Title> <Card.Text> - The results of the Compendium Surveys lled in annually by - NRENs. Questions cover many topics: Network, Connected - Users, Services, Standards & Policies + The results of the Compendium Surveys data given annually by + NRENs. Statical represetation of the data is available here. </Card.Text> </Card.Body> </Link> @@ -46,7 +48,8 @@ function Landing(): ReactElement { </Col> <Col align={"center"}> <Card border='light' style={{ width: "18rem" }}> - <Card.Img src={SectionReportsLogo}/> + <a href="https://resources.geant.org/geant-compendia/" style={{textDecoration:"none"}}> + <Card.Img src={SectionReportsLogo} /> <Card.Body> <Card.Title>Compendium Reports</Card.Title> <Card.Text> @@ -55,6 +58,7 @@ function Landing(): ReactElement { complemented by information from other surveys </Card.Text> </Card.Body> + </a> </Card> </Col> </Row> diff --git a/webapp/webpack.config.ts b/webapp/webpack.config.ts index 646e9cf6a7363e879760b127292d78c10f2af364..4658af21429cbfd95b202692531d8336ae075405 100644 --- a/webapp/webpack.config.ts +++ b/webapp/webpack.config.ts @@ -84,7 +84,7 @@ const config: Configuration = { // Allow SPA urls to work with dev-server historyApiFallback: true, proxy: { - "/api": "http://127.0.0.1:33333", + "/api": "http://127.0.0.1:5000", }, }, plugins: [