draw_svg2 = {
const svg = d3.create("svg")
.attr("viewBox", [0, 0, W, W])
.style('background', '#fff')
.attr('width',W)
.attr('height',W)
const out = svg.append('g')
for(let i=0;i<6;i++){
form2(out, 140+s*i%(s*3)*1.3, i<3?s:s*3, 70, 4, i+2)
}
return svg.node()
}