awk -F^ ' NF != 64 { 
printf "%s",$0
sp=1
next
}
sp==1 { print ""; sp=0 }
{
	print
} ' Orders.csv
