1'use strict'; 2 3/* The following tests are copied from WPT. Modifications to them should be 4 upstreamed first. Refs: 5 https://github.com/w3c/web-platform-tests/blob/88b75886e/url/urltestdata.json 6 License: http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html 7*/ 8module.exports = [ 9 { 10 "input": "\u0000/x", 11 "output": null 12 }, 13 { 14 "input": "x/\u0000", 15 "output": null 16 }, 17 { 18 "input": "x/x;\u0000=x;bonus=x", 19 "output": "x/x;bonus=x" 20 }, 21 { 22 "input": "x/x;x=\u0000;bonus=x", 23 "output": "x/x;bonus=x" 24 }, 25 { 26 "input": "x/x;x=\"\u0000\";bonus=x", 27 "output": "x/x;bonus=x" 28 }, 29 { 30 "input": "\u0001/x", 31 "output": null 32 }, 33 { 34 "input": "x/\u0001", 35 "output": null 36 }, 37 { 38 "input": "x/x;\u0001=x;bonus=x", 39 "output": "x/x;bonus=x" 40 }, 41 { 42 "input": "x/x;x=\u0001;bonus=x", 43 "output": "x/x;bonus=x" 44 }, 45 { 46 "input": "x/x;x=\"\u0001\";bonus=x", 47 "output": "x/x;bonus=x" 48 }, 49 { 50 "input": "\u0002/x", 51 "output": null 52 }, 53 { 54 "input": "x/\u0002", 55 "output": null 56 }, 57 { 58 "input": "x/x;\u0002=x;bonus=x", 59 "output": "x/x;bonus=x" 60 }, 61 { 62 "input": "x/x;x=\u0002;bonus=x", 63 "output": "x/x;bonus=x" 64 }, 65 { 66 "input": "x/x;x=\"\u0002\";bonus=x", 67 "output": "x/x;bonus=x" 68 }, 69 { 70 "input": "\u0003/x", 71 "output": null 72 }, 73 { 74 "input": "x/\u0003", 75 "output": null 76 }, 77 { 78 "input": "x/x;\u0003=x;bonus=x", 79 "output": "x/x;bonus=x" 80 }, 81 { 82 "input": "x/x;x=\u0003;bonus=x", 83 "output": "x/x;bonus=x" 84 }, 85 { 86 "input": "x/x;x=\"\u0003\";bonus=x", 87 "output": "x/x;bonus=x" 88 }, 89 { 90 "input": "\u0004/x", 91 "output": null 92 }, 93 { 94 "input": "x/\u0004", 95 "output": null 96 }, 97 { 98 "input": "x/x;\u0004=x;bonus=x", 99 "output": "x/x;bonus=x" 100 }, 101 { 102 "input": "x/x;x=\u0004;bonus=x", 103 "output": "x/x;bonus=x" 104 }, 105 { 106 "input": "x/x;x=\"\u0004\";bonus=x", 107 "output": "x/x;bonus=x" 108 }, 109 { 110 "input": "\u0005/x", 111 "output": null 112 }, 113 { 114 "input": "x/\u0005", 115 "output": null 116 }, 117 { 118 "input": "x/x;\u0005=x;bonus=x", 119 "output": "x/x;bonus=x" 120 }, 121 { 122 "input": "x/x;x=\u0005;bonus=x", 123 "output": "x/x;bonus=x" 124 }, 125 { 126 "input": "x/x;x=\"\u0005\";bonus=x", 127 "output": "x/x;bonus=x" 128 }, 129 { 130 "input": "\u0006/x", 131 "output": null 132 }, 133 { 134 "input": "x/\u0006", 135 "output": null 136 }, 137 { 138 "input": "x/x;\u0006=x;bonus=x", 139 "output": "x/x;bonus=x" 140 }, 141 { 142 "input": "x/x;x=\u0006;bonus=x", 143 "output": "x/x;bonus=x" 144 }, 145 { 146 "input": "x/x;x=\"\u0006\";bonus=x", 147 "output": "x/x;bonus=x" 148 }, 149 { 150 "input": "\u0007/x", 151 "output": null 152 }, 153 { 154 "input": "x/\u0007", 155 "output": null 156 }, 157 { 158 "input": "x/x;\u0007=x;bonus=x", 159 "output": "x/x;bonus=x" 160 }, 161 { 162 "input": "x/x;x=\u0007;bonus=x", 163 "output": "x/x;bonus=x" 164 }, 165 { 166 "input": "x/x;x=\"\u0007\";bonus=x", 167 "output": "x/x;bonus=x" 168 }, 169 { 170 "input": "\b/x", 171 "output": null 172 }, 173 { 174 "input": "x/\b", 175 "output": null 176 }, 177 { 178 "input": "x/x;\b=x;bonus=x", 179 "output": "x/x;bonus=x" 180 }, 181 { 182 "input": "x/x;x=\b;bonus=x", 183 "output": "x/x;bonus=x" 184 }, 185 { 186 "input": "x/x;x=\"\b\";bonus=x", 187 "output": "x/x;bonus=x" 188 }, 189 { 190 "input": "\t/x", 191 "output": null 192 }, 193 { 194 "input": "x/\t", 195 "output": null 196 }, 197 { 198 "input": "x/x;\t=x;bonus=x", 199 "output": "x/x;bonus=x" 200 }, 201 { 202 "input": "\n/x", 203 "output": null 204 }, 205 { 206 "input": "x/\n", 207 "output": null 208 }, 209 { 210 "input": "x/x;\n=x;bonus=x", 211 "output": "x/x;bonus=x" 212 }, 213 { 214 "input": "x/x;x=\n;bonus=x", 215 "output": "x/x;bonus=x" 216 }, 217 { 218 "input": "x/x;x=\"\n\";bonus=x", 219 "output": "x/x;bonus=x" 220 }, 221 { 222 "input": "\u000b/x", 223 "output": null 224 }, 225 { 226 "input": "x/\u000b", 227 "output": null 228 }, 229 { 230 "input": "x/x;\u000b=x;bonus=x", 231 "output": "x/x;bonus=x" 232 }, 233 { 234 "input": "x/x;x=\u000b;bonus=x", 235 "output": "x/x;bonus=x" 236 }, 237 { 238 "input": "x/x;x=\"\u000b\";bonus=x", 239 "output": "x/x;bonus=x" 240 }, 241 { 242 "input": "\f/x", 243 "output": null 244 }, 245 { 246 "input": "x/\f", 247 "output": null 248 }, 249 { 250 "input": "x/x;\f=x;bonus=x", 251 "output": "x/x;bonus=x" 252 }, 253 { 254 "input": "x/x;x=\f;bonus=x", 255 "output": "x/x;bonus=x" 256 }, 257 { 258 "input": "x/x;x=\"\f\";bonus=x", 259 "output": "x/x;bonus=x" 260 }, 261 { 262 "input": "\r/x", 263 "output": null 264 }, 265 { 266 "input": "x/\r", 267 "output": null 268 }, 269 { 270 "input": "x/x;\r=x;bonus=x", 271 "output": "x/x;bonus=x" 272 }, 273 { 274 "input": "x/x;x=\r;bonus=x", 275 "output": "x/x;bonus=x" 276 }, 277 { 278 "input": "x/x;x=\"\r\";bonus=x", 279 "output": "x/x;bonus=x" 280 }, 281 { 282 "input": "\u000e/x", 283 "output": null 284 }, 285 { 286 "input": "x/\u000e", 287 "output": null 288 }, 289 { 290 "input": "x/x;\u000e=x;bonus=x", 291 "output": "x/x;bonus=x" 292 }, 293 { 294 "input": "x/x;x=\u000e;bonus=x", 295 "output": "x/x;bonus=x" 296 }, 297 { 298 "input": "x/x;x=\"\u000e\";bonus=x", 299 "output": "x/x;bonus=x" 300 }, 301 { 302 "input": "\u000f/x", 303 "output": null 304 }, 305 { 306 "input": "x/\u000f", 307 "output": null 308 }, 309 { 310 "input": "x/x;\u000f=x;bonus=x", 311 "output": "x/x;bonus=x" 312 }, 313 { 314 "input": "x/x;x=\u000f;bonus=x", 315 "output": "x/x;bonus=x" 316 }, 317 { 318 "input": "x/x;x=\"\u000f\";bonus=x", 319 "output": "x/x;bonus=x" 320 }, 321 { 322 "input": "\u0010/x", 323 "output": null 324 }, 325 { 326 "input": "x/\u0010", 327 "output": null 328 }, 329 { 330 "input": "x/x;\u0010=x;bonus=x", 331 "output": "x/x;bonus=x" 332 }, 333 { 334 "input": "x/x;x=\u0010;bonus=x", 335 "output": "x/x;bonus=x" 336 }, 337 { 338 "input": "x/x;x=\"\u0010\";bonus=x", 339 "output": "x/x;bonus=x" 340 }, 341 { 342 "input": "\u0011/x", 343 "output": null 344 }, 345 { 346 "input": "x/\u0011", 347 "output": null 348 }, 349 { 350 "input": "x/x;\u0011=x;bonus=x", 351 "output": "x/x;bonus=x" 352 }, 353 { 354 "input": "x/x;x=\u0011;bonus=x", 355 "output": "x/x;bonus=x" 356 }, 357 { 358 "input": "x/x;x=\"\u0011\";bonus=x", 359 "output": "x/x;bonus=x" 360 }, 361 { 362 "input": "\u0012/x", 363 "output": null 364 }, 365 { 366 "input": "x/\u0012", 367 "output": null 368 }, 369 { 370 "input": "x/x;\u0012=x;bonus=x", 371 "output": "x/x;bonus=x" 372 }, 373 { 374 "input": "x/x;x=\u0012;bonus=x", 375 "output": "x/x;bonus=x" 376 }, 377 { 378 "input": "x/x;x=\"\u0012\";bonus=x", 379 "output": "x/x;bonus=x" 380 }, 381 { 382 "input": "\u0013/x", 383 "output": null 384 }, 385 { 386 "input": "x/\u0013", 387 "output": null 388 }, 389 { 390 "input": "x/x;\u0013=x;bonus=x", 391 "output": "x/x;bonus=x" 392 }, 393 { 394 "input": "x/x;x=\u0013;bonus=x", 395 "output": "x/x;bonus=x" 396 }, 397 { 398 "input": "x/x;x=\"\u0013\";bonus=x", 399 "output": "x/x;bonus=x" 400 }, 401 { 402 "input": "\u0014/x", 403 "output": null 404 }, 405 { 406 "input": "x/\u0014", 407 "output": null 408 }, 409 { 410 "input": "x/x;\u0014=x;bonus=x", 411 "output": "x/x;bonus=x" 412 }, 413 { 414 "input": "x/x;x=\u0014;bonus=x", 415 "output": "x/x;bonus=x" 416 }, 417 { 418 "input": "x/x;x=\"\u0014\";bonus=x", 419 "output": "x/x;bonus=x" 420 }, 421 { 422 "input": "\u0015/x", 423 "output": null 424 }, 425 { 426 "input": "x/\u0015", 427 "output": null 428 }, 429 { 430 "input": "x/x;\u0015=x;bonus=x", 431 "output": "x/x;bonus=x" 432 }, 433 { 434 "input": "x/x;x=\u0015;bonus=x", 435 "output": "x/x;bonus=x" 436 }, 437 { 438 "input": "x/x;x=\"\u0015\";bonus=x", 439 "output": "x/x;bonus=x" 440 }, 441 { 442 "input": "\u0016/x", 443 "output": null 444 }, 445 { 446 "input": "x/\u0016", 447 "output": null 448 }, 449 { 450 "input": "x/x;\u0016=x;bonus=x", 451 "output": "x/x;bonus=x" 452 }, 453 { 454 "input": "x/x;x=\u0016;bonus=x", 455 "output": "x/x;bonus=x" 456 }, 457 { 458 "input": "x/x;x=\"\u0016\";bonus=x", 459 "output": "x/x;bonus=x" 460 }, 461 { 462 "input": "\u0017/x", 463 "output": null 464 }, 465 { 466 "input": "x/\u0017", 467 "output": null 468 }, 469 { 470 "input": "x/x;\u0017=x;bonus=x", 471 "output": "x/x;bonus=x" 472 }, 473 { 474 "input": "x/x;x=\u0017;bonus=x", 475 "output": "x/x;bonus=x" 476 }, 477 { 478 "input": "x/x;x=\"\u0017\";bonus=x", 479 "output": "x/x;bonus=x" 480 }, 481 { 482 "input": "\u0018/x", 483 "output": null 484 }, 485 { 486 "input": "x/\u0018", 487 "output": null 488 }, 489 { 490 "input": "x/x;\u0018=x;bonus=x", 491 "output": "x/x;bonus=x" 492 }, 493 { 494 "input": "x/x;x=\u0018;bonus=x", 495 "output": "x/x;bonus=x" 496 }, 497 { 498 "input": "x/x;x=\"\u0018\";bonus=x", 499 "output": "x/x;bonus=x" 500 }, 501 { 502 "input": "\u0019/x", 503 "output": null 504 }, 505 { 506 "input": "x/\u0019", 507 "output": null 508 }, 509 { 510 "input": "x/x;\u0019=x;bonus=x", 511 "output": "x/x;bonus=x" 512 }, 513 { 514 "input": "x/x;x=\u0019;bonus=x", 515 "output": "x/x;bonus=x" 516 }, 517 { 518 "input": "x/x;x=\"\u0019\";bonus=x", 519 "output": "x/x;bonus=x" 520 }, 521 { 522 "input": "\u001a/x", 523 "output": null 524 }, 525 { 526 "input": "x/\u001a", 527 "output": null 528 }, 529 { 530 "input": "x/x;\u001a=x;bonus=x", 531 "output": "x/x;bonus=x" 532 }, 533 { 534 "input": "x/x;x=\u001a;bonus=x", 535 "output": "x/x;bonus=x" 536 }, 537 { 538 "input": "x/x;x=\"\u001a\";bonus=x", 539 "output": "x/x;bonus=x" 540 }, 541 { 542 "input": "\u001b/x", 543 "output": null 544 }, 545 { 546 "input": "x/\u001b", 547 "output": null 548 }, 549 { 550 "input": "x/x;\u001b=x;bonus=x", 551 "output": "x/x;bonus=x" 552 }, 553 { 554 "input": "x/x;x=\u001b;bonus=x", 555 "output": "x/x;bonus=x" 556 }, 557 { 558 "input": "x/x;x=\"\u001b\";bonus=x", 559 "output": "x/x;bonus=x" 560 }, 561 { 562 "input": "\u001c/x", 563 "output": null 564 }, 565 { 566 "input": "x/\u001c", 567 "output": null 568 }, 569 { 570 "input": "x/x;\u001c=x;bonus=x", 571 "output": "x/x;bonus=x" 572 }, 573 { 574 "input": "x/x;x=\u001c;bonus=x", 575 "output": "x/x;bonus=x" 576 }, 577 { 578 "input": "x/x;x=\"\u001c\";bonus=x", 579 "output": "x/x;bonus=x" 580 }, 581 { 582 "input": "\u001d/x", 583 "output": null 584 }, 585 { 586 "input": "x/\u001d", 587 "output": null 588 }, 589 { 590 "input": "x/x;\u001d=x;bonus=x", 591 "output": "x/x;bonus=x" 592 }, 593 { 594 "input": "x/x;x=\u001d;bonus=x", 595 "output": "x/x;bonus=x" 596 }, 597 { 598 "input": "x/x;x=\"\u001d\";bonus=x", 599 "output": "x/x;bonus=x" 600 }, 601 { 602 "input": "\u001e/x", 603 "output": null 604 }, 605 { 606 "input": "x/\u001e", 607 "output": null 608 }, 609 { 610 "input": "x/x;\u001e=x;bonus=x", 611 "output": "x/x;bonus=x" 612 }, 613 { 614 "input": "x/x;x=\u001e;bonus=x", 615 "output": "x/x;bonus=x" 616 }, 617 { 618 "input": "x/x;x=\"\u001e\";bonus=x", 619 "output": "x/x;bonus=x" 620 }, 621 { 622 "input": "\u001f/x", 623 "output": null 624 }, 625 { 626 "input": "x/\u001f", 627 "output": null 628 }, 629 { 630 "input": "x/x;\u001f=x;bonus=x", 631 "output": "x/x;bonus=x" 632 }, 633 { 634 "input": "x/x;x=\u001f;bonus=x", 635 "output": "x/x;bonus=x" 636 }, 637 { 638 "input": "x/x;x=\"\u001f\";bonus=x", 639 "output": "x/x;bonus=x" 640 }, 641 { 642 "input": " /x", 643 "output": null 644 }, 645 { 646 "input": "x/ ", 647 "output": null 648 }, 649 { 650 "input": "x/x; =x;bonus=x", 651 "output": "x/x;bonus=x" 652 }, 653 { 654 "input": "\"/x", 655 "output": null 656 }, 657 { 658 "input": "x/\"", 659 "output": null 660 }, 661 { 662 "input": "x/x;\"=x;bonus=x", 663 "output": "x/x;bonus=x" 664 }, 665 { 666 "input": "(/x", 667 "output": null 668 }, 669 { 670 "input": "x/(", 671 "output": null 672 }, 673 { 674 "input": "x/x;(=x;bonus=x", 675 "output": "x/x;bonus=x" 676 }, 677 { 678 "input": "x/x;x=(;bonus=x", 679 "output": "x/x;x=\"(\";bonus=x" 680 }, 681 { 682 "input": "x/x;x=\"(\";bonus=x", 683 "output": "x/x;x=\"(\";bonus=x" 684 }, 685 { 686 "input": ")/x", 687 "output": null 688 }, 689 { 690 "input": "x/)", 691 "output": null 692 }, 693 { 694 "input": "x/x;)=x;bonus=x", 695 "output": "x/x;bonus=x" 696 }, 697 { 698 "input": "x/x;x=);bonus=x", 699 "output": "x/x;x=\")\";bonus=x" 700 }, 701 { 702 "input": "x/x;x=\")\";bonus=x", 703 "output": "x/x;x=\")\";bonus=x" 704 }, 705 { 706 "input": ",/x", 707 "output": null 708 }, 709 { 710 "input": "x/,", 711 "output": null 712 }, 713 { 714 "input": "x/x;,=x;bonus=x", 715 "output": "x/x;bonus=x" 716 }, 717 { 718 "input": "x/x;x=,;bonus=x", 719 "output": "x/x;x=\",\";bonus=x" 720 }, 721 { 722 "input": "x/x;x=\",\";bonus=x", 723 "output": "x/x;x=\",\";bonus=x" 724 }, 725 { 726 "input": "x/x;/=x;bonus=x", 727 "output": "x/x;bonus=x" 728 }, 729 { 730 "input": "x/x;x=/;bonus=x", 731 "output": "x/x;x=\"/\";bonus=x" 732 }, 733 { 734 "input": "x/x;x=\"/\";bonus=x", 735 "output": "x/x;x=\"/\";bonus=x" 736 }, 737 { 738 "input": ":/x", 739 "output": null 740 }, 741 { 742 "input": "x/:", 743 "output": null 744 }, 745 { 746 "input": "x/x;:=x;bonus=x", 747 "output": "x/x;bonus=x" 748 }, 749 { 750 "input": "x/x;x=:;bonus=x", 751 "output": "x/x;x=\":\";bonus=x" 752 }, 753 { 754 "input": "x/x;x=\":\";bonus=x", 755 "output": "x/x;x=\":\";bonus=x" 756 }, 757 { 758 "input": ";/x", 759 "output": null 760 }, 761 { 762 "input": "x/;", 763 "output": null 764 }, 765 { 766 "input": "</x", 767 "output": null 768 }, 769 { 770 "input": "x/<", 771 "output": null 772 }, 773 { 774 "input": "x/x;<=x;bonus=x", 775 "output": "x/x;bonus=x" 776 }, 777 { 778 "input": "x/x;x=<;bonus=x", 779 "output": "x/x;x=\"<\";bonus=x" 780 }, 781 { 782 "input": "x/x;x=\"<\";bonus=x", 783 "output": "x/x;x=\"<\";bonus=x" 784 }, 785 { 786 "input": "=/x", 787 "output": null 788 }, 789 { 790 "input": "x/=", 791 "output": null 792 }, 793 { 794 "input": "x/x;x==;bonus=x", 795 "output": "x/x;x=\"=\";bonus=x" 796 }, 797 { 798 "input": "x/x;x=\"=\";bonus=x", 799 "output": "x/x;x=\"=\";bonus=x" 800 }, 801 { 802 "input": ">/x", 803 "output": null 804 }, 805 { 806 "input": "x/>", 807 "output": null 808 }, 809 { 810 "input": "x/x;>=x;bonus=x", 811 "output": "x/x;bonus=x" 812 }, 813 { 814 "input": "x/x;x=>;bonus=x", 815 "output": "x/x;x=\">\";bonus=x" 816 }, 817 { 818 "input": "x/x;x=\">\";bonus=x", 819 "output": "x/x;x=\">\";bonus=x" 820 }, 821 { 822 "input": "?/x", 823 "output": null 824 }, 825 { 826 "input": "x/?", 827 "output": null 828 }, 829 { 830 "input": "x/x;?=x;bonus=x", 831 "output": "x/x;bonus=x" 832 }, 833 { 834 "input": "x/x;x=?;bonus=x", 835 "output": "x/x;x=\"?\";bonus=x" 836 }, 837 { 838 "input": "x/x;x=\"?\";bonus=x", 839 "output": "x/x;x=\"?\";bonus=x" 840 }, 841 { 842 "input": "@/x", 843 "output": null 844 }, 845 { 846 "input": "x/@", 847 "output": null 848 }, 849 { 850 "input": "x/x;@=x;bonus=x", 851 "output": "x/x;bonus=x" 852 }, 853 { 854 "input": "x/x;x=@;bonus=x", 855 "output": "x/x;x=\"@\";bonus=x" 856 }, 857 { 858 "input": "x/x;x=\"@\";bonus=x", 859 "output": "x/x;x=\"@\";bonus=x" 860 }, 861 { 862 "input": "[/x", 863 "output": null 864 }, 865 { 866 "input": "x/[", 867 "output": null 868 }, 869 { 870 "input": "x/x;[=x;bonus=x", 871 "output": "x/x;bonus=x" 872 }, 873 { 874 "input": "x/x;x=[;bonus=x", 875 "output": "x/x;x=\"[\";bonus=x" 876 }, 877 { 878 "input": "x/x;x=\"[\";bonus=x", 879 "output": "x/x;x=\"[\";bonus=x" 880 }, 881 { 882 "input": "\\/x", 883 "output": null 884 }, 885 { 886 "input": "x/\\", 887 "output": null 888 }, 889 { 890 "input": "x/x;\\=x;bonus=x", 891 "output": "x/x;bonus=x" 892 }, 893 { 894 "input": "]/x", 895 "output": null 896 }, 897 { 898 "input": "x/]", 899 "output": null 900 }, 901 { 902 "input": "x/x;]=x;bonus=x", 903 "output": "x/x;bonus=x" 904 }, 905 { 906 "input": "x/x;x=];bonus=x", 907 "output": "x/x;x=\"]\";bonus=x" 908 }, 909 { 910 "input": "x/x;x=\"]\";bonus=x", 911 "output": "x/x;x=\"]\";bonus=x" 912 }, 913 { 914 "input": "{/x", 915 "output": null 916 }, 917 { 918 "input": "x/{", 919 "output": null 920 }, 921 { 922 "input": "x/x;{=x;bonus=x", 923 "output": "x/x;bonus=x" 924 }, 925 { 926 "input": "x/x;x={;bonus=x", 927 "output": "x/x;x=\"{\";bonus=x" 928 }, 929 { 930 "input": "x/x;x=\"{\";bonus=x", 931 "output": "x/x;x=\"{\";bonus=x" 932 }, 933 { 934 "input": "}/x", 935 "output": null 936 }, 937 { 938 "input": "x/}", 939 "output": null 940 }, 941 { 942 "input": "x/x;}=x;bonus=x", 943 "output": "x/x;bonus=x" 944 }, 945 { 946 "input": "x/x;x=};bonus=x", 947 "output": "x/x;x=\"}\";bonus=x" 948 }, 949 { 950 "input": "x/x;x=\"}\";bonus=x", 951 "output": "x/x;x=\"}\";bonus=x" 952 }, 953 { 954 "input": "\u007f/x", 955 "output": null 956 }, 957 { 958 "input": "x/\u007f", 959 "output": null 960 }, 961 { 962 "input": "x/x;\u007f=x;bonus=x", 963 "output": "x/x;bonus=x" 964 }, 965 { 966 "input": "x/x;x=\u007f;bonus=x", 967 "output": "x/x;bonus=x" 968 }, 969 { 970 "input": "x/x;x=\"\u007f\";bonus=x", 971 "output": "x/x;bonus=x" 972 }, 973 { 974 "input": "\u0080/x", 975 "output": null 976 }, 977 { 978 "input": "x/\u0080", 979 "output": null 980 }, 981 { 982 "input": "x/x;\u0080=x;bonus=x", 983 "output": "x/x;bonus=x" 984 }, 985 { 986 "input": "x/x;x=\u0080;bonus=x", 987 "output": "x/x;x=\"\u0080\";bonus=x" 988 }, 989 { 990 "input": "x/x;x=\"\u0080\";bonus=x", 991 "output": "x/x;x=\"\u0080\";bonus=x" 992 }, 993 { 994 "input": "\u0081/x", 995 "output": null 996 }, 997 { 998 "input": "x/\u0081", 999 "output": null 1000 }, 1001 { 1002 "input": "x/x;\u0081=x;bonus=x", 1003 "output": "x/x;bonus=x" 1004 }, 1005 { 1006 "input": "x/x;x=\u0081;bonus=x", 1007 "output": "x/x;x=\"\u0081\";bonus=x" 1008 }, 1009 { 1010 "input": "x/x;x=\"\u0081\";bonus=x", 1011 "output": "x/x;x=\"\u0081\";bonus=x" 1012 }, 1013 { 1014 "input": "\u0082/x", 1015 "output": null 1016 }, 1017 { 1018 "input": "x/\u0082", 1019 "output": null 1020 }, 1021 { 1022 "input": "x/x;\u0082=x;bonus=x", 1023 "output": "x/x;bonus=x" 1024 }, 1025 { 1026 "input": "x/x;x=\u0082;bonus=x", 1027 "output": "x/x;x=\"\u0082\";bonus=x" 1028 }, 1029 { 1030 "input": "x/x;x=\"\u0082\";bonus=x", 1031 "output": "x/x;x=\"\u0082\";bonus=x" 1032 }, 1033 { 1034 "input": "\u0083/x", 1035 "output": null 1036 }, 1037 { 1038 "input": "x/\u0083", 1039 "output": null 1040 }, 1041 { 1042 "input": "x/x;\u0083=x;bonus=x", 1043 "output": "x/x;bonus=x" 1044 }, 1045 { 1046 "input": "x/x;x=\u0083;bonus=x", 1047 "output": "x/x;x=\"\u0083\";bonus=x" 1048 }, 1049 { 1050 "input": "x/x;x=\"\u0083\";bonus=x", 1051 "output": "x/x;x=\"\u0083\";bonus=x" 1052 }, 1053 { 1054 "input": "\u0084/x", 1055 "output": null 1056 }, 1057 { 1058 "input": "x/\u0084", 1059 "output": null 1060 }, 1061 { 1062 "input": "x/x;\u0084=x;bonus=x", 1063 "output": "x/x;bonus=x" 1064 }, 1065 { 1066 "input": "x/x;x=\u0084;bonus=x", 1067 "output": "x/x;x=\"\u0084\";bonus=x" 1068 }, 1069 { 1070 "input": "x/x;x=\"\u0084\";bonus=x", 1071 "output": "x/x;x=\"\u0084\";bonus=x" 1072 }, 1073 { 1074 "input": "\u0085/x", 1075 "output": null 1076 }, 1077 { 1078 "input": "x/\u0085", 1079 "output": null 1080 }, 1081 { 1082 "input": "x/x;\u0085=x;bonus=x", 1083 "output": "x/x;bonus=x" 1084 }, 1085 { 1086 "input": "x/x;x=\u0085;bonus=x", 1087 "output": "x/x;x=\"\u0085\";bonus=x" 1088 }, 1089 { 1090 "input": "x/x;x=\"\u0085\";bonus=x", 1091 "output": "x/x;x=\"\u0085\";bonus=x" 1092 }, 1093 { 1094 "input": "\u0086/x", 1095 "output": null 1096 }, 1097 { 1098 "input": "x/\u0086", 1099 "output": null 1100 }, 1101 { 1102 "input": "x/x;\u0086=x;bonus=x", 1103 "output": "x/x;bonus=x" 1104 }, 1105 { 1106 "input": "x/x;x=\u0086;bonus=x", 1107 "output": "x/x;x=\"\u0086\";bonus=x" 1108 }, 1109 { 1110 "input": "x/x;x=\"\u0086\";bonus=x", 1111 "output": "x/x;x=\"\u0086\";bonus=x" 1112 }, 1113 { 1114 "input": "\u0087/x", 1115 "output": null 1116 }, 1117 { 1118 "input": "x/\u0087", 1119 "output": null 1120 }, 1121 { 1122 "input": "x/x;\u0087=x;bonus=x", 1123 "output": "x/x;bonus=x" 1124 }, 1125 { 1126 "input": "x/x;x=\u0087;bonus=x", 1127 "output": "x/x;x=\"\u0087\";bonus=x" 1128 }, 1129 { 1130 "input": "x/x;x=\"\u0087\";bonus=x", 1131 "output": "x/x;x=\"\u0087\";bonus=x" 1132 }, 1133 { 1134 "input": "\u0088/x", 1135 "output": null 1136 }, 1137 { 1138 "input": "x/\u0088", 1139 "output": null 1140 }, 1141 { 1142 "input": "x/x;\u0088=x;bonus=x", 1143 "output": "x/x;bonus=x" 1144 }, 1145 { 1146 "input": "x/x;x=\u0088;bonus=x", 1147 "output": "x/x;x=\"\u0088\";bonus=x" 1148 }, 1149 { 1150 "input": "x/x;x=\"\u0088\";bonus=x", 1151 "output": "x/x;x=\"\u0088\";bonus=x" 1152 }, 1153 { 1154 "input": "\u0089/x", 1155 "output": null 1156 }, 1157 { 1158 "input": "x/\u0089", 1159 "output": null 1160 }, 1161 { 1162 "input": "x/x;\u0089=x;bonus=x", 1163 "output": "x/x;bonus=x" 1164 }, 1165 { 1166 "input": "x/x;x=\u0089;bonus=x", 1167 "output": "x/x;x=\"\u0089\";bonus=x" 1168 }, 1169 { 1170 "input": "x/x;x=\"\u0089\";bonus=x", 1171 "output": "x/x;x=\"\u0089\";bonus=x" 1172 }, 1173 { 1174 "input": "\u008a/x", 1175 "output": null 1176 }, 1177 { 1178 "input": "x/\u008a", 1179 "output": null 1180 }, 1181 { 1182 "input": "x/x;\u008a=x;bonus=x", 1183 "output": "x/x;bonus=x" 1184 }, 1185 { 1186 "input": "x/x;x=\u008a;bonus=x", 1187 "output": "x/x;x=\"\u008a\";bonus=x" 1188 }, 1189 { 1190 "input": "x/x;x=\"\u008a\";bonus=x", 1191 "output": "x/x;x=\"\u008a\";bonus=x" 1192 }, 1193 { 1194 "input": "\u008b/x", 1195 "output": null 1196 }, 1197 { 1198 "input": "x/\u008b", 1199 "output": null 1200 }, 1201 { 1202 "input": "x/x;\u008b=x;bonus=x", 1203 "output": "x/x;bonus=x" 1204 }, 1205 { 1206 "input": "x/x;x=\u008b;bonus=x", 1207 "output": "x/x;x=\"\u008b\";bonus=x" 1208 }, 1209 { 1210 "input": "x/x;x=\"\u008b\";bonus=x", 1211 "output": "x/x;x=\"\u008b\";bonus=x" 1212 }, 1213 { 1214 "input": "\u008c/x", 1215 "output": null 1216 }, 1217 { 1218 "input": "x/\u008c", 1219 "output": null 1220 }, 1221 { 1222 "input": "x/x;\u008c=x;bonus=x", 1223 "output": "x/x;bonus=x" 1224 }, 1225 { 1226 "input": "x/x;x=\u008c;bonus=x", 1227 "output": "x/x;x=\"\u008c\";bonus=x" 1228 }, 1229 { 1230 "input": "x/x;x=\"\u008c\";bonus=x", 1231 "output": "x/x;x=\"\u008c\";bonus=x" 1232 }, 1233 { 1234 "input": "\u008d/x", 1235 "output": null 1236 }, 1237 { 1238 "input": "x/\u008d", 1239 "output": null 1240 }, 1241 { 1242 "input": "x/x;\u008d=x;bonus=x", 1243 "output": "x/x;bonus=x" 1244 }, 1245 { 1246 "input": "x/x;x=\u008d;bonus=x", 1247 "output": "x/x;x=\"\u008d\";bonus=x" 1248 }, 1249 { 1250 "input": "x/x;x=\"\u008d\";bonus=x", 1251 "output": "x/x;x=\"\u008d\";bonus=x" 1252 }, 1253 { 1254 "input": "\u008e/x", 1255 "output": null 1256 }, 1257 { 1258 "input": "x/\u008e", 1259 "output": null 1260 }, 1261 { 1262 "input": "x/x;\u008e=x;bonus=x", 1263 "output": "x/x;bonus=x" 1264 }, 1265 { 1266 "input": "x/x;x=\u008e;bonus=x", 1267 "output": "x/x;x=\"\u008e\";bonus=x" 1268 }, 1269 { 1270 "input": "x/x;x=\"\u008e\";bonus=x", 1271 "output": "x/x;x=\"\u008e\";bonus=x" 1272 }, 1273 { 1274 "input": "\u008f/x", 1275 "output": null 1276 }, 1277 { 1278 "input": "x/\u008f", 1279 "output": null 1280 }, 1281 { 1282 "input": "x/x;\u008f=x;bonus=x", 1283 "output": "x/x;bonus=x" 1284 }, 1285 { 1286 "input": "x/x;x=\u008f;bonus=x", 1287 "output": "x/x;x=\"\u008f\";bonus=x" 1288 }, 1289 { 1290 "input": "x/x;x=\"\u008f\";bonus=x", 1291 "output": "x/x;x=\"\u008f\";bonus=x" 1292 }, 1293 { 1294 "input": "\u0090/x", 1295 "output": null 1296 }, 1297 { 1298 "input": "x/\u0090", 1299 "output": null 1300 }, 1301 { 1302 "input": "x/x;\u0090=x;bonus=x", 1303 "output": "x/x;bonus=x" 1304 }, 1305 { 1306 "input": "x/x;x=\u0090;bonus=x", 1307 "output": "x/x;x=\"\u0090\";bonus=x" 1308 }, 1309 { 1310 "input": "x/x;x=\"\u0090\";bonus=x", 1311 "output": "x/x;x=\"\u0090\";bonus=x" 1312 }, 1313 { 1314 "input": "\u0091/x", 1315 "output": null 1316 }, 1317 { 1318 "input": "x/\u0091", 1319 "output": null 1320 }, 1321 { 1322 "input": "x/x;\u0091=x;bonus=x", 1323 "output": "x/x;bonus=x" 1324 }, 1325 { 1326 "input": "x/x;x=\u0091;bonus=x", 1327 "output": "x/x;x=\"\u0091\";bonus=x" 1328 }, 1329 { 1330 "input": "x/x;x=\"\u0091\";bonus=x", 1331 "output": "x/x;x=\"\u0091\";bonus=x" 1332 }, 1333 { 1334 "input": "\u0092/x", 1335 "output": null 1336 }, 1337 { 1338 "input": "x/\u0092", 1339 "output": null 1340 }, 1341 { 1342 "input": "x/x;\u0092=x;bonus=x", 1343 "output": "x/x;bonus=x" 1344 }, 1345 { 1346 "input": "x/x;x=\u0092;bonus=x", 1347 "output": "x/x;x=\"\u0092\";bonus=x" 1348 }, 1349 { 1350 "input": "x/x;x=\"\u0092\";bonus=x", 1351 "output": "x/x;x=\"\u0092\";bonus=x" 1352 }, 1353 { 1354 "input": "\u0093/x", 1355 "output": null 1356 }, 1357 { 1358 "input": "x/\u0093", 1359 "output": null 1360 }, 1361 { 1362 "input": "x/x;\u0093=x;bonus=x", 1363 "output": "x/x;bonus=x" 1364 }, 1365 { 1366 "input": "x/x;x=\u0093;bonus=x", 1367 "output": "x/x;x=\"\u0093\";bonus=x" 1368 }, 1369 { 1370 "input": "x/x;x=\"\u0093\";bonus=x", 1371 "output": "x/x;x=\"\u0093\";bonus=x" 1372 }, 1373 { 1374 "input": "\u0094/x", 1375 "output": null 1376 }, 1377 { 1378 "input": "x/\u0094", 1379 "output": null 1380 }, 1381 { 1382 "input": "x/x;\u0094=x;bonus=x", 1383 "output": "x/x;bonus=x" 1384 }, 1385 { 1386 "input": "x/x;x=\u0094;bonus=x", 1387 "output": "x/x;x=\"\u0094\";bonus=x" 1388 }, 1389 { 1390 "input": "x/x;x=\"\u0094\";bonus=x", 1391 "output": "x/x;x=\"\u0094\";bonus=x" 1392 }, 1393 { 1394 "input": "\u0095/x", 1395 "output": null 1396 }, 1397 { 1398 "input": "x/\u0095", 1399 "output": null 1400 }, 1401 { 1402 "input": "x/x;\u0095=x;bonus=x", 1403 "output": "x/x;bonus=x" 1404 }, 1405 { 1406 "input": "x/x;x=\u0095;bonus=x", 1407 "output": "x/x;x=\"\u0095\";bonus=x" 1408 }, 1409 { 1410 "input": "x/x;x=\"\u0095\";bonus=x", 1411 "output": "x/x;x=\"\u0095\";bonus=x" 1412 }, 1413 { 1414 "input": "\u0096/x", 1415 "output": null 1416 }, 1417 { 1418 "input": "x/\u0096", 1419 "output": null 1420 }, 1421 { 1422 "input": "x/x;\u0096=x;bonus=x", 1423 "output": "x/x;bonus=x" 1424 }, 1425 { 1426 "input": "x/x;x=\u0096;bonus=x", 1427 "output": "x/x;x=\"\u0096\";bonus=x" 1428 }, 1429 { 1430 "input": "x/x;x=\"\u0096\";bonus=x", 1431 "output": "x/x;x=\"\u0096\";bonus=x" 1432 }, 1433 { 1434 "input": "\u0097/x", 1435 "output": null 1436 }, 1437 { 1438 "input": "x/\u0097", 1439 "output": null 1440 }, 1441 { 1442 "input": "x/x;\u0097=x;bonus=x", 1443 "output": "x/x;bonus=x" 1444 }, 1445 { 1446 "input": "x/x;x=\u0097;bonus=x", 1447 "output": "x/x;x=\"\u0097\";bonus=x" 1448 }, 1449 { 1450 "input": "x/x;x=\"\u0097\";bonus=x", 1451 "output": "x/x;x=\"\u0097\";bonus=x" 1452 }, 1453 { 1454 "input": "\u0098/x", 1455 "output": null 1456 }, 1457 { 1458 "input": "x/\u0098", 1459 "output": null 1460 }, 1461 { 1462 "input": "x/x;\u0098=x;bonus=x", 1463 "output": "x/x;bonus=x" 1464 }, 1465 { 1466 "input": "x/x;x=\u0098;bonus=x", 1467 "output": "x/x;x=\"\u0098\";bonus=x" 1468 }, 1469 { 1470 "input": "x/x;x=\"\u0098\";bonus=x", 1471 "output": "x/x;x=\"\u0098\";bonus=x" 1472 }, 1473 { 1474 "input": "\u0099/x", 1475 "output": null 1476 }, 1477 { 1478 "input": "x/\u0099", 1479 "output": null 1480 }, 1481 { 1482 "input": "x/x;\u0099=x;bonus=x", 1483 "output": "x/x;bonus=x" 1484 }, 1485 { 1486 "input": "x/x;x=\u0099;bonus=x", 1487 "output": "x/x;x=\"\u0099\";bonus=x" 1488 }, 1489 { 1490 "input": "x/x;x=\"\u0099\";bonus=x", 1491 "output": "x/x;x=\"\u0099\";bonus=x" 1492 }, 1493 { 1494 "input": "\u009a/x", 1495 "output": null 1496 }, 1497 { 1498 "input": "x/\u009a", 1499 "output": null 1500 }, 1501 { 1502 "input": "x/x;\u009a=x;bonus=x", 1503 "output": "x/x;bonus=x" 1504 }, 1505 { 1506 "input": "x/x;x=\u009a;bonus=x", 1507 "output": "x/x;x=\"\u009a\";bonus=x" 1508 }, 1509 { 1510 "input": "x/x;x=\"\u009a\";bonus=x", 1511 "output": "x/x;x=\"\u009a\";bonus=x" 1512 }, 1513 { 1514 "input": "\u009b/x", 1515 "output": null 1516 }, 1517 { 1518 "input": "x/\u009b", 1519 "output": null 1520 }, 1521 { 1522 "input": "x/x;\u009b=x;bonus=x", 1523 "output": "x/x;bonus=x" 1524 }, 1525 { 1526 "input": "x/x;x=\u009b;bonus=x", 1527 "output": "x/x;x=\"\u009b\";bonus=x" 1528 }, 1529 { 1530 "input": "x/x;x=\"\u009b\";bonus=x", 1531 "output": "x/x;x=\"\u009b\";bonus=x" 1532 }, 1533 { 1534 "input": "\u009c/x", 1535 "output": null 1536 }, 1537 { 1538 "input": "x/\u009c", 1539 "output": null 1540 }, 1541 { 1542 "input": "x/x;\u009c=x;bonus=x", 1543 "output": "x/x;bonus=x" 1544 }, 1545 { 1546 "input": "x/x;x=\u009c;bonus=x", 1547 "output": "x/x;x=\"\u009c\";bonus=x" 1548 }, 1549 { 1550 "input": "x/x;x=\"\u009c\";bonus=x", 1551 "output": "x/x;x=\"\u009c\";bonus=x" 1552 }, 1553 { 1554 "input": "\u009d/x", 1555 "output": null 1556 }, 1557 { 1558 "input": "x/\u009d", 1559 "output": null 1560 }, 1561 { 1562 "input": "x/x;\u009d=x;bonus=x", 1563 "output": "x/x;bonus=x" 1564 }, 1565 { 1566 "input": "x/x;x=\u009d;bonus=x", 1567 "output": "x/x;x=\"\u009d\";bonus=x" 1568 }, 1569 { 1570 "input": "x/x;x=\"\u009d\";bonus=x", 1571 "output": "x/x;x=\"\u009d\";bonus=x" 1572 }, 1573 { 1574 "input": "\u009e/x", 1575 "output": null 1576 }, 1577 { 1578 "input": "x/\u009e", 1579 "output": null 1580 }, 1581 { 1582 "input": "x/x;\u009e=x;bonus=x", 1583 "output": "x/x;bonus=x" 1584 }, 1585 { 1586 "input": "x/x;x=\u009e;bonus=x", 1587 "output": "x/x;x=\"\u009e\";bonus=x" 1588 }, 1589 { 1590 "input": "x/x;x=\"\u009e\";bonus=x", 1591 "output": "x/x;x=\"\u009e\";bonus=x" 1592 }, 1593 { 1594 "input": "\u009f/x", 1595 "output": null 1596 }, 1597 { 1598 "input": "x/\u009f", 1599 "output": null 1600 }, 1601 { 1602 "input": "x/x;\u009f=x;bonus=x", 1603 "output": "x/x;bonus=x" 1604 }, 1605 { 1606 "input": "x/x;x=\u009f;bonus=x", 1607 "output": "x/x;x=\"\u009f\";bonus=x" 1608 }, 1609 { 1610 "input": "x/x;x=\"\u009f\";bonus=x", 1611 "output": "x/x;x=\"\u009f\";bonus=x" 1612 }, 1613 { 1614 "input": "\u00a0/x", 1615 "output": null 1616 }, 1617 { 1618 "input": "x/\u00a0", 1619 "output": null 1620 }, 1621 { 1622 "input": "x/x;\u00a0=x;bonus=x", 1623 "output": "x/x;bonus=x" 1624 }, 1625 { 1626 "input": "x/x;x=\u00a0;bonus=x", 1627 "output": "x/x;x=\"\u00a0\";bonus=x" 1628 }, 1629 { 1630 "input": "x/x;x=\"\u00a0\";bonus=x", 1631 "output": "x/x;x=\"\u00a0\";bonus=x" 1632 }, 1633 { 1634 "input": "\u00a1/x", 1635 "output": null 1636 }, 1637 { 1638 "input": "x/\u00a1", 1639 "output": null 1640 }, 1641 { 1642 "input": "x/x;\u00a1=x;bonus=x", 1643 "output": "x/x;bonus=x" 1644 }, 1645 { 1646 "input": "x/x;x=\u00a1;bonus=x", 1647 "output": "x/x;x=\"\u00a1\";bonus=x" 1648 }, 1649 { 1650 "input": "x/x;x=\"\u00a1\";bonus=x", 1651 "output": "x/x;x=\"\u00a1\";bonus=x" 1652 }, 1653 { 1654 "input": "\u00a2/x", 1655 "output": null 1656 }, 1657 { 1658 "input": "x/\u00a2", 1659 "output": null 1660 }, 1661 { 1662 "input": "x/x;\u00a2=x;bonus=x", 1663 "output": "x/x;bonus=x" 1664 }, 1665 { 1666 "input": "x/x;x=\u00a2;bonus=x", 1667 "output": "x/x;x=\"\u00a2\";bonus=x" 1668 }, 1669 { 1670 "input": "x/x;x=\"\u00a2\";bonus=x", 1671 "output": "x/x;x=\"\u00a2\";bonus=x" 1672 }, 1673 { 1674 "input": "\u00a3/x", 1675 "output": null 1676 }, 1677 { 1678 "input": "x/\u00a3", 1679 "output": null 1680 }, 1681 { 1682 "input": "x/x;\u00a3=x;bonus=x", 1683 "output": "x/x;bonus=x" 1684 }, 1685 { 1686 "input": "x/x;x=\u00a3;bonus=x", 1687 "output": "x/x;x=\"\u00a3\";bonus=x" 1688 }, 1689 { 1690 "input": "x/x;x=\"\u00a3\";bonus=x", 1691 "output": "x/x;x=\"\u00a3\";bonus=x" 1692 }, 1693 { 1694 "input": "\u00a4/x", 1695 "output": null 1696 }, 1697 { 1698 "input": "x/\u00a4", 1699 "output": null 1700 }, 1701 { 1702 "input": "x/x;\u00a4=x;bonus=x", 1703 "output": "x/x;bonus=x" 1704 }, 1705 { 1706 "input": "x/x;x=\u00a4;bonus=x", 1707 "output": "x/x;x=\"\u00a4\";bonus=x" 1708 }, 1709 { 1710 "input": "x/x;x=\"\u00a4\";bonus=x", 1711 "output": "x/x;x=\"\u00a4\";bonus=x" 1712 }, 1713 { 1714 "input": "\u00a5/x", 1715 "output": null 1716 }, 1717 { 1718 "input": "x/\u00a5", 1719 "output": null 1720 }, 1721 { 1722 "input": "x/x;\u00a5=x;bonus=x", 1723 "output": "x/x;bonus=x" 1724 }, 1725 { 1726 "input": "x/x;x=\u00a5;bonus=x", 1727 "output": "x/x;x=\"\u00a5\";bonus=x" 1728 }, 1729 { 1730 "input": "x/x;x=\"\u00a5\";bonus=x", 1731 "output": "x/x;x=\"\u00a5\";bonus=x" 1732 }, 1733 { 1734 "input": "\u00a6/x", 1735 "output": null 1736 }, 1737 { 1738 "input": "x/\u00a6", 1739 "output": null 1740 }, 1741 { 1742 "input": "x/x;\u00a6=x;bonus=x", 1743 "output": "x/x;bonus=x" 1744 }, 1745 { 1746 "input": "x/x;x=\u00a6;bonus=x", 1747 "output": "x/x;x=\"\u00a6\";bonus=x" 1748 }, 1749 { 1750 "input": "x/x;x=\"\u00a6\";bonus=x", 1751 "output": "x/x;x=\"\u00a6\";bonus=x" 1752 }, 1753 { 1754 "input": "\u00a7/x", 1755 "output": null 1756 }, 1757 { 1758 "input": "x/\u00a7", 1759 "output": null 1760 }, 1761 { 1762 "input": "x/x;\u00a7=x;bonus=x", 1763 "output": "x/x;bonus=x" 1764 }, 1765 { 1766 "input": "x/x;x=\u00a7;bonus=x", 1767 "output": "x/x;x=\"\u00a7\";bonus=x" 1768 }, 1769 { 1770 "input": "x/x;x=\"\u00a7\";bonus=x", 1771 "output": "x/x;x=\"\u00a7\";bonus=x" 1772 }, 1773 { 1774 "input": "\u00a8/x", 1775 "output": null 1776 }, 1777 { 1778 "input": "x/\u00a8", 1779 "output": null 1780 }, 1781 { 1782 "input": "x/x;\u00a8=x;bonus=x", 1783 "output": "x/x;bonus=x" 1784 }, 1785 { 1786 "input": "x/x;x=\u00a8;bonus=x", 1787 "output": "x/x;x=\"\u00a8\";bonus=x" 1788 }, 1789 { 1790 "input": "x/x;x=\"\u00a8\";bonus=x", 1791 "output": "x/x;x=\"\u00a8\";bonus=x" 1792 }, 1793 { 1794 "input": "\u00a9/x", 1795 "output": null 1796 }, 1797 { 1798 "input": "x/\u00a9", 1799 "output": null 1800 }, 1801 { 1802 "input": "x/x;\u00a9=x;bonus=x", 1803 "output": "x/x;bonus=x" 1804 }, 1805 { 1806 "input": "x/x;x=\u00a9;bonus=x", 1807 "output": "x/x;x=\"\u00a9\";bonus=x" 1808 }, 1809 { 1810 "input": "x/x;x=\"\u00a9\";bonus=x", 1811 "output": "x/x;x=\"\u00a9\";bonus=x" 1812 }, 1813 { 1814 "input": "\u00aa/x", 1815 "output": null 1816 }, 1817 { 1818 "input": "x/\u00aa", 1819 "output": null 1820 }, 1821 { 1822 "input": "x/x;\u00aa=x;bonus=x", 1823 "output": "x/x;bonus=x" 1824 }, 1825 { 1826 "input": "x/x;x=\u00aa;bonus=x", 1827 "output": "x/x;x=\"\u00aa\";bonus=x" 1828 }, 1829 { 1830 "input": "x/x;x=\"\u00aa\";bonus=x", 1831 "output": "x/x;x=\"\u00aa\";bonus=x" 1832 }, 1833 { 1834 "input": "\u00ab/x", 1835 "output": null 1836 }, 1837 { 1838 "input": "x/\u00ab", 1839 "output": null 1840 }, 1841 { 1842 "input": "x/x;\u00ab=x;bonus=x", 1843 "output": "x/x;bonus=x" 1844 }, 1845 { 1846 "input": "x/x;x=\u00ab;bonus=x", 1847 "output": "x/x;x=\"\u00ab\";bonus=x" 1848 }, 1849 { 1850 "input": "x/x;x=\"\u00ab\";bonus=x", 1851 "output": "x/x;x=\"\u00ab\";bonus=x" 1852 }, 1853 { 1854 "input": "\u00ac/x", 1855 "output": null 1856 }, 1857 { 1858 "input": "x/\u00ac", 1859 "output": null 1860 }, 1861 { 1862 "input": "x/x;\u00ac=x;bonus=x", 1863 "output": "x/x;bonus=x" 1864 }, 1865 { 1866 "input": "x/x;x=\u00ac;bonus=x", 1867 "output": "x/x;x=\"\u00ac\";bonus=x" 1868 }, 1869 { 1870 "input": "x/x;x=\"\u00ac\";bonus=x", 1871 "output": "x/x;x=\"\u00ac\";bonus=x" 1872 }, 1873 { 1874 "input": "\u00ad/x", 1875 "output": null 1876 }, 1877 { 1878 "input": "x/\u00ad", 1879 "output": null 1880 }, 1881 { 1882 "input": "x/x;\u00ad=x;bonus=x", 1883 "output": "x/x;bonus=x" 1884 }, 1885 { 1886 "input": "x/x;x=\u00ad;bonus=x", 1887 "output": "x/x;x=\"\u00ad\";bonus=x" 1888 }, 1889 { 1890 "input": "x/x;x=\"\u00ad\";bonus=x", 1891 "output": "x/x;x=\"\u00ad\";bonus=x" 1892 }, 1893 { 1894 "input": "\u00ae/x", 1895 "output": null 1896 }, 1897 { 1898 "input": "x/\u00ae", 1899 "output": null 1900 }, 1901 { 1902 "input": "x/x;\u00ae=x;bonus=x", 1903 "output": "x/x;bonus=x" 1904 }, 1905 { 1906 "input": "x/x;x=\u00ae;bonus=x", 1907 "output": "x/x;x=\"\u00ae\";bonus=x" 1908 }, 1909 { 1910 "input": "x/x;x=\"\u00ae\";bonus=x", 1911 "output": "x/x;x=\"\u00ae\";bonus=x" 1912 }, 1913 { 1914 "input": "\u00af/x", 1915 "output": null 1916 }, 1917 { 1918 "input": "x/\u00af", 1919 "output": null 1920 }, 1921 { 1922 "input": "x/x;\u00af=x;bonus=x", 1923 "output": "x/x;bonus=x" 1924 }, 1925 { 1926 "input": "x/x;x=\u00af;bonus=x", 1927 "output": "x/x;x=\"\u00af\";bonus=x" 1928 }, 1929 { 1930 "input": "x/x;x=\"\u00af\";bonus=x", 1931 "output": "x/x;x=\"\u00af\";bonus=x" 1932 }, 1933 { 1934 "input": "\u00b0/x", 1935 "output": null 1936 }, 1937 { 1938 "input": "x/\u00b0", 1939 "output": null 1940 }, 1941 { 1942 "input": "x/x;\u00b0=x;bonus=x", 1943 "output": "x/x;bonus=x" 1944 }, 1945 { 1946 "input": "x/x;x=\u00b0;bonus=x", 1947 "output": "x/x;x=\"\u00b0\";bonus=x" 1948 }, 1949 { 1950 "input": "x/x;x=\"\u00b0\";bonus=x", 1951 "output": "x/x;x=\"\u00b0\";bonus=x" 1952 }, 1953 { 1954 "input": "\u00b1/x", 1955 "output": null 1956 }, 1957 { 1958 "input": "x/\u00b1", 1959 "output": null 1960 }, 1961 { 1962 "input": "x/x;\u00b1=x;bonus=x", 1963 "output": "x/x;bonus=x" 1964 }, 1965 { 1966 "input": "x/x;x=\u00b1;bonus=x", 1967 "output": "x/x;x=\"\u00b1\";bonus=x" 1968 }, 1969 { 1970 "input": "x/x;x=\"\u00b1\";bonus=x", 1971 "output": "x/x;x=\"\u00b1\";bonus=x" 1972 }, 1973 { 1974 "input": "\u00b2/x", 1975 "output": null 1976 }, 1977 { 1978 "input": "x/\u00b2", 1979 "output": null 1980 }, 1981 { 1982 "input": "x/x;\u00b2=x;bonus=x", 1983 "output": "x/x;bonus=x" 1984 }, 1985 { 1986 "input": "x/x;x=\u00b2;bonus=x", 1987 "output": "x/x;x=\"\u00b2\";bonus=x" 1988 }, 1989 { 1990 "input": "x/x;x=\"\u00b2\";bonus=x", 1991 "output": "x/x;x=\"\u00b2\";bonus=x" 1992 }, 1993 { 1994 "input": "\u00b3/x", 1995 "output": null 1996 }, 1997 { 1998 "input": "x/\u00b3", 1999 "output": null 2000 }, 2001 { 2002 "input": "x/x;\u00b3=x;bonus=x", 2003 "output": "x/x;bonus=x" 2004 }, 2005 { 2006 "input": "x/x;x=\u00b3;bonus=x", 2007 "output": "x/x;x=\"\u00b3\";bonus=x" 2008 }, 2009 { 2010 "input": "x/x;x=\"\u00b3\";bonus=x", 2011 "output": "x/x;x=\"\u00b3\";bonus=x" 2012 }, 2013 { 2014 "input": "\u00b4/x", 2015 "output": null 2016 }, 2017 { 2018 "input": "x/\u00b4", 2019 "output": null 2020 }, 2021 { 2022 "input": "x/x;\u00b4=x;bonus=x", 2023 "output": "x/x;bonus=x" 2024 }, 2025 { 2026 "input": "x/x;x=\u00b4;bonus=x", 2027 "output": "x/x;x=\"\u00b4\";bonus=x" 2028 }, 2029 { 2030 "input": "x/x;x=\"\u00b4\";bonus=x", 2031 "output": "x/x;x=\"\u00b4\";bonus=x" 2032 }, 2033 { 2034 "input": "\u00b5/x", 2035 "output": null 2036 }, 2037 { 2038 "input": "x/\u00b5", 2039 "output": null 2040 }, 2041 { 2042 "input": "x/x;\u00b5=x;bonus=x", 2043 "output": "x/x;bonus=x" 2044 }, 2045 { 2046 "input": "x/x;x=\u00b5;bonus=x", 2047 "output": "x/x;x=\"\u00b5\";bonus=x" 2048 }, 2049 { 2050 "input": "x/x;x=\"\u00b5\";bonus=x", 2051 "output": "x/x;x=\"\u00b5\";bonus=x" 2052 }, 2053 { 2054 "input": "\u00b6/x", 2055 "output": null 2056 }, 2057 { 2058 "input": "x/\u00b6", 2059 "output": null 2060 }, 2061 { 2062 "input": "x/x;\u00b6=x;bonus=x", 2063 "output": "x/x;bonus=x" 2064 }, 2065 { 2066 "input": "x/x;x=\u00b6;bonus=x", 2067 "output": "x/x;x=\"\u00b6\";bonus=x" 2068 }, 2069 { 2070 "input": "x/x;x=\"\u00b6\";bonus=x", 2071 "output": "x/x;x=\"\u00b6\";bonus=x" 2072 }, 2073 { 2074 "input": "\u00b7/x", 2075 "output": null 2076 }, 2077 { 2078 "input": "x/\u00b7", 2079 "output": null 2080 }, 2081 { 2082 "input": "x/x;\u00b7=x;bonus=x", 2083 "output": "x/x;bonus=x" 2084 }, 2085 { 2086 "input": "x/x;x=\u00b7;bonus=x", 2087 "output": "x/x;x=\"\u00b7\";bonus=x" 2088 }, 2089 { 2090 "input": "x/x;x=\"\u00b7\";bonus=x", 2091 "output": "x/x;x=\"\u00b7\";bonus=x" 2092 }, 2093 { 2094 "input": "\u00b8/x", 2095 "output": null 2096 }, 2097 { 2098 "input": "x/\u00b8", 2099 "output": null 2100 }, 2101 { 2102 "input": "x/x;\u00b8=x;bonus=x", 2103 "output": "x/x;bonus=x" 2104 }, 2105 { 2106 "input": "x/x;x=\u00b8;bonus=x", 2107 "output": "x/x;x=\"\u00b8\";bonus=x" 2108 }, 2109 { 2110 "input": "x/x;x=\"\u00b8\";bonus=x", 2111 "output": "x/x;x=\"\u00b8\";bonus=x" 2112 }, 2113 { 2114 "input": "\u00b9/x", 2115 "output": null 2116 }, 2117 { 2118 "input": "x/\u00b9", 2119 "output": null 2120 }, 2121 { 2122 "input": "x/x;\u00b9=x;bonus=x", 2123 "output": "x/x;bonus=x" 2124 }, 2125 { 2126 "input": "x/x;x=\u00b9;bonus=x", 2127 "output": "x/x;x=\"\u00b9\";bonus=x" 2128 }, 2129 { 2130 "input": "x/x;x=\"\u00b9\";bonus=x", 2131 "output": "x/x;x=\"\u00b9\";bonus=x" 2132 }, 2133 { 2134 "input": "\u00ba/x", 2135 "output": null 2136 }, 2137 { 2138 "input": "x/\u00ba", 2139 "output": null 2140 }, 2141 { 2142 "input": "x/x;\u00ba=x;bonus=x", 2143 "output": "x/x;bonus=x" 2144 }, 2145 { 2146 "input": "x/x;x=\u00ba;bonus=x", 2147 "output": "x/x;x=\"\u00ba\";bonus=x" 2148 }, 2149 { 2150 "input": "x/x;x=\"\u00ba\";bonus=x", 2151 "output": "x/x;x=\"\u00ba\";bonus=x" 2152 }, 2153 { 2154 "input": "\u00bb/x", 2155 "output": null 2156 }, 2157 { 2158 "input": "x/\u00bb", 2159 "output": null 2160 }, 2161 { 2162 "input": "x/x;\u00bb=x;bonus=x", 2163 "output": "x/x;bonus=x" 2164 }, 2165 { 2166 "input": "x/x;x=\u00bb;bonus=x", 2167 "output": "x/x;x=\"\u00bb\";bonus=x" 2168 }, 2169 { 2170 "input": "x/x;x=\"\u00bb\";bonus=x", 2171 "output": "x/x;x=\"\u00bb\";bonus=x" 2172 }, 2173 { 2174 "input": "\u00bc/x", 2175 "output": null 2176 }, 2177 { 2178 "input": "x/\u00bc", 2179 "output": null 2180 }, 2181 { 2182 "input": "x/x;\u00bc=x;bonus=x", 2183 "output": "x/x;bonus=x" 2184 }, 2185 { 2186 "input": "x/x;x=\u00bc;bonus=x", 2187 "output": "x/x;x=\"\u00bc\";bonus=x" 2188 }, 2189 { 2190 "input": "x/x;x=\"\u00bc\";bonus=x", 2191 "output": "x/x;x=\"\u00bc\";bonus=x" 2192 }, 2193 { 2194 "input": "\u00bd/x", 2195 "output": null 2196 }, 2197 { 2198 "input": "x/\u00bd", 2199 "output": null 2200 }, 2201 { 2202 "input": "x/x;\u00bd=x;bonus=x", 2203 "output": "x/x;bonus=x" 2204 }, 2205 { 2206 "input": "x/x;x=\u00bd;bonus=x", 2207 "output": "x/x;x=\"\u00bd\";bonus=x" 2208 }, 2209 { 2210 "input": "x/x;x=\"\u00bd\";bonus=x", 2211 "output": "x/x;x=\"\u00bd\";bonus=x" 2212 }, 2213 { 2214 "input": "\u00be/x", 2215 "output": null 2216 }, 2217 { 2218 "input": "x/\u00be", 2219 "output": null 2220 }, 2221 { 2222 "input": "x/x;\u00be=x;bonus=x", 2223 "output": "x/x;bonus=x" 2224 }, 2225 { 2226 "input": "x/x;x=\u00be;bonus=x", 2227 "output": "x/x;x=\"\u00be\";bonus=x" 2228 }, 2229 { 2230 "input": "x/x;x=\"\u00be\";bonus=x", 2231 "output": "x/x;x=\"\u00be\";bonus=x" 2232 }, 2233 { 2234 "input": "\u00bf/x", 2235 "output": null 2236 }, 2237 { 2238 "input": "x/\u00bf", 2239 "output": null 2240 }, 2241 { 2242 "input": "x/x;\u00bf=x;bonus=x", 2243 "output": "x/x;bonus=x" 2244 }, 2245 { 2246 "input": "x/x;x=\u00bf;bonus=x", 2247 "output": "x/x;x=\"\u00bf\";bonus=x" 2248 }, 2249 { 2250 "input": "x/x;x=\"\u00bf\";bonus=x", 2251 "output": "x/x;x=\"\u00bf\";bonus=x" 2252 }, 2253 { 2254 "input": "\u00c0/x", 2255 "output": null 2256 }, 2257 { 2258 "input": "x/\u00c0", 2259 "output": null 2260 }, 2261 { 2262 "input": "x/x;\u00c0=x;bonus=x", 2263 "output": "x/x;bonus=x" 2264 }, 2265 { 2266 "input": "x/x;x=\u00c0;bonus=x", 2267 "output": "x/x;x=\"\u00c0\";bonus=x" 2268 }, 2269 { 2270 "input": "x/x;x=\"\u00c0\";bonus=x", 2271 "output": "x/x;x=\"\u00c0\";bonus=x" 2272 }, 2273 { 2274 "input": "\u00c1/x", 2275 "output": null 2276 }, 2277 { 2278 "input": "x/\u00c1", 2279 "output": null 2280 }, 2281 { 2282 "input": "x/x;\u00c1=x;bonus=x", 2283 "output": "x/x;bonus=x" 2284 }, 2285 { 2286 "input": "x/x;x=\u00c1;bonus=x", 2287 "output": "x/x;x=\"\u00c1\";bonus=x" 2288 }, 2289 { 2290 "input": "x/x;x=\"\u00c1\";bonus=x", 2291 "output": "x/x;x=\"\u00c1\";bonus=x" 2292 }, 2293 { 2294 "input": "\u00c2/x", 2295 "output": null 2296 }, 2297 { 2298 "input": "x/\u00c2", 2299 "output": null 2300 }, 2301 { 2302 "input": "x/x;\u00c2=x;bonus=x", 2303 "output": "x/x;bonus=x" 2304 }, 2305 { 2306 "input": "x/x;x=\u00c2;bonus=x", 2307 "output": "x/x;x=\"\u00c2\";bonus=x" 2308 }, 2309 { 2310 "input": "x/x;x=\"\u00c2\";bonus=x", 2311 "output": "x/x;x=\"\u00c2\";bonus=x" 2312 }, 2313 { 2314 "input": "\u00c3/x", 2315 "output": null 2316 }, 2317 { 2318 "input": "x/\u00c3", 2319 "output": null 2320 }, 2321 { 2322 "input": "x/x;\u00c3=x;bonus=x", 2323 "output": "x/x;bonus=x" 2324 }, 2325 { 2326 "input": "x/x;x=\u00c3;bonus=x", 2327 "output": "x/x;x=\"\u00c3\";bonus=x" 2328 }, 2329 { 2330 "input": "x/x;x=\"\u00c3\";bonus=x", 2331 "output": "x/x;x=\"\u00c3\";bonus=x" 2332 }, 2333 { 2334 "input": "\u00c4/x", 2335 "output": null 2336 }, 2337 { 2338 "input": "x/\u00c4", 2339 "output": null 2340 }, 2341 { 2342 "input": "x/x;\u00c4=x;bonus=x", 2343 "output": "x/x;bonus=x" 2344 }, 2345 { 2346 "input": "x/x;x=\u00c4;bonus=x", 2347 "output": "x/x;x=\"\u00c4\";bonus=x" 2348 }, 2349 { 2350 "input": "x/x;x=\"\u00c4\";bonus=x", 2351 "output": "x/x;x=\"\u00c4\";bonus=x" 2352 }, 2353 { 2354 "input": "\u00c5/x", 2355 "output": null 2356 }, 2357 { 2358 "input": "x/\u00c5", 2359 "output": null 2360 }, 2361 { 2362 "input": "x/x;\u00c5=x;bonus=x", 2363 "output": "x/x;bonus=x" 2364 }, 2365 { 2366 "input": "x/x;x=\u00c5;bonus=x", 2367 "output": "x/x;x=\"\u00c5\";bonus=x" 2368 }, 2369 { 2370 "input": "x/x;x=\"\u00c5\";bonus=x", 2371 "output": "x/x;x=\"\u00c5\";bonus=x" 2372 }, 2373 { 2374 "input": "\u00c6/x", 2375 "output": null 2376 }, 2377 { 2378 "input": "x/\u00c6", 2379 "output": null 2380 }, 2381 { 2382 "input": "x/x;\u00c6=x;bonus=x", 2383 "output": "x/x;bonus=x" 2384 }, 2385 { 2386 "input": "x/x;x=\u00c6;bonus=x", 2387 "output": "x/x;x=\"\u00c6\";bonus=x" 2388 }, 2389 { 2390 "input": "x/x;x=\"\u00c6\";bonus=x", 2391 "output": "x/x;x=\"\u00c6\";bonus=x" 2392 }, 2393 { 2394 "input": "\u00c7/x", 2395 "output": null 2396 }, 2397 { 2398 "input": "x/\u00c7", 2399 "output": null 2400 }, 2401 { 2402 "input": "x/x;\u00c7=x;bonus=x", 2403 "output": "x/x;bonus=x" 2404 }, 2405 { 2406 "input": "x/x;x=\u00c7;bonus=x", 2407 "output": "x/x;x=\"\u00c7\";bonus=x" 2408 }, 2409 { 2410 "input": "x/x;x=\"\u00c7\";bonus=x", 2411 "output": "x/x;x=\"\u00c7\";bonus=x" 2412 }, 2413 { 2414 "input": "\u00c8/x", 2415 "output": null 2416 }, 2417 { 2418 "input": "x/\u00c8", 2419 "output": null 2420 }, 2421 { 2422 "input": "x/x;\u00c8=x;bonus=x", 2423 "output": "x/x;bonus=x" 2424 }, 2425 { 2426 "input": "x/x;x=\u00c8;bonus=x", 2427 "output": "x/x;x=\"\u00c8\";bonus=x" 2428 }, 2429 { 2430 "input": "x/x;x=\"\u00c8\";bonus=x", 2431 "output": "x/x;x=\"\u00c8\";bonus=x" 2432 }, 2433 { 2434 "input": "\u00c9/x", 2435 "output": null 2436 }, 2437 { 2438 "input": "x/\u00c9", 2439 "output": null 2440 }, 2441 { 2442 "input": "x/x;\u00c9=x;bonus=x", 2443 "output": "x/x;bonus=x" 2444 }, 2445 { 2446 "input": "x/x;x=\u00c9;bonus=x", 2447 "output": "x/x;x=\"\u00c9\";bonus=x" 2448 }, 2449 { 2450 "input": "x/x;x=\"\u00c9\";bonus=x", 2451 "output": "x/x;x=\"\u00c9\";bonus=x" 2452 }, 2453 { 2454 "input": "\u00ca/x", 2455 "output": null 2456 }, 2457 { 2458 "input": "x/\u00ca", 2459 "output": null 2460 }, 2461 { 2462 "input": "x/x;\u00ca=x;bonus=x", 2463 "output": "x/x;bonus=x" 2464 }, 2465 { 2466 "input": "x/x;x=\u00ca;bonus=x", 2467 "output": "x/x;x=\"\u00ca\";bonus=x" 2468 }, 2469 { 2470 "input": "x/x;x=\"\u00ca\";bonus=x", 2471 "output": "x/x;x=\"\u00ca\";bonus=x" 2472 }, 2473 { 2474 "input": "\u00cb/x", 2475 "output": null 2476 }, 2477 { 2478 "input": "x/\u00cb", 2479 "output": null 2480 }, 2481 { 2482 "input": "x/x;\u00cb=x;bonus=x", 2483 "output": "x/x;bonus=x" 2484 }, 2485 { 2486 "input": "x/x;x=\u00cb;bonus=x", 2487 "output": "x/x;x=\"\u00cb\";bonus=x" 2488 }, 2489 { 2490 "input": "x/x;x=\"\u00cb\";bonus=x", 2491 "output": "x/x;x=\"\u00cb\";bonus=x" 2492 }, 2493 { 2494 "input": "\u00cc/x", 2495 "output": null 2496 }, 2497 { 2498 "input": "x/\u00cc", 2499 "output": null 2500 }, 2501 { 2502 "input": "x/x;\u00cc=x;bonus=x", 2503 "output": "x/x;bonus=x" 2504 }, 2505 { 2506 "input": "x/x;x=\u00cc;bonus=x", 2507 "output": "x/x;x=\"\u00cc\";bonus=x" 2508 }, 2509 { 2510 "input": "x/x;x=\"\u00cc\";bonus=x", 2511 "output": "x/x;x=\"\u00cc\";bonus=x" 2512 }, 2513 { 2514 "input": "\u00cd/x", 2515 "output": null 2516 }, 2517 { 2518 "input": "x/\u00cd", 2519 "output": null 2520 }, 2521 { 2522 "input": "x/x;\u00cd=x;bonus=x", 2523 "output": "x/x;bonus=x" 2524 }, 2525 { 2526 "input": "x/x;x=\u00cd;bonus=x", 2527 "output": "x/x;x=\"\u00cd\";bonus=x" 2528 }, 2529 { 2530 "input": "x/x;x=\"\u00cd\";bonus=x", 2531 "output": "x/x;x=\"\u00cd\";bonus=x" 2532 }, 2533 { 2534 "input": "\u00ce/x", 2535 "output": null 2536 }, 2537 { 2538 "input": "x/\u00ce", 2539 "output": null 2540 }, 2541 { 2542 "input": "x/x;\u00ce=x;bonus=x", 2543 "output": "x/x;bonus=x" 2544 }, 2545 { 2546 "input": "x/x;x=\u00ce;bonus=x", 2547 "output": "x/x;x=\"\u00ce\";bonus=x" 2548 }, 2549 { 2550 "input": "x/x;x=\"\u00ce\";bonus=x", 2551 "output": "x/x;x=\"\u00ce\";bonus=x" 2552 }, 2553 { 2554 "input": "\u00cf/x", 2555 "output": null 2556 }, 2557 { 2558 "input": "x/\u00cf", 2559 "output": null 2560 }, 2561 { 2562 "input": "x/x;\u00cf=x;bonus=x", 2563 "output": "x/x;bonus=x" 2564 }, 2565 { 2566 "input": "x/x;x=\u00cf;bonus=x", 2567 "output": "x/x;x=\"\u00cf\";bonus=x" 2568 }, 2569 { 2570 "input": "x/x;x=\"\u00cf\";bonus=x", 2571 "output": "x/x;x=\"\u00cf\";bonus=x" 2572 }, 2573 { 2574 "input": "\u00d0/x", 2575 "output": null 2576 }, 2577 { 2578 "input": "x/\u00d0", 2579 "output": null 2580 }, 2581 { 2582 "input": "x/x;\u00d0=x;bonus=x", 2583 "output": "x/x;bonus=x" 2584 }, 2585 { 2586 "input": "x/x;x=\u00d0;bonus=x", 2587 "output": "x/x;x=\"\u00d0\";bonus=x" 2588 }, 2589 { 2590 "input": "x/x;x=\"\u00d0\";bonus=x", 2591 "output": "x/x;x=\"\u00d0\";bonus=x" 2592 }, 2593 { 2594 "input": "\u00d1/x", 2595 "output": null 2596 }, 2597 { 2598 "input": "x/\u00d1", 2599 "output": null 2600 }, 2601 { 2602 "input": "x/x;\u00d1=x;bonus=x", 2603 "output": "x/x;bonus=x" 2604 }, 2605 { 2606 "input": "x/x;x=\u00d1;bonus=x", 2607 "output": "x/x;x=\"\u00d1\";bonus=x" 2608 }, 2609 { 2610 "input": "x/x;x=\"\u00d1\";bonus=x", 2611 "output": "x/x;x=\"\u00d1\";bonus=x" 2612 }, 2613 { 2614 "input": "\u00d2/x", 2615 "output": null 2616 }, 2617 { 2618 "input": "x/\u00d2", 2619 "output": null 2620 }, 2621 { 2622 "input": "x/x;\u00d2=x;bonus=x", 2623 "output": "x/x;bonus=x" 2624 }, 2625 { 2626 "input": "x/x;x=\u00d2;bonus=x", 2627 "output": "x/x;x=\"\u00d2\";bonus=x" 2628 }, 2629 { 2630 "input": "x/x;x=\"\u00d2\";bonus=x", 2631 "output": "x/x;x=\"\u00d2\";bonus=x" 2632 }, 2633 { 2634 "input": "\u00d3/x", 2635 "output": null 2636 }, 2637 { 2638 "input": "x/\u00d3", 2639 "output": null 2640 }, 2641 { 2642 "input": "x/x;\u00d3=x;bonus=x", 2643 "output": "x/x;bonus=x" 2644 }, 2645 { 2646 "input": "x/x;x=\u00d3;bonus=x", 2647 "output": "x/x;x=\"\u00d3\";bonus=x" 2648 }, 2649 { 2650 "input": "x/x;x=\"\u00d3\";bonus=x", 2651 "output": "x/x;x=\"\u00d3\";bonus=x" 2652 }, 2653 { 2654 "input": "\u00d4/x", 2655 "output": null 2656 }, 2657 { 2658 "input": "x/\u00d4", 2659 "output": null 2660 }, 2661 { 2662 "input": "x/x;\u00d4=x;bonus=x", 2663 "output": "x/x;bonus=x" 2664 }, 2665 { 2666 "input": "x/x;x=\u00d4;bonus=x", 2667 "output": "x/x;x=\"\u00d4\";bonus=x" 2668 }, 2669 { 2670 "input": "x/x;x=\"\u00d4\";bonus=x", 2671 "output": "x/x;x=\"\u00d4\";bonus=x" 2672 }, 2673 { 2674 "input": "\u00d5/x", 2675 "output": null 2676 }, 2677 { 2678 "input": "x/\u00d5", 2679 "output": null 2680 }, 2681 { 2682 "input": "x/x;\u00d5=x;bonus=x", 2683 "output": "x/x;bonus=x" 2684 }, 2685 { 2686 "input": "x/x;x=\u00d5;bonus=x", 2687 "output": "x/x;x=\"\u00d5\";bonus=x" 2688 }, 2689 { 2690 "input": "x/x;x=\"\u00d5\";bonus=x", 2691 "output": "x/x;x=\"\u00d5\";bonus=x" 2692 }, 2693 { 2694 "input": "\u00d6/x", 2695 "output": null 2696 }, 2697 { 2698 "input": "x/\u00d6", 2699 "output": null 2700 }, 2701 { 2702 "input": "x/x;\u00d6=x;bonus=x", 2703 "output": "x/x;bonus=x" 2704 }, 2705 { 2706 "input": "x/x;x=\u00d6;bonus=x", 2707 "output": "x/x;x=\"\u00d6\";bonus=x" 2708 }, 2709 { 2710 "input": "x/x;x=\"\u00d6\";bonus=x", 2711 "output": "x/x;x=\"\u00d6\";bonus=x" 2712 }, 2713 { 2714 "input": "\u00d7/x", 2715 "output": null 2716 }, 2717 { 2718 "input": "x/\u00d7", 2719 "output": null 2720 }, 2721 { 2722 "input": "x/x;\u00d7=x;bonus=x", 2723 "output": "x/x;bonus=x" 2724 }, 2725 { 2726 "input": "x/x;x=\u00d7;bonus=x", 2727 "output": "x/x;x=\"\u00d7\";bonus=x" 2728 }, 2729 { 2730 "input": "x/x;x=\"\u00d7\";bonus=x", 2731 "output": "x/x;x=\"\u00d7\";bonus=x" 2732 }, 2733 { 2734 "input": "\u00d8/x", 2735 "output": null 2736 }, 2737 { 2738 "input": "x/\u00d8", 2739 "output": null 2740 }, 2741 { 2742 "input": "x/x;\u00d8=x;bonus=x", 2743 "output": "x/x;bonus=x" 2744 }, 2745 { 2746 "input": "x/x;x=\u00d8;bonus=x", 2747 "output": "x/x;x=\"\u00d8\";bonus=x" 2748 }, 2749 { 2750 "input": "x/x;x=\"\u00d8\";bonus=x", 2751 "output": "x/x;x=\"\u00d8\";bonus=x" 2752 }, 2753 { 2754 "input": "\u00d9/x", 2755 "output": null 2756 }, 2757 { 2758 "input": "x/\u00d9", 2759 "output": null 2760 }, 2761 { 2762 "input": "x/x;\u00d9=x;bonus=x", 2763 "output": "x/x;bonus=x" 2764 }, 2765 { 2766 "input": "x/x;x=\u00d9;bonus=x", 2767 "output": "x/x;x=\"\u00d9\";bonus=x" 2768 }, 2769 { 2770 "input": "x/x;x=\"\u00d9\";bonus=x", 2771 "output": "x/x;x=\"\u00d9\";bonus=x" 2772 }, 2773 { 2774 "input": "\u00da/x", 2775 "output": null 2776 }, 2777 { 2778 "input": "x/\u00da", 2779 "output": null 2780 }, 2781 { 2782 "input": "x/x;\u00da=x;bonus=x", 2783 "output": "x/x;bonus=x" 2784 }, 2785 { 2786 "input": "x/x;x=\u00da;bonus=x", 2787 "output": "x/x;x=\"\u00da\";bonus=x" 2788 }, 2789 { 2790 "input": "x/x;x=\"\u00da\";bonus=x", 2791 "output": "x/x;x=\"\u00da\";bonus=x" 2792 }, 2793 { 2794 "input": "\u00db/x", 2795 "output": null 2796 }, 2797 { 2798 "input": "x/\u00db", 2799 "output": null 2800 }, 2801 { 2802 "input": "x/x;\u00db=x;bonus=x", 2803 "output": "x/x;bonus=x" 2804 }, 2805 { 2806 "input": "x/x;x=\u00db;bonus=x", 2807 "output": "x/x;x=\"\u00db\";bonus=x" 2808 }, 2809 { 2810 "input": "x/x;x=\"\u00db\";bonus=x", 2811 "output": "x/x;x=\"\u00db\";bonus=x" 2812 }, 2813 { 2814 "input": "\u00dc/x", 2815 "output": null 2816 }, 2817 { 2818 "input": "x/\u00dc", 2819 "output": null 2820 }, 2821 { 2822 "input": "x/x;\u00dc=x;bonus=x", 2823 "output": "x/x;bonus=x" 2824 }, 2825 { 2826 "input": "x/x;x=\u00dc;bonus=x", 2827 "output": "x/x;x=\"\u00dc\";bonus=x" 2828 }, 2829 { 2830 "input": "x/x;x=\"\u00dc\";bonus=x", 2831 "output": "x/x;x=\"\u00dc\";bonus=x" 2832 }, 2833 { 2834 "input": "\u00dd/x", 2835 "output": null 2836 }, 2837 { 2838 "input": "x/\u00dd", 2839 "output": null 2840 }, 2841 { 2842 "input": "x/x;\u00dd=x;bonus=x", 2843 "output": "x/x;bonus=x" 2844 }, 2845 { 2846 "input": "x/x;x=\u00dd;bonus=x", 2847 "output": "x/x;x=\"\u00dd\";bonus=x" 2848 }, 2849 { 2850 "input": "x/x;x=\"\u00dd\";bonus=x", 2851 "output": "x/x;x=\"\u00dd\";bonus=x" 2852 }, 2853 { 2854 "input": "\u00de/x", 2855 "output": null 2856 }, 2857 { 2858 "input": "x/\u00de", 2859 "output": null 2860 }, 2861 { 2862 "input": "x/x;\u00de=x;bonus=x", 2863 "output": "x/x;bonus=x" 2864 }, 2865 { 2866 "input": "x/x;x=\u00de;bonus=x", 2867 "output": "x/x;x=\"\u00de\";bonus=x" 2868 }, 2869 { 2870 "input": "x/x;x=\"\u00de\";bonus=x", 2871 "output": "x/x;x=\"\u00de\";bonus=x" 2872 }, 2873 { 2874 "input": "\u00df/x", 2875 "output": null 2876 }, 2877 { 2878 "input": "x/\u00df", 2879 "output": null 2880 }, 2881 { 2882 "input": "x/x;\u00df=x;bonus=x", 2883 "output": "x/x;bonus=x" 2884 }, 2885 { 2886 "input": "x/x;x=\u00df;bonus=x", 2887 "output": "x/x;x=\"\u00df\";bonus=x" 2888 }, 2889 { 2890 "input": "x/x;x=\"\u00df\";bonus=x", 2891 "output": "x/x;x=\"\u00df\";bonus=x" 2892 }, 2893 { 2894 "input": "\u00e0/x", 2895 "output": null 2896 }, 2897 { 2898 "input": "x/\u00e0", 2899 "output": null 2900 }, 2901 { 2902 "input": "x/x;\u00e0=x;bonus=x", 2903 "output": "x/x;bonus=x" 2904 }, 2905 { 2906 "input": "x/x;x=\u00e0;bonus=x", 2907 "output": "x/x;x=\"\u00e0\";bonus=x" 2908 }, 2909 { 2910 "input": "x/x;x=\"\u00e0\";bonus=x", 2911 "output": "x/x;x=\"\u00e0\";bonus=x" 2912 }, 2913 { 2914 "input": "\u00e1/x", 2915 "output": null 2916 }, 2917 { 2918 "input": "x/\u00e1", 2919 "output": null 2920 }, 2921 { 2922 "input": "x/x;\u00e1=x;bonus=x", 2923 "output": "x/x;bonus=x" 2924 }, 2925 { 2926 "input": "x/x;x=\u00e1;bonus=x", 2927 "output": "x/x;x=\"\u00e1\";bonus=x" 2928 }, 2929 { 2930 "input": "x/x;x=\"\u00e1\";bonus=x", 2931 "output": "x/x;x=\"\u00e1\";bonus=x" 2932 }, 2933 { 2934 "input": "\u00e2/x", 2935 "output": null 2936 }, 2937 { 2938 "input": "x/\u00e2", 2939 "output": null 2940 }, 2941 { 2942 "input": "x/x;\u00e2=x;bonus=x", 2943 "output": "x/x;bonus=x" 2944 }, 2945 { 2946 "input": "x/x;x=\u00e2;bonus=x", 2947 "output": "x/x;x=\"\u00e2\";bonus=x" 2948 }, 2949 { 2950 "input": "x/x;x=\"\u00e2\";bonus=x", 2951 "output": "x/x;x=\"\u00e2\";bonus=x" 2952 }, 2953 { 2954 "input": "\u00e3/x", 2955 "output": null 2956 }, 2957 { 2958 "input": "x/\u00e3", 2959 "output": null 2960 }, 2961 { 2962 "input": "x/x;\u00e3=x;bonus=x", 2963 "output": "x/x;bonus=x" 2964 }, 2965 { 2966 "input": "x/x;x=\u00e3;bonus=x", 2967 "output": "x/x;x=\"\u00e3\";bonus=x" 2968 }, 2969 { 2970 "input": "x/x;x=\"\u00e3\";bonus=x", 2971 "output": "x/x;x=\"\u00e3\";bonus=x" 2972 }, 2973 { 2974 "input": "\u00e4/x", 2975 "output": null 2976 }, 2977 { 2978 "input": "x/\u00e4", 2979 "output": null 2980 }, 2981 { 2982 "input": "x/x;\u00e4=x;bonus=x", 2983 "output": "x/x;bonus=x" 2984 }, 2985 { 2986 "input": "x/x;x=\u00e4;bonus=x", 2987 "output": "x/x;x=\"\u00e4\";bonus=x" 2988 }, 2989 { 2990 "input": "x/x;x=\"\u00e4\";bonus=x", 2991 "output": "x/x;x=\"\u00e4\";bonus=x" 2992 }, 2993 { 2994 "input": "\u00e5/x", 2995 "output": null 2996 }, 2997 { 2998 "input": "x/\u00e5", 2999 "output": null 3000 }, 3001 { 3002 "input": "x/x;\u00e5=x;bonus=x", 3003 "output": "x/x;bonus=x" 3004 }, 3005 { 3006 "input": "x/x;x=\u00e5;bonus=x", 3007 "output": "x/x;x=\"\u00e5\";bonus=x" 3008 }, 3009 { 3010 "input": "x/x;x=\"\u00e5\";bonus=x", 3011 "output": "x/x;x=\"\u00e5\";bonus=x" 3012 }, 3013 { 3014 "input": "\u00e6/x", 3015 "output": null 3016 }, 3017 { 3018 "input": "x/\u00e6", 3019 "output": null 3020 }, 3021 { 3022 "input": "x/x;\u00e6=x;bonus=x", 3023 "output": "x/x;bonus=x" 3024 }, 3025 { 3026 "input": "x/x;x=\u00e6;bonus=x", 3027 "output": "x/x;x=\"\u00e6\";bonus=x" 3028 }, 3029 { 3030 "input": "x/x;x=\"\u00e6\";bonus=x", 3031 "output": "x/x;x=\"\u00e6\";bonus=x" 3032 }, 3033 { 3034 "input": "\u00e7/x", 3035 "output": null 3036 }, 3037 { 3038 "input": "x/\u00e7", 3039 "output": null 3040 }, 3041 { 3042 "input": "x/x;\u00e7=x;bonus=x", 3043 "output": "x/x;bonus=x" 3044 }, 3045 { 3046 "input": "x/x;x=\u00e7;bonus=x", 3047 "output": "x/x;x=\"\u00e7\";bonus=x" 3048 }, 3049 { 3050 "input": "x/x;x=\"\u00e7\";bonus=x", 3051 "output": "x/x;x=\"\u00e7\";bonus=x" 3052 }, 3053 { 3054 "input": "\u00e8/x", 3055 "output": null 3056 }, 3057 { 3058 "input": "x/\u00e8", 3059 "output": null 3060 }, 3061 { 3062 "input": "x/x;\u00e8=x;bonus=x", 3063 "output": "x/x;bonus=x" 3064 }, 3065 { 3066 "input": "x/x;x=\u00e8;bonus=x", 3067 "output": "x/x;x=\"\u00e8\";bonus=x" 3068 }, 3069 { 3070 "input": "x/x;x=\"\u00e8\";bonus=x", 3071 "output": "x/x;x=\"\u00e8\";bonus=x" 3072 }, 3073 { 3074 "input": "\u00e9/x", 3075 "output": null 3076 }, 3077 { 3078 "input": "x/\u00e9", 3079 "output": null 3080 }, 3081 { 3082 "input": "x/x;\u00e9=x;bonus=x", 3083 "output": "x/x;bonus=x" 3084 }, 3085 { 3086 "input": "x/x;x=\u00e9;bonus=x", 3087 "output": "x/x;x=\"\u00e9\";bonus=x" 3088 }, 3089 { 3090 "input": "x/x;x=\"\u00e9\";bonus=x", 3091 "output": "x/x;x=\"\u00e9\";bonus=x" 3092 }, 3093 { 3094 "input": "\u00ea/x", 3095 "output": null 3096 }, 3097 { 3098 "input": "x/\u00ea", 3099 "output": null 3100 }, 3101 { 3102 "input": "x/x;\u00ea=x;bonus=x", 3103 "output": "x/x;bonus=x" 3104 }, 3105 { 3106 "input": "x/x;x=\u00ea;bonus=x", 3107 "output": "x/x;x=\"\u00ea\";bonus=x" 3108 }, 3109 { 3110 "input": "x/x;x=\"\u00ea\";bonus=x", 3111 "output": "x/x;x=\"\u00ea\";bonus=x" 3112 }, 3113 { 3114 "input": "\u00eb/x", 3115 "output": null 3116 }, 3117 { 3118 "input": "x/\u00eb", 3119 "output": null 3120 }, 3121 { 3122 "input": "x/x;\u00eb=x;bonus=x", 3123 "output": "x/x;bonus=x" 3124 }, 3125 { 3126 "input": "x/x;x=\u00eb;bonus=x", 3127 "output": "x/x;x=\"\u00eb\";bonus=x" 3128 }, 3129 { 3130 "input": "x/x;x=\"\u00eb\";bonus=x", 3131 "output": "x/x;x=\"\u00eb\";bonus=x" 3132 }, 3133 { 3134 "input": "\u00ec/x", 3135 "output": null 3136 }, 3137 { 3138 "input": "x/\u00ec", 3139 "output": null 3140 }, 3141 { 3142 "input": "x/x;\u00ec=x;bonus=x", 3143 "output": "x/x;bonus=x" 3144 }, 3145 { 3146 "input": "x/x;x=\u00ec;bonus=x", 3147 "output": "x/x;x=\"\u00ec\";bonus=x" 3148 }, 3149 { 3150 "input": "x/x;x=\"\u00ec\";bonus=x", 3151 "output": "x/x;x=\"\u00ec\";bonus=x" 3152 }, 3153 { 3154 "input": "\u00ed/x", 3155 "output": null 3156 }, 3157 { 3158 "input": "x/\u00ed", 3159 "output": null 3160 }, 3161 { 3162 "input": "x/x;\u00ed=x;bonus=x", 3163 "output": "x/x;bonus=x" 3164 }, 3165 { 3166 "input": "x/x;x=\u00ed;bonus=x", 3167 "output": "x/x;x=\"\u00ed\";bonus=x" 3168 }, 3169 { 3170 "input": "x/x;x=\"\u00ed\";bonus=x", 3171 "output": "x/x;x=\"\u00ed\";bonus=x" 3172 }, 3173 { 3174 "input": "\u00ee/x", 3175 "output": null 3176 }, 3177 { 3178 "input": "x/\u00ee", 3179 "output": null 3180 }, 3181 { 3182 "input": "x/x;\u00ee=x;bonus=x", 3183 "output": "x/x;bonus=x" 3184 }, 3185 { 3186 "input": "x/x;x=\u00ee;bonus=x", 3187 "output": "x/x;x=\"\u00ee\";bonus=x" 3188 }, 3189 { 3190 "input": "x/x;x=\"\u00ee\";bonus=x", 3191 "output": "x/x;x=\"\u00ee\";bonus=x" 3192 }, 3193 { 3194 "input": "\u00ef/x", 3195 "output": null 3196 }, 3197 { 3198 "input": "x/\u00ef", 3199 "output": null 3200 }, 3201 { 3202 "input": "x/x;\u00ef=x;bonus=x", 3203 "output": "x/x;bonus=x" 3204 }, 3205 { 3206 "input": "x/x;x=\u00ef;bonus=x", 3207 "output": "x/x;x=\"\u00ef\";bonus=x" 3208 }, 3209 { 3210 "input": "x/x;x=\"\u00ef\";bonus=x", 3211 "output": "x/x;x=\"\u00ef\";bonus=x" 3212 }, 3213 { 3214 "input": "\u00f0/x", 3215 "output": null 3216 }, 3217 { 3218 "input": "x/\u00f0", 3219 "output": null 3220 }, 3221 { 3222 "input": "x/x;\u00f0=x;bonus=x", 3223 "output": "x/x;bonus=x" 3224 }, 3225 { 3226 "input": "x/x;x=\u00f0;bonus=x", 3227 "output": "x/x;x=\"\u00f0\";bonus=x" 3228 }, 3229 { 3230 "input": "x/x;x=\"\u00f0\";bonus=x", 3231 "output": "x/x;x=\"\u00f0\";bonus=x" 3232 }, 3233 { 3234 "input": "\u00f1/x", 3235 "output": null 3236 }, 3237 { 3238 "input": "x/\u00f1", 3239 "output": null 3240 }, 3241 { 3242 "input": "x/x;\u00f1=x;bonus=x", 3243 "output": "x/x;bonus=x" 3244 }, 3245 { 3246 "input": "x/x;x=\u00f1;bonus=x", 3247 "output": "x/x;x=\"\u00f1\";bonus=x" 3248 }, 3249 { 3250 "input": "x/x;x=\"\u00f1\";bonus=x", 3251 "output": "x/x;x=\"\u00f1\";bonus=x" 3252 }, 3253 { 3254 "input": "\u00f2/x", 3255 "output": null 3256 }, 3257 { 3258 "input": "x/\u00f2", 3259 "output": null 3260 }, 3261 { 3262 "input": "x/x;\u00f2=x;bonus=x", 3263 "output": "x/x;bonus=x" 3264 }, 3265 { 3266 "input": "x/x;x=\u00f2;bonus=x", 3267 "output": "x/x;x=\"\u00f2\";bonus=x" 3268 }, 3269 { 3270 "input": "x/x;x=\"\u00f2\";bonus=x", 3271 "output": "x/x;x=\"\u00f2\";bonus=x" 3272 }, 3273 { 3274 "input": "\u00f3/x", 3275 "output": null 3276 }, 3277 { 3278 "input": "x/\u00f3", 3279 "output": null 3280 }, 3281 { 3282 "input": "x/x;\u00f3=x;bonus=x", 3283 "output": "x/x;bonus=x" 3284 }, 3285 { 3286 "input": "x/x;x=\u00f3;bonus=x", 3287 "output": "x/x;x=\"\u00f3\";bonus=x" 3288 }, 3289 { 3290 "input": "x/x;x=\"\u00f3\";bonus=x", 3291 "output": "x/x;x=\"\u00f3\";bonus=x" 3292 }, 3293 { 3294 "input": "\u00f4/x", 3295 "output": null 3296 }, 3297 { 3298 "input": "x/\u00f4", 3299 "output": null 3300 }, 3301 { 3302 "input": "x/x;\u00f4=x;bonus=x", 3303 "output": "x/x;bonus=x" 3304 }, 3305 { 3306 "input": "x/x;x=\u00f4;bonus=x", 3307 "output": "x/x;x=\"\u00f4\";bonus=x" 3308 }, 3309 { 3310 "input": "x/x;x=\"\u00f4\";bonus=x", 3311 "output": "x/x;x=\"\u00f4\";bonus=x" 3312 }, 3313 { 3314 "input": "\u00f5/x", 3315 "output": null 3316 }, 3317 { 3318 "input": "x/\u00f5", 3319 "output": null 3320 }, 3321 { 3322 "input": "x/x;\u00f5=x;bonus=x", 3323 "output": "x/x;bonus=x" 3324 }, 3325 { 3326 "input": "x/x;x=\u00f5;bonus=x", 3327 "output": "x/x;x=\"\u00f5\";bonus=x" 3328 }, 3329 { 3330 "input": "x/x;x=\"\u00f5\";bonus=x", 3331 "output": "x/x;x=\"\u00f5\";bonus=x" 3332 }, 3333 { 3334 "input": "\u00f6/x", 3335 "output": null 3336 }, 3337 { 3338 "input": "x/\u00f6", 3339 "output": null 3340 }, 3341 { 3342 "input": "x/x;\u00f6=x;bonus=x", 3343 "output": "x/x;bonus=x" 3344 }, 3345 { 3346 "input": "x/x;x=\u00f6;bonus=x", 3347 "output": "x/x;x=\"\u00f6\";bonus=x" 3348 }, 3349 { 3350 "input": "x/x;x=\"\u00f6\";bonus=x", 3351 "output": "x/x;x=\"\u00f6\";bonus=x" 3352 }, 3353 { 3354 "input": "\u00f7/x", 3355 "output": null 3356 }, 3357 { 3358 "input": "x/\u00f7", 3359 "output": null 3360 }, 3361 { 3362 "input": "x/x;\u00f7=x;bonus=x", 3363 "output": "x/x;bonus=x" 3364 }, 3365 { 3366 "input": "x/x;x=\u00f7;bonus=x", 3367 "output": "x/x;x=\"\u00f7\";bonus=x" 3368 }, 3369 { 3370 "input": "x/x;x=\"\u00f7\";bonus=x", 3371 "output": "x/x;x=\"\u00f7\";bonus=x" 3372 }, 3373 { 3374 "input": "\u00f8/x", 3375 "output": null 3376 }, 3377 { 3378 "input": "x/\u00f8", 3379 "output": null 3380 }, 3381 { 3382 "input": "x/x;\u00f8=x;bonus=x", 3383 "output": "x/x;bonus=x" 3384 }, 3385 { 3386 "input": "x/x;x=\u00f8;bonus=x", 3387 "output": "x/x;x=\"\u00f8\";bonus=x" 3388 }, 3389 { 3390 "input": "x/x;x=\"\u00f8\";bonus=x", 3391 "output": "x/x;x=\"\u00f8\";bonus=x" 3392 }, 3393 { 3394 "input": "\u00f9/x", 3395 "output": null 3396 }, 3397 { 3398 "input": "x/\u00f9", 3399 "output": null 3400 }, 3401 { 3402 "input": "x/x;\u00f9=x;bonus=x", 3403 "output": "x/x;bonus=x" 3404 }, 3405 { 3406 "input": "x/x;x=\u00f9;bonus=x", 3407 "output": "x/x;x=\"\u00f9\";bonus=x" 3408 }, 3409 { 3410 "input": "x/x;x=\"\u00f9\";bonus=x", 3411 "output": "x/x;x=\"\u00f9\";bonus=x" 3412 }, 3413 { 3414 "input": "\u00fa/x", 3415 "output": null 3416 }, 3417 { 3418 "input": "x/\u00fa", 3419 "output": null 3420 }, 3421 { 3422 "input": "x/x;\u00fa=x;bonus=x", 3423 "output": "x/x;bonus=x" 3424 }, 3425 { 3426 "input": "x/x;x=\u00fa;bonus=x", 3427 "output": "x/x;x=\"\u00fa\";bonus=x" 3428 }, 3429 { 3430 "input": "x/x;x=\"\u00fa\";bonus=x", 3431 "output": "x/x;x=\"\u00fa\";bonus=x" 3432 }, 3433 { 3434 "input": "\u00fb/x", 3435 "output": null 3436 }, 3437 { 3438 "input": "x/\u00fb", 3439 "output": null 3440 }, 3441 { 3442 "input": "x/x;\u00fb=x;bonus=x", 3443 "output": "x/x;bonus=x" 3444 }, 3445 { 3446 "input": "x/x;x=\u00fb;bonus=x", 3447 "output": "x/x;x=\"\u00fb\";bonus=x" 3448 }, 3449 { 3450 "input": "x/x;x=\"\u00fb\";bonus=x", 3451 "output": "x/x;x=\"\u00fb\";bonus=x" 3452 }, 3453 { 3454 "input": "\u00fc/x", 3455 "output": null 3456 }, 3457 { 3458 "input": "x/\u00fc", 3459 "output": null 3460 }, 3461 { 3462 "input": "x/x;\u00fc=x;bonus=x", 3463 "output": "x/x;bonus=x" 3464 }, 3465 { 3466 "input": "x/x;x=\u00fc;bonus=x", 3467 "output": "x/x;x=\"\u00fc\";bonus=x" 3468 }, 3469 { 3470 "input": "x/x;x=\"\u00fc\";bonus=x", 3471 "output": "x/x;x=\"\u00fc\";bonus=x" 3472 }, 3473 { 3474 "input": "\u00fd/x", 3475 "output": null 3476 }, 3477 { 3478 "input": "x/\u00fd", 3479 "output": null 3480 }, 3481 { 3482 "input": "x/x;\u00fd=x;bonus=x", 3483 "output": "x/x;bonus=x" 3484 }, 3485 { 3486 "input": "x/x;x=\u00fd;bonus=x", 3487 "output": "x/x;x=\"\u00fd\";bonus=x" 3488 }, 3489 { 3490 "input": "x/x;x=\"\u00fd\";bonus=x", 3491 "output": "x/x;x=\"\u00fd\";bonus=x" 3492 }, 3493 { 3494 "input": "\u00fe/x", 3495 "output": null 3496 }, 3497 { 3498 "input": "x/\u00fe", 3499 "output": null 3500 }, 3501 { 3502 "input": "x/x;\u00fe=x;bonus=x", 3503 "output": "x/x;bonus=x" 3504 }, 3505 { 3506 "input": "x/x;x=\u00fe;bonus=x", 3507 "output": "x/x;x=\"\u00fe\";bonus=x" 3508 }, 3509 { 3510 "input": "x/x;x=\"\u00fe\";bonus=x", 3511 "output": "x/x;x=\"\u00fe\";bonus=x" 3512 }, 3513 { 3514 "input": "\u00ff/x", 3515 "output": null 3516 }, 3517 { 3518 "input": "x/\u00ff", 3519 "output": null 3520 }, 3521 { 3522 "input": "x/x;\u00ff=x;bonus=x", 3523 "output": "x/x;bonus=x" 3524 }, 3525 { 3526 "input": "x/x;x=\u00ff;bonus=x", 3527 "output": "x/x;x=\"\u00ff\";bonus=x" 3528 }, 3529 { 3530 "input": "x/x;x=\"\u00ff\";bonus=x", 3531 "output": "x/x;x=\"\u00ff\";bonus=x" 3532 } 3533]; 3534