paths = {
const text = await FileAttachment("emoji_u1f408_simplified.svg").text();
const document = new DOMParser().parseFromString(text, "image/svg+xml");
const svg = d3.select(document.documentElement).remove();
const points = [];
svg.selectAll("path").each(function() {
points.push(findPoints(this));
});
return points;
}