Coverpoint for groups of address

Is there a quicker way to write these coverpoints

coverpoint addr {
bins group_0  = { [32'h08000 : 32'h0803F] };
bins group_1  = { [32'h08040 : 32'h0807F] };
bins group_2  = { [32'h08080 : 32'h080BF] };
// ...         
bins group_63 = { [32'h08FC0 : 32'h08FFF] };     }

Thank you

Is the same as

bins group[64] = { [32'h08000 : 32'h08FFF] };