data = {
const links = await FileAttachment("sankeyS5Z5_2@3.csv").csv({typed: true});
const nodes = Array.from(new Set(links.flatMap(l => [l.source, l.target])), name => ({name, category: name.replace(/ .*/, "")}));
return {nodes, links, units: "éléments"};
}