js/src/tests/ecma_3/Statements/regress-324650.js

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
michael@0 2 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 5
michael@0 6 //-----------------------------------------------------------------------------
michael@0 7 var BUGNUMBER = 324650;
michael@0 8 var summary = 'Switch Statement with many cases';
michael@0 9 var actual = 'No Hang';
michael@0 10 var expect = 'No Hang';
michael@0 11
michael@0 12 printBugNumber(BUGNUMBER);
michael@0 13 printStatus (summary);
michael@0 14
michael@0 15 var notevil = "z1";
michael@0 16 var notevil2 = "z2";
michael@0 17 var notevil3 = "z3";
michael@0 18 var dut = 7;
michael@0 19 var dut2 = 7;
michael@0 20 var dut3 = 7;
michael@0 21
michael@0 22 /* shouldn't be evil */
michael@0 23
michael@0 24 switch ( notevil ) {
michael@0 25 case "z1": dut = 2;
michael@0 26 break;
michael@0 27 case "z2":
michael@0 28 notevil = (notevil + 2)/2;
michael@0 29 break;
michael@0 30 case "z3":
michael@0 31 notevil = (notevil + 3)/2;
michael@0 32 break;
michael@0 33 case "z4":
michael@0 34 notevil = (notevil + 4)/2;
michael@0 35 break;
michael@0 36 case "z5":
michael@0 37 notevil = (notevil + 5)/2;
michael@0 38 break;
michael@0 39 case "z6":
michael@0 40 notevil = (notevil + 6)/2;
michael@0 41 break;
michael@0 42 case "z7":
michael@0 43 notevil = (notevil + 7)/2;
michael@0 44 break;
michael@0 45 case "z8":
michael@0 46 notevil = (notevil + 8)/2;
michael@0 47 break;
michael@0 48 case "z9":
michael@0 49 notevil = (notevil + 9)/2;
michael@0 50 break;
michael@0 51 case "z10":
michael@0 52 notevil = (notevil + 10)/2;
michael@0 53 break;
michael@0 54 case "z11":
michael@0 55 notevil = (notevil + 11)/2;
michael@0 56 break;
michael@0 57 case "z12":
michael@0 58 notevil = (notevil + 12)/2;
michael@0 59 break;
michael@0 60 case "z13":
michael@0 61 notevil = (notevil + 13)/2;
michael@0 62 break;
michael@0 63 case "z14":
michael@0 64 notevil = (notevil + 14)/2;
michael@0 65 break;
michael@0 66 case "z15":
michael@0 67 notevil = (notevil + 15)/2;
michael@0 68 break;
michael@0 69 case "z16":
michael@0 70 notevil = (notevil + 16)/2;
michael@0 71 break;
michael@0 72 case "z17":
michael@0 73 notevil = (notevil + 17)/2;
michael@0 74 break;
michael@0 75 case "z18":
michael@0 76 notevil = (notevil + 18)/2;
michael@0 77 break;
michael@0 78 case "z19":
michael@0 79 notevil = (notevil + 19)/2;
michael@0 80 break;
michael@0 81 case "z20":
michael@0 82 notevil = (notevil + 20)/2;
michael@0 83 break;
michael@0 84 case "z21":
michael@0 85 notevil = (notevil + 21)/2;
michael@0 86 break;
michael@0 87 case "z22":
michael@0 88 notevil = (notevil + 22)/2;
michael@0 89 break;
michael@0 90 case "z23":
michael@0 91 notevil = (notevil + 23)/2;
michael@0 92 break;
michael@0 93 case "z24":
michael@0 94 notevil = (notevil + 24)/2;
michael@0 95 break;
michael@0 96 case "z25":
michael@0 97 notevil = (notevil + 25)/2;
michael@0 98 break;
michael@0 99 case "z26":
michael@0 100 notevil = (notevil + 26)/2;
michael@0 101 break;
michael@0 102 case "z27":
michael@0 103 notevil = (notevil + 27)/2;
michael@0 104 break;
michael@0 105 case "z28":
michael@0 106 notevil = (notevil + 28)/2;
michael@0 107 break;
michael@0 108 case "z29":
michael@0 109 notevil = (notevil + 29)/2;
michael@0 110 break;
michael@0 111 case "z30":
michael@0 112 notevil = (notevil + 30)/2;
michael@0 113 break;
michael@0 114 case "z31":
michael@0 115 notevil = (notevil + 31)/2;
michael@0 116 break;
michael@0 117 case "z32":
michael@0 118 notevil = (notevil + 32)/2;
michael@0 119 break;
michael@0 120 case "z33":
michael@0 121 notevil = (notevil + 33)/2;
michael@0 122 break;
michael@0 123 case "z34":
michael@0 124 notevil = (notevil + 34)/2;
michael@0 125 break;
michael@0 126 case "z35":
michael@0 127 notevil = (notevil + 35)/2;
michael@0 128 break;
michael@0 129 case "z36":
michael@0 130 notevil = (notevil + 36)/2;
michael@0 131 break;
michael@0 132 case "z37":
michael@0 133 notevil = (notevil + 37)/2;
michael@0 134 break;
michael@0 135 case "z38":
michael@0 136 notevil = (notevil + 38)/2;
michael@0 137 break;
michael@0 138 case "z39":
michael@0 139 notevil = (notevil + 39)/2;
michael@0 140 break;
michael@0 141 case "z40":
michael@0 142 notevil = (notevil + 40)/2;
michael@0 143 break;
michael@0 144 case "z41":
michael@0 145 notevil = (notevil + 41)/2;
michael@0 146 break;
michael@0 147 case "z42":
michael@0 148 notevil = (notevil + 42)/2;
michael@0 149 break;
michael@0 150 case "z43":
michael@0 151 notevil = (notevil + 43)/2;
michael@0 152 break;
michael@0 153 case "z44":
michael@0 154 notevil = (notevil + 44)/2;
michael@0 155 break;
michael@0 156 case "z45":
michael@0 157 notevil = (notevil + 45)/2;
michael@0 158 break;
michael@0 159 case "z46":
michael@0 160 notevil = (notevil + 46)/2;
michael@0 161 break;
michael@0 162 case "z47":
michael@0 163 notevil = (notevil + 47)/2;
michael@0 164 break;
michael@0 165 case "z48":
michael@0 166 notevil = (notevil + 48)/2;
michael@0 167 break;
michael@0 168 case "z49":
michael@0 169 notevil = (notevil + 49)/2;
michael@0 170 break;
michael@0 171 case "z50":
michael@0 172 notevil = (notevil + 50)/2;
michael@0 173 break;
michael@0 174 case "z51":
michael@0 175 notevil = (notevil + 51)/2;
michael@0 176 break;
michael@0 177 case "z52":
michael@0 178 notevil = (notevil + 52)/2;
michael@0 179 break;
michael@0 180 case "z53":
michael@0 181 notevil = (notevil + 53)/2;
michael@0 182 break;
michael@0 183 case "z54":
michael@0 184 notevil = (notevil + 54)/2;
michael@0 185 break;
michael@0 186 case "z55":
michael@0 187 notevil = (notevil + 55)/2;
michael@0 188 break;
michael@0 189 case "z56":
michael@0 190 notevil = (notevil + 56)/2;
michael@0 191 break;
michael@0 192 case "z57":
michael@0 193 notevil = (notevil + 57)/2;
michael@0 194 break;
michael@0 195 case "z58":
michael@0 196 notevil = (notevil + 58)/2;
michael@0 197 break;
michael@0 198 case "z59":
michael@0 199 notevil = (notevil + 59)/2;
michael@0 200 break;
michael@0 201 case "z60":
michael@0 202 notevil = (notevil + 60)/2;
michael@0 203 break;
michael@0 204 case "z61":
michael@0 205 notevil = (notevil + 61)/2;
michael@0 206 break;
michael@0 207 case "z62":
michael@0 208 notevil = (notevil + 62)/2;
michael@0 209 break;
michael@0 210 case "z63":
michael@0 211 notevil = (notevil + 63)/2;
michael@0 212 break;
michael@0 213 case "z64":
michael@0 214 notevil = (notevil + 64)/2;
michael@0 215 break;
michael@0 216 case "z65":
michael@0 217 notevil = (notevil + 65)/2;
michael@0 218 break;
michael@0 219 case "z66":
michael@0 220 notevil = (notevil + 66)/2;
michael@0 221 break;
michael@0 222 case "z67":
michael@0 223 notevil = (notevil + 67)/2;
michael@0 224 break;
michael@0 225 case "z68":
michael@0 226 notevil = (notevil + 68)/2;
michael@0 227 break;
michael@0 228 case "z69":
michael@0 229 notevil = (notevil + 69)/2;
michael@0 230 break;
michael@0 231 case "z70":
michael@0 232 notevil = (notevil + 70)/2;
michael@0 233 break;
michael@0 234 case "z71":
michael@0 235 notevil = (notevil + 71)/2;
michael@0 236 break;
michael@0 237 case "z72":
michael@0 238 notevil = (notevil + 72)/2;
michael@0 239 break;
michael@0 240 case "z73":
michael@0 241 notevil = (notevil + 73)/2;
michael@0 242 break;
michael@0 243 case "z74":
michael@0 244 notevil = (notevil + 74)/2;
michael@0 245 break;
michael@0 246 case "z75":
michael@0 247 notevil = (notevil + 75)/2;
michael@0 248 break;
michael@0 249 case "z76":
michael@0 250 notevil = (notevil + 76)/2;
michael@0 251 break;
michael@0 252 case "z77":
michael@0 253 notevil = (notevil + 77)/2;
michael@0 254 break;
michael@0 255 case "z78":
michael@0 256 notevil = (notevil + 78)/2;
michael@0 257 break;
michael@0 258 case "z79":
michael@0 259 notevil = (notevil + 79)/2;
michael@0 260 break;
michael@0 261 case "z80":
michael@0 262 notevil = (notevil + 80)/2;
michael@0 263 break;
michael@0 264 case "z81":
michael@0 265 notevil = (notevil + 81)/2;
michael@0 266 break;
michael@0 267 case "z82":
michael@0 268 notevil = (notevil + 82)/2;
michael@0 269 break;
michael@0 270 case "z83":
michael@0 271 notevil = (notevil + 83)/2;
michael@0 272 break;
michael@0 273 case "z84":
michael@0 274 notevil = (notevil + 84)/2;
michael@0 275 break;
michael@0 276 case "z85":
michael@0 277 notevil = (notevil + 85)/2;
michael@0 278 break;
michael@0 279 case "z86":
michael@0 280 notevil = (notevil + 86)/2;
michael@0 281 break;
michael@0 282 case "z87":
michael@0 283 notevil = (notevil + 87)/2;
michael@0 284 break;
michael@0 285 case "z88":
michael@0 286 notevil = (notevil + 88)/2;
michael@0 287 break;
michael@0 288 case "z89":
michael@0 289 notevil = (notevil + 89)/2;
michael@0 290 break;
michael@0 291 case "z90":
michael@0 292 notevil = (notevil + 90)/2;
michael@0 293 break;
michael@0 294 case "z91":
michael@0 295 notevil = (notevil + 91)/2;
michael@0 296 break;
michael@0 297 case "z92":
michael@0 298 notevil = (notevil + 92)/2;
michael@0 299 break;
michael@0 300 case "z93":
michael@0 301 notevil = (notevil + 93)/2;
michael@0 302 break;
michael@0 303 case "z94":
michael@0 304 notevil = (notevil + 94)/2;
michael@0 305 break;
michael@0 306 case "z95":
michael@0 307 notevil = (notevil + 95)/2;
michael@0 308 break;
michael@0 309 case "z96":
michael@0 310 notevil = (notevil + 96)/2;
michael@0 311 break;
michael@0 312 case "z97":
michael@0 313 notevil = (notevil + 97)/2;
michael@0 314 break;
michael@0 315 case "z98":
michael@0 316 notevil = (notevil + 98)/2;
michael@0 317 break;
michael@0 318 case "z99":
michael@0 319 notevil = (notevil + 99)/2;
michael@0 320 break;
michael@0 321 case "z100":
michael@0 322 notevil = (notevil + 100)/2;
michael@0 323 break;
michael@0 324 case "z101":
michael@0 325 notevil = (notevil + 101)/2;
michael@0 326 break;
michael@0 327 case "z102":
michael@0 328 notevil = (notevil + 102)/2;
michael@0 329 break;
michael@0 330 case "z103":
michael@0 331 notevil = (notevil + 103)/2;
michael@0 332 break;
michael@0 333 case "z104":
michael@0 334 notevil = (notevil + 104)/2;
michael@0 335 break;
michael@0 336 case "z105":
michael@0 337 notevil = (notevil + 105)/2;
michael@0 338 break;
michael@0 339 case "z106":
michael@0 340 notevil = (notevil + 106)/2;
michael@0 341 break;
michael@0 342 case "z107":
michael@0 343 notevil = (notevil + 107)/2;
michael@0 344 break;
michael@0 345 case "z108":
michael@0 346 notevil = (notevil + 108)/2;
michael@0 347 break;
michael@0 348 case "z109":
michael@0 349 notevil = (notevil + 109)/2;
michael@0 350 break;
michael@0 351 case "z110":
michael@0 352 notevil = (notevil + 110)/2;
michael@0 353 break;
michael@0 354 case "z111":
michael@0 355 notevil = (notevil + 111)/2;
michael@0 356 break;
michael@0 357 case "z112":
michael@0 358 notevil = (notevil + 112)/2;
michael@0 359 break;
michael@0 360 case "z113":
michael@0 361 notevil = (notevil + 113)/2;
michael@0 362 break;
michael@0 363 case "z114":
michael@0 364 notevil = (notevil + 114)/2;
michael@0 365 break;
michael@0 366 case "z115":
michael@0 367 notevil = (notevil + 115)/2;
michael@0 368 break;
michael@0 369 case "z116":
michael@0 370 notevil = (notevil + 116)/2;
michael@0 371 break;
michael@0 372 case "z117":
michael@0 373 notevil = (notevil + 117)/2;
michael@0 374 break;
michael@0 375 case "z118":
michael@0 376 notevil = (notevil + 118)/2;
michael@0 377 break;
michael@0 378 case "z119":
michael@0 379 notevil = (notevil + 119)/2;
michael@0 380 break;
michael@0 381 case "z120":
michael@0 382 notevil = (notevil + 120)/2;
michael@0 383 break;
michael@0 384 case "z121":
michael@0 385 notevil = (notevil + 121)/2;
michael@0 386 break;
michael@0 387 case "z122":
michael@0 388 notevil = (notevil + 122)/2;
michael@0 389 break;
michael@0 390 case "z123":
michael@0 391 notevil = (notevil + 123)/2;
michael@0 392 break;
michael@0 393 case "z124":
michael@0 394 notevil = (notevil + 124)/2;
michael@0 395 break;
michael@0 396 case "z125":
michael@0 397 notevil = (notevil + 125)/2;
michael@0 398 break;
michael@0 399 case "z126":
michael@0 400 notevil = (notevil + 126)/2;
michael@0 401 break;
michael@0 402 case "z127":
michael@0 403 notevil = (notevil + 127)/2;
michael@0 404 break;
michael@0 405 case "z128":
michael@0 406 notevil = (notevil + 128)/2;
michael@0 407 break;
michael@0 408 case "z129":
michael@0 409 notevil = (notevil + 129)/2;
michael@0 410 break;
michael@0 411 case "z130":
michael@0 412 notevil = (notevil + 130)/2;
michael@0 413 break;
michael@0 414 case "z131":
michael@0 415 notevil = (notevil + 131)/2;
michael@0 416 break;
michael@0 417 case "z132":
michael@0 418 notevil = (notevil + 132)/2;
michael@0 419 break;
michael@0 420 case "z133":
michael@0 421 notevil = (notevil + 133)/2;
michael@0 422 break;
michael@0 423 case "z134":
michael@0 424 notevil = (notevil + 134)/2;
michael@0 425 break;
michael@0 426 case "z135":
michael@0 427 notevil = (notevil + 135)/2;
michael@0 428 break;
michael@0 429 case "z136":
michael@0 430 notevil = (notevil + 136)/2;
michael@0 431 break;
michael@0 432 case "z137":
michael@0 433 notevil = (notevil + 137)/2;
michael@0 434 break;
michael@0 435 case "z138":
michael@0 436 notevil = (notevil + 138)/2;
michael@0 437 break;
michael@0 438 case "z139":
michael@0 439 notevil = (notevil + 139)/2;
michael@0 440 break;
michael@0 441 case "z140":
michael@0 442 notevil = (notevil + 140)/2;
michael@0 443 break;
michael@0 444 case "z141":
michael@0 445 notevil = (notevil + 141)/2;
michael@0 446 break;
michael@0 447 case "z142":
michael@0 448 notevil = (notevil + 142)/2;
michael@0 449 break;
michael@0 450 case "z143":
michael@0 451 notevil = (notevil + 143)/2;
michael@0 452 break;
michael@0 453 case "z144":
michael@0 454 notevil = (notevil + 144)/2;
michael@0 455 break;
michael@0 456 case "z145":
michael@0 457 notevil = (notevil + 145)/2;
michael@0 458 break;
michael@0 459 case "z146":
michael@0 460 notevil = (notevil + 146)/2;
michael@0 461 break;
michael@0 462 case "z147":
michael@0 463 notevil = (notevil + 147)/2;
michael@0 464 break;
michael@0 465 case "z148":
michael@0 466 notevil = (notevil + 148)/2;
michael@0 467 break;
michael@0 468 case "z149":
michael@0 469 notevil = (notevil + 149)/2;
michael@0 470 break;
michael@0 471 case "z150":
michael@0 472 notevil = (notevil + 150)/2;
michael@0 473 break;
michael@0 474 case "z151":
michael@0 475 notevil = (notevil + 151)/2;
michael@0 476 break;
michael@0 477 case "z152":
michael@0 478 notevil = (notevil + 152)/2;
michael@0 479 break;
michael@0 480 case "z153":
michael@0 481 notevil = (notevil + 153)/2;
michael@0 482 break;
michael@0 483 case "z154":
michael@0 484 notevil = (notevil + 154)/2;
michael@0 485 break;
michael@0 486 case "z155":
michael@0 487 notevil = (notevil + 155)/2;
michael@0 488 break;
michael@0 489 case "z156":
michael@0 490 notevil = (notevil + 156)/2;
michael@0 491 break;
michael@0 492 case "z157":
michael@0 493 notevil = (notevil + 157)/2;
michael@0 494 break;
michael@0 495 case "z158":
michael@0 496 notevil = (notevil + 158)/2;
michael@0 497 break;
michael@0 498 case "z159":
michael@0 499 notevil = (notevil + 159)/2;
michael@0 500 break;
michael@0 501 case "z160":
michael@0 502 notevil = (notevil + 160)/2;
michael@0 503 break;
michael@0 504 case "z161":
michael@0 505 notevil = (notevil + 161)/2;
michael@0 506 break;
michael@0 507 case "z162":
michael@0 508 notevil = (notevil + 162)/2;
michael@0 509 break;
michael@0 510 case "z163":
michael@0 511 notevil = (notevil + 163)/2;
michael@0 512 break;
michael@0 513 case "z164":
michael@0 514 notevil = (notevil + 164)/2;
michael@0 515 break;
michael@0 516 case "z165":
michael@0 517 notevil = (notevil + 165)/2;
michael@0 518 break;
michael@0 519 case "z166":
michael@0 520 notevil = (notevil + 166)/2;
michael@0 521 break;
michael@0 522 case "z167":
michael@0 523 notevil = (notevil + 167)/2;
michael@0 524 break;
michael@0 525 case "z168":
michael@0 526 notevil = (notevil + 168)/2;
michael@0 527 break;
michael@0 528 case "z169":
michael@0 529 notevil = (notevil + 169)/2;
michael@0 530 break;
michael@0 531 case "z170":
michael@0 532 notevil = (notevil + 170)/2;
michael@0 533 break;
michael@0 534 case "z171":
michael@0 535 notevil = (notevil + 171)/2;
michael@0 536 break;
michael@0 537 case "z172":
michael@0 538 notevil = (notevil + 172)/2;
michael@0 539 break;
michael@0 540 case "z173":
michael@0 541 notevil = (notevil + 173)/2;
michael@0 542 break;
michael@0 543 case "z174":
michael@0 544 notevil = (notevil + 174)/2;
michael@0 545 break;
michael@0 546 case "z175":
michael@0 547 notevil = (notevil + 175)/2;
michael@0 548 break;
michael@0 549 case "z176":
michael@0 550 notevil = (notevil + 176)/2;
michael@0 551 break;
michael@0 552 case "z177":
michael@0 553 notevil = (notevil + 177)/2;
michael@0 554 break;
michael@0 555 case "z178":
michael@0 556 notevil = (notevil + 178)/2;
michael@0 557 break;
michael@0 558 case "z179":
michael@0 559 notevil = (notevil + 179)/2;
michael@0 560 break;
michael@0 561 case "z180":
michael@0 562 notevil = (notevil + 180)/2;
michael@0 563 break;
michael@0 564 case "z181":
michael@0 565 notevil = (notevil + 181)/2;
michael@0 566 break;
michael@0 567 case "z182":
michael@0 568 notevil = (notevil + 182)/2;
michael@0 569 break;
michael@0 570 case "z183":
michael@0 571 notevil = (notevil + 183)/2;
michael@0 572 break;
michael@0 573 case "z184":
michael@0 574 notevil = (notevil + 184)/2;
michael@0 575 break;
michael@0 576 case "z185":
michael@0 577 notevil = (notevil + 185)/2;
michael@0 578 break;
michael@0 579 case "z186":
michael@0 580 notevil = (notevil + 186)/2;
michael@0 581 break;
michael@0 582 case "z187":
michael@0 583 notevil = (notevil + 187)/2;
michael@0 584 break;
michael@0 585 case "z188":
michael@0 586 notevil = (notevil + 188)/2;
michael@0 587 break;
michael@0 588 case "z189":
michael@0 589 notevil = (notevil + 189)/2;
michael@0 590 break;
michael@0 591 case "z190":
michael@0 592 notevil = (notevil + 190)/2;
michael@0 593 break;
michael@0 594 case "z191":
michael@0 595 notevil = (notevil + 191)/2;
michael@0 596 break;
michael@0 597 case "z192":
michael@0 598 notevil = (notevil + 192)/2;
michael@0 599 break;
michael@0 600 case "z193":
michael@0 601 notevil = (notevil + 193)/2;
michael@0 602 break;
michael@0 603 case "z194":
michael@0 604 notevil = (notevil + 194)/2;
michael@0 605 break;
michael@0 606 case "z195":
michael@0 607 notevil = (notevil + 195)/2;
michael@0 608 break;
michael@0 609 case "z196":
michael@0 610 notevil = (notevil + 196)/2;
michael@0 611 break;
michael@0 612 case "z197":
michael@0 613 notevil = (notevil + 197)/2;
michael@0 614 break;
michael@0 615 case "z198":
michael@0 616 notevil = (notevil + 198)/2;
michael@0 617 break;
michael@0 618 case "z199":
michael@0 619 notevil = (notevil + 199)/2;
michael@0 620 break;
michael@0 621 case "z200":
michael@0 622 notevil = (notevil + 200)/2;
michael@0 623 break;
michael@0 624 case "z201":
michael@0 625 notevil = (notevil + 201)/2;
michael@0 626 break;
michael@0 627 case "z202":
michael@0 628 notevil = (notevil + 202)/2;
michael@0 629 break;
michael@0 630 case "z203":
michael@0 631 notevil = (notevil + 203)/2;
michael@0 632 break;
michael@0 633 case "z204":
michael@0 634 notevil = (notevil + 204)/2;
michael@0 635 break;
michael@0 636 case "z205":
michael@0 637 notevil = (notevil + 205)/2;
michael@0 638 break;
michael@0 639 case "z206":
michael@0 640 notevil = (notevil + 206)/2;
michael@0 641 break;
michael@0 642 case "z207":
michael@0 643 notevil = (notevil + 207)/2;
michael@0 644 break;
michael@0 645 case "z208":
michael@0 646 notevil = (notevil + 208)/2;
michael@0 647 break;
michael@0 648 case "z209":
michael@0 649 notevil = (notevil + 209)/2;
michael@0 650 break;
michael@0 651 case "z210":
michael@0 652 notevil = (notevil + 210)/2;
michael@0 653 break;
michael@0 654 case "z211":
michael@0 655 notevil = (notevil + 211)/2;
michael@0 656 break;
michael@0 657 case "z212":
michael@0 658 notevil = (notevil + 212)/2;
michael@0 659 break;
michael@0 660 case "z213":
michael@0 661 notevil = (notevil + 213)/2;
michael@0 662 break;
michael@0 663 case "z214":
michael@0 664 notevil = (notevil + 214)/2;
michael@0 665 break;
michael@0 666 case "z215":
michael@0 667 notevil = (notevil + 215)/2;
michael@0 668 break;
michael@0 669 case "z216":
michael@0 670 notevil = (notevil + 216)/2;
michael@0 671 break;
michael@0 672 case "z217":
michael@0 673 notevil = (notevil + 217)/2;
michael@0 674 break;
michael@0 675 case "z218":
michael@0 676 notevil = (notevil + 218)/2;
michael@0 677 break;
michael@0 678 case "z219":
michael@0 679 notevil = (notevil + 219)/2;
michael@0 680 break;
michael@0 681 case "z220":
michael@0 682 notevil = (notevil + 220)/2;
michael@0 683 break;
michael@0 684 case "z221":
michael@0 685 notevil = (notevil + 221)/2;
michael@0 686 break;
michael@0 687 case "z222":
michael@0 688 notevil = (notevil + 222)/2;
michael@0 689 break;
michael@0 690 case "z223":
michael@0 691 notevil = (notevil + 223)/2;
michael@0 692 break;
michael@0 693 case "z224":
michael@0 694 notevil = (notevil + 224)/2;
michael@0 695 break;
michael@0 696 case "z225":
michael@0 697 notevil = (notevil + 225)/2;
michael@0 698 break;
michael@0 699 case "z226":
michael@0 700 notevil = (notevil + 226)/2;
michael@0 701 break;
michael@0 702 case "z227":
michael@0 703 notevil = (notevil + 227)/2;
michael@0 704 break;
michael@0 705 case "z228":
michael@0 706 notevil = (notevil + 228)/2;
michael@0 707 break;
michael@0 708 case "z229":
michael@0 709 notevil = (notevil + 229)/2;
michael@0 710 break;
michael@0 711 case "z230":
michael@0 712 notevil = (notevil + 230)/2;
michael@0 713 break;
michael@0 714 case "z231":
michael@0 715 notevil = (notevil + 231)/2;
michael@0 716 break;
michael@0 717 case "z232":
michael@0 718 notevil = (notevil + 232)/2;
michael@0 719 break;
michael@0 720 case "z233":
michael@0 721 notevil = (notevil + 233)/2;
michael@0 722 break;
michael@0 723 case "z234":
michael@0 724 notevil = (notevil + 234)/2;
michael@0 725 break;
michael@0 726 case "z235":
michael@0 727 notevil = (notevil + 235)/2;
michael@0 728 break;
michael@0 729 case "z236":
michael@0 730 notevil = (notevil + 236)/2;
michael@0 731 break;
michael@0 732 case "z237":
michael@0 733 notevil = (notevil + 237)/2;
michael@0 734 break;
michael@0 735 case "z238":
michael@0 736 notevil = (notevil + 238)/2;
michael@0 737 break;
michael@0 738 case "z239":
michael@0 739 notevil = (notevil + 239)/2;
michael@0 740 break;
michael@0 741 case "z240":
michael@0 742 notevil = (notevil + 240)/2;
michael@0 743 break;
michael@0 744 case "z241":
michael@0 745 notevil = (notevil + 241)/2;
michael@0 746 break;
michael@0 747 case "z242":
michael@0 748 notevil = (notevil + 242)/2;
michael@0 749 break;
michael@0 750 case "z243":
michael@0 751 notevil = (notevil + 243)/2;
michael@0 752 break;
michael@0 753 case "z244":
michael@0 754 notevil = (notevil + 244)/2;
michael@0 755 break;
michael@0 756 case "z245":
michael@0 757 notevil = (notevil + 245)/2;
michael@0 758 break;
michael@0 759 case "z246":
michael@0 760 notevil = (notevil + 246)/2;
michael@0 761 break;
michael@0 762 case "z247":
michael@0 763 notevil = (notevil + 247)/2;
michael@0 764 break;
michael@0 765 case "z248":
michael@0 766 notevil = (notevil + 248)/2;
michael@0 767 break;
michael@0 768 case "z249":
michael@0 769 notevil = (notevil + 249)/2;
michael@0 770 break;
michael@0 771 case "z250":
michael@0 772 notevil = (notevil + 250)/2;
michael@0 773 break;
michael@0 774 case "z251":
michael@0 775 notevil = (notevil + 251)/2;
michael@0 776 break;
michael@0 777 case "z252":
michael@0 778 notevil = (notevil + 252)/2;
michael@0 779 break;
michael@0 780 case "z253":
michael@0 781 notevil = (notevil + 253)/2;
michael@0 782 break;
michael@0 783 case "z254":
michael@0 784 notevil = (notevil + 254)/2;
michael@0 785 break;
michael@0 786 case "z255":
michael@0 787 notevil = (notevil + 255)/2;
michael@0 788 break;
michael@0 789 case "z256":
michael@0 790 notevil = (notevil + 256)/2;
michael@0 791 break;
michael@0 792 case "z257":
michael@0 793 notevil = (notevil + 257)/2;
michael@0 794 break;
michael@0 795 case "z258":
michael@0 796 notevil = (notevil + 258)/2;
michael@0 797 break;
michael@0 798 case "z259":
michael@0 799 notevil = (notevil + 259)/2;
michael@0 800 break;
michael@0 801 case "z260":
michael@0 802 notevil = (notevil + 260)/2;
michael@0 803 break;
michael@0 804 case "z261":
michael@0 805 notevil = (notevil + 261)/2;
michael@0 806 break;
michael@0 807 case "z262":
michael@0 808 notevil = (notevil + 262)/2;
michael@0 809 break;
michael@0 810 case "z263":
michael@0 811 notevil = (notevil + 263)/2;
michael@0 812 break;
michael@0 813 case "z264":
michael@0 814 notevil = (notevil + 264)/2;
michael@0 815 break;
michael@0 816 case "z265":
michael@0 817 notevil = (notevil + 265)/2;
michael@0 818 break;
michael@0 819 case "z266":
michael@0 820 notevil = (notevil + 266)/2;
michael@0 821 break;
michael@0 822 case "z267":
michael@0 823 notevil = (notevil + 267)/2;
michael@0 824 break;
michael@0 825 case "z268":
michael@0 826 notevil = (notevil + 268)/2;
michael@0 827 break;
michael@0 828 case "z269":
michael@0 829 notevil = (notevil + 269)/2;
michael@0 830 break;
michael@0 831 case "z270":
michael@0 832 notevil = (notevil + 270)/2;
michael@0 833 break;
michael@0 834 case "z271":
michael@0 835 notevil = (notevil + 271)/2;
michael@0 836 break;
michael@0 837 case "z272":
michael@0 838 notevil = (notevil + 272)/2;
michael@0 839 break;
michael@0 840 case "z273":
michael@0 841 notevil = (notevil + 273)/2;
michael@0 842 break;
michael@0 843 case "z274":
michael@0 844 notevil = (notevil + 274)/2;
michael@0 845 break;
michael@0 846 case "z275":
michael@0 847 notevil = (notevil + 275)/2;
michael@0 848 break;
michael@0 849 case "z276":
michael@0 850 notevil = (notevil + 276)/2;
michael@0 851 break;
michael@0 852 case "z277":
michael@0 853 notevil = (notevil + 277)/2;
michael@0 854 break;
michael@0 855 case "z278":
michael@0 856 notevil = (notevil + 278)/2;
michael@0 857 break;
michael@0 858 case "z279":
michael@0 859 notevil = (notevil + 279)/2;
michael@0 860 break;
michael@0 861 case "z280":
michael@0 862 notevil = (notevil + 280)/2;
michael@0 863 break;
michael@0 864 case "z281":
michael@0 865 notevil = (notevil + 281)/2;
michael@0 866 break;
michael@0 867 case "z282":
michael@0 868 notevil = (notevil + 282)/2;
michael@0 869 break;
michael@0 870 case "z283":
michael@0 871 notevil = (notevil + 283)/2;
michael@0 872 break;
michael@0 873 case "z284":
michael@0 874 notevil = (notevil + 284)/2;
michael@0 875 break;
michael@0 876 case "z285":
michael@0 877 notevil = (notevil + 285)/2;
michael@0 878 break;
michael@0 879 case "z286":
michael@0 880 notevil = (notevil + 286)/2;
michael@0 881 break;
michael@0 882 case "z287":
michael@0 883 notevil = (notevil + 287)/2;
michael@0 884 break;
michael@0 885 case "z288":
michael@0 886 notevil = (notevil + 288)/2;
michael@0 887 break;
michael@0 888 case "z289":
michael@0 889 notevil = (notevil + 289)/2;
michael@0 890 break;
michael@0 891 case "z290":
michael@0 892 notevil = (notevil + 290)/2;
michael@0 893 break;
michael@0 894 case "z291":
michael@0 895 notevil = (notevil + 291)/2;
michael@0 896 break;
michael@0 897 case "z292":
michael@0 898 notevil = (notevil + 292)/2;
michael@0 899 break;
michael@0 900 case "z293":
michael@0 901 notevil = (notevil + 293)/2;
michael@0 902 break;
michael@0 903 case "z294":
michael@0 904 notevil = (notevil + 294)/2;
michael@0 905 break;
michael@0 906 case "z295":
michael@0 907 notevil = (notevil + 295)/2;
michael@0 908 break;
michael@0 909 case "z296":
michael@0 910 notevil = (notevil + 296)/2;
michael@0 911 break;
michael@0 912 case "z297":
michael@0 913 notevil = (notevil + 297)/2;
michael@0 914 break;
michael@0 915 case "z298":
michael@0 916 notevil = (notevil + 298)/2;
michael@0 917 break;
michael@0 918 case "z299":
michael@0 919 notevil = (notevil + 299)/2;
michael@0 920 break;
michael@0 921 case "z300":
michael@0 922 notevil = (notevil + 300)/2;
michael@0 923 break;
michael@0 924 case "z301":
michael@0 925 notevil = (notevil + 301)/2;
michael@0 926 break;
michael@0 927 case "z302":
michael@0 928 notevil = (notevil + 302)/2;
michael@0 929 break;
michael@0 930 case "z303":
michael@0 931 notevil = (notevil + 303)/2;
michael@0 932 break;
michael@0 933 case "z304":
michael@0 934 notevil = (notevil + 304)/2;
michael@0 935 break;
michael@0 936 case "z305":
michael@0 937 notevil = (notevil + 305)/2;
michael@0 938 break;
michael@0 939 case "z306":
michael@0 940 notevil = (notevil + 306)/2;
michael@0 941 break;
michael@0 942 case "z307":
michael@0 943 notevil = (notevil + 307)/2;
michael@0 944 break;
michael@0 945 case "z308":
michael@0 946 notevil = (notevil + 308)/2;
michael@0 947 break;
michael@0 948 case "z309":
michael@0 949 notevil = (notevil + 309)/2;
michael@0 950 break;
michael@0 951 case "z310":
michael@0 952 notevil = (notevil + 310)/2;
michael@0 953 break;
michael@0 954 case "z311":
michael@0 955 notevil = (notevil + 311)/2;
michael@0 956 break;
michael@0 957 case "z312":
michael@0 958 notevil = (notevil + 312)/2;
michael@0 959 break;
michael@0 960 case "z313":
michael@0 961 notevil = (notevil + 313)/2;
michael@0 962 break;
michael@0 963 case "z314":
michael@0 964 notevil = (notevil + 314)/2;
michael@0 965 break;
michael@0 966 case "z315":
michael@0 967 notevil = (notevil + 315)/2;
michael@0 968 break;
michael@0 969 case "z316":
michael@0 970 notevil = (notevil + 316)/2;
michael@0 971 break;
michael@0 972 case "z317":
michael@0 973 notevil = (notevil + 317)/2;
michael@0 974 break;
michael@0 975 case "z318":
michael@0 976 notevil = (notevil + 318)/2;
michael@0 977 break;
michael@0 978 case "z319":
michael@0 979 notevil = (notevil + 319)/2;
michael@0 980 break;
michael@0 981 case "z320":
michael@0 982 notevil = (notevil + 320)/2;
michael@0 983 break;
michael@0 984 case "z321":
michael@0 985 notevil = (notevil + 321)/2;
michael@0 986 break;
michael@0 987 case "z322":
michael@0 988 notevil = (notevil + 322)/2;
michael@0 989 break;
michael@0 990 case "z323":
michael@0 991 notevil = (notevil + 323)/2;
michael@0 992 break;
michael@0 993 case "z324":
michael@0 994 notevil = (notevil + 324)/2;
michael@0 995 break;
michael@0 996 case "z325":
michael@0 997 notevil = (notevil + 325)/2;
michael@0 998 break;
michael@0 999 case "z326":
michael@0 1000 notevil = (notevil + 326)/2;
michael@0 1001 break;
michael@0 1002 case "z327":
michael@0 1003 notevil = (notevil + 327)/2;
michael@0 1004 break;
michael@0 1005 case "z328":
michael@0 1006 notevil = (notevil + 328)/2;
michael@0 1007 break;
michael@0 1008 case "z329":
michael@0 1009 notevil = (notevil + 329)/2;
michael@0 1010 break;
michael@0 1011 case "z330":
michael@0 1012 notevil = (notevil + 330)/2;
michael@0 1013 break;
michael@0 1014 case "z331":
michael@0 1015 notevil = (notevil + 331)/2;
michael@0 1016 break;
michael@0 1017 case "z332":
michael@0 1018 notevil = (notevil + 332)/2;
michael@0 1019 break;
michael@0 1020 case "z333":
michael@0 1021 notevil = (notevil + 333)/2;
michael@0 1022 break;
michael@0 1023 case "z334":
michael@0 1024 notevil = (notevil + 334)/2;
michael@0 1025 break;
michael@0 1026 case "z335":
michael@0 1027 notevil = (notevil + 335)/2;
michael@0 1028 break;
michael@0 1029 case "z336":
michael@0 1030 notevil = (notevil + 336)/2;
michael@0 1031 break;
michael@0 1032 case "z337":
michael@0 1033 notevil = (notevil + 337)/2;
michael@0 1034 break;
michael@0 1035 case "z338":
michael@0 1036 notevil = (notevil + 338)/2;
michael@0 1037 break;
michael@0 1038 case "z339":
michael@0 1039 notevil = (notevil + 339)/2;
michael@0 1040 break;
michael@0 1041 case "z340":
michael@0 1042 notevil = (notevil + 340)/2;
michael@0 1043 break;
michael@0 1044 case "z341":
michael@0 1045 notevil = (notevil + 341)/2;
michael@0 1046 break;
michael@0 1047 case "z342":
michael@0 1048 notevil = (notevil + 342)/2;
michael@0 1049 break;
michael@0 1050 case "z343":
michael@0 1051 notevil = (notevil + 343)/2;
michael@0 1052 break;
michael@0 1053 case "z344":
michael@0 1054 notevil = (notevil + 344)/2;
michael@0 1055 break;
michael@0 1056 case "z345":
michael@0 1057 notevil = (notevil + 345)/2;
michael@0 1058 break;
michael@0 1059 case "z346":
michael@0 1060 notevil = (notevil + 346)/2;
michael@0 1061 break;
michael@0 1062 case "z347":
michael@0 1063 notevil = (notevil + 347)/2;
michael@0 1064 break;
michael@0 1065 case "z348":
michael@0 1066 notevil = (notevil + 348)/2;
michael@0 1067 break;
michael@0 1068 case "z349":
michael@0 1069 notevil = (notevil + 349)/2;
michael@0 1070 break;
michael@0 1071 case "z350":
michael@0 1072 notevil = (notevil + 350)/2;
michael@0 1073 break;
michael@0 1074 case "z351":
michael@0 1075 notevil = (notevil + 351)/2;
michael@0 1076 break;
michael@0 1077 case "z352":
michael@0 1078 notevil = (notevil + 352)/2;
michael@0 1079 break;
michael@0 1080 case "z353":
michael@0 1081 notevil = (notevil + 353)/2;
michael@0 1082 break;
michael@0 1083 case "z354":
michael@0 1084 notevil = (notevil + 354)/2;
michael@0 1085 break;
michael@0 1086 case "z355":
michael@0 1087 notevil = (notevil + 355)/2;
michael@0 1088 break;
michael@0 1089 case "z356":
michael@0 1090 notevil = (notevil + 356)/2;
michael@0 1091 break;
michael@0 1092 case "z357":
michael@0 1093 notevil = (notevil + 357)/2;
michael@0 1094 break;
michael@0 1095 case "z358":
michael@0 1096 notevil = (notevil + 358)/2;
michael@0 1097 break;
michael@0 1098 case "z359":
michael@0 1099 notevil = (notevil + 359)/2;
michael@0 1100 break;
michael@0 1101 case "z360":
michael@0 1102 notevil = (notevil + 360)/2;
michael@0 1103 break;
michael@0 1104 case "z361":
michael@0 1105 notevil = (notevil + 361)/2;
michael@0 1106 break;
michael@0 1107 case "z362":
michael@0 1108 notevil = (notevil + 362)/2;
michael@0 1109 break;
michael@0 1110 case "z363":
michael@0 1111 notevil = (notevil + 363)/2;
michael@0 1112 break;
michael@0 1113 case "z364":
michael@0 1114 notevil = (notevil + 364)/2;
michael@0 1115 break;
michael@0 1116 case "z365":
michael@0 1117 notevil = (notevil + 365)/2;
michael@0 1118 break;
michael@0 1119 case "z366":
michael@0 1120 notevil = (notevil + 366)/2;
michael@0 1121 break;
michael@0 1122 case "z367":
michael@0 1123 notevil = (notevil + 367)/2;
michael@0 1124 break;
michael@0 1125 case "z368":
michael@0 1126 notevil = (notevil + 368)/2;
michael@0 1127 break;
michael@0 1128 case "z369":
michael@0 1129 notevil = (notevil + 369)/2;
michael@0 1130 break;
michael@0 1131 case "z370":
michael@0 1132 notevil = (notevil + 370)/2;
michael@0 1133 break;
michael@0 1134 case "z371":
michael@0 1135 notevil = (notevil + 371)/2;
michael@0 1136 break;
michael@0 1137 case "z372":
michael@0 1138 notevil = (notevil + 372)/2;
michael@0 1139 break;
michael@0 1140 case "z373":
michael@0 1141 notevil = (notevil + 373)/2;
michael@0 1142 break;
michael@0 1143 case "z374":
michael@0 1144 notevil = (notevil + 374)/2;
michael@0 1145 break;
michael@0 1146 case "z375":
michael@0 1147 notevil = (notevil + 375)/2;
michael@0 1148 break;
michael@0 1149 case "z376":
michael@0 1150 notevil = (notevil + 376)/2;
michael@0 1151 break;
michael@0 1152 case "z377":
michael@0 1153 notevil = (notevil + 377)/2;
michael@0 1154 break;
michael@0 1155 case "z378":
michael@0 1156 notevil = (notevil + 378)/2;
michael@0 1157 break;
michael@0 1158 case "z379":
michael@0 1159 notevil = (notevil + 379)/2;
michael@0 1160 break;
michael@0 1161 case "z380":
michael@0 1162 notevil = (notevil + 380)/2;
michael@0 1163 break;
michael@0 1164 case "z381":
michael@0 1165 notevil = (notevil + 381)/2;
michael@0 1166 break;
michael@0 1167 case "z382":
michael@0 1168 notevil = (notevil + 382)/2;
michael@0 1169 break;
michael@0 1170 case "z383":
michael@0 1171 notevil = (notevil + 383)/2;
michael@0 1172 break;
michael@0 1173 case "z384":
michael@0 1174 notevil = (notevil + 384)/2;
michael@0 1175 break;
michael@0 1176 case "z385":
michael@0 1177 notevil = (notevil + 385)/2;
michael@0 1178 break;
michael@0 1179 case "z386":
michael@0 1180 notevil = (notevil + 386)/2;
michael@0 1181 break;
michael@0 1182 case "z387":
michael@0 1183 notevil = (notevil + 387)/2;
michael@0 1184 break;
michael@0 1185 case "z388":
michael@0 1186 notevil = (notevil + 388)/2;
michael@0 1187 break;
michael@0 1188 case "z389":
michael@0 1189 notevil = (notevil + 389)/2;
michael@0 1190 break;
michael@0 1191 case "z390":
michael@0 1192 notevil = (notevil + 390)/2;
michael@0 1193 break;
michael@0 1194 case "z391":
michael@0 1195 notevil = (notevil + 391)/2;
michael@0 1196 break;
michael@0 1197 case "z392":
michael@0 1198 notevil = (notevil + 392)/2;
michael@0 1199 break;
michael@0 1200 case "z393":
michael@0 1201 notevil = (notevil + 393)/2;
michael@0 1202 break;
michael@0 1203 case "z394":
michael@0 1204 notevil = (notevil + 394)/2;
michael@0 1205 break;
michael@0 1206 case "z395":
michael@0 1207 notevil = (notevil + 395)/2;
michael@0 1208 break;
michael@0 1209 case "z396":
michael@0 1210 notevil = (notevil + 396)/2;
michael@0 1211 break;
michael@0 1212 case "z397":
michael@0 1213 notevil = (notevil + 397)/2;
michael@0 1214 break;
michael@0 1215 case "z398":
michael@0 1216 notevil = (notevil + 398)/2;
michael@0 1217 break;
michael@0 1218 case "z399":
michael@0 1219 notevil = (notevil + 399)/2;
michael@0 1220 break;
michael@0 1221 case "z400":
michael@0 1222 notevil = (notevil + 400)/2;
michael@0 1223 break;
michael@0 1224 case "z401":
michael@0 1225 notevil = (notevil + 401)/2;
michael@0 1226 break;
michael@0 1227 case "z402":
michael@0 1228 notevil = (notevil + 402)/2;
michael@0 1229 break;
michael@0 1230 case "z403":
michael@0 1231 notevil = (notevil + 403)/2;
michael@0 1232 break;
michael@0 1233 case "z404":
michael@0 1234 notevil = (notevil + 404)/2;
michael@0 1235 break;
michael@0 1236 case "z405":
michael@0 1237 notevil = (notevil + 405)/2;
michael@0 1238 break;
michael@0 1239 case "z406":
michael@0 1240 notevil = (notevil + 406)/2;
michael@0 1241 break;
michael@0 1242 case "z407":
michael@0 1243 notevil = (notevil + 407)/2;
michael@0 1244 break;
michael@0 1245 case "z408":
michael@0 1246 notevil = (notevil + 408)/2;
michael@0 1247 break;
michael@0 1248 case "z409":
michael@0 1249 notevil = (notevil + 409)/2;
michael@0 1250 break;
michael@0 1251 case "z410":
michael@0 1252 notevil = (notevil + 410)/2;
michael@0 1253 break;
michael@0 1254 case "z411":
michael@0 1255 notevil = (notevil + 411)/2;
michael@0 1256 break;
michael@0 1257 case "z412":
michael@0 1258 notevil = (notevil + 412)/2;
michael@0 1259 break;
michael@0 1260 case "z413":
michael@0 1261 notevil = (notevil + 413)/2;
michael@0 1262 break;
michael@0 1263 case "z414":
michael@0 1264 notevil = (notevil + 414)/2;
michael@0 1265 break;
michael@0 1266 case "z415":
michael@0 1267 notevil = (notevil + 415)/2;
michael@0 1268 break;
michael@0 1269 case "z416":
michael@0 1270 notevil = (notevil + 416)/2;
michael@0 1271 break;
michael@0 1272 case "z417":
michael@0 1273 notevil = (notevil + 417)/2;
michael@0 1274 break;
michael@0 1275 case "z418":
michael@0 1276 notevil = (notevil + 418)/2;
michael@0 1277 break;
michael@0 1278 case "z419":
michael@0 1279 notevil = (notevil + 419)/2;
michael@0 1280 break;
michael@0 1281 case "z420":
michael@0 1282 notevil = (notevil + 420)/2;
michael@0 1283 break;
michael@0 1284 case "z421":
michael@0 1285 notevil = (notevil + 421)/2;
michael@0 1286 break;
michael@0 1287 case "z422":
michael@0 1288 notevil = (notevil + 422)/2;
michael@0 1289 break;
michael@0 1290 case "z423":
michael@0 1291 notevil = (notevil + 423)/2;
michael@0 1292 break;
michael@0 1293 case "z424":
michael@0 1294 notevil = (notevil + 424)/2;
michael@0 1295 break;
michael@0 1296 case "z425":
michael@0 1297 notevil = (notevil + 425)/2;
michael@0 1298 break;
michael@0 1299 case "z426":
michael@0 1300 notevil = (notevil + 426)/2;
michael@0 1301 break;
michael@0 1302 case "z427":
michael@0 1303 notevil = (notevil + 427)/2;
michael@0 1304 break;
michael@0 1305 case "z428":
michael@0 1306 notevil = (notevil + 428)/2;
michael@0 1307 break;
michael@0 1308 case "z429":
michael@0 1309 notevil = (notevil + 429)/2;
michael@0 1310 break;
michael@0 1311 case "z430":
michael@0 1312 notevil = (notevil + 430)/2;
michael@0 1313 break;
michael@0 1314 case "z431":
michael@0 1315 notevil = (notevil + 431)/2;
michael@0 1316 break;
michael@0 1317 case "z432":
michael@0 1318 notevil = (notevil + 432)/2;
michael@0 1319 break;
michael@0 1320 case "z433":
michael@0 1321 notevil = (notevil + 433)/2;
michael@0 1322 break;
michael@0 1323 case "z434":
michael@0 1324 notevil = (notevil + 434)/2;
michael@0 1325 break;
michael@0 1326 case "z435":
michael@0 1327 notevil = (notevil + 435)/2;
michael@0 1328 break;
michael@0 1329 case "z436":
michael@0 1330 notevil = (notevil + 436)/2;
michael@0 1331 break;
michael@0 1332 case "z437":
michael@0 1333 notevil = (notevil + 437)/2;
michael@0 1334 break;
michael@0 1335 case "z438":
michael@0 1336 notevil = (notevil + 438)/2;
michael@0 1337 break;
michael@0 1338 case "z439":
michael@0 1339 notevil = (notevil + 439)/2;
michael@0 1340 break;
michael@0 1341 case "z440":
michael@0 1342 notevil = (notevil + 440)/2;
michael@0 1343 break;
michael@0 1344 case "z441":
michael@0 1345 notevil = (notevil + 441)/2;
michael@0 1346 break;
michael@0 1347 case "z442":
michael@0 1348 notevil = (notevil + 442)/2;
michael@0 1349 break;
michael@0 1350 case "z443":
michael@0 1351 notevil = (notevil + 443)/2;
michael@0 1352 break;
michael@0 1353 case "z444":
michael@0 1354 notevil = (notevil + 444)/2;
michael@0 1355 break;
michael@0 1356 case "z445":
michael@0 1357 notevil = (notevil + 445)/2;
michael@0 1358 break;
michael@0 1359 case "z446":
michael@0 1360 notevil = (notevil + 446)/2;
michael@0 1361 break;
michael@0 1362 case "z447":
michael@0 1363 notevil = (notevil + 447)/2;
michael@0 1364 break;
michael@0 1365 case "z448":
michael@0 1366 notevil = (notevil + 448)/2;
michael@0 1367 break;
michael@0 1368 case "z449":
michael@0 1369 notevil = (notevil + 449)/2;
michael@0 1370 break;
michael@0 1371 case "z450":
michael@0 1372 notevil = (notevil + 450)/2;
michael@0 1373 break;
michael@0 1374 case "z451":
michael@0 1375 notevil = (notevil + 451)/2;
michael@0 1376 break;
michael@0 1377 case "z452":
michael@0 1378 notevil = (notevil + 452)/2;
michael@0 1379 break;
michael@0 1380 case "z453":
michael@0 1381 notevil = (notevil + 453)/2;
michael@0 1382 break;
michael@0 1383 case "z454":
michael@0 1384 notevil = (notevil + 454)/2;
michael@0 1385 break;
michael@0 1386 case "z455":
michael@0 1387 notevil = (notevil + 455)/2;
michael@0 1388 break;
michael@0 1389 case "z456":
michael@0 1390 notevil = (notevil + 456)/2;
michael@0 1391 break;
michael@0 1392 case "z457":
michael@0 1393 notevil = (notevil + 457)/2;
michael@0 1394 break;
michael@0 1395 case "z458":
michael@0 1396 notevil = (notevil + 458)/2;
michael@0 1397 break;
michael@0 1398 case "z459":
michael@0 1399 notevil = (notevil + 459)/2;
michael@0 1400 break;
michael@0 1401 case "z460":
michael@0 1402 notevil = (notevil + 460)/2;
michael@0 1403 break;
michael@0 1404 case "z461":
michael@0 1405 notevil = (notevil + 461)/2;
michael@0 1406 break;
michael@0 1407 case "z462":
michael@0 1408 notevil = (notevil + 462)/2;
michael@0 1409 break;
michael@0 1410 case "z463":
michael@0 1411 notevil = (notevil + 463)/2;
michael@0 1412 break;
michael@0 1413 case "z464":
michael@0 1414 notevil = (notevil + 464)/2;
michael@0 1415 break;
michael@0 1416 case "z465":
michael@0 1417 notevil = (notevil + 465)/2;
michael@0 1418 break;
michael@0 1419 case "z466":
michael@0 1420 notevil = (notevil + 466)/2;
michael@0 1421 break;
michael@0 1422 case "z467":
michael@0 1423 notevil = (notevil + 467)/2;
michael@0 1424 break;
michael@0 1425 case "z468":
michael@0 1426 notevil = (notevil + 468)/2;
michael@0 1427 break;
michael@0 1428 case "z469":
michael@0 1429 notevil = (notevil + 469)/2;
michael@0 1430 break;
michael@0 1431 case "z470":
michael@0 1432 notevil = (notevil + 470)/2;
michael@0 1433 break;
michael@0 1434 case "z471":
michael@0 1435 notevil = (notevil + 471)/2;
michael@0 1436 break;
michael@0 1437 case "z472":
michael@0 1438 notevil = (notevil + 472)/2;
michael@0 1439 break;
michael@0 1440 case "z473":
michael@0 1441 notevil = (notevil + 473)/2;
michael@0 1442 break;
michael@0 1443 case "z474":
michael@0 1444 notevil = (notevil + 474)/2;
michael@0 1445 break;
michael@0 1446 case "z475":
michael@0 1447 notevil = (notevil + 475)/2;
michael@0 1448 break;
michael@0 1449 case "z476":
michael@0 1450 notevil = (notevil + 476)/2;
michael@0 1451 break;
michael@0 1452 case "z477":
michael@0 1453 notevil = (notevil + 477)/2;
michael@0 1454 break;
michael@0 1455 case "z478":
michael@0 1456 notevil = (notevil + 478)/2;
michael@0 1457 break;
michael@0 1458 case "z479":
michael@0 1459 notevil = (notevil + 479)/2;
michael@0 1460 break;
michael@0 1461 case "z480":
michael@0 1462 notevil = (notevil + 480)/2;
michael@0 1463 break;
michael@0 1464 case "z481":
michael@0 1465 notevil = (notevil + 481)/2;
michael@0 1466 break;
michael@0 1467 case "z482":
michael@0 1468 notevil = (notevil + 482)/2;
michael@0 1469 break;
michael@0 1470 case "z483":
michael@0 1471 notevil = (notevil + 483)/2;
michael@0 1472 break;
michael@0 1473 case "z484":
michael@0 1474 notevil = (notevil + 484)/2;
michael@0 1475 break;
michael@0 1476 case "z485":
michael@0 1477 notevil = (notevil + 485)/2;
michael@0 1478 break;
michael@0 1479 case "z486":
michael@0 1480 notevil = (notevil + 486)/2;
michael@0 1481 break;
michael@0 1482 case "z487":
michael@0 1483 notevil = (notevil + 487)/2;
michael@0 1484 break;
michael@0 1485 case "z488":
michael@0 1486 notevil = (notevil + 488)/2;
michael@0 1487 break;
michael@0 1488 case "z489":
michael@0 1489 notevil = (notevil + 489)/2;
michael@0 1490 break;
michael@0 1491 case "z490":
michael@0 1492 notevil = (notevil + 490)/2;
michael@0 1493 break;
michael@0 1494 case "z491":
michael@0 1495 notevil = (notevil + 491)/2;
michael@0 1496 break;
michael@0 1497 case "z492":
michael@0 1498 notevil = (notevil + 492)/2;
michael@0 1499 break;
michael@0 1500 case "z493":
michael@0 1501 notevil = (notevil + 493)/2;
michael@0 1502 break;
michael@0 1503 case "z494":
michael@0 1504 notevil = (notevil + 494)/2;
michael@0 1505 break;
michael@0 1506 case "z495":
michael@0 1507 notevil = (notevil + 495)/2;
michael@0 1508 break;
michael@0 1509 case "z496":
michael@0 1510 notevil = (notevil + 496)/2;
michael@0 1511 break;
michael@0 1512 case "z497":
michael@0 1513 notevil = (notevil + 497)/2;
michael@0 1514 break;
michael@0 1515 case "z498":
michael@0 1516 notevil = (notevil + 498)/2;
michael@0 1517 break;
michael@0 1518 case "z499":
michael@0 1519 notevil = (notevil + 499)/2;
michael@0 1520 break;
michael@0 1521 case "z500":
michael@0 1522 notevil = (notevil + 500)/2;
michael@0 1523 break;
michael@0 1524 case "z501":
michael@0 1525 notevil = (notevil + 501)/2;
michael@0 1526 break;
michael@0 1527 case "z502":
michael@0 1528 notevil = (notevil + 502)/2;
michael@0 1529 break;
michael@0 1530 case "z503":
michael@0 1531 notevil = (notevil + 503)/2;
michael@0 1532 break;
michael@0 1533 case "z504":
michael@0 1534 notevil = (notevil + 504)/2;
michael@0 1535 break;
michael@0 1536 case "z505":
michael@0 1537 notevil = (notevil + 505)/2;
michael@0 1538 break;
michael@0 1539 case "z506":
michael@0 1540 notevil = (notevil + 506)/2;
michael@0 1541 break;
michael@0 1542 case "z507":
michael@0 1543 notevil = (notevil + 507)/2;
michael@0 1544 break;
michael@0 1545 case "z508":
michael@0 1546 notevil = (notevil + 508)/2;
michael@0 1547 break;
michael@0 1548 case "z509":
michael@0 1549 notevil = (notevil + 509)/2;
michael@0 1550 break;
michael@0 1551 case "z510":
michael@0 1552 notevil = (notevil + 510)/2;
michael@0 1553 break;
michael@0 1554 case "z511":
michael@0 1555 notevil = (notevil + 511)/2;
michael@0 1556 break;
michael@0 1557 case "z512":
michael@0 1558 notevil = (notevil + 512)/2;
michael@0 1559 break;
michael@0 1560 case "z513":
michael@0 1561 notevil = (notevil + 513)/2;
michael@0 1562 break;
michael@0 1563 case "z514":
michael@0 1564 notevil = (notevil + 514)/2;
michael@0 1565 break;
michael@0 1566 case "z515":
michael@0 1567 notevil = (notevil + 515)/2;
michael@0 1568 break;
michael@0 1569 case "z516":
michael@0 1570 notevil = (notevil + 516)/2;
michael@0 1571 break;
michael@0 1572 case "z517":
michael@0 1573 notevil = (notevil + 517)/2;
michael@0 1574 break;
michael@0 1575 case "z518":
michael@0 1576 notevil = (notevil + 518)/2;
michael@0 1577 break;
michael@0 1578 case "z519":
michael@0 1579 notevil = (notevil + 519)/2;
michael@0 1580 break;
michael@0 1581 case "z520":
michael@0 1582 notevil = (notevil + 520)/2;
michael@0 1583 break;
michael@0 1584 case "z521":
michael@0 1585 notevil = (notevil + 521)/2;
michael@0 1586 break;
michael@0 1587 case "z522":
michael@0 1588 notevil = (notevil + 522)/2;
michael@0 1589 break;
michael@0 1590 case "z523":
michael@0 1591 notevil = (notevil + 523)/2;
michael@0 1592 break;
michael@0 1593 case "z524":
michael@0 1594 notevil = (notevil + 524)/2;
michael@0 1595 break;
michael@0 1596 case "z525":
michael@0 1597 notevil = (notevil + 525)/2;
michael@0 1598 break;
michael@0 1599 case "z526":
michael@0 1600 notevil = (notevil + 526)/2;
michael@0 1601 break;
michael@0 1602 case "z527":
michael@0 1603 notevil = (notevil + 527)/2;
michael@0 1604 break;
michael@0 1605 case "z528":
michael@0 1606 notevil = (notevil + 528)/2;
michael@0 1607 break;
michael@0 1608 case "z529":
michael@0 1609 notevil = (notevil + 529)/2;
michael@0 1610 break;
michael@0 1611 case "z530":
michael@0 1612 notevil = (notevil + 530)/2;
michael@0 1613 break;
michael@0 1614 case "z531":
michael@0 1615 notevil = (notevil + 531)/2;
michael@0 1616 break;
michael@0 1617 case "z532":
michael@0 1618 notevil = (notevil + 532)/2;
michael@0 1619 break;
michael@0 1620 case "z533":
michael@0 1621 notevil = (notevil + 533)/2;
michael@0 1622 break;
michael@0 1623 case "z534":
michael@0 1624 notevil = (notevil + 534)/2;
michael@0 1625 break;
michael@0 1626 case "z535":
michael@0 1627 notevil = (notevil + 535)/2;
michael@0 1628 break;
michael@0 1629 case "z536":
michael@0 1630 notevil = (notevil + 536)/2;
michael@0 1631 break;
michael@0 1632 case "z537":
michael@0 1633 notevil = (notevil + 537)/2;
michael@0 1634 break;
michael@0 1635 case "z538":
michael@0 1636 notevil = (notevil + 538)/2;
michael@0 1637 break;
michael@0 1638 case "z539":
michael@0 1639 notevil = (notevil + 539)/2;
michael@0 1640 break;
michael@0 1641 case "z540":
michael@0 1642 notevil = (notevil + 540)/2;
michael@0 1643 break;
michael@0 1644 case "z541":
michael@0 1645 notevil = (notevil + 541)/2;
michael@0 1646 break;
michael@0 1647 case "z542":
michael@0 1648 notevil = (notevil + 542)/2;
michael@0 1649 break;
michael@0 1650 case "z543":
michael@0 1651 notevil = (notevil + 543)/2;
michael@0 1652 break;
michael@0 1653 case "z544":
michael@0 1654 notevil = (notevil + 544)/2;
michael@0 1655 break;
michael@0 1656 case "z545":
michael@0 1657 notevil = (notevil + 545)/2;
michael@0 1658 break;
michael@0 1659 case "z546":
michael@0 1660 notevil = (notevil + 546)/2;
michael@0 1661 break;
michael@0 1662 case "z547":
michael@0 1663 notevil = (notevil + 547)/2;
michael@0 1664 break;
michael@0 1665 case "z548":
michael@0 1666 notevil = (notevil + 548)/2;
michael@0 1667 break;
michael@0 1668 case "z549":
michael@0 1669 notevil = (notevil + 549)/2;
michael@0 1670 break;
michael@0 1671 case "z550":
michael@0 1672 notevil = (notevil + 550)/2;
michael@0 1673 break;
michael@0 1674 case "z551":
michael@0 1675 notevil = (notevil + 551)/2;
michael@0 1676 break;
michael@0 1677 case "z552":
michael@0 1678 notevil = (notevil + 552)/2;
michael@0 1679 break;
michael@0 1680 case "z553":
michael@0 1681 notevil = (notevil + 553)/2;
michael@0 1682 break;
michael@0 1683 case "z554":
michael@0 1684 notevil = (notevil + 554)/2;
michael@0 1685 break;
michael@0 1686 case "z555":
michael@0 1687 notevil = (notevil + 555)/2;
michael@0 1688 break;
michael@0 1689 case "z556":
michael@0 1690 notevil = (notevil + 556)/2;
michael@0 1691 break;
michael@0 1692 case "z557":
michael@0 1693 notevil = (notevil + 557)/2;
michael@0 1694 break;
michael@0 1695 case "z558":
michael@0 1696 notevil = (notevil + 558)/2;
michael@0 1697 break;
michael@0 1698 case "z559":
michael@0 1699 notevil = (notevil + 559)/2;
michael@0 1700 break;
michael@0 1701 case "z560":
michael@0 1702 notevil = (notevil + 560)/2;
michael@0 1703 break;
michael@0 1704 case "z561":
michael@0 1705 notevil = (notevil + 561)/2;
michael@0 1706 break;
michael@0 1707 case "z562":
michael@0 1708 notevil = (notevil + 562)/2;
michael@0 1709 break;
michael@0 1710 case "z563":
michael@0 1711 notevil = (notevil + 563)/2;
michael@0 1712 break;
michael@0 1713 case "z564":
michael@0 1714 notevil = (notevil + 564)/2;
michael@0 1715 break;
michael@0 1716 case "z565":
michael@0 1717 notevil = (notevil + 565)/2;
michael@0 1718 break;
michael@0 1719 case "z566":
michael@0 1720 notevil = (notevil + 566)/2;
michael@0 1721 break;
michael@0 1722 case "z567":
michael@0 1723 notevil = (notevil + 567)/2;
michael@0 1724 break;
michael@0 1725 case "z568":
michael@0 1726 notevil = (notevil + 568)/2;
michael@0 1727 break;
michael@0 1728 case "z569":
michael@0 1729 notevil = (notevil + 569)/2;
michael@0 1730 break;
michael@0 1731 case "z570":
michael@0 1732 notevil = (notevil + 570)/2;
michael@0 1733 break;
michael@0 1734 case "z571":
michael@0 1735 notevil = (notevil + 571)/2;
michael@0 1736 break;
michael@0 1737 case "z572":
michael@0 1738 notevil = (notevil + 572)/2;
michael@0 1739 break;
michael@0 1740 case "z573":
michael@0 1741 notevil = (notevil + 573)/2;
michael@0 1742 break;
michael@0 1743 case "z574":
michael@0 1744 notevil = (notevil + 574)/2;
michael@0 1745 break;
michael@0 1746 case "z575":
michael@0 1747 notevil = (notevil + 575)/2;
michael@0 1748 break;
michael@0 1749 case "z576":
michael@0 1750 notevil = (notevil + 576)/2;
michael@0 1751 break;
michael@0 1752 case "z577":
michael@0 1753 notevil = (notevil + 577)/2;
michael@0 1754 break;
michael@0 1755 case "z578":
michael@0 1756 notevil = (notevil + 578)/2;
michael@0 1757 break;
michael@0 1758 case "z579":
michael@0 1759 notevil = (notevil + 579)/2;
michael@0 1760 break;
michael@0 1761 case "z580":
michael@0 1762 notevil = (notevil + 580)/2;
michael@0 1763 break;
michael@0 1764 case "z581":
michael@0 1765 notevil = (notevil + 581)/2;
michael@0 1766 break;
michael@0 1767 case "z582":
michael@0 1768 notevil = (notevil + 582)/2;
michael@0 1769 break;
michael@0 1770 case "z583":
michael@0 1771 notevil = (notevil + 583)/2;
michael@0 1772 break;
michael@0 1773 case "z584":
michael@0 1774 notevil = (notevil + 584)/2;
michael@0 1775 break;
michael@0 1776 case "z585":
michael@0 1777 notevil = (notevil + 585)/2;
michael@0 1778 break;
michael@0 1779 case "z586":
michael@0 1780 notevil = (notevil + 586)/2;
michael@0 1781 break;
michael@0 1782 case "z587":
michael@0 1783 notevil = (notevil + 587)/2;
michael@0 1784 break;
michael@0 1785 case "z588":
michael@0 1786 notevil = (notevil + 588)/2;
michael@0 1787 break;
michael@0 1788 case "z589":
michael@0 1789 notevil = (notevil + 589)/2;
michael@0 1790 break;
michael@0 1791 case "z590":
michael@0 1792 notevil = (notevil + 590)/2;
michael@0 1793 break;
michael@0 1794 case "z591":
michael@0 1795 notevil = (notevil + 591)/2;
michael@0 1796 break;
michael@0 1797 case "z592":
michael@0 1798 notevil = (notevil + 592)/2;
michael@0 1799 break;
michael@0 1800 case "z593":
michael@0 1801 notevil = (notevil + 593)/2;
michael@0 1802 break;
michael@0 1803 case "z594":
michael@0 1804 notevil = (notevil + 594)/2;
michael@0 1805 break;
michael@0 1806 case "z595":
michael@0 1807 notevil = (notevil + 595)/2;
michael@0 1808 break;
michael@0 1809 case "z596":
michael@0 1810 notevil = (notevil + 596)/2;
michael@0 1811 break;
michael@0 1812 case "z597":
michael@0 1813 notevil = (notevil + 597)/2;
michael@0 1814 break;
michael@0 1815 case "z598":
michael@0 1816 notevil = (notevil + 598)/2;
michael@0 1817 break;
michael@0 1818 case "z599":
michael@0 1819 notevil = (notevil + 599)/2;
michael@0 1820 break;
michael@0 1821 case "z600":
michael@0 1822 notevil = (notevil + 600)/2;
michael@0 1823 break;
michael@0 1824 case "z601":
michael@0 1825 notevil = (notevil + 601)/2;
michael@0 1826 break;
michael@0 1827 case "z602":
michael@0 1828 notevil = (notevil + 602)/2;
michael@0 1829 break;
michael@0 1830 case "z603":
michael@0 1831 notevil = (notevil + 603)/2;
michael@0 1832 break;
michael@0 1833 case "z604":
michael@0 1834 notevil = (notevil + 604)/2;
michael@0 1835 break;
michael@0 1836 case "z605":
michael@0 1837 notevil = (notevil + 605)/2;
michael@0 1838 break;
michael@0 1839 case "z606":
michael@0 1840 notevil = (notevil + 606)/2;
michael@0 1841 break;
michael@0 1842 case "z607":
michael@0 1843 notevil = (notevil + 607)/2;
michael@0 1844 break;
michael@0 1845 case "z608":
michael@0 1846 notevil = (notevil + 608)/2;
michael@0 1847 break;
michael@0 1848 case "z609":
michael@0 1849 notevil = (notevil + 609)/2;
michael@0 1850 break;
michael@0 1851 case "z610":
michael@0 1852 notevil = (notevil + 610)/2;
michael@0 1853 break;
michael@0 1854 case "z611":
michael@0 1855 notevil = (notevil + 611)/2;
michael@0 1856 break;
michael@0 1857 case "z612":
michael@0 1858 notevil = (notevil + 612)/2;
michael@0 1859 break;
michael@0 1860 case "z613":
michael@0 1861 notevil = (notevil + 613)/2;
michael@0 1862 break;
michael@0 1863 case "z614":
michael@0 1864 notevil = (notevil + 614)/2;
michael@0 1865 break;
michael@0 1866 case "z615":
michael@0 1867 notevil = (notevil + 615)/2;
michael@0 1868 break;
michael@0 1869 case "z616":
michael@0 1870 notevil = (notevil + 616)/2;
michael@0 1871 break;
michael@0 1872 case "z617":
michael@0 1873 notevil = (notevil + 617)/2;
michael@0 1874 break;
michael@0 1875 case "z618":
michael@0 1876 notevil = (notevil + 618)/2;
michael@0 1877 break;
michael@0 1878 case "z619":
michael@0 1879 notevil = (notevil + 619)/2;
michael@0 1880 break;
michael@0 1881 case "z620":
michael@0 1882 notevil = (notevil + 620)/2;
michael@0 1883 break;
michael@0 1884 case "z621":
michael@0 1885 notevil = (notevil + 621)/2;
michael@0 1886 break;
michael@0 1887 case "z622":
michael@0 1888 notevil = (notevil + 622)/2;
michael@0 1889 break;
michael@0 1890 case "z623":
michael@0 1891 notevil = (notevil + 623)/2;
michael@0 1892 break;
michael@0 1893 case "z624":
michael@0 1894 notevil = (notevil + 624)/2;
michael@0 1895 break;
michael@0 1896 case "z625":
michael@0 1897 notevil = (notevil + 625)/2;
michael@0 1898 break;
michael@0 1899 case "z626":
michael@0 1900 notevil = (notevil + 626)/2;
michael@0 1901 break;
michael@0 1902 case "z627":
michael@0 1903 notevil = (notevil + 627)/2;
michael@0 1904 break;
michael@0 1905 case "z628":
michael@0 1906 notevil = (notevil + 628)/2;
michael@0 1907 break;
michael@0 1908 case "z629":
michael@0 1909 notevil = (notevil + 629)/2;
michael@0 1910 break;
michael@0 1911 case "z630":
michael@0 1912 notevil = (notevil + 630)/2;
michael@0 1913 break;
michael@0 1914 case "z631":
michael@0 1915 notevil = (notevil + 631)/2;
michael@0 1916 break;
michael@0 1917 case "z632":
michael@0 1918 notevil = (notevil + 632)/2;
michael@0 1919 break;
michael@0 1920 case "z633":
michael@0 1921 notevil = (notevil + 633)/2;
michael@0 1922 break;
michael@0 1923 case "z634":
michael@0 1924 notevil = (notevil + 634)/2;
michael@0 1925 break;
michael@0 1926 case "z635":
michael@0 1927 notevil = (notevil + 635)/2;
michael@0 1928 break;
michael@0 1929 case "z636":
michael@0 1930 notevil = (notevil + 636)/2;
michael@0 1931 break;
michael@0 1932 case "z637":
michael@0 1933 notevil = (notevil + 637)/2;
michael@0 1934 break;
michael@0 1935 case "z638":
michael@0 1936 notevil = (notevil + 638)/2;
michael@0 1937 break;
michael@0 1938 case "z639":
michael@0 1939 notevil = (notevil + 639)/2;
michael@0 1940 break;
michael@0 1941 case "z640":
michael@0 1942 notevil = (notevil + 640)/2;
michael@0 1943 break;
michael@0 1944 case "z641":
michael@0 1945 notevil = (notevil + 641)/2;
michael@0 1946 break;
michael@0 1947 case "z642":
michael@0 1948 notevil = (notevil + 642)/2;
michael@0 1949 break;
michael@0 1950 case "z643":
michael@0 1951 notevil = (notevil + 643)/2;
michael@0 1952 break;
michael@0 1953 case "z644":
michael@0 1954 notevil = (notevil + 644)/2;
michael@0 1955 break;
michael@0 1956 case "z645":
michael@0 1957 notevil = (notevil + 645)/2;
michael@0 1958 break;
michael@0 1959 case "z646":
michael@0 1960 notevil = (notevil + 646)/2;
michael@0 1961 break;
michael@0 1962 case "z647":
michael@0 1963 notevil = (notevil + 647)/2;
michael@0 1964 break;
michael@0 1965 case "z648":
michael@0 1966 notevil = (notevil + 648)/2;
michael@0 1967 break;
michael@0 1968 case "z649":
michael@0 1969 notevil = (notevil + 649)/2;
michael@0 1970 break;
michael@0 1971 case "z650":
michael@0 1972 notevil = (notevil + 650)/2;
michael@0 1973 break;
michael@0 1974 case "z651":
michael@0 1975 notevil = (notevil + 651)/2;
michael@0 1976 break;
michael@0 1977 case "z652":
michael@0 1978 notevil = (notevil + 652)/2;
michael@0 1979 break;
michael@0 1980 case "z653":
michael@0 1981 notevil = (notevil + 653)/2;
michael@0 1982 break;
michael@0 1983 case "z654":
michael@0 1984 notevil = (notevil + 654)/2;
michael@0 1985 break;
michael@0 1986 case "z655":
michael@0 1987 notevil = (notevil + 655)/2;
michael@0 1988 break;
michael@0 1989 case "z656":
michael@0 1990 notevil = (notevil + 656)/2;
michael@0 1991 break;
michael@0 1992 case "z657":
michael@0 1993 notevil = (notevil + 657)/2;
michael@0 1994 break;
michael@0 1995 case "z658":
michael@0 1996 notevil = (notevil + 658)/2;
michael@0 1997 break;
michael@0 1998 case "z659":
michael@0 1999 notevil = (notevil + 659)/2;
michael@0 2000 break;
michael@0 2001 case "z660":
michael@0 2002 notevil = (notevil + 660)/2;
michael@0 2003 break;
michael@0 2004 case "z661":
michael@0 2005 notevil = (notevil + 661)/2;
michael@0 2006 break;
michael@0 2007 case "z662":
michael@0 2008 notevil = (notevil + 662)/2;
michael@0 2009 break;
michael@0 2010 case "z663":
michael@0 2011 notevil = (notevil + 663)/2;
michael@0 2012 break;
michael@0 2013 case "z664":
michael@0 2014 notevil = (notevil + 664)/2;
michael@0 2015 break;
michael@0 2016 case "z665":
michael@0 2017 notevil = (notevil + 665)/2;
michael@0 2018 break;
michael@0 2019 case "z666":
michael@0 2020 notevil = (notevil + 666)/2;
michael@0 2021 break;
michael@0 2022 case "z667":
michael@0 2023 notevil = (notevil + 667)/2;
michael@0 2024 break;
michael@0 2025 case "z668":
michael@0 2026 notevil = (notevil + 668)/2;
michael@0 2027 break;
michael@0 2028 case "z669":
michael@0 2029 notevil = (notevil + 669)/2;
michael@0 2030 break;
michael@0 2031 case "z670":
michael@0 2032 notevil = (notevil + 670)/2;
michael@0 2033 break;
michael@0 2034 case "z671":
michael@0 2035 notevil = (notevil + 671)/2;
michael@0 2036 break;
michael@0 2037 case "z672":
michael@0 2038 notevil = (notevil + 672)/2;
michael@0 2039 break;
michael@0 2040 case "z673":
michael@0 2041 notevil = (notevil + 673)/2;
michael@0 2042 break;
michael@0 2043 case "z674":
michael@0 2044 notevil = (notevil + 674)/2;
michael@0 2045 break;
michael@0 2046 case "z675":
michael@0 2047 notevil = (notevil + 675)/2;
michael@0 2048 break;
michael@0 2049 case "z676":
michael@0 2050 notevil = (notevil + 676)/2;
michael@0 2051 break;
michael@0 2052 case "z677":
michael@0 2053 notevil = (notevil + 677)/2;
michael@0 2054 break;
michael@0 2055 case "z678":
michael@0 2056 notevil = (notevil + 678)/2;
michael@0 2057 break;
michael@0 2058 case "z679":
michael@0 2059 notevil = (notevil + 679)/2;
michael@0 2060 break;
michael@0 2061 case "z680":
michael@0 2062 notevil = (notevil + 680)/2;
michael@0 2063 break;
michael@0 2064 case "z681":
michael@0 2065 notevil = (notevil + 681)/2;
michael@0 2066 break;
michael@0 2067 case "z682":
michael@0 2068 notevil = (notevil + 682)/2;
michael@0 2069 break;
michael@0 2070 case "z683":
michael@0 2071 notevil = (notevil + 683)/2;
michael@0 2072 break;
michael@0 2073 case "z684":
michael@0 2074 notevil = (notevil + 684)/2;
michael@0 2075 break;
michael@0 2076 case "z685":
michael@0 2077 notevil = (notevil + 685)/2;
michael@0 2078 break;
michael@0 2079 case "z686":
michael@0 2080 notevil = (notevil + 686)/2;
michael@0 2081 break;
michael@0 2082 case "z687":
michael@0 2083 notevil = (notevil + 687)/2;
michael@0 2084 break;
michael@0 2085 case "z688":
michael@0 2086 notevil = (notevil + 688)/2;
michael@0 2087 break;
michael@0 2088 case "z689":
michael@0 2089 notevil = (notevil + 689)/2;
michael@0 2090 break;
michael@0 2091 case "z690":
michael@0 2092 notevil = (notevil + 690)/2;
michael@0 2093 break;
michael@0 2094 case "z691":
michael@0 2095 notevil = (notevil + 691)/2;
michael@0 2096 break;
michael@0 2097 case "z692":
michael@0 2098 notevil = (notevil + 692)/2;
michael@0 2099 break;
michael@0 2100 case "z693":
michael@0 2101 notevil = (notevil + 693)/2;
michael@0 2102 break;
michael@0 2103 case "z694":
michael@0 2104 notevil = (notevil + 694)/2;
michael@0 2105 break;
michael@0 2106 case "z695":
michael@0 2107 notevil = (notevil + 695)/2;
michael@0 2108 break;
michael@0 2109 case "z696":
michael@0 2110 notevil = (notevil + 696)/2;
michael@0 2111 break;
michael@0 2112 case "z697":
michael@0 2113 notevil = (notevil + 697)/2;
michael@0 2114 break;
michael@0 2115 case "z698":
michael@0 2116 notevil = (notevil + 698)/2;
michael@0 2117 break;
michael@0 2118 case "z699":
michael@0 2119 notevil = (notevil + 699)/2;
michael@0 2120 break;
michael@0 2121 case "z700":
michael@0 2122 notevil = (notevil + 700)/2;
michael@0 2123 break;
michael@0 2124 case "z701":
michael@0 2125 notevil = (notevil + 701)/2;
michael@0 2126 break;
michael@0 2127 case "z702":
michael@0 2128 notevil = (notevil + 702)/2;
michael@0 2129 break;
michael@0 2130 case "z703":
michael@0 2131 notevil = (notevil + 703)/2;
michael@0 2132 break;
michael@0 2133 case "z704":
michael@0 2134 notevil = (notevil + 704)/2;
michael@0 2135 break;
michael@0 2136 case "z705":
michael@0 2137 notevil = (notevil + 705)/2;
michael@0 2138 break;
michael@0 2139 case "z706":
michael@0 2140 notevil = (notevil + 706)/2;
michael@0 2141 break;
michael@0 2142 case "z707":
michael@0 2143 notevil = (notevil + 707)/2;
michael@0 2144 break;
michael@0 2145 case "z708":
michael@0 2146 notevil = (notevil + 708)/2;
michael@0 2147 break;
michael@0 2148 case "z709":
michael@0 2149 notevil = (notevil + 709)/2;
michael@0 2150 break;
michael@0 2151 case "z710":
michael@0 2152 notevil = (notevil + 710)/2;
michael@0 2153 break;
michael@0 2154 case "z711":
michael@0 2155 notevil = (notevil + 711)/2;
michael@0 2156 break;
michael@0 2157 case "z712":
michael@0 2158 notevil = (notevil + 712)/2;
michael@0 2159 break;
michael@0 2160 case "z713":
michael@0 2161 notevil = (notevil + 713)/2;
michael@0 2162 break;
michael@0 2163 case "z714":
michael@0 2164 notevil = (notevil + 714)/2;
michael@0 2165 break;
michael@0 2166 case "z715":
michael@0 2167 notevil = (notevil + 715)/2;
michael@0 2168 break;
michael@0 2169 case "z716":
michael@0 2170 notevil = (notevil + 716)/2;
michael@0 2171 break;
michael@0 2172 case "z717":
michael@0 2173 notevil = (notevil + 717)/2;
michael@0 2174 break;
michael@0 2175 case "z718":
michael@0 2176 notevil = (notevil + 718)/2;
michael@0 2177 break;
michael@0 2178 case "z719":
michael@0 2179 notevil = (notevil + 719)/2;
michael@0 2180 break;
michael@0 2181 case "z720":
michael@0 2182 notevil = (notevil + 720)/2;
michael@0 2183 break;
michael@0 2184 case "z721":
michael@0 2185 notevil = (notevil + 721)/2;
michael@0 2186 break;
michael@0 2187 case "z722":
michael@0 2188 notevil = (notevil + 722)/2;
michael@0 2189 break;
michael@0 2190 case "z723":
michael@0 2191 notevil = (notevil + 723)/2;
michael@0 2192 break;
michael@0 2193 case "z724":
michael@0 2194 notevil = (notevil + 724)/2;
michael@0 2195 break;
michael@0 2196 case "z725":
michael@0 2197 notevil = (notevil + 725)/2;
michael@0 2198 break;
michael@0 2199 case "z726":
michael@0 2200 notevil = (notevil + 726)/2;
michael@0 2201 break;
michael@0 2202 case "z727":
michael@0 2203 notevil = (notevil + 727)/2;
michael@0 2204 break;
michael@0 2205 case "z728":
michael@0 2206 notevil = (notevil + 728)/2;
michael@0 2207 break;
michael@0 2208 case "z729":
michael@0 2209 notevil = (notevil + 729)/2;
michael@0 2210 break;
michael@0 2211 case "z730":
michael@0 2212 notevil = (notevil + 730)/2;
michael@0 2213 break;
michael@0 2214 case "z731":
michael@0 2215 notevil = (notevil + 731)/2;
michael@0 2216 break;
michael@0 2217 case "z732":
michael@0 2218 notevil = (notevil + 732)/2;
michael@0 2219 break;
michael@0 2220 case "z733":
michael@0 2221 notevil = (notevil + 733)/2;
michael@0 2222 break;
michael@0 2223 case "z734":
michael@0 2224 notevil = (notevil + 734)/2;
michael@0 2225 break;
michael@0 2226 case "z735":
michael@0 2227 notevil = (notevil + 735)/2;
michael@0 2228 break;
michael@0 2229 case "z736":
michael@0 2230 notevil = (notevil + 736)/2;
michael@0 2231 break;
michael@0 2232 case "z737":
michael@0 2233 notevil = (notevil + 737)/2;
michael@0 2234 break;
michael@0 2235 case "z738":
michael@0 2236 notevil = (notevil + 738)/2;
michael@0 2237 break;
michael@0 2238 case "z739":
michael@0 2239 notevil = (notevil + 739)/2;
michael@0 2240 break;
michael@0 2241 case "z740":
michael@0 2242 notevil = (notevil + 740)/2;
michael@0 2243 break;
michael@0 2244 case "z741":
michael@0 2245 notevil = (notevil + 741)/2;
michael@0 2246 break;
michael@0 2247 case "z742":
michael@0 2248 notevil = (notevil + 742)/2;
michael@0 2249 break;
michael@0 2250 case "z743":
michael@0 2251 notevil = (notevil + 743)/2;
michael@0 2252 break;
michael@0 2253 case "z744":
michael@0 2254 notevil = (notevil + 744)/2;
michael@0 2255 break;
michael@0 2256 case "z745":
michael@0 2257 notevil = (notevil + 745)/2;
michael@0 2258 break;
michael@0 2259 case "z746":
michael@0 2260 notevil = (notevil + 746)/2;
michael@0 2261 break;
michael@0 2262 case "z747":
michael@0 2263 notevil = (notevil + 747)/2;
michael@0 2264 break;
michael@0 2265 case "z748":
michael@0 2266 notevil = (notevil + 748)/2;
michael@0 2267 break;
michael@0 2268 case "z749":
michael@0 2269 notevil = (notevil + 749)/2;
michael@0 2270 break;
michael@0 2271 case "z750":
michael@0 2272 notevil = (notevil + 750)/2;
michael@0 2273 break;
michael@0 2274 case "z751":
michael@0 2275 notevil = (notevil + 751)/2;
michael@0 2276 break;
michael@0 2277 case "z752":
michael@0 2278 notevil = (notevil + 752)/2;
michael@0 2279 break;
michael@0 2280 case "z753":
michael@0 2281 notevil = (notevil + 753)/2;
michael@0 2282 break;
michael@0 2283 case "z754":
michael@0 2284 notevil = (notevil + 754)/2;
michael@0 2285 break;
michael@0 2286 case "z755":
michael@0 2287 notevil = (notevil + 755)/2;
michael@0 2288 break;
michael@0 2289 case "z756":
michael@0 2290 notevil = (notevil + 756)/2;
michael@0 2291 break;
michael@0 2292 case "z757":
michael@0 2293 notevil = (notevil + 757)/2;
michael@0 2294 break;
michael@0 2295 case "z758":
michael@0 2296 notevil = (notevil + 758)/2;
michael@0 2297 break;
michael@0 2298 case "z759":
michael@0 2299 notevil = (notevil + 759)/2;
michael@0 2300 break;
michael@0 2301 case "z760":
michael@0 2302 notevil = (notevil + 760)/2;
michael@0 2303 break;
michael@0 2304 case "z761":
michael@0 2305 notevil = (notevil + 761)/2;
michael@0 2306 break;
michael@0 2307 case "z762":
michael@0 2308 notevil = (notevil + 762)/2;
michael@0 2309 break;
michael@0 2310 case "z763":
michael@0 2311 notevil = (notevil + 763)/2;
michael@0 2312 break;
michael@0 2313 case "z764":
michael@0 2314 notevil = (notevil + 764)/2;
michael@0 2315 break;
michael@0 2316 case "z765":
michael@0 2317 notevil = (notevil + 765)/2;
michael@0 2318 break;
michael@0 2319 case "z766":
michael@0 2320 notevil = (notevil + 766)/2;
michael@0 2321 break;
michael@0 2322 case "z767":
michael@0 2323 notevil = (notevil + 767)/2;
michael@0 2324 break;
michael@0 2325 case "z768":
michael@0 2326 notevil = (notevil + 768)/2;
michael@0 2327 break;
michael@0 2328 case "z769":
michael@0 2329 notevil = (notevil + 769)/2;
michael@0 2330 break;
michael@0 2331 case "z770":
michael@0 2332 notevil = (notevil + 770)/2;
michael@0 2333 break;
michael@0 2334 case "z771":
michael@0 2335 notevil = (notevil + 771)/2;
michael@0 2336 break;
michael@0 2337 case "z772":
michael@0 2338 notevil = (notevil + 772)/2;
michael@0 2339 break;
michael@0 2340 case "z773":
michael@0 2341 notevil = (notevil + 773)/2;
michael@0 2342 break;
michael@0 2343 case "z774":
michael@0 2344 notevil = (notevil + 774)/2;
michael@0 2345 break;
michael@0 2346 case "z775":
michael@0 2347 notevil = (notevil + 775)/2;
michael@0 2348 break;
michael@0 2349 case "z776":
michael@0 2350 notevil = (notevil + 776)/2;
michael@0 2351 break;
michael@0 2352 case "z777":
michael@0 2353 notevil = (notevil + 777)/2;
michael@0 2354 break;
michael@0 2355 case "z778":
michael@0 2356 notevil = (notevil + 778)/2;
michael@0 2357 break;
michael@0 2358 case "z779":
michael@0 2359 notevil = (notevil + 779)/2;
michael@0 2360 break;
michael@0 2361 case "z780":
michael@0 2362 notevil = (notevil + 780)/2;
michael@0 2363 break;
michael@0 2364 case "z781":
michael@0 2365 notevil = (notevil + 781)/2;
michael@0 2366 break;
michael@0 2367 case "z782":
michael@0 2368 notevil = (notevil + 782)/2;
michael@0 2369 break;
michael@0 2370 case "z783":
michael@0 2371 notevil = (notevil + 783)/2;
michael@0 2372 break;
michael@0 2373 case "z784":
michael@0 2374 notevil = (notevil + 784)/2;
michael@0 2375 break;
michael@0 2376 case "z785":
michael@0 2377 notevil = (notevil + 785)/2;
michael@0 2378 break;
michael@0 2379 case "z786":
michael@0 2380 notevil = (notevil + 786)/2;
michael@0 2381 break;
michael@0 2382 case "z787":
michael@0 2383 notevil = (notevil + 787)/2;
michael@0 2384 break;
michael@0 2385 case "z788":
michael@0 2386 notevil = (notevil + 788)/2;
michael@0 2387 break;
michael@0 2388 case "z789":
michael@0 2389 notevil = (notevil + 789)/2;
michael@0 2390 break;
michael@0 2391 case "z790":
michael@0 2392 notevil = (notevil + 790)/2;
michael@0 2393 break;
michael@0 2394 case "z791":
michael@0 2395 notevil = (notevil + 791)/2;
michael@0 2396 break;
michael@0 2397 case "z792":
michael@0 2398 notevil = (notevil + 792)/2;
michael@0 2399 break;
michael@0 2400 case "z793":
michael@0 2401 notevil = (notevil + 793)/2;
michael@0 2402 break;
michael@0 2403 case "z794":
michael@0 2404 notevil = (notevil + 794)/2;
michael@0 2405 break;
michael@0 2406 case "z795":
michael@0 2407 notevil = (notevil + 795)/2;
michael@0 2408 break;
michael@0 2409 case "z796":
michael@0 2410 notevil = (notevil + 796)/2;
michael@0 2411 break;
michael@0 2412 case "z797":
michael@0 2413 notevil = (notevil + 797)/2;
michael@0 2414 break;
michael@0 2415 case "z798":
michael@0 2416 notevil = (notevil + 798)/2;
michael@0 2417 break;
michael@0 2418 case "z799":
michael@0 2419 notevil = (notevil + 799)/2;
michael@0 2420 break;
michael@0 2421 case "z800":
michael@0 2422 notevil = (notevil + 800)/2;
michael@0 2423 break;
michael@0 2424 case "z801":
michael@0 2425 notevil = (notevil + 801)/2;
michael@0 2426 break;
michael@0 2427 case "z802":
michael@0 2428 notevil = (notevil + 802)/2;
michael@0 2429 break;
michael@0 2430 case "z803":
michael@0 2431 notevil = (notevil + 803)/2;
michael@0 2432 break;
michael@0 2433 case "z804":
michael@0 2434 notevil = (notevil + 804)/2;
michael@0 2435 break;
michael@0 2436 case "z805":
michael@0 2437 notevil = (notevil + 805)/2;
michael@0 2438 break;
michael@0 2439 case "z806":
michael@0 2440 notevil = (notevil + 806)/2;
michael@0 2441 break;
michael@0 2442 case "z807":
michael@0 2443 notevil = (notevil + 807)/2;
michael@0 2444 break;
michael@0 2445 case "z808":
michael@0 2446 notevil = (notevil + 808)/2;
michael@0 2447 break;
michael@0 2448 case "z809":
michael@0 2449 notevil = (notevil + 809)/2;
michael@0 2450 break;
michael@0 2451 case "z810":
michael@0 2452 notevil = (notevil + 810)/2;
michael@0 2453 break;
michael@0 2454 case "z811":
michael@0 2455 notevil = (notevil + 811)/2;
michael@0 2456 break;
michael@0 2457 case "z812":
michael@0 2458 notevil = (notevil + 812)/2;
michael@0 2459 break;
michael@0 2460 case "z813":
michael@0 2461 notevil = (notevil + 813)/2;
michael@0 2462 break;
michael@0 2463 case "z814":
michael@0 2464 notevil = (notevil + 814)/2;
michael@0 2465 break;
michael@0 2466 case "z815":
michael@0 2467 notevil = (notevil + 815)/2;
michael@0 2468 break;
michael@0 2469 case "z816":
michael@0 2470 notevil = (notevil + 816)/2;
michael@0 2471 break;
michael@0 2472 case "z817":
michael@0 2473 notevil = (notevil + 817)/2;
michael@0 2474 break;
michael@0 2475 case "z818":
michael@0 2476 notevil = (notevil + 818)/2;
michael@0 2477 break;
michael@0 2478 case "z819":
michael@0 2479 notevil = (notevil + 819)/2;
michael@0 2480 break;
michael@0 2481 case "z820":
michael@0 2482 notevil = (notevil + 820)/2;
michael@0 2483 break;
michael@0 2484 case "z821":
michael@0 2485 notevil = (notevil + 821)/2;
michael@0 2486 break;
michael@0 2487 case "z822":
michael@0 2488 notevil = (notevil + 822)/2;
michael@0 2489 break;
michael@0 2490 case "z823":
michael@0 2491 notevil = (notevil + 823)/2;
michael@0 2492 break;
michael@0 2493 case "z824":
michael@0 2494 notevil = (notevil + 824)/2;
michael@0 2495 break;
michael@0 2496 case "z825":
michael@0 2497 notevil = (notevil + 825)/2;
michael@0 2498 break;
michael@0 2499 case "z826":
michael@0 2500 notevil = (notevil + 826)/2;
michael@0 2501 break;
michael@0 2502 case "z827":
michael@0 2503 notevil = (notevil + 827)/2;
michael@0 2504 break;
michael@0 2505 case "z828":
michael@0 2506 notevil = (notevil + 828)/2;
michael@0 2507 break;
michael@0 2508 case "z829":
michael@0 2509 notevil = (notevil + 829)/2;
michael@0 2510 break;
michael@0 2511 case "z830":
michael@0 2512 notevil = (notevil + 830)/2;
michael@0 2513 break;
michael@0 2514 case "z831":
michael@0 2515 notevil = (notevil + 831)/2;
michael@0 2516 break;
michael@0 2517 case "z832":
michael@0 2518 notevil = (notevil + 832)/2;
michael@0 2519 break;
michael@0 2520 case "z833":
michael@0 2521 notevil = (notevil + 833)/2;
michael@0 2522 break;
michael@0 2523 case "z834":
michael@0 2524 notevil = (notevil + 834)/2;
michael@0 2525 break;
michael@0 2526 case "z835":
michael@0 2527 notevil = (notevil + 835)/2;
michael@0 2528 break;
michael@0 2529 case "z836":
michael@0 2530 notevil = (notevil + 836)/2;
michael@0 2531 break;
michael@0 2532 case "z837":
michael@0 2533 notevil = (notevil + 837)/2;
michael@0 2534 break;
michael@0 2535 case "z838":
michael@0 2536 notevil = (notevil + 838)/2;
michael@0 2537 break;
michael@0 2538 case "z839":
michael@0 2539 notevil = (notevil + 839)/2;
michael@0 2540 break;
michael@0 2541 case "z840":
michael@0 2542 notevil = (notevil + 840)/2;
michael@0 2543 break;
michael@0 2544 case "z841":
michael@0 2545 notevil = (notevil + 841)/2;
michael@0 2546 break;
michael@0 2547 case "z842":
michael@0 2548 notevil = (notevil + 842)/2;
michael@0 2549 break;
michael@0 2550 case "z843":
michael@0 2551 notevil = (notevil + 843)/2;
michael@0 2552 break;
michael@0 2553 case "z844":
michael@0 2554 notevil = (notevil + 844)/2;
michael@0 2555 break;
michael@0 2556 case "z845":
michael@0 2557 notevil = (notevil + 845)/2;
michael@0 2558 break;
michael@0 2559 case "z846":
michael@0 2560 notevil = (notevil + 846)/2;
michael@0 2561 break;
michael@0 2562 case "z847":
michael@0 2563 notevil = (notevil + 847)/2;
michael@0 2564 break;
michael@0 2565 case "z848":
michael@0 2566 notevil = (notevil + 848)/2;
michael@0 2567 break;
michael@0 2568 case "z849":
michael@0 2569 notevil = (notevil + 849)/2;
michael@0 2570 break;
michael@0 2571 case "z850":
michael@0 2572 notevil = (notevil + 850)/2;
michael@0 2573 break;
michael@0 2574 case "z851":
michael@0 2575 notevil = (notevil + 851)/2;
michael@0 2576 break;
michael@0 2577 case "z852":
michael@0 2578 notevil = (notevil + 852)/2;
michael@0 2579 break;
michael@0 2580 case "z853":
michael@0 2581 notevil = (notevil + 853)/2;
michael@0 2582 break;
michael@0 2583 case "z854":
michael@0 2584 notevil = (notevil + 854)/2;
michael@0 2585 break;
michael@0 2586 case "z855":
michael@0 2587 notevil = (notevil + 855)/2;
michael@0 2588 break;
michael@0 2589 case "z856":
michael@0 2590 notevil = (notevil + 856)/2;
michael@0 2591 break;
michael@0 2592 case "z857":
michael@0 2593 notevil = (notevil + 857)/2;
michael@0 2594 break;
michael@0 2595 case "z858":
michael@0 2596 notevil = (notevil + 858)/2;
michael@0 2597 break;
michael@0 2598 case "z859":
michael@0 2599 notevil = (notevil + 859)/2;
michael@0 2600 break;
michael@0 2601 case "z860":
michael@0 2602 notevil = (notevil + 860)/2;
michael@0 2603 break;
michael@0 2604 case "z861":
michael@0 2605 notevil = (notevil + 861)/2;
michael@0 2606 break;
michael@0 2607 case "z862":
michael@0 2608 notevil = (notevil + 862)/2;
michael@0 2609 break;
michael@0 2610 case "z863":
michael@0 2611 notevil = (notevil + 863)/2;
michael@0 2612 break;
michael@0 2613 case "z864":
michael@0 2614 notevil = (notevil + 864)/2;
michael@0 2615 break;
michael@0 2616 case "z865":
michael@0 2617 notevil = (notevil + 865)/2;
michael@0 2618 break;
michael@0 2619 case "z866":
michael@0 2620 notevil = (notevil + 866)/2;
michael@0 2621 break;
michael@0 2622 case "z867":
michael@0 2623 notevil = (notevil + 867)/2;
michael@0 2624 break;
michael@0 2625 case "z868":
michael@0 2626 notevil = (notevil + 868)/2;
michael@0 2627 break;
michael@0 2628 case "z869":
michael@0 2629 notevil = (notevil + 869)/2;
michael@0 2630 break;
michael@0 2631 case "z870":
michael@0 2632 notevil = (notevil + 870)/2;
michael@0 2633 break;
michael@0 2634 case "z871":
michael@0 2635 notevil = (notevil + 871)/2;
michael@0 2636 break;
michael@0 2637 case "z872":
michael@0 2638 notevil = (notevil + 872)/2;
michael@0 2639 break;
michael@0 2640 case "z873":
michael@0 2641 notevil = (notevil + 873)/2;
michael@0 2642 break;
michael@0 2643 case "z874":
michael@0 2644 notevil = (notevil + 874)/2;
michael@0 2645 break;
michael@0 2646 case "z875":
michael@0 2647 notevil = (notevil + 875)/2;
michael@0 2648 break;
michael@0 2649 case "z876":
michael@0 2650 notevil = (notevil + 876)/2;
michael@0 2651 break;
michael@0 2652 case "z877":
michael@0 2653 notevil = (notevil + 877)/2;
michael@0 2654 break;
michael@0 2655 case "z878":
michael@0 2656 notevil = (notevil + 878)/2;
michael@0 2657 break;
michael@0 2658 case "z879":
michael@0 2659 notevil = (notevil + 879)/2;
michael@0 2660 break;
michael@0 2661 case "z880":
michael@0 2662 notevil = (notevil + 880)/2;
michael@0 2663 break;
michael@0 2664 case "z881":
michael@0 2665 notevil = (notevil + 881)/2;
michael@0 2666 break;
michael@0 2667 case "z882":
michael@0 2668 notevil = (notevil + 882)/2;
michael@0 2669 break;
michael@0 2670 case "z883":
michael@0 2671 notevil = (notevil + 883)/2;
michael@0 2672 break;
michael@0 2673 case "z884":
michael@0 2674 notevil = (notevil + 884)/2;
michael@0 2675 break;
michael@0 2676 case "z885":
michael@0 2677 notevil = (notevil + 885)/2;
michael@0 2678 break;
michael@0 2679 case "z886":
michael@0 2680 notevil = (notevil + 886)/2;
michael@0 2681 break;
michael@0 2682 case "z887":
michael@0 2683 notevil = (notevil + 887)/2;
michael@0 2684 break;
michael@0 2685 case "z888":
michael@0 2686 notevil = (notevil + 888)/2;
michael@0 2687 break;
michael@0 2688 case "z889":
michael@0 2689 notevil = (notevil + 889)/2;
michael@0 2690 break;
michael@0 2691 case "z890":
michael@0 2692 notevil = (notevil + 890)/2;
michael@0 2693 break;
michael@0 2694 case "z891":
michael@0 2695 notevil = (notevil + 891)/2;
michael@0 2696 break;
michael@0 2697 case "z892":
michael@0 2698 notevil = (notevil + 892)/2;
michael@0 2699 break;
michael@0 2700 case "z893":
michael@0 2701 notevil = (notevil + 893)/2;
michael@0 2702 break;
michael@0 2703 case "z894":
michael@0 2704 notevil = (notevil + 894)/2;
michael@0 2705 break;
michael@0 2706 case "z895":
michael@0 2707 notevil = (notevil + 895)/2;
michael@0 2708 break;
michael@0 2709 case "z896":
michael@0 2710 notevil = (notevil + 896)/2;
michael@0 2711 break;
michael@0 2712 case "z897":
michael@0 2713 notevil = (notevil + 897)/2;
michael@0 2714 break;
michael@0 2715 case "z898":
michael@0 2716 notevil = (notevil + 898)/2;
michael@0 2717 break;
michael@0 2718 case "z899":
michael@0 2719 notevil = (notevil + 899)/2;
michael@0 2720 break;
michael@0 2721 case "z900":
michael@0 2722 notevil = (notevil + 900)/2;
michael@0 2723 break;
michael@0 2724 case "z901":
michael@0 2725 notevil = (notevil + 901)/2;
michael@0 2726 break;
michael@0 2727 case "z902":
michael@0 2728 notevil = (notevil + 902)/2;
michael@0 2729 break;
michael@0 2730 case "z903":
michael@0 2731 notevil = (notevil + 903)/2;
michael@0 2732 break;
michael@0 2733 case "z904":
michael@0 2734 notevil = (notevil + 904)/2;
michael@0 2735 break;
michael@0 2736 case "z905":
michael@0 2737 notevil = (notevil + 905)/2;
michael@0 2738 break;
michael@0 2739 case "z906":
michael@0 2740 notevil = (notevil + 906)/2;
michael@0 2741 break;
michael@0 2742 case "z907":
michael@0 2743 notevil = (notevil + 907)/2;
michael@0 2744 break;
michael@0 2745 case "z908":
michael@0 2746 notevil = (notevil + 908)/2;
michael@0 2747 break;
michael@0 2748 case "z909":
michael@0 2749 notevil = (notevil + 909)/2;
michael@0 2750 break;
michael@0 2751 case "z910":
michael@0 2752 notevil = (notevil + 910)/2;
michael@0 2753 break;
michael@0 2754 case "z911":
michael@0 2755 notevil = (notevil + 911)/2;
michael@0 2756 break;
michael@0 2757 case "z912":
michael@0 2758 notevil = (notevil + 912)/2;
michael@0 2759 break;
michael@0 2760 case "z913":
michael@0 2761 notevil = (notevil + 913)/2;
michael@0 2762 break;
michael@0 2763 case "z914":
michael@0 2764 notevil = (notevil + 914)/2;
michael@0 2765 break;
michael@0 2766 case "z915":
michael@0 2767 notevil = (notevil + 915)/2;
michael@0 2768 break;
michael@0 2769 case "z916":
michael@0 2770 notevil = (notevil + 916)/2;
michael@0 2771 break;
michael@0 2772 case "z917":
michael@0 2773 notevil = (notevil + 917)/2;
michael@0 2774 break;
michael@0 2775 case "z918":
michael@0 2776 notevil = (notevil + 918)/2;
michael@0 2777 break;
michael@0 2778 case "z919":
michael@0 2779 notevil = (notevil + 919)/2;
michael@0 2780 break;
michael@0 2781 case "z920":
michael@0 2782 notevil = (notevil + 920)/2;
michael@0 2783 break;
michael@0 2784 case "z921":
michael@0 2785 notevil = (notevil + 921)/2;
michael@0 2786 break;
michael@0 2787 case "z922":
michael@0 2788 notevil = (notevil + 922)/2;
michael@0 2789 break;
michael@0 2790 case "z923":
michael@0 2791 notevil = (notevil + 923)/2;
michael@0 2792 break;
michael@0 2793 case "z924":
michael@0 2794 notevil = (notevil + 924)/2;
michael@0 2795 break;
michael@0 2796 case "z925":
michael@0 2797 notevil = (notevil + 925)/2;
michael@0 2798 break;
michael@0 2799 case "z926":
michael@0 2800 notevil = (notevil + 926)/2;
michael@0 2801 break;
michael@0 2802 case "z927":
michael@0 2803 notevil = (notevil + 927)/2;
michael@0 2804 break;
michael@0 2805 case "z928":
michael@0 2806 notevil = (notevil + 928)/2;
michael@0 2807 break;
michael@0 2808 case "z929":
michael@0 2809 notevil = (notevil + 929)/2;
michael@0 2810 break;
michael@0 2811 case "z930":
michael@0 2812 notevil = (notevil + 930)/2;
michael@0 2813 break;
michael@0 2814 case "z931":
michael@0 2815 notevil = (notevil + 931)/2;
michael@0 2816 break;
michael@0 2817 case "z932":
michael@0 2818 notevil = (notevil + 932)/2;
michael@0 2819 break;
michael@0 2820 case "z933":
michael@0 2821 notevil = (notevil + 933)/2;
michael@0 2822 break;
michael@0 2823 case "z934":
michael@0 2824 notevil = (notevil + 934)/2;
michael@0 2825 break;
michael@0 2826 case "z935":
michael@0 2827 notevil = (notevil + 935)/2;
michael@0 2828 break;
michael@0 2829 case "z936":
michael@0 2830 notevil = (notevil + 936)/2;
michael@0 2831 break;
michael@0 2832 case "z937":
michael@0 2833 notevil = (notevil + 937)/2;
michael@0 2834 break;
michael@0 2835 case "z938":
michael@0 2836 notevil = (notevil + 938)/2;
michael@0 2837 break;
michael@0 2838 case "z939":
michael@0 2839 notevil = (notevil + 939)/2;
michael@0 2840 break;
michael@0 2841 case "z940":
michael@0 2842 notevil = (notevil + 940)/2;
michael@0 2843 break;
michael@0 2844 case "z941":
michael@0 2845 notevil = (notevil + 941)/2;
michael@0 2846 break;
michael@0 2847 case "z942":
michael@0 2848 notevil = (notevil + 942)/2;
michael@0 2849 break;
michael@0 2850 case "z943":
michael@0 2851 notevil = (notevil + 943)/2;
michael@0 2852 break;
michael@0 2853 case "z944":
michael@0 2854 notevil = (notevil + 944)/2;
michael@0 2855 break;
michael@0 2856 case "z945":
michael@0 2857 notevil = (notevil + 945)/2;
michael@0 2858 break;
michael@0 2859 case "z946":
michael@0 2860 notevil = (notevil + 946)/2;
michael@0 2861 break;
michael@0 2862 case "z947":
michael@0 2863 notevil = (notevil + 947)/2;
michael@0 2864 break;
michael@0 2865 case "z948":
michael@0 2866 notevil = (notevil + 948)/2;
michael@0 2867 break;
michael@0 2868 case "z949":
michael@0 2869 notevil = (notevil + 949)/2;
michael@0 2870 break;
michael@0 2871 case "z950":
michael@0 2872 notevil = (notevil + 950)/2;
michael@0 2873 break;
michael@0 2874 case "z951":
michael@0 2875 notevil = (notevil + 951)/2;
michael@0 2876 break;
michael@0 2877 case "z952":
michael@0 2878 notevil = (notevil + 952)/2;
michael@0 2879 break;
michael@0 2880 case "z953":
michael@0 2881 notevil = (notevil + 953)/2;
michael@0 2882 break;
michael@0 2883 case "z954":
michael@0 2884 notevil = (notevil + 954)/2;
michael@0 2885 break;
michael@0 2886 case "z955":
michael@0 2887 notevil = (notevil + 955)/2;
michael@0 2888 break;
michael@0 2889 case "z956":
michael@0 2890 notevil = (notevil + 956)/2;
michael@0 2891 break;
michael@0 2892 case "z957":
michael@0 2893 notevil = (notevil + 957)/2;
michael@0 2894 break;
michael@0 2895 case "z958":
michael@0 2896 notevil = (notevil + 958)/2;
michael@0 2897 break;
michael@0 2898 case "z959":
michael@0 2899 notevil = (notevil + 959)/2;
michael@0 2900 break;
michael@0 2901 case "z960":
michael@0 2902 notevil = (notevil + 960)/2;
michael@0 2903 break;
michael@0 2904 case "z961":
michael@0 2905 notevil = (notevil + 961)/2;
michael@0 2906 break;
michael@0 2907 case "z962":
michael@0 2908 notevil = (notevil + 962)/2;
michael@0 2909 break;
michael@0 2910 case "z963":
michael@0 2911 notevil = (notevil + 963)/2;
michael@0 2912 break;
michael@0 2913 case "z964":
michael@0 2914 notevil = (notevil + 964)/2;
michael@0 2915 break;
michael@0 2916 case "z965":
michael@0 2917 notevil = (notevil + 965)/2;
michael@0 2918 break;
michael@0 2919 case "z966":
michael@0 2920 notevil = (notevil + 966)/2;
michael@0 2921 break;
michael@0 2922 case "z967":
michael@0 2923 notevil = (notevil + 967)/2;
michael@0 2924 break;
michael@0 2925 case "z968":
michael@0 2926 notevil = (notevil + 968)/2;
michael@0 2927 break;
michael@0 2928 case "z969":
michael@0 2929 notevil = (notevil + 969)/2;
michael@0 2930 break;
michael@0 2931 case "z970":
michael@0 2932 notevil = (notevil + 970)/2;
michael@0 2933 break;
michael@0 2934 case "z971":
michael@0 2935 notevil = (notevil + 971)/2;
michael@0 2936 break;
michael@0 2937 case "z972":
michael@0 2938 notevil = (notevil + 972)/2;
michael@0 2939 break;
michael@0 2940 case "z973":
michael@0 2941 notevil = (notevil + 973)/2;
michael@0 2942 break;
michael@0 2943 case "z974":
michael@0 2944 notevil = (notevil + 974)/2;
michael@0 2945 break;
michael@0 2946 case "z975":
michael@0 2947 notevil = (notevil + 975)/2;
michael@0 2948 break;
michael@0 2949 case "z976":
michael@0 2950 notevil = (notevil + 976)/2;
michael@0 2951 break;
michael@0 2952 case "z977":
michael@0 2953 notevil = (notevil + 977)/2;
michael@0 2954 break;
michael@0 2955 case "z978":
michael@0 2956 notevil = (notevil + 978)/2;
michael@0 2957 break;
michael@0 2958 case "z979":
michael@0 2959 notevil = (notevil + 979)/2;
michael@0 2960 break;
michael@0 2961 case "z980":
michael@0 2962 notevil = (notevil + 980)/2;
michael@0 2963 break;
michael@0 2964 case "z981":
michael@0 2965 notevil = (notevil + 981)/2;
michael@0 2966 break;
michael@0 2967 case "z982":
michael@0 2968 notevil = (notevil + 982)/2;
michael@0 2969 break;
michael@0 2970 case "z983":
michael@0 2971 notevil = (notevil + 983)/2;
michael@0 2972 break;
michael@0 2973 case "z984":
michael@0 2974 notevil = (notevil + 984)/2;
michael@0 2975 break;
michael@0 2976 case "z985":
michael@0 2977 notevil = (notevil + 985)/2;
michael@0 2978 break;
michael@0 2979 case "z986":
michael@0 2980 notevil = (notevil + 986)/2;
michael@0 2981 break;
michael@0 2982 case "z987":
michael@0 2983 notevil = (notevil + 987)/2;
michael@0 2984 break;
michael@0 2985 case "z988":
michael@0 2986 notevil = (notevil + 988)/2;
michael@0 2987 break;
michael@0 2988 case "z989":
michael@0 2989 notevil = (notevil + 989)/2;
michael@0 2990 break;
michael@0 2991 case "z990":
michael@0 2992 notevil = (notevil + 990)/2;
michael@0 2993 break;
michael@0 2994 case "z991":
michael@0 2995 notevil = (notevil + 991)/2;
michael@0 2996 break;
michael@0 2997 case "z992":
michael@0 2998 notevil = (notevil + 992)/2;
michael@0 2999 break;
michael@0 3000 case "z993":
michael@0 3001 notevil = (notevil + 993)/2;
michael@0 3002 break;
michael@0 3003 case "z994":
michael@0 3004 notevil = (notevil + 994)/2;
michael@0 3005 break;
michael@0 3006 case "z995":
michael@0 3007 notevil = (notevil + 995)/2;
michael@0 3008 break;
michael@0 3009 case "z996":
michael@0 3010 notevil = (notevil + 996)/2;
michael@0 3011 break;
michael@0 3012 case "z997":
michael@0 3013 notevil = (notevil + 997)/2;
michael@0 3014 break;
michael@0 3015 case "z998":
michael@0 3016 notevil = (notevil + 998)/2;
michael@0 3017 break;
michael@0 3018 case "z999":
michael@0 3019 notevil = (notevil + 999)/2;
michael@0 3020 break;
michael@0 3021 case "z1000":
michael@0 3022 notevil = (notevil + 1000)/2;
michael@0 3023 break;
michael@0 3024 case "z1001":
michael@0 3025 notevil = (notevil + 1001)/2;
michael@0 3026 break;
michael@0 3027 case "z1002":
michael@0 3028 notevil = (notevil + 1002)/2;
michael@0 3029 break;
michael@0 3030 case "z1003":
michael@0 3031 notevil = (notevil + 1003)/2;
michael@0 3032 break;
michael@0 3033 case "z1004":
michael@0 3034 notevil = (notevil + 1004)/2;
michael@0 3035 break;
michael@0 3036 case "z1005":
michael@0 3037 notevil = (notevil + 1005)/2;
michael@0 3038 break;
michael@0 3039 case "z1006":
michael@0 3040 notevil = (notevil + 1006)/2;
michael@0 3041 break;
michael@0 3042 case "z1007":
michael@0 3043 notevil = (notevil + 1007)/2;
michael@0 3044 break;
michael@0 3045 case "z1008":
michael@0 3046 notevil = (notevil + 1008)/2;
michael@0 3047 break;
michael@0 3048 case "z1009":
michael@0 3049 notevil = (notevil + 1009)/2;
michael@0 3050 break;
michael@0 3051 case "z1010":
michael@0 3052 notevil = (notevil + 1010)/2;
michael@0 3053 break;
michael@0 3054 case "z1011":
michael@0 3055 notevil = (notevil + 1011)/2;
michael@0 3056 break;
michael@0 3057 case "z1012":
michael@0 3058 notevil = (notevil + 1012)/2;
michael@0 3059 break;
michael@0 3060 case "z1013":
michael@0 3061 notevil = (notevil + 1013)/2;
michael@0 3062 break;
michael@0 3063 case "z1014":
michael@0 3064 notevil = (notevil + 1014)/2;
michael@0 3065 break;
michael@0 3066 case "z1015":
michael@0 3067 notevil = (notevil + 1015)/2;
michael@0 3068 break;
michael@0 3069 case "z1016":
michael@0 3070 notevil = (notevil + 1016)/2;
michael@0 3071 break;
michael@0 3072 case "z1017":
michael@0 3073 notevil = (notevil + 1017)/2;
michael@0 3074 break;
michael@0 3075 case "z1018":
michael@0 3076 notevil = (notevil + 1018)/2;
michael@0 3077 break;
michael@0 3078 case "z1019":
michael@0 3079 notevil = (notevil + 1019)/2;
michael@0 3080 break;
michael@0 3081 case "z1020":
michael@0 3082 notevil = (notevil + 1020)/2;
michael@0 3083 break;
michael@0 3084 case "z1021":
michael@0 3085 notevil = (notevil + 1021)/2;
michael@0 3086 break;
michael@0 3087 case "z1022":
michael@0 3088 notevil = (notevil + 1022)/2;
michael@0 3089 break;
michael@0 3090 case "z1023":
michael@0 3091 notevil = (notevil + 1023)/2;
michael@0 3092 break;
michael@0 3093 case "z1024":
michael@0 3094 notevil = (notevil + 1024)/2;
michael@0 3095 break;
michael@0 3096 case "z1025":
michael@0 3097 notevil = (notevil + 1025)/2;
michael@0 3098 break;
michael@0 3099 case "z1026":
michael@0 3100 notevil = (notevil + 1026)/2;
michael@0 3101 break;
michael@0 3102 case "z1027":
michael@0 3103 notevil = (notevil + 1027)/2;
michael@0 3104 break;
michael@0 3105 case "z1028":
michael@0 3106 notevil = (notevil + 1028)/2;
michael@0 3107 break;
michael@0 3108 case "z1029":
michael@0 3109 notevil = (notevil + 1029)/2;
michael@0 3110 break;
michael@0 3111 case "z1030":
michael@0 3112 notevil = (notevil + 1030)/2;
michael@0 3113 break;
michael@0 3114 case "z1031":
michael@0 3115 notevil = (notevil + 1031)/2;
michael@0 3116 break;
michael@0 3117 case "z1032":
michael@0 3118 notevil = (notevil + 1032)/2;
michael@0 3119 break;
michael@0 3120 case "z1033":
michael@0 3121 notevil = (notevil + 1033)/2;
michael@0 3122 break;
michael@0 3123 case "z1034":
michael@0 3124 notevil = (notevil + 1034)/2;
michael@0 3125 break;
michael@0 3126 case "z1035":
michael@0 3127 notevil = (notevil + 1035)/2;
michael@0 3128 break;
michael@0 3129 case "z1036":
michael@0 3130 notevil = (notevil + 1036)/2;
michael@0 3131 break;
michael@0 3132 case "z1037":
michael@0 3133 notevil = (notevil + 1037)/2;
michael@0 3134 break;
michael@0 3135 case "z1038":
michael@0 3136 notevil = (notevil + 1038)/2;
michael@0 3137 break;
michael@0 3138 case "z1039":
michael@0 3139 notevil = (notevil + 1039)/2;
michael@0 3140 break;
michael@0 3141 case "z1040":
michael@0 3142 notevil = (notevil + 1040)/2;
michael@0 3143 break;
michael@0 3144 case "z1041":
michael@0 3145 notevil = (notevil + 1041)/2;
michael@0 3146 break;
michael@0 3147 case "z1042":
michael@0 3148 notevil = (notevil + 1042)/2;
michael@0 3149 break;
michael@0 3150 case "z1043":
michael@0 3151 notevil = (notevil + 1043)/2;
michael@0 3152 break;
michael@0 3153 case "z1044":
michael@0 3154 notevil = (notevil + 1044)/2;
michael@0 3155 break;
michael@0 3156 case "z1045":
michael@0 3157 notevil = (notevil + 1045)/2;
michael@0 3158 break;
michael@0 3159 case "z1046":
michael@0 3160 notevil = (notevil + 1046)/2;
michael@0 3161 break;
michael@0 3162 case "z1047":
michael@0 3163 notevil = (notevil + 1047)/2;
michael@0 3164 break;
michael@0 3165 case "z1048":
michael@0 3166 notevil = (notevil + 1048)/2;
michael@0 3167 break;
michael@0 3168 case "z1049":
michael@0 3169 notevil = (notevil + 1049)/2;
michael@0 3170 break;
michael@0 3171 case "z1050":
michael@0 3172 notevil = (notevil + 1050)/2;
michael@0 3173 break;
michael@0 3174 case "z1051":
michael@0 3175 notevil = (notevil + 1051)/2;
michael@0 3176 break;
michael@0 3177 case "z1052":
michael@0 3178 notevil = (notevil + 1052)/2;
michael@0 3179 break;
michael@0 3180 case "z1053":
michael@0 3181 notevil = (notevil + 1053)/2;
michael@0 3182 break;
michael@0 3183 case "z1054":
michael@0 3184 notevil = (notevil + 1054)/2;
michael@0 3185 break;
michael@0 3186 case "z1055":
michael@0 3187 notevil = (notevil + 1055)/2;
michael@0 3188 break;
michael@0 3189 case "z1056":
michael@0 3190 notevil = (notevil + 1056)/2;
michael@0 3191 break;
michael@0 3192 case "z1057":
michael@0 3193 notevil = (notevil + 1057)/2;
michael@0 3194 break;
michael@0 3195 case "z1058":
michael@0 3196 notevil = (notevil + 1058)/2;
michael@0 3197 break;
michael@0 3198 case "z1059":
michael@0 3199 notevil = (notevil + 1059)/2;
michael@0 3200 break;
michael@0 3201 case "z1060":
michael@0 3202 notevil = (notevil + 1060)/2;
michael@0 3203 break;
michael@0 3204 case "z1061":
michael@0 3205 notevil = (notevil + 1061)/2;
michael@0 3206 break;
michael@0 3207 case "z1062":
michael@0 3208 notevil = (notevil + 1062)/2;
michael@0 3209 break;
michael@0 3210 case "z1063":
michael@0 3211 notevil = (notevil + 1063)/2;
michael@0 3212 break;
michael@0 3213 case "z1064":
michael@0 3214 notevil = (notevil + 1064)/2;
michael@0 3215 break;
michael@0 3216 case "z1065":
michael@0 3217 notevil = (notevil + 1065)/2;
michael@0 3218 break;
michael@0 3219 case "z1066":
michael@0 3220 notevil = (notevil + 1066)/2;
michael@0 3221 break;
michael@0 3222 case "z1067":
michael@0 3223 notevil = (notevil + 1067)/2;
michael@0 3224 break;
michael@0 3225 case "z1068":
michael@0 3226 notevil = (notevil + 1068)/2;
michael@0 3227 break;
michael@0 3228 case "z1069":
michael@0 3229 notevil = (notevil + 1069)/2;
michael@0 3230 break;
michael@0 3231 case "z1070":
michael@0 3232 notevil = (notevil + 1070)/2;
michael@0 3233 break;
michael@0 3234 case "z1071":
michael@0 3235 notevil = (notevil + 1071)/2;
michael@0 3236 break;
michael@0 3237 case "z1072":
michael@0 3238 notevil = (notevil + 1072)/2;
michael@0 3239 break;
michael@0 3240 case "z1073":
michael@0 3241 notevil = (notevil + 1073)/2;
michael@0 3242 break;
michael@0 3243 case "z1074":
michael@0 3244 notevil = (notevil + 1074)/2;
michael@0 3245 break;
michael@0 3246 case "z1075":
michael@0 3247 notevil = (notevil + 1075)/2;
michael@0 3248 break;
michael@0 3249 case "z1076":
michael@0 3250 notevil = (notevil + 1076)/2;
michael@0 3251 break;
michael@0 3252 case "z1077":
michael@0 3253 notevil = (notevil + 1077)/2;
michael@0 3254 break;
michael@0 3255 case "z1078":
michael@0 3256 notevil = (notevil + 1078)/2;
michael@0 3257 break;
michael@0 3258 case "z1079":
michael@0 3259 notevil = (notevil + 1079)/2;
michael@0 3260 break;
michael@0 3261 case "z1080":
michael@0 3262 notevil = (notevil + 1080)/2;
michael@0 3263 break;
michael@0 3264 case "z1081":
michael@0 3265 notevil = (notevil + 1081)/2;
michael@0 3266 break;
michael@0 3267 case "z1082":
michael@0 3268 notevil = (notevil + 1082)/2;
michael@0 3269 break;
michael@0 3270 case "z1083":
michael@0 3271 notevil = (notevil + 1083)/2;
michael@0 3272 break;
michael@0 3273 case "z1084":
michael@0 3274 notevil = (notevil + 1084)/2;
michael@0 3275 break;
michael@0 3276 case "z1085":
michael@0 3277 notevil = (notevil + 1085)/2;
michael@0 3278 break;
michael@0 3279 case "z1086":
michael@0 3280 notevil = (notevil + 1086)/2;
michael@0 3281 break;
michael@0 3282 case "z1087":
michael@0 3283 notevil = (notevil + 1087)/2;
michael@0 3284 break;
michael@0 3285 case "z1088":
michael@0 3286 notevil = (notevil + 1088)/2;
michael@0 3287 break;
michael@0 3288 case "z1089":
michael@0 3289 notevil = (notevil + 1089)/2;
michael@0 3290 break;
michael@0 3291 case "z1090":
michael@0 3292 notevil = (notevil + 1090)/2;
michael@0 3293 break;
michael@0 3294 case "z1091":
michael@0 3295 notevil = (notevil + 1091)/2;
michael@0 3296 break;
michael@0 3297 case "z1092":
michael@0 3298 notevil = (notevil + 1092)/2;
michael@0 3299 break;
michael@0 3300 case "z1093":
michael@0 3301 notevil = (notevil + 1093)/2;
michael@0 3302 break;
michael@0 3303 case "z1094":
michael@0 3304 notevil = (notevil + 1094)/2;
michael@0 3305 break;
michael@0 3306 case "z1095":
michael@0 3307 notevil = (notevil + 1095)/2;
michael@0 3308 break;
michael@0 3309 case "z1096":
michael@0 3310 notevil = (notevil + 1096)/2;
michael@0 3311 break;
michael@0 3312 case "z1097":
michael@0 3313 notevil = (notevil + 1097)/2;
michael@0 3314 break;
michael@0 3315 case "z1098":
michael@0 3316 notevil = (notevil + 1098)/2;
michael@0 3317 break;
michael@0 3318 case "z1099":
michael@0 3319 notevil = (notevil + 1099)/2;
michael@0 3320 break;
michael@0 3321 case "z1100":
michael@0 3322 notevil = (notevil + 1100)/2;
michael@0 3323 break;
michael@0 3324 case "z1101":
michael@0 3325 notevil = (notevil + 1101)/2;
michael@0 3326 break;
michael@0 3327 case "z1102":
michael@0 3328 notevil = (notevil + 1102)/2;
michael@0 3329 break;
michael@0 3330 case "z1103":
michael@0 3331 notevil = (notevil + 1103)/2;
michael@0 3332 break;
michael@0 3333 case "z1104":
michael@0 3334 notevil = (notevil + 1104)/2;
michael@0 3335 break;
michael@0 3336 case "z1105":
michael@0 3337 notevil = (notevil + 1105)/2;
michael@0 3338 break;
michael@0 3339 case "z1106":
michael@0 3340 notevil = (notevil + 1106)/2;
michael@0 3341 break;
michael@0 3342 case "z1107":
michael@0 3343 notevil = (notevil + 1107)/2;
michael@0 3344 break;
michael@0 3345 case "z1108":
michael@0 3346 notevil = (notevil + 1108)/2;
michael@0 3347 break;
michael@0 3348 case "z1109":
michael@0 3349 notevil = (notevil + 1109)/2;
michael@0 3350 break;
michael@0 3351 case "z1110":
michael@0 3352 notevil = (notevil + 1110)/2;
michael@0 3353 break;
michael@0 3354 case "z1111":
michael@0 3355 notevil = (notevil + 1111)/2;
michael@0 3356 break;
michael@0 3357 case "z1112":
michael@0 3358 notevil = (notevil + 1112)/2;
michael@0 3359 break;
michael@0 3360 case "z1113":
michael@0 3361 notevil = (notevil + 1113)/2;
michael@0 3362 break;
michael@0 3363 case "z1114":
michael@0 3364 notevil = (notevil + 1114)/2;
michael@0 3365 break;
michael@0 3366 case "z1115":
michael@0 3367 notevil = (notevil + 1115)/2;
michael@0 3368 break;
michael@0 3369 case "z1116":
michael@0 3370 notevil = (notevil + 1116)/2;
michael@0 3371 break;
michael@0 3372 case "z1117":
michael@0 3373 notevil = (notevil + 1117)/2;
michael@0 3374 break;
michael@0 3375 case "z1118":
michael@0 3376 notevil = (notevil + 1118)/2;
michael@0 3377 break;
michael@0 3378 case "z1119":
michael@0 3379 notevil = (notevil + 1119)/2;
michael@0 3380 break;
michael@0 3381 case "z1120":
michael@0 3382 notevil = (notevil + 1120)/2;
michael@0 3383 break;
michael@0 3384 case "z1121":
michael@0 3385 notevil = (notevil + 1121)/2;
michael@0 3386 break;
michael@0 3387 case "z1122":
michael@0 3388 notevil = (notevil + 1122)/2;
michael@0 3389 break;
michael@0 3390 case "z1123":
michael@0 3391 notevil = (notevil + 1123)/2;
michael@0 3392 break;
michael@0 3393 case "z1124":
michael@0 3394 notevil = (notevil + 1124)/2;
michael@0 3395 break;
michael@0 3396 case "z1125":
michael@0 3397 notevil = (notevil + 1125)/2;
michael@0 3398 break;
michael@0 3399 case "z1126":
michael@0 3400 notevil = (notevil + 1126)/2;
michael@0 3401 break;
michael@0 3402 case "z1127":
michael@0 3403 notevil = (notevil + 1127)/2;
michael@0 3404 break;
michael@0 3405 case "z1128":
michael@0 3406 notevil = (notevil + 1128)/2;
michael@0 3407 break;
michael@0 3408 case "z1129":
michael@0 3409 notevil = (notevil + 1129)/2;
michael@0 3410 break;
michael@0 3411 case "z1130":
michael@0 3412 notevil = (notevil + 1130)/2;
michael@0 3413 break;
michael@0 3414 case "z1131":
michael@0 3415 notevil = (notevil + 1131)/2;
michael@0 3416 break;
michael@0 3417 case "z1132":
michael@0 3418 notevil = (notevil + 1132)/2;
michael@0 3419 break;
michael@0 3420 case "z1133":
michael@0 3421 notevil = (notevil + 1133)/2;
michael@0 3422 break;
michael@0 3423 case "z1134":
michael@0 3424 notevil = (notevil + 1134)/2;
michael@0 3425 break;
michael@0 3426 case "z1135":
michael@0 3427 notevil = (notevil + 1135)/2;
michael@0 3428 break;
michael@0 3429 case "z1136":
michael@0 3430 notevil = (notevil + 1136)/2;
michael@0 3431 break;
michael@0 3432 case "z1137":
michael@0 3433 notevil = (notevil + 1137)/2;
michael@0 3434 break;
michael@0 3435 case "z1138":
michael@0 3436 notevil = (notevil + 1138)/2;
michael@0 3437 break;
michael@0 3438 case "z1139":
michael@0 3439 notevil = (notevil + 1139)/2;
michael@0 3440 break;
michael@0 3441 case "z1140":
michael@0 3442 notevil = (notevil + 1140)/2;
michael@0 3443 break;
michael@0 3444 case "z1141":
michael@0 3445 notevil = (notevil + 1141)/2;
michael@0 3446 break;
michael@0 3447 case "z1142":
michael@0 3448 notevil = (notevil + 1142)/2;
michael@0 3449 break;
michael@0 3450 case "z1143":
michael@0 3451 notevil = (notevil + 1143)/2;
michael@0 3452 break;
michael@0 3453 case "z1144":
michael@0 3454 notevil = (notevil + 1144)/2;
michael@0 3455 break;
michael@0 3456 case "z1145":
michael@0 3457 notevil = (notevil + 1145)/2;
michael@0 3458 break;
michael@0 3459 case "z1146":
michael@0 3460 notevil = (notevil + 1146)/2;
michael@0 3461 break;
michael@0 3462 case "z1147":
michael@0 3463 notevil = (notevil + 1147)/2;
michael@0 3464 break;
michael@0 3465 case "z1148":
michael@0 3466 notevil = (notevil + 1148)/2;
michael@0 3467 break;
michael@0 3468 case "z1149":
michael@0 3469 notevil = (notevil + 1149)/2;
michael@0 3470 break;
michael@0 3471 case "z1150":
michael@0 3472 notevil = (notevil + 1150)/2;
michael@0 3473 break;
michael@0 3474 case "z1151":
michael@0 3475 notevil = (notevil + 1151)/2;
michael@0 3476 break;
michael@0 3477 case "z1152":
michael@0 3478 notevil = (notevil + 1152)/2;
michael@0 3479 break;
michael@0 3480 case "z1153":
michael@0 3481 notevil = (notevil + 1153)/2;
michael@0 3482 break;
michael@0 3483 case "z1154":
michael@0 3484 notevil = (notevil + 1154)/2;
michael@0 3485 break;
michael@0 3486 case "z1155":
michael@0 3487 notevil = (notevil + 1155)/2;
michael@0 3488 break;
michael@0 3489 case "z1156":
michael@0 3490 notevil = (notevil + 1156)/2;
michael@0 3491 break;
michael@0 3492 case "z1157":
michael@0 3493 notevil = (notevil + 1157)/2;
michael@0 3494 break;
michael@0 3495 case "z1158":
michael@0 3496 notevil = (notevil + 1158)/2;
michael@0 3497 break;
michael@0 3498 case "z1159":
michael@0 3499 notevil = (notevil + 1159)/2;
michael@0 3500 break;
michael@0 3501 case "z1160":
michael@0 3502 notevil = (notevil + 1160)/2;
michael@0 3503 break;
michael@0 3504 case "z1161":
michael@0 3505 notevil = (notevil + 1161)/2;
michael@0 3506 break;
michael@0 3507 case "z1162":
michael@0 3508 notevil = (notevil + 1162)/2;
michael@0 3509 break;
michael@0 3510 case "z1163":
michael@0 3511 notevil = (notevil + 1163)/2;
michael@0 3512 break;
michael@0 3513 case "z1164":
michael@0 3514 notevil = (notevil + 1164)/2;
michael@0 3515 break;
michael@0 3516 case "z1165":
michael@0 3517 notevil = (notevil + 1165)/2;
michael@0 3518 break;
michael@0 3519 case "z1166":
michael@0 3520 notevil = (notevil + 1166)/2;
michael@0 3521 break;
michael@0 3522 case "z1167":
michael@0 3523 notevil = (notevil + 1167)/2;
michael@0 3524 break;
michael@0 3525 case "z1168":
michael@0 3526 notevil = (notevil + 1168)/2;
michael@0 3527 break;
michael@0 3528 case "z1169":
michael@0 3529 notevil = (notevil + 1169)/2;
michael@0 3530 break;
michael@0 3531 case "z1170":
michael@0 3532 notevil = (notevil + 1170)/2;
michael@0 3533 break;
michael@0 3534 case "z1171":
michael@0 3535 notevil = (notevil + 1171)/2;
michael@0 3536 break;
michael@0 3537 case "z1172":
michael@0 3538 notevil = (notevil + 1172)/2;
michael@0 3539 break;
michael@0 3540 case "z1173":
michael@0 3541 notevil = (notevil + 1173)/2;
michael@0 3542 break;
michael@0 3543 case "z1174":
michael@0 3544 notevil = (notevil + 1174)/2;
michael@0 3545 break;
michael@0 3546 case "z1175":
michael@0 3547 notevil = (notevil + 1175)/2;
michael@0 3548 break;
michael@0 3549 case "z1176":
michael@0 3550 notevil = (notevil + 1176)/2;
michael@0 3551 break;
michael@0 3552 case "z1177":
michael@0 3553 notevil = (notevil + 1177)/2;
michael@0 3554 break;
michael@0 3555 case "z1178":
michael@0 3556 notevil = (notevil + 1178)/2;
michael@0 3557 break;
michael@0 3558 case "z1179":
michael@0 3559 notevil = (notevil + 1179)/2;
michael@0 3560 break;
michael@0 3561 case "z1180":
michael@0 3562 notevil = (notevil + 1180)/2;
michael@0 3563 break;
michael@0 3564 case "z1181":
michael@0 3565 notevil = (notevil + 1181)/2;
michael@0 3566 break;
michael@0 3567 case "z1182":
michael@0 3568 notevil = (notevil + 1182)/2;
michael@0 3569 break;
michael@0 3570 case "z1183":
michael@0 3571 notevil = (notevil + 1183)/2;
michael@0 3572 break;
michael@0 3573 case "z1184":
michael@0 3574 notevil = (notevil + 1184)/2;
michael@0 3575 break;
michael@0 3576 case "z1185":
michael@0 3577 notevil = (notevil + 1185)/2;
michael@0 3578 break;
michael@0 3579 case "z1186":
michael@0 3580 notevil = (notevil + 1186)/2;
michael@0 3581 break;
michael@0 3582 case "z1187":
michael@0 3583 notevil = (notevil + 1187)/2;
michael@0 3584 break;
michael@0 3585 case "z1188":
michael@0 3586 notevil = (notevil + 1188)/2;
michael@0 3587 break;
michael@0 3588 case "z1189":
michael@0 3589 notevil = (notevil + 1189)/2;
michael@0 3590 break;
michael@0 3591 case "z1190":
michael@0 3592 notevil = (notevil + 1190)/2;
michael@0 3593 break;
michael@0 3594 case "z1191":
michael@0 3595 notevil = (notevil + 1191)/2;
michael@0 3596 break;
michael@0 3597 case "z1192":
michael@0 3598 notevil = (notevil + 1192)/2;
michael@0 3599 break;
michael@0 3600 case "z1193":
michael@0 3601 notevil = (notevil + 1193)/2;
michael@0 3602 break;
michael@0 3603 case "z1194":
michael@0 3604 notevil = (notevil + 1194)/2;
michael@0 3605 break;
michael@0 3606 case "z1195":
michael@0 3607 notevil = (notevil + 1195)/2;
michael@0 3608 break;
michael@0 3609 case "z1196":
michael@0 3610 notevil = (notevil + 1196)/2;
michael@0 3611 break;
michael@0 3612 case "z1197":
michael@0 3613 notevil = (notevil + 1197)/2;
michael@0 3614 break;
michael@0 3615 case "z1198":
michael@0 3616 notevil = (notevil + 1198)/2;
michael@0 3617 break;
michael@0 3618 case "z1199":
michael@0 3619 notevil = (notevil + 1199)/2;
michael@0 3620 break;
michael@0 3621 case "z1200":
michael@0 3622 notevil = (notevil + 1200)/2;
michael@0 3623 break;
michael@0 3624 case "z1201":
michael@0 3625 notevil = (notevil + 1201)/2;
michael@0 3626 break;
michael@0 3627 case "z1202":
michael@0 3628 notevil = (notevil + 1202)/2;
michael@0 3629 break;
michael@0 3630 case "z1203":
michael@0 3631 notevil = (notevil + 1203)/2;
michael@0 3632 break;
michael@0 3633 case "z1204":
michael@0 3634 notevil = (notevil + 1204)/2;
michael@0 3635 break;
michael@0 3636 case "z1205":
michael@0 3637 notevil = (notevil + 1205)/2;
michael@0 3638 break;
michael@0 3639 case "z1206":
michael@0 3640 notevil = (notevil + 1206)/2;
michael@0 3641 break;
michael@0 3642 case "z1207":
michael@0 3643 notevil = (notevil + 1207)/2;
michael@0 3644 break;
michael@0 3645 case "z1208":
michael@0 3646 notevil = (notevil + 1208)/2;
michael@0 3647 break;
michael@0 3648 case "z1209":
michael@0 3649 notevil = (notevil + 1209)/2;
michael@0 3650 break;
michael@0 3651 case "z1210":
michael@0 3652 notevil = (notevil + 1210)/2;
michael@0 3653 break;
michael@0 3654 case "z1211":
michael@0 3655 notevil = (notevil + 1211)/2;
michael@0 3656 break;
michael@0 3657 case "z1212":
michael@0 3658 notevil = (notevil + 1212)/2;
michael@0 3659 break;
michael@0 3660 case "z1213":
michael@0 3661 notevil = (notevil + 1213)/2;
michael@0 3662 break;
michael@0 3663 case "z1214":
michael@0 3664 notevil = (notevil + 1214)/2;
michael@0 3665 break;
michael@0 3666 case "z1215":
michael@0 3667 notevil = (notevil + 1215)/2;
michael@0 3668 break;
michael@0 3669 case "z1216":
michael@0 3670 notevil = (notevil + 1216)/2;
michael@0 3671 break;
michael@0 3672 case "z1217":
michael@0 3673 notevil = (notevil + 1217)/2;
michael@0 3674 break;
michael@0 3675 case "z1218":
michael@0 3676 notevil = (notevil + 1218)/2;
michael@0 3677 break;
michael@0 3678 case "z1219":
michael@0 3679 notevil = (notevil + 1219)/2;
michael@0 3680 break;
michael@0 3681 case "z1220":
michael@0 3682 notevil = (notevil + 1220)/2;
michael@0 3683 break;
michael@0 3684 case "z1221":
michael@0 3685 notevil = (notevil + 1221)/2;
michael@0 3686 break;
michael@0 3687 case "z1222":
michael@0 3688 notevil = (notevil + 1222)/2;
michael@0 3689 break;
michael@0 3690 case "z1223":
michael@0 3691 notevil = (notevil + 1223)/2;
michael@0 3692 break;
michael@0 3693 case "z1224":
michael@0 3694 notevil = (notevil + 1224)/2;
michael@0 3695 break;
michael@0 3696 case "z1225":
michael@0 3697 notevil = (notevil + 1225)/2;
michael@0 3698 break;
michael@0 3699 case "z1226":
michael@0 3700 notevil = (notevil + 1226)/2;
michael@0 3701 break;
michael@0 3702 case "z1227":
michael@0 3703 notevil = (notevil + 1227)/2;
michael@0 3704 break;
michael@0 3705 case "z1228":
michael@0 3706 notevil = (notevil + 1228)/2;
michael@0 3707 break;
michael@0 3708 case "z1229":
michael@0 3709 notevil = (notevil + 1229)/2;
michael@0 3710 break;
michael@0 3711 case "z1230":
michael@0 3712 notevil = (notevil + 1230)/2;
michael@0 3713 break;
michael@0 3714 case "z1231":
michael@0 3715 notevil = (notevil + 1231)/2;
michael@0 3716 break;
michael@0 3717 case "z1232":
michael@0 3718 notevil = (notevil + 1232)/2;
michael@0 3719 break;
michael@0 3720 case "z1233":
michael@0 3721 notevil = (notevil + 1233)/2;
michael@0 3722 break;
michael@0 3723 case "z1234":
michael@0 3724 notevil = (notevil + 1234)/2;
michael@0 3725 break;
michael@0 3726 case "z1235":
michael@0 3727 notevil = (notevil + 1235)/2;
michael@0 3728 break;
michael@0 3729 case "z1236":
michael@0 3730 notevil = (notevil + 1236)/2;
michael@0 3731 break;
michael@0 3732 case "z1237":
michael@0 3733 notevil = (notevil + 1237)/2;
michael@0 3734 break;
michael@0 3735 case "z1238":
michael@0 3736 notevil = (notevil + 1238)/2;
michael@0 3737 break;
michael@0 3738 case "z1239":
michael@0 3739 notevil = (notevil + 1239)/2;
michael@0 3740 break;
michael@0 3741 case "z1240":
michael@0 3742 notevil = (notevil + 1240)/2;
michael@0 3743 break;
michael@0 3744 case "z1241":
michael@0 3745 notevil = (notevil + 1241)/2;
michael@0 3746 break;
michael@0 3747 case "z1242":
michael@0 3748 notevil = (notevil + 1242)/2;
michael@0 3749 break;
michael@0 3750 case "z1243":
michael@0 3751 notevil = (notevil + 1243)/2;
michael@0 3752 break;
michael@0 3753 case "z1244":
michael@0 3754 notevil = (notevil + 1244)/2;
michael@0 3755 break;
michael@0 3756 case "z1245":
michael@0 3757 notevil = (notevil + 1245)/2;
michael@0 3758 break;
michael@0 3759 case "z1246":
michael@0 3760 notevil = (notevil + 1246)/2;
michael@0 3761 break;
michael@0 3762 case "z1247":
michael@0 3763 notevil = (notevil + 1247)/2;
michael@0 3764 break;
michael@0 3765 case "z1248":
michael@0 3766 notevil = (notevil + 1248)/2;
michael@0 3767 break;
michael@0 3768 case "z1249":
michael@0 3769 notevil = (notevil + 1249)/2;
michael@0 3770 break;
michael@0 3771 case "z1250":
michael@0 3772 notevil = (notevil + 1250)/2;
michael@0 3773 break;
michael@0 3774 case "z1251":
michael@0 3775 notevil = (notevil + 1251)/2;
michael@0 3776 break;
michael@0 3777 case "z1252":
michael@0 3778 notevil = (notevil + 1252)/2;
michael@0 3779 break;
michael@0 3780 case "z1253":
michael@0 3781 notevil = (notevil + 1253)/2;
michael@0 3782 break;
michael@0 3783 case "z1254":
michael@0 3784 notevil = (notevil + 1254)/2;
michael@0 3785 break;
michael@0 3786 case "z1255":
michael@0 3787 notevil = (notevil + 1255)/2;
michael@0 3788 break;
michael@0 3789 case "z1256":
michael@0 3790 notevil = (notevil + 1256)/2;
michael@0 3791 break;
michael@0 3792 case "z1257":
michael@0 3793 notevil = (notevil + 1257)/2;
michael@0 3794 break;
michael@0 3795 case "z1258":
michael@0 3796 notevil = (notevil + 1258)/2;
michael@0 3797 break;
michael@0 3798 case "z1259":
michael@0 3799 notevil = (notevil + 1259)/2;
michael@0 3800 break;
michael@0 3801 case "z1260":
michael@0 3802 notevil = (notevil + 1260)/2;
michael@0 3803 break;
michael@0 3804 case "z1261":
michael@0 3805 notevil = (notevil + 1261)/2;
michael@0 3806 break;
michael@0 3807 case "z1262":
michael@0 3808 notevil = (notevil + 1262)/2;
michael@0 3809 break;
michael@0 3810 case "z1263":
michael@0 3811 notevil = (notevil + 1263)/2;
michael@0 3812 break;
michael@0 3813 case "z1264":
michael@0 3814 notevil = (notevil + 1264)/2;
michael@0 3815 break;
michael@0 3816 case "z1265":
michael@0 3817 notevil = (notevil + 1265)/2;
michael@0 3818 break;
michael@0 3819 case "z1266":
michael@0 3820 notevil = (notevil + 1266)/2;
michael@0 3821 break;
michael@0 3822 case "z1267":
michael@0 3823 notevil = (notevil + 1267)/2;
michael@0 3824 break;
michael@0 3825 case "z1268":
michael@0 3826 notevil = (notevil + 1268)/2;
michael@0 3827 break;
michael@0 3828 case "z1269":
michael@0 3829 notevil = (notevil + 1269)/2;
michael@0 3830 break;
michael@0 3831 case "z1270":
michael@0 3832 notevil = (notevil + 1270)/2;
michael@0 3833 break;
michael@0 3834 case "z1271":
michael@0 3835 notevil = (notevil + 1271)/2;
michael@0 3836 break;
michael@0 3837 case "z1272":
michael@0 3838 notevil = (notevil + 1272)/2;
michael@0 3839 break;
michael@0 3840 case "z1273":
michael@0 3841 notevil = (notevil + 1273)/2;
michael@0 3842 break;
michael@0 3843 case "z1274":
michael@0 3844 notevil = (notevil + 1274)/2;
michael@0 3845 break;
michael@0 3846 case "z1275":
michael@0 3847 notevil = (notevil + 1275)/2;
michael@0 3848 break;
michael@0 3849 case "z1276":
michael@0 3850 notevil = (notevil + 1276)/2;
michael@0 3851 break;
michael@0 3852 case "z1277":
michael@0 3853 notevil = (notevil + 1277)/2;
michael@0 3854 break;
michael@0 3855 case "z1278":
michael@0 3856 notevil = (notevil + 1278)/2;
michael@0 3857 break;
michael@0 3858 case "z1279":
michael@0 3859 notevil = (notevil + 1279)/2;
michael@0 3860 break;
michael@0 3861 case "z1280":
michael@0 3862 notevil = (notevil + 1280)/2;
michael@0 3863 break;
michael@0 3864 case "z1281":
michael@0 3865 notevil = (notevil + 1281)/2;
michael@0 3866 break;
michael@0 3867 case "z1282":
michael@0 3868 notevil = (notevil + 1282)/2;
michael@0 3869 break;
michael@0 3870 case "z1283":
michael@0 3871 notevil = (notevil + 1283)/2;
michael@0 3872 break;
michael@0 3873 case "z1284":
michael@0 3874 notevil = (notevil + 1284)/2;
michael@0 3875 break;
michael@0 3876 case "z1285":
michael@0 3877 notevil = (notevil + 1285)/2;
michael@0 3878 break;
michael@0 3879 case "z1286":
michael@0 3880 notevil = (notevil + 1286)/2;
michael@0 3881 break;
michael@0 3882 case "z1287":
michael@0 3883 notevil = (notevil + 1287)/2;
michael@0 3884 break;
michael@0 3885 case "z1288":
michael@0 3886 notevil = (notevil + 1288)/2;
michael@0 3887 break;
michael@0 3888 case "z1289":
michael@0 3889 notevil = (notevil + 1289)/2;
michael@0 3890 break;
michael@0 3891 case "z1290":
michael@0 3892 notevil = (notevil + 1290)/2;
michael@0 3893 break;
michael@0 3894 case "z1291":
michael@0 3895 notevil = (notevil + 1291)/2;
michael@0 3896 break;
michael@0 3897 case "z1292":
michael@0 3898 notevil = (notevil + 1292)/2;
michael@0 3899 break;
michael@0 3900 case "z1293":
michael@0 3901 notevil = (notevil + 1293)/2;
michael@0 3902 break;
michael@0 3903 case "z1294":
michael@0 3904 notevil = (notevil + 1294)/2;
michael@0 3905 break;
michael@0 3906 case "z1295":
michael@0 3907 notevil = (notevil + 1295)/2;
michael@0 3908 break;
michael@0 3909 case "z1296":
michael@0 3910 notevil = (notevil + 1296)/2;
michael@0 3911 break;
michael@0 3912 case "z1297":
michael@0 3913 notevil = (notevil + 1297)/2;
michael@0 3914 break;
michael@0 3915 case "z1298":
michael@0 3916 notevil = (notevil + 1298)/2;
michael@0 3917 break;
michael@0 3918 case "z1299":
michael@0 3919 notevil = (notevil + 1299)/2;
michael@0 3920 break;
michael@0 3921 case "z1300":
michael@0 3922 notevil = (notevil + 1300)/2;
michael@0 3923 break;
michael@0 3924 case "z1301":
michael@0 3925 notevil = (notevil + 1301)/2;
michael@0 3926 break;
michael@0 3927 case "z1302":
michael@0 3928 notevil = (notevil + 1302)/2;
michael@0 3929 break;
michael@0 3930 case "z1303":
michael@0 3931 notevil = (notevil + 1303)/2;
michael@0 3932 break;
michael@0 3933 case "z1304":
michael@0 3934 notevil = (notevil + 1304)/2;
michael@0 3935 break;
michael@0 3936 case "z1305":
michael@0 3937 notevil = (notevil + 1305)/2;
michael@0 3938 break;
michael@0 3939 case "z1306":
michael@0 3940 notevil = (notevil + 1306)/2;
michael@0 3941 break;
michael@0 3942 case "z1307":
michael@0 3943 notevil = (notevil + 1307)/2;
michael@0 3944 break;
michael@0 3945 case "z1308":
michael@0 3946 notevil = (notevil + 1308)/2;
michael@0 3947 break;
michael@0 3948 case "z1309":
michael@0 3949 notevil = (notevil + 1309)/2;
michael@0 3950 break;
michael@0 3951 case "z1310":
michael@0 3952 notevil = (notevil + 1310)/2;
michael@0 3953 break;
michael@0 3954 case "z1311":
michael@0 3955 notevil = (notevil + 1311)/2;
michael@0 3956 break;
michael@0 3957 case "z1312":
michael@0 3958 notevil = (notevil + 1312)/2;
michael@0 3959 break;
michael@0 3960 case "z1313":
michael@0 3961 notevil = (notevil + 1313)/2;
michael@0 3962 break;
michael@0 3963 case "z1314":
michael@0 3964 notevil = (notevil + 1314)/2;
michael@0 3965 break;
michael@0 3966 case "z1315":
michael@0 3967 notevil = (notevil + 1315)/2;
michael@0 3968 break;
michael@0 3969 case "z1316":
michael@0 3970 notevil = (notevil + 1316)/2;
michael@0 3971 break;
michael@0 3972 case "z1317":
michael@0 3973 notevil = (notevil + 1317)/2;
michael@0 3974 break;
michael@0 3975 case "z1318":
michael@0 3976 notevil = (notevil + 1318)/2;
michael@0 3977 break;
michael@0 3978 case "z1319":
michael@0 3979 notevil = (notevil + 1319)/2;
michael@0 3980 break;
michael@0 3981 case "z1320":
michael@0 3982 notevil = (notevil + 1320)/2;
michael@0 3983 break;
michael@0 3984 case "z1321":
michael@0 3985 notevil = (notevil + 1321)/2;
michael@0 3986 break;
michael@0 3987 case "z1322":
michael@0 3988 notevil = (notevil + 1322)/2;
michael@0 3989 break;
michael@0 3990 case "z1323":
michael@0 3991 notevil = (notevil + 1323)/2;
michael@0 3992 break;
michael@0 3993 case "z1324":
michael@0 3994 notevil = (notevil + 1324)/2;
michael@0 3995 break;
michael@0 3996 case "z1325":
michael@0 3997 notevil = (notevil + 1325)/2;
michael@0 3998 break;
michael@0 3999 case "z1326":
michael@0 4000 notevil = (notevil + 1326)/2;
michael@0 4001 break;
michael@0 4002 case "z1327":
michael@0 4003 notevil = (notevil + 1327)/2;
michael@0 4004 break;
michael@0 4005 case "z1328":
michael@0 4006 notevil = (notevil + 1328)/2;
michael@0 4007 break;
michael@0 4008 case "z1329":
michael@0 4009 notevil = (notevil + 1329)/2;
michael@0 4010 break;
michael@0 4011 case "z1330":
michael@0 4012 notevil = (notevil + 1330)/2;
michael@0 4013 break;
michael@0 4014 case "z1331":
michael@0 4015 notevil = (notevil + 1331)/2;
michael@0 4016 break;
michael@0 4017 case "z1332":
michael@0 4018 notevil = (notevil + 1332)/2;
michael@0 4019 break;
michael@0 4020 case "z1333":
michael@0 4021 notevil = (notevil + 1333)/2;
michael@0 4022 break;
michael@0 4023 case "z1334":
michael@0 4024 notevil = (notevil + 1334)/2;
michael@0 4025 break;
michael@0 4026 case "z1335":
michael@0 4027 notevil = (notevil + 1335)/2;
michael@0 4028 break;
michael@0 4029 case "z1336":
michael@0 4030 notevil = (notevil + 1336)/2;
michael@0 4031 break;
michael@0 4032 case "z1337":
michael@0 4033 notevil = (notevil + 1337)/2;
michael@0 4034 break;
michael@0 4035 case "z1338":
michael@0 4036 notevil = (notevil + 1338)/2;
michael@0 4037 break;
michael@0 4038 case "z1339":
michael@0 4039 notevil = (notevil + 1339)/2;
michael@0 4040 break;
michael@0 4041 case "z1340":
michael@0 4042 notevil = (notevil + 1340)/2;
michael@0 4043 break;
michael@0 4044 case "z1341":
michael@0 4045 notevil = (notevil + 1341)/2;
michael@0 4046 break;
michael@0 4047 case "z1342":
michael@0 4048 notevil = (notevil + 1342)/2;
michael@0 4049 break;
michael@0 4050 case "z1343":
michael@0 4051 notevil = (notevil + 1343)/2;
michael@0 4052 break;
michael@0 4053 case "z1344":
michael@0 4054 notevil = (notevil + 1344)/2;
michael@0 4055 break;
michael@0 4056 case "z1345":
michael@0 4057 notevil = (notevil + 1345)/2;
michael@0 4058 break;
michael@0 4059 case "z1346":
michael@0 4060 notevil = (notevil + 1346)/2;
michael@0 4061 break;
michael@0 4062 case "z1347":
michael@0 4063 notevil = (notevil + 1347)/2;
michael@0 4064 break;
michael@0 4065 case "z1348":
michael@0 4066 notevil = (notevil + 1348)/2;
michael@0 4067 break;
michael@0 4068 case "z1349":
michael@0 4069 notevil = (notevil + 1349)/2;
michael@0 4070 break;
michael@0 4071 case "z1350":
michael@0 4072 notevil = (notevil + 1350)/2;
michael@0 4073 break;
michael@0 4074 case "z1351":
michael@0 4075 notevil = (notevil + 1351)/2;
michael@0 4076 break;
michael@0 4077 case "z1352":
michael@0 4078 notevil = (notevil + 1352)/2;
michael@0 4079 break;
michael@0 4080 case "z1353":
michael@0 4081 notevil = (notevil + 1353)/2;
michael@0 4082 break;
michael@0 4083 case "z1354":
michael@0 4084 notevil = (notevil + 1354)/2;
michael@0 4085 break;
michael@0 4086 case "z1355":
michael@0 4087 notevil = (notevil + 1355)/2;
michael@0 4088 break;
michael@0 4089 case "z1356":
michael@0 4090 notevil = (notevil + 1356)/2;
michael@0 4091 break;
michael@0 4092 case "z1357":
michael@0 4093 notevil = (notevil + 1357)/2;
michael@0 4094 break;
michael@0 4095 case "z1358":
michael@0 4096 notevil = (notevil + 1358)/2;
michael@0 4097 break;
michael@0 4098 case "z1359":
michael@0 4099 notevil = (notevil + 1359)/2;
michael@0 4100 break;
michael@0 4101 case "z1360":
michael@0 4102 notevil = (notevil + 1360)/2;
michael@0 4103 break;
michael@0 4104 case "z1361":
michael@0 4105 notevil = (notevil + 1361)/2;
michael@0 4106 break;
michael@0 4107 case "z1362":
michael@0 4108 notevil = (notevil + 1362)/2;
michael@0 4109 break;
michael@0 4110 case "z1363":
michael@0 4111 notevil = (notevil + 1363)/2;
michael@0 4112 break;
michael@0 4113 case "z1364":
michael@0 4114 notevil = (notevil + 1364)/2;
michael@0 4115 break;
michael@0 4116 case "z1365":
michael@0 4117 notevil = (notevil + 1365)/2;
michael@0 4118 break;
michael@0 4119 case "z1366":
michael@0 4120 notevil = (notevil + 1366)/2;
michael@0 4121 break;
michael@0 4122 case "z1367":
michael@0 4123 notevil = (notevil + 1367)/2;
michael@0 4124 break;
michael@0 4125 case "z1368":
michael@0 4126 notevil = (notevil + 1368)/2;
michael@0 4127 break;
michael@0 4128 case "z1369":
michael@0 4129 notevil = (notevil + 1369)/2;
michael@0 4130 break;
michael@0 4131 case "z1370":
michael@0 4132 notevil = (notevil + 1370)/2;
michael@0 4133 break;
michael@0 4134 case "z1371":
michael@0 4135 notevil = (notevil + 1371)/2;
michael@0 4136 break;
michael@0 4137 case "z1372":
michael@0 4138 notevil = (notevil + 1372)/2;
michael@0 4139 break;
michael@0 4140 case "z1373":
michael@0 4141 notevil = (notevil + 1373)/2;
michael@0 4142 break;
michael@0 4143 case "z1374":
michael@0 4144 notevil = (notevil + 1374)/2;
michael@0 4145 break;
michael@0 4146 case "z1375":
michael@0 4147 notevil = (notevil + 1375)/2;
michael@0 4148 break;
michael@0 4149 case "z1376":
michael@0 4150 notevil = (notevil + 1376)/2;
michael@0 4151 break;
michael@0 4152 case "z1377":
michael@0 4153 notevil = (notevil + 1377)/2;
michael@0 4154 break;
michael@0 4155 case "z1378":
michael@0 4156 notevil = (notevil + 1378)/2;
michael@0 4157 break;
michael@0 4158 case "z1379":
michael@0 4159 notevil = (notevil + 1379)/2;
michael@0 4160 break;
michael@0 4161 case "z1380":
michael@0 4162 notevil = (notevil + 1380)/2;
michael@0 4163 break;
michael@0 4164 case "z1381":
michael@0 4165 notevil = (notevil + 1381)/2;
michael@0 4166 break;
michael@0 4167 case "z1382":
michael@0 4168 notevil = (notevil + 1382)/2;
michael@0 4169 break;
michael@0 4170 case "z1383":
michael@0 4171 notevil = (notevil + 1383)/2;
michael@0 4172 break;
michael@0 4173 case "z1384":
michael@0 4174 notevil = (notevil + 1384)/2;
michael@0 4175 break;
michael@0 4176 case "z1385":
michael@0 4177 notevil = (notevil + 1385)/2;
michael@0 4178 break;
michael@0 4179 case "z1386":
michael@0 4180 notevil = (notevil + 1386)/2;
michael@0 4181 break;
michael@0 4182 case "z1387":
michael@0 4183 notevil = (notevil + 1387)/2;
michael@0 4184 break;
michael@0 4185 case "z1388":
michael@0 4186 notevil = (notevil + 1388)/2;
michael@0 4187 break;
michael@0 4188 case "z1389":
michael@0 4189 notevil = (notevil + 1389)/2;
michael@0 4190 break;
michael@0 4191 case "z1390":
michael@0 4192 notevil = (notevil + 1390)/2;
michael@0 4193 break;
michael@0 4194 case "z1391":
michael@0 4195 notevil = (notevil + 1391)/2;
michael@0 4196 break;
michael@0 4197 case "z1392":
michael@0 4198 notevil = (notevil + 1392)/2;
michael@0 4199 break;
michael@0 4200 case "z1393":
michael@0 4201 notevil = (notevil + 1393)/2;
michael@0 4202 break;
michael@0 4203 case "z1394":
michael@0 4204 notevil = (notevil + 1394)/2;
michael@0 4205 break;
michael@0 4206 case "z1395":
michael@0 4207 notevil = (notevil + 1395)/2;
michael@0 4208 break;
michael@0 4209 case "z1396":
michael@0 4210 notevil = (notevil + 1396)/2;
michael@0 4211 break;
michael@0 4212 case "z1397":
michael@0 4213 notevil = (notevil + 1397)/2;
michael@0 4214 break;
michael@0 4215 case "z1398":
michael@0 4216 notevil = (notevil + 1398)/2;
michael@0 4217 break;
michael@0 4218 case "z1399":
michael@0 4219 notevil = (notevil + 1399)/2;
michael@0 4220 break;
michael@0 4221 case "z1400":
michael@0 4222 notevil = (notevil + 1400)/2;
michael@0 4223 break;
michael@0 4224 case "z1401":
michael@0 4225 notevil = (notevil + 1401)/2;
michael@0 4226 break;
michael@0 4227 case "z1402":
michael@0 4228 notevil = (notevil + 1402)/2;
michael@0 4229 break;
michael@0 4230 case "z1403":
michael@0 4231 notevil = (notevil + 1403)/2;
michael@0 4232 break;
michael@0 4233 case "z1404":
michael@0 4234 notevil = (notevil + 1404)/2;
michael@0 4235 break;
michael@0 4236 case "z1405":
michael@0 4237 notevil = (notevil + 1405)/2;
michael@0 4238 break;
michael@0 4239 case "z1406":
michael@0 4240 notevil = (notevil + 1406)/2;
michael@0 4241 break;
michael@0 4242 case "z1407":
michael@0 4243 notevil = (notevil + 1407)/2;
michael@0 4244 break;
michael@0 4245 case "z1408":
michael@0 4246 notevil = (notevil + 1408)/2;
michael@0 4247 break;
michael@0 4248 case "z1409":
michael@0 4249 notevil = (notevil + 1409)/2;
michael@0 4250 break;
michael@0 4251 case "z1410":
michael@0 4252 notevil = (notevil + 1410)/2;
michael@0 4253 break;
michael@0 4254 case "z1411":
michael@0 4255 notevil = (notevil + 1411)/2;
michael@0 4256 break;
michael@0 4257 case "z1412":
michael@0 4258 notevil = (notevil + 1412)/2;
michael@0 4259 break;
michael@0 4260 case "z1413":
michael@0 4261 notevil = (notevil + 1413)/2;
michael@0 4262 break;
michael@0 4263 case "z1414":
michael@0 4264 notevil = (notevil + 1414)/2;
michael@0 4265 break;
michael@0 4266 case "z1415":
michael@0 4267 notevil = (notevil + 1415)/2;
michael@0 4268 break;
michael@0 4269 case "z1416":
michael@0 4270 notevil = (notevil + 1416)/2;
michael@0 4271 break;
michael@0 4272 case "z1417":
michael@0 4273 notevil = (notevil + 1417)/2;
michael@0 4274 break;
michael@0 4275 case "z1418":
michael@0 4276 notevil = (notevil + 1418)/2;
michael@0 4277 break;
michael@0 4278 case "z1419":
michael@0 4279 notevil = (notevil + 1419)/2;
michael@0 4280 break;
michael@0 4281 case "z1420":
michael@0 4282 notevil = (notevil + 1420)/2;
michael@0 4283 break;
michael@0 4284 case "z1421":
michael@0 4285 notevil = (notevil + 1421)/2;
michael@0 4286 break;
michael@0 4287 case "z1422":
michael@0 4288 notevil = (notevil + 1422)/2;
michael@0 4289 break;
michael@0 4290 case "z1423":
michael@0 4291 notevil = (notevil + 1423)/2;
michael@0 4292 break;
michael@0 4293 case "z1424":
michael@0 4294 notevil = (notevil + 1424)/2;
michael@0 4295 break;
michael@0 4296 case "z1425":
michael@0 4297 notevil = (notevil + 1425)/2;
michael@0 4298 break;
michael@0 4299 case "z1426":
michael@0 4300 notevil = (notevil + 1426)/2;
michael@0 4301 break;
michael@0 4302 case "z1427":
michael@0 4303 notevil = (notevil + 1427)/2;
michael@0 4304 break;
michael@0 4305 case "z1428":
michael@0 4306 notevil = (notevil + 1428)/2;
michael@0 4307 break;
michael@0 4308 case "z1429":
michael@0 4309 notevil = (notevil + 1429)/2;
michael@0 4310 break;
michael@0 4311 case "z1430":
michael@0 4312 notevil = (notevil + 1430)/2;
michael@0 4313 break;
michael@0 4314 case "z1431":
michael@0 4315 notevil = (notevil + 1431)/2;
michael@0 4316 break;
michael@0 4317 case "z1432":
michael@0 4318 notevil = (notevil + 1432)/2;
michael@0 4319 break;
michael@0 4320 case "z1433":
michael@0 4321 notevil = (notevil + 1433)/2;
michael@0 4322 break;
michael@0 4323 case "z1434":
michael@0 4324 notevil = (notevil + 1434)/2;
michael@0 4325 break;
michael@0 4326 case "z1435":
michael@0 4327 notevil = (notevil + 1435)/2;
michael@0 4328 break;
michael@0 4329 case "z1436":
michael@0 4330 notevil = (notevil + 1436)/2;
michael@0 4331 break;
michael@0 4332 case "z1437":
michael@0 4333 notevil = (notevil + 1437)/2;
michael@0 4334 break;
michael@0 4335 case "z1438":
michael@0 4336 notevil = (notevil + 1438)/2;
michael@0 4337 break;
michael@0 4338 case "z1439":
michael@0 4339 notevil = (notevil + 1439)/2;
michael@0 4340 break;
michael@0 4341 case "z1440":
michael@0 4342 notevil = (notevil + 1440)/2;
michael@0 4343 break;
michael@0 4344 case "z1441":
michael@0 4345 notevil = (notevil + 1441)/2;
michael@0 4346 break;
michael@0 4347 case "z1442":
michael@0 4348 notevil = (notevil + 1442)/2;
michael@0 4349 break;
michael@0 4350 case "z1443":
michael@0 4351 notevil = (notevil + 1443)/2;
michael@0 4352 break;
michael@0 4353 case "z1444":
michael@0 4354 notevil = (notevil + 1444)/2;
michael@0 4355 break;
michael@0 4356 case "z1445":
michael@0 4357 notevil = (notevil + 1445)/2;
michael@0 4358 break;
michael@0 4359 case "z1446":
michael@0 4360 notevil = (notevil + 1446)/2;
michael@0 4361 break;
michael@0 4362 case "z1447":
michael@0 4363 notevil = (notevil + 1447)/2;
michael@0 4364 break;
michael@0 4365 case "z1448":
michael@0 4366 notevil = (notevil + 1448)/2;
michael@0 4367 break;
michael@0 4368 case "z1449":
michael@0 4369 notevil = (notevil + 1449)/2;
michael@0 4370 break;
michael@0 4371 case "z1450":
michael@0 4372 notevil = (notevil + 1450)/2;
michael@0 4373 break;
michael@0 4374 case "z1451":
michael@0 4375 notevil = (notevil + 1451)/2;
michael@0 4376 break;
michael@0 4377 case "z1452":
michael@0 4378 notevil = (notevil + 1452)/2;
michael@0 4379 break;
michael@0 4380 case "z1453":
michael@0 4381 notevil = (notevil + 1453)/2;
michael@0 4382 break;
michael@0 4383 case "z1454":
michael@0 4384 notevil = (notevil + 1454)/2;
michael@0 4385 break;
michael@0 4386 case "z1455":
michael@0 4387 notevil = (notevil + 1455)/2;
michael@0 4388 break;
michael@0 4389 case "z1456":
michael@0 4390 notevil = (notevil + 1456)/2;
michael@0 4391 break;
michael@0 4392 case "z1457":
michael@0 4393 notevil = (notevil + 1457)/2;
michael@0 4394 break;
michael@0 4395 case "z1458":
michael@0 4396 notevil = (notevil + 1458)/2;
michael@0 4397 break;
michael@0 4398 case "z1459":
michael@0 4399 notevil = (notevil + 1459)/2;
michael@0 4400 break;
michael@0 4401 case "z1460":
michael@0 4402 notevil = (notevil + 1460)/2;
michael@0 4403 break;
michael@0 4404 case "z1461":
michael@0 4405 notevil = (notevil + 1461)/2;
michael@0 4406 break;
michael@0 4407 case "z1462":
michael@0 4408 notevil = (notevil + 1462)/2;
michael@0 4409 break;
michael@0 4410 case "z1463":
michael@0 4411 notevil = (notevil + 1463)/2;
michael@0 4412 break;
michael@0 4413 case "z1464":
michael@0 4414 notevil = (notevil + 1464)/2;
michael@0 4415 break;
michael@0 4416 case "z1465":
michael@0 4417 notevil = (notevil + 1465)/2;
michael@0 4418 break;
michael@0 4419 case "z1466":
michael@0 4420 notevil = (notevil + 1466)/2;
michael@0 4421 break;
michael@0 4422 case "z1467":
michael@0 4423 notevil = (notevil + 1467)/2;
michael@0 4424 break;
michael@0 4425 case "z1468":
michael@0 4426 notevil = (notevil + 1468)/2;
michael@0 4427 break;
michael@0 4428 case "z1469":
michael@0 4429 notevil = (notevil + 1469)/2;
michael@0 4430 break;
michael@0 4431 case "z1470":
michael@0 4432 notevil = (notevil + 1470)/2;
michael@0 4433 break;
michael@0 4434 case "z1471":
michael@0 4435 notevil = (notevil + 1471)/2;
michael@0 4436 break;
michael@0 4437 case "z1472":
michael@0 4438 notevil = (notevil + 1472)/2;
michael@0 4439 break;
michael@0 4440 case "z1473":
michael@0 4441 notevil = (notevil + 1473)/2;
michael@0 4442 break;
michael@0 4443 case "z1474":
michael@0 4444 notevil = (notevil + 1474)/2;
michael@0 4445 break;
michael@0 4446 case "z1475":
michael@0 4447 notevil = (notevil + 1475)/2;
michael@0 4448 break;
michael@0 4449 case "z1476":
michael@0 4450 notevil = (notevil + 1476)/2;
michael@0 4451 break;
michael@0 4452 case "z1477":
michael@0 4453 notevil = (notevil + 1477)/2;
michael@0 4454 break;
michael@0 4455 case "z1478":
michael@0 4456 notevil = (notevil + 1478)/2;
michael@0 4457 break;
michael@0 4458 case "z1479":
michael@0 4459 notevil = (notevil + 1479)/2;
michael@0 4460 break;
michael@0 4461 case "z1480":
michael@0 4462 notevil = (notevil + 1480)/2;
michael@0 4463 break;
michael@0 4464 case "z1481":
michael@0 4465 notevil = (notevil + 1481)/2;
michael@0 4466 break;
michael@0 4467 case "z1482":
michael@0 4468 notevil = (notevil + 1482)/2;
michael@0 4469 break;
michael@0 4470 case "z1483":
michael@0 4471 notevil = (notevil + 1483)/2;
michael@0 4472 break;
michael@0 4473 case "z1484":
michael@0 4474 notevil = (notevil + 1484)/2;
michael@0 4475 break;
michael@0 4476 case "z1485":
michael@0 4477 notevil = (notevil + 1485)/2;
michael@0 4478 break;
michael@0 4479 case "z1486":
michael@0 4480 notevil = (notevil + 1486)/2;
michael@0 4481 break;
michael@0 4482 case "z1487":
michael@0 4483 notevil = (notevil + 1487)/2;
michael@0 4484 break;
michael@0 4485 case "z1488":
michael@0 4486 notevil = (notevil + 1488)/2;
michael@0 4487 break;
michael@0 4488 case "z1489":
michael@0 4489 notevil = (notevil + 1489)/2;
michael@0 4490 break;
michael@0 4491 case "z1490":
michael@0 4492 notevil = (notevil + 1490)/2;
michael@0 4493 break;
michael@0 4494 case "z1491":
michael@0 4495 notevil = (notevil + 1491)/2;
michael@0 4496 break;
michael@0 4497 case "z1492":
michael@0 4498 notevil = (notevil + 1492)/2;
michael@0 4499 break;
michael@0 4500 case "z1493":
michael@0 4501 notevil = (notevil + 1493)/2;
michael@0 4502 break;
michael@0 4503 case "z1494":
michael@0 4504 notevil = (notevil + 1494)/2;
michael@0 4505 break;
michael@0 4506 case "z1495":
michael@0 4507 notevil = (notevil + 1495)/2;
michael@0 4508 break;
michael@0 4509 case "z1496":
michael@0 4510 notevil = (notevil + 1496)/2;
michael@0 4511 break;
michael@0 4512 case "z1497":
michael@0 4513 notevil = (notevil + 1497)/2;
michael@0 4514 break;
michael@0 4515 case "z1498":
michael@0 4516 notevil = (notevil + 1498)/2;
michael@0 4517 break;
michael@0 4518 case "z1499":
michael@0 4519 notevil = (notevil + 1499)/2;
michael@0 4520 break;
michael@0 4521 case "z1500":
michael@0 4522 notevil = (notevil + 1500)/2;
michael@0 4523 break;
michael@0 4524 case "z1501":
michael@0 4525 notevil = (notevil + 1501)/2;
michael@0 4526 break;
michael@0 4527 case "z1502":
michael@0 4528 notevil = (notevil + 1502)/2;
michael@0 4529 break;
michael@0 4530 case "z1503":
michael@0 4531 notevil = (notevil + 1503)/2;
michael@0 4532 break;
michael@0 4533 case "z1504":
michael@0 4534 notevil = (notevil + 1504)/2;
michael@0 4535 break;
michael@0 4536 case "z1505":
michael@0 4537 notevil = (notevil + 1505)/2;
michael@0 4538 break;
michael@0 4539 case "z1506":
michael@0 4540 notevil = (notevil + 1506)/2;
michael@0 4541 break;
michael@0 4542 case "z1507":
michael@0 4543 notevil = (notevil + 1507)/2;
michael@0 4544 break;
michael@0 4545 case "z1508":
michael@0 4546 notevil = (notevil + 1508)/2;
michael@0 4547 break;
michael@0 4548 case "z1509":
michael@0 4549 notevil = (notevil + 1509)/2;
michael@0 4550 break;
michael@0 4551 case "z1510":
michael@0 4552 notevil = (notevil + 1510)/2;
michael@0 4553 break;
michael@0 4554 case "z1511":
michael@0 4555 notevil = (notevil + 1511)/2;
michael@0 4556 break;
michael@0 4557 case "z1512":
michael@0 4558 notevil = (notevil + 1512)/2;
michael@0 4559 break;
michael@0 4560 case "z1513":
michael@0 4561 notevil = (notevil + 1513)/2;
michael@0 4562 break;
michael@0 4563 case "z1514":
michael@0 4564 notevil = (notevil + 1514)/2;
michael@0 4565 break;
michael@0 4566 case "z1515":
michael@0 4567 notevil = (notevil + 1515)/2;
michael@0 4568 break;
michael@0 4569 case "z1516":
michael@0 4570 notevil = (notevil + 1516)/2;
michael@0 4571 break;
michael@0 4572 case "z1517":
michael@0 4573 notevil = (notevil + 1517)/2;
michael@0 4574 break;
michael@0 4575 case "z1518":
michael@0 4576 notevil = (notevil + 1518)/2;
michael@0 4577 break;
michael@0 4578 case "z1519":
michael@0 4579 notevil = (notevil + 1519)/2;
michael@0 4580 break;
michael@0 4581 case "z1520":
michael@0 4582 notevil = (notevil + 1520)/2;
michael@0 4583 break;
michael@0 4584 case "z1521":
michael@0 4585 notevil = (notevil + 1521)/2;
michael@0 4586 break;
michael@0 4587 case "z1522":
michael@0 4588 notevil = (notevil + 1522)/2;
michael@0 4589 break;
michael@0 4590 case "z1523":
michael@0 4591 notevil = (notevil + 1523)/2;
michael@0 4592 break;
michael@0 4593 case "z1524":
michael@0 4594 notevil = (notevil + 1524)/2;
michael@0 4595 break;
michael@0 4596 case "z1525":
michael@0 4597 notevil = (notevil + 1525)/2;
michael@0 4598 break;
michael@0 4599 case "z1526":
michael@0 4600 notevil = (notevil + 1526)/2;
michael@0 4601 break;
michael@0 4602 case "z1527":
michael@0 4603 notevil = (notevil + 1527)/2;
michael@0 4604 break;
michael@0 4605 case "z1528":
michael@0 4606 notevil = (notevil + 1528)/2;
michael@0 4607 break;
michael@0 4608 case "z1529":
michael@0 4609 notevil = (notevil + 1529)/2;
michael@0 4610 break;
michael@0 4611 case "z1530":
michael@0 4612 notevil = (notevil + 1530)/2;
michael@0 4613 break;
michael@0 4614 case "z1531":
michael@0 4615 notevil = (notevil + 1531)/2;
michael@0 4616 break;
michael@0 4617 case "z1532":
michael@0 4618 notevil = (notevil + 1532)/2;
michael@0 4619 break;
michael@0 4620 case "z1533":
michael@0 4621 notevil = (notevil + 1533)/2;
michael@0 4622 break;
michael@0 4623 case "z1534":
michael@0 4624 notevil = (notevil + 1534)/2;
michael@0 4625 break;
michael@0 4626 case "z1535":
michael@0 4627 notevil = (notevil + 1535)/2;
michael@0 4628 break;
michael@0 4629 case "z1536":
michael@0 4630 notevil = (notevil + 1536)/2;
michael@0 4631 break;
michael@0 4632 case "z1537":
michael@0 4633 notevil = (notevil + 1537)/2;
michael@0 4634 break;
michael@0 4635 case "z1538":
michael@0 4636 notevil = (notevil + 1538)/2;
michael@0 4637 break;
michael@0 4638 case "z1539":
michael@0 4639 notevil = (notevil + 1539)/2;
michael@0 4640 break;
michael@0 4641 case "z1540":
michael@0 4642 notevil = (notevil + 1540)/2;
michael@0 4643 break;
michael@0 4644 case "z1541":
michael@0 4645 notevil = (notevil + 1541)/2;
michael@0 4646 break;
michael@0 4647 case "z1542":
michael@0 4648 notevil = (notevil + 1542)/2;
michael@0 4649 break;
michael@0 4650 case "z1543":
michael@0 4651 notevil = (notevil + 1543)/2;
michael@0 4652 break;
michael@0 4653 case "z1544":
michael@0 4654 notevil = (notevil + 1544)/2;
michael@0 4655 break;
michael@0 4656 case "z1545":
michael@0 4657 notevil = (notevil + 1545)/2;
michael@0 4658 break;
michael@0 4659 case "z1546":
michael@0 4660 notevil = (notevil + 1546)/2;
michael@0 4661 break;
michael@0 4662 case "z1547":
michael@0 4663 notevil = (notevil + 1547)/2;
michael@0 4664 break;
michael@0 4665 case "z1548":
michael@0 4666 notevil = (notevil + 1548)/2;
michael@0 4667 break;
michael@0 4668 case "z1549":
michael@0 4669 notevil = (notevil + 1549)/2;
michael@0 4670 break;
michael@0 4671 case "z1550":
michael@0 4672 notevil = (notevil + 1550)/2;
michael@0 4673 break;
michael@0 4674 case "z1551":
michael@0 4675 notevil = (notevil + 1551)/2;
michael@0 4676 break;
michael@0 4677 case "z1552":
michael@0 4678 notevil = (notevil + 1552)/2;
michael@0 4679 break;
michael@0 4680 case "z1553":
michael@0 4681 notevil = (notevil + 1553)/2;
michael@0 4682 break;
michael@0 4683 case "z1554":
michael@0 4684 notevil = (notevil + 1554)/2;
michael@0 4685 break;
michael@0 4686 case "z1555":
michael@0 4687 notevil = (notevil + 1555)/2;
michael@0 4688 break;
michael@0 4689 case "z1556":
michael@0 4690 notevil = (notevil + 1556)/2;
michael@0 4691 break;
michael@0 4692 case "z1557":
michael@0 4693 notevil = (notevil + 1557)/2;
michael@0 4694 break;
michael@0 4695 case "z1558":
michael@0 4696 notevil = (notevil + 1558)/2;
michael@0 4697 break;
michael@0 4698 case "z1559":
michael@0 4699 notevil = (notevil + 1559)/2;
michael@0 4700 break;
michael@0 4701 case "z1560":
michael@0 4702 notevil = (notevil + 1560)/2;
michael@0 4703 break;
michael@0 4704 case "z1561":
michael@0 4705 notevil = (notevil + 1561)/2;
michael@0 4706 break;
michael@0 4707 case "z1562":
michael@0 4708 notevil = (notevil + 1562)/2;
michael@0 4709 break;
michael@0 4710 case "z1563":
michael@0 4711 notevil = (notevil + 1563)/2;
michael@0 4712 break;
michael@0 4713 case "z1564":
michael@0 4714 notevil = (notevil + 1564)/2;
michael@0 4715 break;
michael@0 4716 case "z1565":
michael@0 4717 notevil = (notevil + 1565)/2;
michael@0 4718 break;
michael@0 4719 case "z1566":
michael@0 4720 notevil = (notevil + 1566)/2;
michael@0 4721 break;
michael@0 4722 case "z1567":
michael@0 4723 notevil = (notevil + 1567)/2;
michael@0 4724 break;
michael@0 4725 case "z1568":
michael@0 4726 notevil = (notevil + 1568)/2;
michael@0 4727 break;
michael@0 4728 case "z1569":
michael@0 4729 notevil = (notevil + 1569)/2;
michael@0 4730 break;
michael@0 4731 case "z1570":
michael@0 4732 notevil = (notevil + 1570)/2;
michael@0 4733 break;
michael@0 4734 case "z1571":
michael@0 4735 notevil = (notevil + 1571)/2;
michael@0 4736 break;
michael@0 4737 case "z1572":
michael@0 4738 notevil = (notevil + 1572)/2;
michael@0 4739 break;
michael@0 4740 case "z1573":
michael@0 4741 notevil = (notevil + 1573)/2;
michael@0 4742 break;
michael@0 4743 case "z1574":
michael@0 4744 notevil = (notevil + 1574)/2;
michael@0 4745 break;
michael@0 4746 case "z1575":
michael@0 4747 notevil = (notevil + 1575)/2;
michael@0 4748 break;
michael@0 4749 case "z1576":
michael@0 4750 notevil = (notevil + 1576)/2;
michael@0 4751 break;
michael@0 4752 case "z1577":
michael@0 4753 notevil = (notevil + 1577)/2;
michael@0 4754 break;
michael@0 4755 case "z1578":
michael@0 4756 notevil = (notevil + 1578)/2;
michael@0 4757 break;
michael@0 4758 case "z1579":
michael@0 4759 notevil = (notevil + 1579)/2;
michael@0 4760 break;
michael@0 4761 case "z1580":
michael@0 4762 notevil = (notevil + 1580)/2;
michael@0 4763 break;
michael@0 4764 case "z1581":
michael@0 4765 notevil = (notevil + 1581)/2;
michael@0 4766 break;
michael@0 4767 case "z1582":
michael@0 4768 notevil = (notevil + 1582)/2;
michael@0 4769 break;
michael@0 4770 case "z1583":
michael@0 4771 notevil = (notevil + 1583)/2;
michael@0 4772 break;
michael@0 4773 case "z1584":
michael@0 4774 notevil = (notevil + 1584)/2;
michael@0 4775 break;
michael@0 4776 case "z1585":
michael@0 4777 notevil = (notevil + 1585)/2;
michael@0 4778 break;
michael@0 4779 case "z1586":
michael@0 4780 notevil = (notevil + 1586)/2;
michael@0 4781 break;
michael@0 4782 case "z1587":
michael@0 4783 notevil = (notevil + 1587)/2;
michael@0 4784 break;
michael@0 4785 case "z1588":
michael@0 4786 notevil = (notevil + 1588)/2;
michael@0 4787 break;
michael@0 4788 case "z1589":
michael@0 4789 notevil = (notevil + 1589)/2;
michael@0 4790 break;
michael@0 4791 case "z1590":
michael@0 4792 notevil = (notevil + 1590)/2;
michael@0 4793 break;
michael@0 4794 case "z1591":
michael@0 4795 notevil = (notevil + 1591)/2;
michael@0 4796 break;
michael@0 4797 case "z1592":
michael@0 4798 notevil = (notevil + 1592)/2;
michael@0 4799 break;
michael@0 4800 case "z1593":
michael@0 4801 notevil = (notevil + 1593)/2;
michael@0 4802 break;
michael@0 4803 case "z1594":
michael@0 4804 notevil = (notevil + 1594)/2;
michael@0 4805 break;
michael@0 4806 case "z1595":
michael@0 4807 notevil = (notevil + 1595)/2;
michael@0 4808 break;
michael@0 4809 case "z1596":
michael@0 4810 notevil = (notevil + 1596)/2;
michael@0 4811 break;
michael@0 4812 case "z1597":
michael@0 4813 notevil = (notevil + 1597)/2;
michael@0 4814 break;
michael@0 4815 case "z1598":
michael@0 4816 notevil = (notevil + 1598)/2;
michael@0 4817 break;
michael@0 4818 case "z1599":
michael@0 4819 notevil = (notevil + 1599)/2;
michael@0 4820 break;
michael@0 4821 case "z1600":
michael@0 4822 notevil = (notevil + 1600)/2;
michael@0 4823 break;
michael@0 4824 case "z1601":
michael@0 4825 notevil = (notevil + 1601)/2;
michael@0 4826 break;
michael@0 4827 case "z1602":
michael@0 4828 notevil = (notevil + 1602)/2;
michael@0 4829 break;
michael@0 4830 case "z1603":
michael@0 4831 notevil = (notevil + 1603)/2;
michael@0 4832 break;
michael@0 4833 case "z1604":
michael@0 4834 notevil = (notevil + 1604)/2;
michael@0 4835 break;
michael@0 4836 case "z1605":
michael@0 4837 notevil = (notevil + 1605)/2;
michael@0 4838 break;
michael@0 4839 case "z1606":
michael@0 4840 notevil = (notevil + 1606)/2;
michael@0 4841 break;
michael@0 4842 case "z1607":
michael@0 4843 notevil = (notevil + 1607)/2;
michael@0 4844 break;
michael@0 4845 case "z1608":
michael@0 4846 notevil = (notevil + 1608)/2;
michael@0 4847 break;
michael@0 4848 case "z1609":
michael@0 4849 notevil = (notevil + 1609)/2;
michael@0 4850 break;
michael@0 4851 case "z1610":
michael@0 4852 notevil = (notevil + 1610)/2;
michael@0 4853 break;
michael@0 4854 case "z1611":
michael@0 4855 notevil = (notevil + 1611)/2;
michael@0 4856 break;
michael@0 4857 case "z1612":
michael@0 4858 notevil = (notevil + 1612)/2;
michael@0 4859 break;
michael@0 4860 case "z1613":
michael@0 4861 notevil = (notevil + 1613)/2;
michael@0 4862 break;
michael@0 4863 case "z1614":
michael@0 4864 notevil = (notevil + 1614)/2;
michael@0 4865 break;
michael@0 4866 case "z1615":
michael@0 4867 notevil = (notevil + 1615)/2;
michael@0 4868 break;
michael@0 4869 case "z1616":
michael@0 4870 notevil = (notevil + 1616)/2;
michael@0 4871 break;
michael@0 4872 case "z1617":
michael@0 4873 notevil = (notevil + 1617)/2;
michael@0 4874 break;
michael@0 4875 case "z1618":
michael@0 4876 notevil = (notevil + 1618)/2;
michael@0 4877 break;
michael@0 4878 case "z1619":
michael@0 4879 notevil = (notevil + 1619)/2;
michael@0 4880 break;
michael@0 4881 case "z1620":
michael@0 4882 notevil = (notevil + 1620)/2;
michael@0 4883 break;
michael@0 4884 case "z1621":
michael@0 4885 notevil = (notevil + 1621)/2;
michael@0 4886 break;
michael@0 4887 case "z1622":
michael@0 4888 notevil = (notevil + 1622)/2;
michael@0 4889 break;
michael@0 4890 case "z1623":
michael@0 4891 notevil = (notevil + 1623)/2;
michael@0 4892 break;
michael@0 4893 case "z1624":
michael@0 4894 notevil = (notevil + 1624)/2;
michael@0 4895 break;
michael@0 4896 case "z1625":
michael@0 4897 notevil = (notevil + 1625)/2;
michael@0 4898 break;
michael@0 4899 case "z1626":
michael@0 4900 notevil = (notevil + 1626)/2;
michael@0 4901 break;
michael@0 4902 case "z1627":
michael@0 4903 notevil = (notevil + 1627)/2;
michael@0 4904 break;
michael@0 4905 case "z1628":
michael@0 4906 notevil = (notevil + 1628)/2;
michael@0 4907 break;
michael@0 4908 case "z1629":
michael@0 4909 notevil = (notevil + 1629)/2;
michael@0 4910 break;
michael@0 4911 case "z1630":
michael@0 4912 notevil = (notevil + 1630)/2;
michael@0 4913 break;
michael@0 4914 case "z1631":
michael@0 4915 notevil = (notevil + 1631)/2;
michael@0 4916 break;
michael@0 4917 case "z1632":
michael@0 4918 notevil = (notevil + 1632)/2;
michael@0 4919 break;
michael@0 4920 case "z1633":
michael@0 4921 notevil = (notevil + 1633)/2;
michael@0 4922 break;
michael@0 4923 case "z1634":
michael@0 4924 notevil = (notevil + 1634)/2;
michael@0 4925 break;
michael@0 4926 case "z1635":
michael@0 4927 notevil = (notevil + 1635)/2;
michael@0 4928 break;
michael@0 4929 case "z1636":
michael@0 4930 notevil = (notevil + 1636)/2;
michael@0 4931 break;
michael@0 4932 case "z1637":
michael@0 4933 notevil = (notevil + 1637)/2;
michael@0 4934 break;
michael@0 4935 case "z1638":
michael@0 4936 notevil = (notevil + 1638)/2;
michael@0 4937 break;
michael@0 4938 case "z1639":
michael@0 4939 notevil = (notevil + 1639)/2;
michael@0 4940 break;
michael@0 4941 case "z1640":
michael@0 4942 notevil = (notevil + 1640)/2;
michael@0 4943 break;
michael@0 4944 case "z1641":
michael@0 4945 notevil = (notevil + 1641)/2;
michael@0 4946 break;
michael@0 4947 case "z1642":
michael@0 4948 notevil = (notevil + 1642)/2;
michael@0 4949 break;
michael@0 4950 case "z1643":
michael@0 4951 notevil = (notevil + 1643)/2;
michael@0 4952 break;
michael@0 4953 case "z1644":
michael@0 4954 notevil = (notevil + 1644)/2;
michael@0 4955 break;
michael@0 4956 case "z1645":
michael@0 4957 notevil = (notevil + 1645)/2;
michael@0 4958 break;
michael@0 4959 case "z1646":
michael@0 4960 notevil = (notevil + 1646)/2;
michael@0 4961 break;
michael@0 4962 case "z1647":
michael@0 4963 notevil = (notevil + 1647)/2;
michael@0 4964 break;
michael@0 4965 case "z1648":
michael@0 4966 notevil = (notevil + 1648)/2;
michael@0 4967 break;
michael@0 4968 case "z1649":
michael@0 4969 notevil = (notevil + 1649)/2;
michael@0 4970 break;
michael@0 4971 case "z1650":
michael@0 4972 notevil = (notevil + 1650)/2;
michael@0 4973 break;
michael@0 4974 case "z1651":
michael@0 4975 notevil = (notevil + 1651)/2;
michael@0 4976 break;
michael@0 4977 case "z1652":
michael@0 4978 notevil = (notevil + 1652)/2;
michael@0 4979 break;
michael@0 4980 case "z1653":
michael@0 4981 notevil = (notevil + 1653)/2;
michael@0 4982 break;
michael@0 4983 case "z1654":
michael@0 4984 notevil = (notevil + 1654)/2;
michael@0 4985 break;
michael@0 4986 case "z1655":
michael@0 4987 notevil = (notevil + 1655)/2;
michael@0 4988 break;
michael@0 4989 case "z1656":
michael@0 4990 notevil = (notevil + 1656)/2;
michael@0 4991 break;
michael@0 4992 case "z1657":
michael@0 4993 notevil = (notevil + 1657)/2;
michael@0 4994 break;
michael@0 4995 case "z1658":
michael@0 4996 notevil = (notevil + 1658)/2;
michael@0 4997 break;
michael@0 4998 case "z1659":
michael@0 4999 notevil = (notevil + 1659)/2;
michael@0 5000 break;
michael@0 5001 case "z1660":
michael@0 5002 notevil = (notevil + 1660)/2;
michael@0 5003 break;
michael@0 5004 case "z1661":
michael@0 5005 notevil = (notevil + 1661)/2;
michael@0 5006 break;
michael@0 5007 case "z1662":
michael@0 5008 notevil = (notevil + 1662)/2;
michael@0 5009 break;
michael@0 5010 case "z1663":
michael@0 5011 notevil = (notevil + 1663)/2;
michael@0 5012 break;
michael@0 5013 case "z1664":
michael@0 5014 notevil = (notevil + 1664)/2;
michael@0 5015 break;
michael@0 5016 case "z1665":
michael@0 5017 notevil = (notevil + 1665)/2;
michael@0 5018 break;
michael@0 5019 case "z1666":
michael@0 5020 notevil = (notevil + 1666)/2;
michael@0 5021 break;
michael@0 5022 case "z1667":
michael@0 5023 notevil = (notevil + 1667)/2;
michael@0 5024 break;
michael@0 5025 case "z1668":
michael@0 5026 notevil = (notevil + 1668)/2;
michael@0 5027 break;
michael@0 5028 case "z1669":
michael@0 5029 notevil = (notevil + 1669)/2;
michael@0 5030 break;
michael@0 5031 case "z1670":
michael@0 5032 notevil = (notevil + 1670)/2;
michael@0 5033 break;
michael@0 5034 case "z1671":
michael@0 5035 notevil = (notevil + 1671)/2;
michael@0 5036 break;
michael@0 5037 case "z1672":
michael@0 5038 notevil = (notevil + 1672)/2;
michael@0 5039 break;
michael@0 5040 case "z1673":
michael@0 5041 notevil = (notevil + 1673)/2;
michael@0 5042 break;
michael@0 5043 case "z1674":
michael@0 5044 notevil = (notevil + 1674)/2;
michael@0 5045 break;
michael@0 5046 case "z1675":
michael@0 5047 notevil = (notevil + 1675)/2;
michael@0 5048 break;
michael@0 5049 case "z1676":
michael@0 5050 notevil = (notevil + 1676)/2;
michael@0 5051 break;
michael@0 5052 case "z1677":
michael@0 5053 notevil = (notevil + 1677)/2;
michael@0 5054 break;
michael@0 5055 case "z1678":
michael@0 5056 notevil = (notevil + 1678)/2;
michael@0 5057 break;
michael@0 5058 case "z1679":
michael@0 5059 notevil = (notevil + 1679)/2;
michael@0 5060 break;
michael@0 5061 case "z1680":
michael@0 5062 notevil = (notevil + 1680)/2;
michael@0 5063 break;
michael@0 5064 case "z1681":
michael@0 5065 notevil = (notevil + 1681)/2;
michael@0 5066 break;
michael@0 5067 case "z1682":
michael@0 5068 notevil = (notevil + 1682)/2;
michael@0 5069 break;
michael@0 5070 case "z1683":
michael@0 5071 notevil = (notevil + 1683)/2;
michael@0 5072 break;
michael@0 5073 case "z1684":
michael@0 5074 notevil = (notevil + 1684)/2;
michael@0 5075 break;
michael@0 5076 case "z1685":
michael@0 5077 notevil = (notevil + 1685)/2;
michael@0 5078 break;
michael@0 5079 case "z1686":
michael@0 5080 notevil = (notevil + 1686)/2;
michael@0 5081 break;
michael@0 5082 case "z1687":
michael@0 5083 notevil = (notevil + 1687)/2;
michael@0 5084 break;
michael@0 5085 case "z1688":
michael@0 5086 notevil = (notevil + 1688)/2;
michael@0 5087 break;
michael@0 5088 case "z1689":
michael@0 5089 notevil = (notevil + 1689)/2;
michael@0 5090 break;
michael@0 5091 case "z1690":
michael@0 5092 notevil = (notevil + 1690)/2;
michael@0 5093 break;
michael@0 5094 case "z1691":
michael@0 5095 notevil = (notevil + 1691)/2;
michael@0 5096 break;
michael@0 5097 case "z1692":
michael@0 5098 notevil = (notevil + 1692)/2;
michael@0 5099 break;
michael@0 5100 case "z1693":
michael@0 5101 notevil = (notevil + 1693)/2;
michael@0 5102 break;
michael@0 5103 case "z1694":
michael@0 5104 notevil = (notevil + 1694)/2;
michael@0 5105 break;
michael@0 5106 case "z1695":
michael@0 5107 notevil = (notevil + 1695)/2;
michael@0 5108 break;
michael@0 5109 case "z1696":
michael@0 5110 notevil = (notevil + 1696)/2;
michael@0 5111 break;
michael@0 5112 case "z1697":
michael@0 5113 notevil = (notevil + 1697)/2;
michael@0 5114 break;
michael@0 5115 case "z1698":
michael@0 5116 notevil = (notevil + 1698)/2;
michael@0 5117 break;
michael@0 5118 case "z1699":
michael@0 5119 notevil = (notevil + 1699)/2;
michael@0 5120 break;
michael@0 5121 case "z1700":
michael@0 5122 notevil = (notevil + 1700)/2;
michael@0 5123 break;
michael@0 5124 case "z1701":
michael@0 5125 notevil = (notevil + 1701)/2;
michael@0 5126 break;
michael@0 5127 case "z1702":
michael@0 5128 notevil = (notevil + 1702)/2;
michael@0 5129 break;
michael@0 5130 case "z1703":
michael@0 5131 notevil = (notevil + 1703)/2;
michael@0 5132 break;
michael@0 5133 case "z1704":
michael@0 5134 notevil = (notevil + 1704)/2;
michael@0 5135 break;
michael@0 5136 case "z1705":
michael@0 5137 notevil = (notevil + 1705)/2;
michael@0 5138 break;
michael@0 5139 case "z1706":
michael@0 5140 notevil = (notevil + 1706)/2;
michael@0 5141 break;
michael@0 5142 case "z1707":
michael@0 5143 notevil = (notevil + 1707)/2;
michael@0 5144 break;
michael@0 5145 case "z1708":
michael@0 5146 notevil = (notevil + 1708)/2;
michael@0 5147 break;
michael@0 5148 case "z1709":
michael@0 5149 notevil = (notevil + 1709)/2;
michael@0 5150 break;
michael@0 5151 case "z1710":
michael@0 5152 notevil = (notevil + 1710)/2;
michael@0 5153 break;
michael@0 5154 case "z1711":
michael@0 5155 notevil = (notevil + 1711)/2;
michael@0 5156 break;
michael@0 5157 case "z1712":
michael@0 5158 notevil = (notevil + 1712)/2;
michael@0 5159 break;
michael@0 5160 case "z1713":
michael@0 5161 notevil = (notevil + 1713)/2;
michael@0 5162 break;
michael@0 5163 case "z1714":
michael@0 5164 notevil = (notevil + 1714)/2;
michael@0 5165 break;
michael@0 5166 case "z1715":
michael@0 5167 notevil = (notevil + 1715)/2;
michael@0 5168 break;
michael@0 5169 case "z1716":
michael@0 5170 notevil = (notevil + 1716)/2;
michael@0 5171 break;
michael@0 5172 case "z1717":
michael@0 5173 notevil = (notevil + 1717)/2;
michael@0 5174 break;
michael@0 5175 case "z1718":
michael@0 5176 notevil = (notevil + 1718)/2;
michael@0 5177 break;
michael@0 5178 case "z1719":
michael@0 5179 notevil = (notevil + 1719)/2;
michael@0 5180 break;
michael@0 5181 case "z1720":
michael@0 5182 notevil = (notevil + 1720)/2;
michael@0 5183 break;
michael@0 5184 case "z1721":
michael@0 5185 notevil = (notevil + 1721)/2;
michael@0 5186 break;
michael@0 5187 case "z1722":
michael@0 5188 notevil = (notevil + 1722)/2;
michael@0 5189 break;
michael@0 5190 case "z1723":
michael@0 5191 notevil = (notevil + 1723)/2;
michael@0 5192 break;
michael@0 5193 case "z1724":
michael@0 5194 notevil = (notevil + 1724)/2;
michael@0 5195 break;
michael@0 5196 case "z1725":
michael@0 5197 notevil = (notevil + 1725)/2;
michael@0 5198 break;
michael@0 5199 case "z1726":
michael@0 5200 notevil = (notevil + 1726)/2;
michael@0 5201 break;
michael@0 5202 case "z1727":
michael@0 5203 notevil = (notevil + 1727)/2;
michael@0 5204 break;
michael@0 5205 case "z1728":
michael@0 5206 notevil = (notevil + 1728)/2;
michael@0 5207 break;
michael@0 5208 case "z1729":
michael@0 5209 notevil = (notevil + 1729)/2;
michael@0 5210 break;
michael@0 5211 case "z1730":
michael@0 5212 notevil = (notevil + 1730)/2;
michael@0 5213 break;
michael@0 5214 case "z1731":
michael@0 5215 notevil = (notevil + 1731)/2;
michael@0 5216 break;
michael@0 5217 case "z1732":
michael@0 5218 notevil = (notevil + 1732)/2;
michael@0 5219 break;
michael@0 5220 case "z1733":
michael@0 5221 notevil = (notevil + 1733)/2;
michael@0 5222 break;
michael@0 5223 case "z1734":
michael@0 5224 notevil = (notevil + 1734)/2;
michael@0 5225 break;
michael@0 5226 case "z1735":
michael@0 5227 notevil = (notevil + 1735)/2;
michael@0 5228 break;
michael@0 5229 case "z1736":
michael@0 5230 notevil = (notevil + 1736)/2;
michael@0 5231 break;
michael@0 5232 case "z1737":
michael@0 5233 notevil = (notevil + 1737)/2;
michael@0 5234 break;
michael@0 5235 case "z1738":
michael@0 5236 notevil = (notevil + 1738)/2;
michael@0 5237 break;
michael@0 5238 case "z1739":
michael@0 5239 notevil = (notevil + 1739)/2;
michael@0 5240 break;
michael@0 5241 case "z1740":
michael@0 5242 notevil = (notevil + 1740)/2;
michael@0 5243 break;
michael@0 5244 case "z1741":
michael@0 5245 notevil = (notevil + 1741)/2;
michael@0 5246 break;
michael@0 5247 case "z1742":
michael@0 5248 notevil = (notevil + 1742)/2;
michael@0 5249 break;
michael@0 5250 case "z1743":
michael@0 5251 notevil = (notevil + 1743)/2;
michael@0 5252 break;
michael@0 5253 case "z1744":
michael@0 5254 notevil = (notevil + 1744)/2;
michael@0 5255 break;
michael@0 5256 case "z1745":
michael@0 5257 notevil = (notevil + 1745)/2;
michael@0 5258 break;
michael@0 5259 case "z1746":
michael@0 5260 notevil = (notevil + 1746)/2;
michael@0 5261 break;
michael@0 5262 case "z1747":
michael@0 5263 notevil = (notevil + 1747)/2;
michael@0 5264 break;
michael@0 5265 case "z1748":
michael@0 5266 notevil = (notevil + 1748)/2;
michael@0 5267 break;
michael@0 5268 case "z1749":
michael@0 5269 notevil = (notevil + 1749)/2;
michael@0 5270 break;
michael@0 5271 case "z1750":
michael@0 5272 notevil = (notevil + 1750)/2;
michael@0 5273 break;
michael@0 5274 case "z1751":
michael@0 5275 notevil = (notevil + 1751)/2;
michael@0 5276 break;
michael@0 5277 case "z1752":
michael@0 5278 notevil = (notevil + 1752)/2;
michael@0 5279 break;
michael@0 5280 case "z1753":
michael@0 5281 notevil = (notevil + 1753)/2;
michael@0 5282 break;
michael@0 5283 case "z1754":
michael@0 5284 notevil = (notevil + 1754)/2;
michael@0 5285 break;
michael@0 5286 case "z1755":
michael@0 5287 notevil = (notevil + 1755)/2;
michael@0 5288 break;
michael@0 5289 case "z1756":
michael@0 5290 notevil = (notevil + 1756)/2;
michael@0 5291 break;
michael@0 5292 case "z1757":
michael@0 5293 notevil = (notevil + 1757)/2;
michael@0 5294 break;
michael@0 5295 case "z1758":
michael@0 5296 notevil = (notevil + 1758)/2;
michael@0 5297 break;
michael@0 5298 case "z1759":
michael@0 5299 notevil = (notevil + 1759)/2;
michael@0 5300 break;
michael@0 5301 case "z1760":
michael@0 5302 notevil = (notevil + 1760)/2;
michael@0 5303 break;
michael@0 5304 case "z1761":
michael@0 5305 notevil = (notevil + 1761)/2;
michael@0 5306 break;
michael@0 5307 case "z1762":
michael@0 5308 notevil = (notevil + 1762)/2;
michael@0 5309 break;
michael@0 5310 case "z1763":
michael@0 5311 notevil = (notevil + 1763)/2;
michael@0 5312 break;
michael@0 5313 case "z1764":
michael@0 5314 notevil = (notevil + 1764)/2;
michael@0 5315 break;
michael@0 5316 case "z1765":
michael@0 5317 notevil = (notevil + 1765)/2;
michael@0 5318 break;
michael@0 5319 case "z1766":
michael@0 5320 notevil = (notevil + 1766)/2;
michael@0 5321 break;
michael@0 5322 case "z1767":
michael@0 5323 notevil = (notevil + 1767)/2;
michael@0 5324 break;
michael@0 5325 case "z1768":
michael@0 5326 notevil = (notevil + 1768)/2;
michael@0 5327 break;
michael@0 5328 case "z1769":
michael@0 5329 notevil = (notevil + 1769)/2;
michael@0 5330 break;
michael@0 5331 case "z1770":
michael@0 5332 notevil = (notevil + 1770)/2;
michael@0 5333 break;
michael@0 5334 case "z1771":
michael@0 5335 notevil = (notevil + 1771)/2;
michael@0 5336 break;
michael@0 5337 case "z1772":
michael@0 5338 notevil = (notevil + 1772)/2;
michael@0 5339 break;
michael@0 5340 case "z1773":
michael@0 5341 notevil = (notevil + 1773)/2;
michael@0 5342 break;
michael@0 5343 case "z1774":
michael@0 5344 notevil = (notevil + 1774)/2;
michael@0 5345 break;
michael@0 5346 case "z1775":
michael@0 5347 notevil = (notevil + 1775)/2;
michael@0 5348 break;
michael@0 5349 case "z1776":
michael@0 5350 notevil = (notevil + 1776)/2;
michael@0 5351 break;
michael@0 5352 case "z1777":
michael@0 5353 notevil = (notevil + 1777)/2;
michael@0 5354 break;
michael@0 5355 case "z1778":
michael@0 5356 notevil = (notevil + 1778)/2;
michael@0 5357 break;
michael@0 5358 case "z1779":
michael@0 5359 notevil = (notevil + 1779)/2;
michael@0 5360 break;
michael@0 5361 case "z1780":
michael@0 5362 notevil = (notevil + 1780)/2;
michael@0 5363 break;
michael@0 5364 case "z1781":
michael@0 5365 notevil = (notevil + 1781)/2;
michael@0 5366 break;
michael@0 5367 case "z1782":
michael@0 5368 notevil = (notevil + 1782)/2;
michael@0 5369 break;
michael@0 5370 case "z1783":
michael@0 5371 notevil = (notevil + 1783)/2;
michael@0 5372 break;
michael@0 5373 case "z1784":
michael@0 5374 notevil = (notevil + 1784)/2;
michael@0 5375 break;
michael@0 5376 case "z1785":
michael@0 5377 notevil = (notevil + 1785)/2;
michael@0 5378 break;
michael@0 5379 case "z1786":
michael@0 5380 notevil = (notevil + 1786)/2;
michael@0 5381 break;
michael@0 5382 case "z1787":
michael@0 5383 notevil = (notevil + 1787)/2;
michael@0 5384 break;
michael@0 5385 case "z1788":
michael@0 5386 notevil = (notevil + 1788)/2;
michael@0 5387 break;
michael@0 5388 case "z1789":
michael@0 5389 notevil = (notevil + 1789)/2;
michael@0 5390 break;
michael@0 5391 case "z1790":
michael@0 5392 notevil = (notevil + 1790)/2;
michael@0 5393 break;
michael@0 5394 case "z1791":
michael@0 5395 notevil = (notevil + 1791)/2;
michael@0 5396 break;
michael@0 5397 case "z1792":
michael@0 5398 notevil = (notevil + 1792)/2;
michael@0 5399 break;
michael@0 5400 case "z1793":
michael@0 5401 notevil = (notevil + 1793)/2;
michael@0 5402 break;
michael@0 5403 case "z1794":
michael@0 5404 notevil = (notevil + 1794)/2;
michael@0 5405 break;
michael@0 5406 case "z1795":
michael@0 5407 notevil = (notevil + 1795)/2;
michael@0 5408 break;
michael@0 5409 case "z1796":
michael@0 5410 notevil = (notevil + 1796)/2;
michael@0 5411 break;
michael@0 5412 case "z1797":
michael@0 5413 notevil = (notevil + 1797)/2;
michael@0 5414 break;
michael@0 5415 case "z1798":
michael@0 5416 notevil = (notevil + 1798)/2;
michael@0 5417 break;
michael@0 5418 case "z1799":
michael@0 5419 notevil = (notevil + 1799)/2;
michael@0 5420 break;
michael@0 5421
michael@0 5422 default:
michael@0 5423 dut = 3;
michael@0 5424 break;
michael@0 5425 }
michael@0 5426
michael@0 5427 reportCompare(expect, actual, summary);

mercurial