adminUnitsGermany = {
return Object.entries(dataRequests).reduce(async (acc, [key, url]) => {
const response = await fetch(url);
const json = await response.json();
const status = response.status;
if (!status === "ok") console.log(status);
return { ...(await acc), [key]: json };
}, {});
}