graphic = {
const text = await FileAttachment("bumpok-bg@1.svg").text();
const document = (new DOMParser).parseFromString(text, "image/svg+xml");
const svg = d3.select(document.documentElement).remove();
let clusters = svg.selectAll('#streams > g');
clusters.on('click', function(){
clusters.style('opacity',0.2);
let stream = d3.select(this)
stream.style('opacity',1)
});
svg.selectAll('#background').on('click', function(){
clusters.style('opacity',1);
});
return svg.node();
}