Yup, you've got a load of errors there.
The "1" thing is not the only problem. You've missed out almost half the semi-colons ";" that you need in your conifg.
After lines like:
minRangeProbab=0.100000;
midRange=230
midRangeProbab=0.230000;
maxRange=460You
must have semi-colons (so OFP knows when one value ends and the other starts - otherwise OFP would read your midRange as "230midRangeProbab=0.230000;" which makes no sense)
So it would look like this:
minRangeProbab=0.100000;
midRange=230;
midRangeProbab=0.230000;
maxRange=460;Just do that throughout your config - then you can route out any other errors much more easily (if there are any)